mirror of
https://github.com/lollipopkit/flutter_server_box.git
synced 2025-12-17 07:14:28 +01:00
new & opt
new: support set maxRetryCount of server reconnection opt: server detail UI opt: server provider opt: `ssh` page on Android
This commit is contained in:
@@ -166,6 +166,10 @@ class MessageLookup extends MessageLookupByLibrary {
|
||||
"loss": MessageLookupByLibrary.simpleMessage("loss"),
|
||||
"madeWithLove": m8,
|
||||
"max": MessageLookupByLibrary.simpleMessage("max"),
|
||||
"maxRetryCount": MessageLookupByLibrary.simpleMessage(
|
||||
"Number of server reconnection"),
|
||||
"maxRetryCountEqual0":
|
||||
MessageLookupByLibrary.simpleMessage("Will retry again and again."),
|
||||
"min": MessageLookupByLibrary.simpleMessage("min"),
|
||||
"ms": MessageLookupByLibrary.simpleMessage("ms"),
|
||||
"name": MessageLookupByLibrary.simpleMessage("Name"),
|
||||
@@ -243,6 +247,7 @@ class MessageLookup extends MessageLookupByLibrary {
|
||||
"Are you sure to use no password?"),
|
||||
"sureToDeleteServer": m14,
|
||||
"termTheme": MessageLookupByLibrary.simpleMessage("Terminal theme"),
|
||||
"times": MessageLookupByLibrary.simpleMessage("Times"),
|
||||
"ttl": MessageLookupByLibrary.simpleMessage("ttl"),
|
||||
"unknown": MessageLookupByLibrary.simpleMessage("unknown"),
|
||||
"unknownError": MessageLookupByLibrary.simpleMessage("Unknown error"),
|
||||
|
||||
@@ -148,6 +148,8 @@ class MessageLookup extends MessageLookupByLibrary {
|
||||
"loss": MessageLookupByLibrary.simpleMessage("丢包率"),
|
||||
"madeWithLove": m8,
|
||||
"max": MessageLookupByLibrary.simpleMessage("最大"),
|
||||
"maxRetryCount": MessageLookupByLibrary.simpleMessage("连接服务器重试次数"),
|
||||
"maxRetryCountEqual0": MessageLookupByLibrary.simpleMessage("会无限重试"),
|
||||
"min": MessageLookupByLibrary.simpleMessage("最小"),
|
||||
"ms": MessageLookupByLibrary.simpleMessage("毫秒"),
|
||||
"name": MessageLookupByLibrary.simpleMessage("名称"),
|
||||
@@ -210,6 +212,7 @@ class MessageLookup extends MessageLookupByLibrary {
|
||||
"sureNoPwd": MessageLookupByLibrary.simpleMessage("确认使用无密码?"),
|
||||
"sureToDeleteServer": m14,
|
||||
"termTheme": MessageLookupByLibrary.simpleMessage("终端主题"),
|
||||
"times": MessageLookupByLibrary.simpleMessage("次"),
|
||||
"ttl": MessageLookupByLibrary.simpleMessage("缓存时间"),
|
||||
"unknown": MessageLookupByLibrary.simpleMessage("未知"),
|
||||
"unknownError": MessageLookupByLibrary.simpleMessage("未知错误"),
|
||||
|
||||
@@ -821,6 +821,26 @@ class S {
|
||||
);
|
||||
}
|
||||
|
||||
/// `Number of server reconnection`
|
||||
String get maxRetryCount {
|
||||
return Intl.message(
|
||||
'Number of server reconnection',
|
||||
name: 'maxRetryCount',
|
||||
desc: '',
|
||||
args: [],
|
||||
);
|
||||
}
|
||||
|
||||
/// `Will retry again and again.`
|
||||
String get maxRetryCountEqual0 {
|
||||
return Intl.message(
|
||||
'Will retry again and again.',
|
||||
name: 'maxRetryCountEqual0',
|
||||
desc: '',
|
||||
args: [],
|
||||
);
|
||||
}
|
||||
|
||||
/// `min`
|
||||
String get min {
|
||||
return Intl.message(
|
||||
@@ -1391,6 +1411,16 @@ class S {
|
||||
);
|
||||
}
|
||||
|
||||
/// `Times`
|
||||
String get times {
|
||||
return Intl.message(
|
||||
'Times',
|
||||
name: 'times',
|
||||
desc: '',
|
||||
args: [],
|
||||
);
|
||||
}
|
||||
|
||||
/// `ttl`
|
||||
String get ttl {
|
||||
return Intl.message(
|
||||
|
||||
Reference in New Issue
Block a user