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

@@ -19,6 +19,8 @@ typedef String MessageIfAbsent(String messageStr, List<dynamic> args);
class MessageLookup extends MessageLookupByLibrary {
String get localeName => 'en';
static m0(oss) => "Download at ${oss}";
final messages = _notInlinedMessages(_notInlinedMessages);
static _notInlinedMessages(_) => <String, Function> {
"about" : MessageLookupByLibrary.simpleMessage("About"),
@@ -27,8 +29,10 @@ class MessageLookup extends MessageLookupByLibrary {
"contact_us" : MessageLookupByLibrary.simpleMessage("Contact us"),
"developer_of" : MessageLookupByLibrary.simpleMessage("Developers of"),
"download" : MessageLookupByLibrary.simpleMessage("Download"),
"download_with_token" : m0,
"home" : MessageLookupByLibrary.simpleMessage("Home"),
"information" : MessageLookupByLibrary.simpleMessage("Information"),
"install_in_store" : MessageLookupByLibrary.simpleMessage("Install in store"),
"learn_more" : MessageLookupByLibrary.simpleMessage("Learn more..."),
"license_agreement" : MessageLookupByLibrary.simpleMessage("License agreement"),
"loading_please_wait" : MessageLookupByLibrary.simpleMessage("Loading, please wait..."),

View File

@@ -19,6 +19,8 @@ typedef String MessageIfAbsent(String messageStr, List<dynamic> args);
class MessageLookup extends MessageLookupByLibrary {
String get localeName => 'zh_CN';
static m0(oss) => "${oss}下载";
final messages = _notInlinedMessages(_notInlinedMessages);
static _notInlinedMessages(_) => <String, Function> {
"about" : MessageLookupByLibrary.simpleMessage("关于"),
@@ -27,8 +29,10 @@ class MessageLookup extends MessageLookupByLibrary {
"contact_us" : MessageLookupByLibrary.simpleMessage("联系我们"),
"developer_of" : MessageLookupByLibrary.simpleMessage("开发者"),
"download" : MessageLookupByLibrary.simpleMessage("下载"),
"download_with_token" : m0,
"home" : MessageLookupByLibrary.simpleMessage("首页"),
"information" : MessageLookupByLibrary.simpleMessage("信息"),
"install_in_store" : MessageLookupByLibrary.simpleMessage("店内安装"),
"learn_more" : MessageLookupByLibrary.simpleMessage("了解更多..."),
"license_agreement" : MessageLookupByLibrary.simpleMessage("许可协议"),
"loading_please_wait" : MessageLookupByLibrary.simpleMessage("装载中,清稍候..."),

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> {