This commit is contained in:
2020-12-28 00:19:04 -05:00
parent 86c845b49b
commit c378a6203c
33 changed files with 833 additions and 200 deletions

View File

@@ -334,6 +334,26 @@ class S {
args: [],
);
}
/// `Download at {oss}`
String download_with_token(Object oss) {
return Intl.message(
'Download at $oss',
name: 'download_with_token',
desc: '',
args: [oss],
);
}
/// `Install in store`
String get install_in_store {
return Intl.message(
'Install in store',
name: 'install_in_store',
desc: '',
args: [],
);
}
}
class AppLocalizationDelegate extends LocalizationsDelegate<S> {