opt.: detect sync conflict

This commit is contained in:
lollipopkit
2023-12-04 14:36:32 +08:00
parent 38cdef9458
commit 22901bb856
14 changed files with 104 additions and 23 deletions

View File

@@ -182,6 +182,12 @@ abstract class S {
/// **'Auto'**
String get auto;
/// No description provided for @autoBackupConflict.
///
/// In en, this message translates to:
/// **'Only one automatic backup can be turned on at the same time.'**
String get autoBackupConflict;
/// No description provided for @autoCheckUpdate.
///
/// In en, this message translates to:
@@ -1574,6 +1580,12 @@ abstract class S {
/// **'No paired Apple Watch'**
String get watchNotPaired;
/// No description provided for @webdavSettingEmpty.
///
/// In en, this message translates to:
/// **'Webdav setting is empty'**
String get webdavSettingEmpty;
/// No description provided for @whenOpenApp.
///
/// In en, this message translates to:

View File

@@ -48,6 +48,9 @@ class SDe extends S {
@override
String get auto => 'System folgen';
@override
String get autoBackupConflict => 'Es kann nur eine automatische Sicherung gleichzeitig aktiviert werden.';
@override
String get autoCheckUpdate => 'Aktualisierung automatisch prüfen';
@@ -782,6 +785,9 @@ class SDe extends S {
@override
String get watchNotPaired => 'Keine gekoppelte Apple Watch';
@override
String get webdavSettingEmpty => 'Webdav-Einstellungen sind leer';
@override
String get whenOpenApp => 'Beim Öffnen der App';

View File

@@ -48,6 +48,9 @@ class SEn extends S {
@override
String get auto => 'Auto';
@override
String get autoBackupConflict => 'Only one automatic backup can be turned on at the same time.';
@override
String get autoCheckUpdate => 'Auto check update';
@@ -782,6 +785,9 @@ class SEn extends S {
@override
String get watchNotPaired => 'No paired Apple Watch';
@override
String get webdavSettingEmpty => 'Webdav setting is empty';
@override
String get whenOpenApp => 'When opening the app';

View File

@@ -48,6 +48,9 @@ class SId extends S {
@override
String get auto => 'Auto';
@override
String get autoBackupConflict => 'Hanya satu pencadangan otomatis yang dapat diaktifkan pada saat yang bersamaan.';
@override
String get autoCheckUpdate => 'Periksa pembaruan otomatis';
@@ -782,6 +785,9 @@ class SId extends S {
@override
String get watchNotPaired => 'Tidak ada Apple Watch yang dipasangkan';
@override
String get webdavSettingEmpty => 'Pengaturan webdav kosong';
@override
String get whenOpenApp => 'Saat membuka aplikasi';

View File

@@ -48,6 +48,9 @@ class SZh extends S {
@override
String get auto => '自动';
@override
String get autoBackupConflict => '只能同时开启一个自动备份';
@override
String get autoCheckUpdate => '自动检查更新';
@@ -782,6 +785,9 @@ class SZh extends S {
@override
String get watchNotPaired => '没有已配对的 Apple Watch';
@override
String get webdavSettingEmpty => 'Webdav 设置项为空';
@override
String get whenOpenApp => '当打开 App 时';
@@ -840,6 +846,9 @@ class SZhTw extends SZh {
@override
String get auto => '自動';
@override
String get autoBackupConflict => '只能同時開啓壹個自動備份';
@override
String get autoCheckUpdate => '自動檢查更新';
@@ -1574,6 +1583,9 @@ class SZhTw extends SZh {
@override
String get watchNotPaired => '沒有已配對的 Apple Watch';
@override
String get webdavSettingEmpty => 'Webdav 設置項爲空';
@override
String get whenOpenApp => '當打開 App 時';