diff --git a/i18n/en.json b/i18n/en.json index 771968dff4..065a2d601f 100644 --- a/i18n/en.json +++ b/i18n/en.json @@ -521,8 +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.", + "always_keep_photos_hint": "Free Up Space will keep all photos on this device.", + "always_keep_videos_hint": "Free Up Space will keep 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.", @@ -760,8 +760,8 @@ "cleanup_icloud_shared_albums_excluded": "iCloud Shared Albums are excluded from the scan", "cleanup_no_assets_found": "No backed up assets found matching your criteria", "cleanup_preview_title": "Assets to remove ({count})", - "cleanup_step3_description": "Scan for backed up assets matching your date and keep settings", - "cleanup_step4_summary": "{count} assets created before {date} are queued for removal from your device", + "cleanup_step3_description": "Scan for backed up assets matching your date and keep settings.", + "cleanup_step4_summary": "{count} assets created before {date} are queued for removal from your device.", "cleanup_storage_savings": "Free up {size} of storage", "cleanup_trash_hint": "To fully reclaim storage space, open the system gallery app and empty the trash", "clear": "Clear", @@ -1328,10 +1328,10 @@ "keep_albums": "Keep albums", "keep_albums_count": "Keeping {count} {count, plural, one {album} other {albums}}", "keep_all": "Keep All", - "keep_description": "Keep an extra copy of selected items on this device by excluding them from Free Up Space.", + "keep_description": "Choose what stays on your device when freeing up space.", "keep_favorites": "Keep favorites", "keep_on_device": "Keep on device", - "keep_on_device_hint": "Select items to keep an extra copy on this device", + "keep_on_device_hint": "Select items to keep on this device", "keep_this_delete_others": "Keep this, delete others", "keeping": "Keeping: {items}", "kept_this_deleted_others": "Kept this asset and deleted {count, plural, one {# asset} other {# assets}}", diff --git a/mobile/lib/providers/cleanup.provider.dart b/mobile/lib/providers/cleanup.provider.dart index 62345b24d6..2b8046f473 100644 --- a/mobile/lib/providers/cleanup.provider.dart +++ b/mobile/lib/providers/cleanup.provider.dart @@ -137,11 +137,8 @@ class CleanupNotifier extends StateNotifier { keepFavorites: state.keepFavorites, keepAlbumIds: state.keepAlbumIds, ); - state = state.copyWith( - assetsToDelete: result.assets, - totalBytes: result.totalBytes, - isScanning: false, - ); + + state = state.copyWith(assetsToDelete: result.assets, totalBytes: result.totalBytes, isScanning: false); } catch (e) { state = state.copyWith(isScanning: false); rethrow; diff --git a/mobile/lib/widgets/settings/free_up_space_settings.dart b/mobile/lib/widgets/settings/free_up_space_settings.dart index 6b82aa09a2..1c9ca7d6a6 100644 --- a/mobile/lib/widgets/settings/free_up_space_settings.dart +++ b/mobile/lib/widgets/settings/free_up_space_settings.dart @@ -240,7 +240,7 @@ class _FreeUpSpaceSettingsState extends ConsumerState { // Keep on device settings card Padding( - padding: const EdgeInsets.symmetric(horizontal: 16.0), + padding: const EdgeInsets.symmetric(horizontal: 12.0), child: Card( elevation: 0, shape: RoundedRectangleBorder(