mirror of
https://github.com/lollipopkit/flutter_server_box.git
synced 2026-02-23 16:45:27 +01:00
fix & opt
- fix duplicated ssh connecting - opt backup page ui
This commit is contained in:
@@ -171,6 +171,7 @@ class MessageLookup extends MessageLookupByLibrary {
|
||||
"pwd": MessageLookupByLibrary.simpleMessage("Password"),
|
||||
"rename": MessageLookupByLibrary.simpleMessage("Rename"),
|
||||
"reportBugsOnGithubIssue": m9,
|
||||
"restore": MessageLookupByLibrary.simpleMessage("Restore"),
|
||||
"restoreSuccess": MessageLookupByLibrary.simpleMessage(
|
||||
"Restore success. Restart app to apply."),
|
||||
"restoreSureWithDate": m10,
|
||||
|
||||
@@ -68,7 +68,7 @@ class MessageLookup extends MessageLookupByLibrary {
|
||||
"backDir": MessageLookupByLibrary.simpleMessage("返回上一级"),
|
||||
"backup": MessageLookupByLibrary.simpleMessage("备份"),
|
||||
"backupTip": MessageLookupByLibrary.simpleMessage(
|
||||
"导出的数据仅进行了简单加密,请妥善保管。\n恢复的数据(除了设置)不会覆盖现有数据。"),
|
||||
"导出的数据仅进行了简单加密,请妥善保管。\n除了设置项,恢复的数据不会覆盖现有数据。"),
|
||||
"backupVersionNotMatch":
|
||||
MessageLookupByLibrary.simpleMessage("备份版本不匹配,无法恢复"),
|
||||
"cancel": MessageLookupByLibrary.simpleMessage("取消"),
|
||||
@@ -150,6 +150,7 @@ class MessageLookup extends MessageLookupByLibrary {
|
||||
"pwd": MessageLookupByLibrary.simpleMessage("密码"),
|
||||
"rename": MessageLookupByLibrary.simpleMessage("重命名"),
|
||||
"reportBugsOnGithubIssue": m9,
|
||||
"restore": MessageLookupByLibrary.simpleMessage("恢复"),
|
||||
"restoreSuccess":
|
||||
MessageLookupByLibrary.simpleMessage("恢复成功,需要重启App来应用更改"),
|
||||
"restoreSureWithDate": m10,
|
||||
|
||||
@@ -1251,6 +1251,16 @@ class S {
|
||||
);
|
||||
}
|
||||
|
||||
/// `Restore`
|
||||
String get restore {
|
||||
return Intl.message(
|
||||
'Restore',
|
||||
name: 'restore',
|
||||
desc: '',
|
||||
args: [],
|
||||
);
|
||||
}
|
||||
|
||||
/// `Are you sure to restore from {date} ?`
|
||||
String restoreSureWithDate(Object date) {
|
||||
return Intl.message(
|
||||
|
||||
Reference in New Issue
Block a user