chore: sync tip

This commit is contained in:
lollipopkit
2023-09-25 17:43:45 +08:00
parent 7bbaa5f5ab
commit df84aeb8b2
14 changed files with 60 additions and 28 deletions

View File

@@ -2,9 +2,9 @@
class BuildData {
static const String name = "ServerBox";
static const int build = 574;
static const int build = 575;
static const String engine = "3.13.5";
static const String buildAt = "2023-09-24 15:49:22";
static const int modifications = 12;
static const String buildAt = "2023-09-24 15:59:57";
static const int modifications = 13;
static const int script = 18;
}

View File

@@ -200,6 +200,7 @@
"sureNoPwd": "Bist du sicher, dass du kein Passwort verwenden willst?",
"sureStop": "Sind Sie sicher, dass Sie [{item}] stoppen möchten?",
"sureToDeleteServer": "Bist du sicher, dass du [{server}] löschen willst?",
"syncTip": "Nach der automatischen Synchronisierung kann es erforderlich sein, die App neu zu starten, damit bestimmte Änderungen wirksam werden.",
"system": "Systeme",
"tag": "Tags",
"terminal": "Terminal",

View File

@@ -200,6 +200,7 @@
"sureNoPwd": "Are you sure to use no password?",
"sureStop": "Sure to stop [{item}] ?",
"sureToDeleteServer": "Are you sure to delete server [{server}]?",
"syncTip": "After auto sync, a restart may be required for some changes to take effect.",
"system": "System",
"tag": "Tags",
"terminal": "Terminal",

View File

@@ -200,6 +200,7 @@
"sureNoPwd": "Apakah Anda pasti tidak menggunakan kata sandi?",
"sureStop": "Anda yakin ingin menghentikan [{item}]?",
"sureToDeleteServer": "Apakah Anda pasti akan menghapus server [{server}]?",
"syncTip": "Setelah sinkronisasi otomatis, mungkin perlu memulai ulang aplikasi agar perubahan tertentu dapat diterapkan.",
"system": "Sistem",
"tag": "Tag",
"terminal": "Terminal",

View File

@@ -200,6 +200,7 @@
"sureNoPwd": "确认使用无密码?",
"sureStop": "确定要停止 [{item}] 吗?",
"sureToDeleteServer": "你确定要删除服务器 [{server}] 吗?",
"syncTip": "在自动同步后,可能需要重新启动,某些更改才能生效。",
"system": "系统",
"tag": "标签",
"terminal": "终端",

View File

@@ -200,6 +200,7 @@
"sureNoPwd": "確認使用無密碼?",
"sureStop": "確定要停止 [{item}] 嗎?",
"sureToDeleteServer": "你確定要刪除服務器 [{server}] 嗎?",
"syncTip": "在自動同步後,可能需要重新啟動,某些更改才能生效。",
"system": "系統",
"tag": "标签",
"terminal": "终端機",

View File

@@ -35,6 +35,12 @@ class BackupPage extends StatelessWidget {
}
Widget _buildBody(BuildContext context) {
final tip = () {
if (isMacOS || isIOS) {
return '${l10n.syncTip}\n${l10n.backupTip}';
}
return l10n.backupTip;
}();
return Column(
mainAxisAlignment: MainAxisAlignment.center,
crossAxisAlignment: CrossAxisAlignment.center,
@@ -44,7 +50,7 @@ class BackupPage extends StatelessWidget {
Padding(
padding: const EdgeInsets.all(37),
child: Text(
l10n.backupTip,
tip,
textAlign: TextAlign.center,
),
),