From cb344cb0145cbee078265491b1167cf0d2b7d2cd Mon Sep 17 00:00:00 2001 From: Alexandre Garnier Date: Sat, 26 Jul 2025 01:07:59 +0200 Subject: [PATCH] fix(mobile): distinguish backup settings title from 'backup_controller_page_backup' translation entry (#20237) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Different translation in some languages like in French ('Sauvegarde' for title, otherwise 'Sauvegardé') --- i18n/en.json | 1 + mobile/lib/pages/common/settings.page.dart | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/i18n/en.json b/i18n/en.json index f75af26611..5969881299 100644 --- a/i18n/en.json +++ b/i18n/en.json @@ -511,6 +511,7 @@ "back_close_deselect": "Back, close, or deselect", "background_location_permission": "Background location permission", "background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name", + "backup": "Backup", "backup_album_selection_page_albums_device": "Albums on device ({count})", "backup_album_selection_page_albums_tap": "Tap to include, double tap to exclude", "backup_album_selection_page_assets_scatter": "Assets can scatter across multiple albums. Thus, albums can be included or excluded during the backup process.", diff --git a/mobile/lib/pages/common/settings.page.dart b/mobile/lib/pages/common/settings.page.dart index f5c42c9321..d18a7a1133 100644 --- a/mobile/lib/pages/common/settings.page.dart +++ b/mobile/lib/pages/common/settings.page.dart @@ -34,7 +34,7 @@ enum SettingSection { "asset_viewer_settings_subtitle", ), backup( - 'backup_controller_page_backup', + 'backup', Icons.cloud_upload_outlined, "backup_setting_subtitle", ),