optimized apt experience

This commit is contained in:
Junyuan Feng
2022-05-10 21:49:17 +08:00
parent 49f70fe41a
commit 7e8e0e2efc
13 changed files with 232 additions and 73 deletions

View File

@@ -1180,6 +1180,26 @@ class S {
args: [],
);
}
/// `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(
'Current platform does not support in app update.\nPlease build from source and install it.',
name: 'platformNotSupportUpdate',
desc: '',
args: [],
);
}
}
class AppLocalizationDelegate extends LocalizationsDelegate<S> {