mirror of
https://github.com/lollipopkit/flutter_server_box.git
synced 2025-12-17 07:14:28 +01:00
improved sftp
This commit is contained in:
@@ -131,6 +131,7 @@ class MessageLookup extends MessageLookupByLibrary {
|
||||
"go": MessageLookupByLibrary.simpleMessage("Go"),
|
||||
"goSftpDlPage":
|
||||
MessageLookupByLibrary.simpleMessage("Go to SFTP download page?"),
|
||||
"goto": MessageLookupByLibrary.simpleMessage("Go to"),
|
||||
"host": MessageLookupByLibrary.simpleMessage("Host"),
|
||||
"httpFailedWithCode": m6,
|
||||
"imagesList": MessageLookupByLibrary.simpleMessage("Images list"),
|
||||
@@ -175,6 +176,7 @@ class MessageLookup extends MessageLookupByLibrary {
|
||||
MessageLookupByLibrary.simpleMessage("No update available"),
|
||||
"ok": MessageLookupByLibrary.simpleMessage("OK"),
|
||||
"open": MessageLookupByLibrary.simpleMessage("Open"),
|
||||
"path": MessageLookupByLibrary.simpleMessage("Path"),
|
||||
"ping": MessageLookupByLibrary.simpleMessage("Ping"),
|
||||
"pingAvg": MessageLookupByLibrary.simpleMessage("Avg:"),
|
||||
"pingInputIP": MessageLookupByLibrary.simpleMessage(
|
||||
|
||||
@@ -119,6 +119,7 @@ class MessageLookup extends MessageLookupByLibrary {
|
||||
"foundNUpdate": m5,
|
||||
"go": MessageLookupByLibrary.simpleMessage("开始"),
|
||||
"goSftpDlPage": MessageLookupByLibrary.simpleMessage("前往下载页?"),
|
||||
"goto": MessageLookupByLibrary.simpleMessage("前往"),
|
||||
"host": MessageLookupByLibrary.simpleMessage("主机"),
|
||||
"httpFailedWithCode": m6,
|
||||
"imagesList": MessageLookupByLibrary.simpleMessage("镜像列表"),
|
||||
@@ -154,6 +155,7 @@ class MessageLookup extends MessageLookupByLibrary {
|
||||
"noUpdateAvailable": MessageLookupByLibrary.simpleMessage("没有可用更新"),
|
||||
"ok": MessageLookupByLibrary.simpleMessage("好"),
|
||||
"open": MessageLookupByLibrary.simpleMessage("打开"),
|
||||
"path": MessageLookupByLibrary.simpleMessage("路径"),
|
||||
"ping": MessageLookupByLibrary.simpleMessage("Ping"),
|
||||
"pingAvg": MessageLookupByLibrary.simpleMessage("平均:"),
|
||||
"pingInputIP": MessageLookupByLibrary.simpleMessage("请输入目标IP或域名"),
|
||||
|
||||
@@ -1480,6 +1480,26 @@ class S {
|
||||
args: [count],
|
||||
);
|
||||
}
|
||||
|
||||
/// `Path`
|
||||
String get path {
|
||||
return Intl.message(
|
||||
'Path',
|
||||
name: 'path',
|
||||
desc: '',
|
||||
args: [],
|
||||
);
|
||||
}
|
||||
|
||||
/// `Go to`
|
||||
String get goto {
|
||||
return Intl.message(
|
||||
'Go to',
|
||||
name: 'goto',
|
||||
desc: '',
|
||||
args: [],
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
class AppLocalizationDelegate extends LocalizationsDelegate<S> {
|
||||
|
||||
Reference in New Issue
Block a user