From 02fd8d8259fe66790b89f18513bcfe402f893f9a Mon Sep 17 00:00:00 2001 From: Alex Date: Fri, 23 Jan 2026 11:03:25 -0600 Subject: [PATCH] more copywriting --- i18n/en.json | 2 ++ .../lib/widgets/settings/free_up_space_settings.dart | 11 +++++++++++ 2 files changed, 13 insertions(+) diff --git a/i18n/en.json b/i18n/en.json index 5b4f616ef9..0d42303985 100644 --- a/i18n/en.json +++ b/i18n/en.json @@ -521,6 +521,8 @@ "allowed": "Allowed", "alt_text_qr_code": "QR code image", "always_keep": "Always keep", + "always_keep_photos_hint": "Free Up Space will keep an extra copy of all photos on this device.", + "always_keep_videos_hint": "Free Up Space will keep an extra copy of all videos on this device.", "anti_clockwise": "Anti-clockwise", "api_key": "API Key", "api_key_description": "This value will only be shown once. Please be sure to copy it before closing the window.", diff --git a/mobile/lib/widgets/settings/free_up_space_settings.dart b/mobile/lib/widgets/settings/free_up_space_settings.dart index 137e20532b..ec3c0f3dce 100644 --- a/mobile/lib/widgets/settings/free_up_space_settings.dart +++ b/mobile/lib/widgets/settings/free_up_space_settings.dart @@ -335,6 +335,17 @@ class _FreeUpSpaceSettingsState extends ConsumerState { _onKeepSettingsChanged(); }, ), + if (state.keepMediaType != AssetKeepType.none) ...[ + const SizedBox(height: 8), + Text( + state.keepMediaType == AssetKeepType.photosOnly + ? 'always_keep_photos_hint'.t(context: context) + : 'always_keep_videos_hint'.t(context: context), + style: context.textTheme.bodySmall?.copyWith( + color: context.colorScheme.onSurfaceVariant, + ), + ), + ], ], ), ),