mirror of
https://github.com/lollipopkit/flutter_server_box.git
synced 2025-12-17 07:14:28 +01:00
feat. & opt.
switch for distribution logo opt. for server detail page
This commit is contained in:
@@ -175,6 +175,8 @@ class MessageLookup extends MessageLookupByLibrary {
|
||||
"noUpdateAvailable":
|
||||
MessageLookupByLibrary.simpleMessage("No update available"),
|
||||
"ok": MessageLookupByLibrary.simpleMessage("OK"),
|
||||
"onServerDetailPage":
|
||||
MessageLookupByLibrary.simpleMessage("On server detail page"),
|
||||
"open": MessageLookupByLibrary.simpleMessage("Open"),
|
||||
"path": MessageLookupByLibrary.simpleMessage("Path"),
|
||||
"ping": MessageLookupByLibrary.simpleMessage("Ping"),
|
||||
@@ -221,6 +223,8 @@ class MessageLookup extends MessageLookupByLibrary {
|
||||
MessageLookupByLibrary.simpleMessage("No download task."),
|
||||
"sftpSSHConnected":
|
||||
MessageLookupByLibrary.simpleMessage("SFTP Connected"),
|
||||
"showDistLogo":
|
||||
MessageLookupByLibrary.simpleMessage("Show distribution logo"),
|
||||
"snippet": MessageLookupByLibrary.simpleMessage("Snippet"),
|
||||
"spentTime": m11,
|
||||
"start": MessageLookupByLibrary.simpleMessage("Start"),
|
||||
|
||||
@@ -154,6 +154,7 @@ class MessageLookup extends MessageLookupByLibrary {
|
||||
"noServerAvailable": MessageLookupByLibrary.simpleMessage("没有可用的服务器。"),
|
||||
"noUpdateAvailable": MessageLookupByLibrary.simpleMessage("没有可用更新"),
|
||||
"ok": MessageLookupByLibrary.simpleMessage("好"),
|
||||
"onServerDetailPage": MessageLookupByLibrary.simpleMessage("在服务器详情页"),
|
||||
"open": MessageLookupByLibrary.simpleMessage("打开"),
|
||||
"path": MessageLookupByLibrary.simpleMessage("路径"),
|
||||
"ping": MessageLookupByLibrary.simpleMessage("Ping"),
|
||||
@@ -192,6 +193,7 @@ class MessageLookup extends MessageLookupByLibrary {
|
||||
"sftpNoDownloadTask": MessageLookupByLibrary.simpleMessage("没有下载任务"),
|
||||
"sftpSSHConnected":
|
||||
MessageLookupByLibrary.simpleMessage("SFTP 已连接,即将开始下载..."),
|
||||
"showDistLogo": MessageLookupByLibrary.simpleMessage("显示发行版 Logo"),
|
||||
"snippet": MessageLookupByLibrary.simpleMessage("代码片段"),
|
||||
"spentTime": m11,
|
||||
"start": MessageLookupByLibrary.simpleMessage("开始"),
|
||||
|
||||
@@ -1500,6 +1500,26 @@ class S {
|
||||
args: [],
|
||||
);
|
||||
}
|
||||
|
||||
/// `Show distribution logo`
|
||||
String get showDistLogo {
|
||||
return Intl.message(
|
||||
'Show distribution logo',
|
||||
name: 'showDistLogo',
|
||||
desc: '',
|
||||
args: [],
|
||||
);
|
||||
}
|
||||
|
||||
/// `On server detail page`
|
||||
String get onServerDetailPage {
|
||||
return Intl.message(
|
||||
'On server detail page',
|
||||
name: 'onServerDetailPage',
|
||||
desc: '',
|
||||
args: [],
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
class AppLocalizationDelegate extends LocalizationsDelegate<S> {
|
||||
|
||||
Reference in New Issue
Block a user