- optimize TextField
- opt apt pwd req times
- use logger in update.dart
This commit is contained in:
Junyuan Feng
2022-05-15 13:48:57 +08:00
parent 282443a548
commit 36d7dc7bb2
15 changed files with 90 additions and 83 deletions

View File

@@ -1181,16 +1181,6 @@ class S {
);
}
/// `Password for {user}`
String pwdForUser(Object user) {
return Intl.message(
'Password for $user',
name: 'pwdForUser',
desc: '',
args: [user],
);
}
/// `Current platform does not support in app update.\nPlease build from source and install it.`
String get platformNotSupportUpdate {
return Intl.message(
@@ -1220,6 +1210,16 @@ class S {
args: [],
);
}
/// `Last try!`
String get lastTry {
return Intl.message(
'Last try!',
name: 'lastTry',
desc: '',
args: [],
);
}
}
class AppLocalizationDelegate extends LocalizationsDelegate<S> {