optimize ping page & make.dart

This commit is contained in:
Junyuan Feng
2022-11-07 20:15:39 +08:00
parent 5b8468effa
commit bfd31e561c
10 changed files with 78 additions and 43 deletions

View File

@@ -122,6 +122,8 @@ class MessageLookup extends MessageLookupByLibrary {
"import": MessageLookupByLibrary.simpleMessage("Import"),
"importAndExport":
MessageLookupByLibrary.simpleMessage("Import and Export"),
"inputDomainHere":
MessageLookupByLibrary.simpleMessage("Input Domain here"),
"install": MessageLookupByLibrary.simpleMessage("install"),
"installDockerWithUrl": MessageLookupByLibrary.simpleMessage(
"Please https://docs.docker.com/engine/install docker first."),

View File

@@ -111,6 +111,7 @@ class MessageLookup extends MessageLookupByLibrary {
"httpFailedWithCode": m5,
"import": MessageLookupByLibrary.simpleMessage("导入"),
"importAndExport": MessageLookupByLibrary.simpleMessage("导入或导出"),
"inputDomainHere": MessageLookupByLibrary.simpleMessage("在这里输入域名"),
"install": MessageLookupByLibrary.simpleMessage("安装"),
"installDockerWithUrl": MessageLookupByLibrary.simpleMessage(
"请先 https://docs.docker.com/engine/install docker"),

View File

@@ -1340,6 +1340,16 @@ class S {
args: [],
);
}
/// `Input Domain here`
String get inputDomainHere {
return Intl.message(
'Input Domain here',
name: 'inputDomainHere',
desc: '',
args: [],
);
}
}
class AppLocalizationDelegate extends LocalizationsDelegate<S> {