diff --git a/app/lib/l10n/app_en.arb b/app/lib/l10n/app_en.arb index 04a6d93c..0abaa717 100644 --- a/app/lib/l10n/app_en.arb +++ b/app/lib/l10n/app_en.arb @@ -1238,9 +1238,9 @@ "@enhanceLowLightParamBrightnessLabel": { "description": "This parameter sets how much brighter the output will be" }, - "collectionEnhancedPhotosLabel": "Enhanced", - "@collectionEnhancedPhotosLabel": { - "description": "List photos enhanced by the app" + "collectionEditedPhotosLabel": "Edited", + "@collectionEditedPhotosLabel": { + "description": "List photos modified by the app, via image enhancements or the image editor" }, "deletePermanentlyLocalConfirmationDialogContent": "Selected items will be deleted permanently from this device.\n\nThis action is nonreversible", "@deletePermanentlyLocalConfirmationDialogContent": { diff --git a/app/lib/l10n/untranslated-messages.txt b/app/lib/l10n/untranslated-messages.txt index 460b20f6..26639ff9 100644 --- a/app/lib/l10n/untranslated-messages.txt +++ b/app/lib/l10n/untranslated-messages.txt @@ -111,7 +111,7 @@ "enhanceIntroDialogDescription", "enhanceLowLightTitle", "enhanceLowLightParamBrightnessLabel", - "collectionEnhancedPhotosLabel", + "collectionEditedPhotosLabel", "deletePermanentlyLocalConfirmationDialogContent", "enhancePortraitBlurTitle", "enhancePortraitBlurParamBlurLabel", @@ -286,7 +286,7 @@ "enhanceIntroDialogDescription", "enhanceLowLightTitle", "enhanceLowLightParamBrightnessLabel", - "collectionEnhancedPhotosLabel", + "collectionEditedPhotosLabel", "deletePermanentlyLocalConfirmationDialogContent", "enhancePortraitBlurTitle", "enhancePortraitBlurParamBlurLabel", @@ -357,6 +357,7 @@ "shareMethodPreviewDescription", "shareMethodOriginalFileTitle", "shareMethodOriginalFileDescription", + "collectionEditedPhotosLabel", "enhanceStyleTransferStyleDialogTitle", "doubleTapExitNotification", "imageEditDiscardDialogTitle", @@ -417,6 +418,7 @@ "shareMethodPreviewDescription", "shareMethodOriginalFileTitle", "shareMethodOriginalFileDescription", + "collectionEditedPhotosLabel", "imageEditToolbarColorLabel", "imageEditToolbarTransformLabel", "imageEditTransformOrientation", @@ -444,6 +446,7 @@ "shareMethodPreviewDescription", "shareMethodOriginalFileTitle", "shareMethodOriginalFileDescription", + "collectionEditedPhotosLabel", "imageEditToolbarColorLabel", "imageEditToolbarTransformLabel", "imageEditTransformOrientation", @@ -491,7 +494,7 @@ "enhanceIntroDialogDescription", "enhanceLowLightTitle", "enhanceLowLightParamBrightnessLabel", - "collectionEnhancedPhotosLabel", + "collectionEditedPhotosLabel", "deletePermanentlyLocalConfirmationDialogContent", "enhancePortraitBlurTitle", "enhancePortraitBlurParamBlurLabel", @@ -593,7 +596,7 @@ "enhanceIntroDialogDescription", "enhanceLowLightTitle", "enhanceLowLightParamBrightnessLabel", - "collectionEnhancedPhotosLabel", + "collectionEditedPhotosLabel", "deletePermanentlyLocalConfirmationDialogContent", "enhancePortraitBlurTitle", "enhancePortraitBlurParamBlurLabel", @@ -674,7 +677,7 @@ "enhanceIntroDialogDescription", "enhanceLowLightTitle", "enhanceLowLightParamBrightnessLabel", - "collectionEnhancedPhotosLabel", + "collectionEditedPhotosLabel", "deletePermanentlyLocalConfirmationDialogContent", "enhancePortraitBlurTitle", "enhancePortraitBlurParamBlurLabel", @@ -755,7 +758,7 @@ "enhanceIntroDialogDescription", "enhanceLowLightTitle", "enhanceLowLightParamBrightnessLabel", - "collectionEnhancedPhotosLabel", + "collectionEditedPhotosLabel", "deletePermanentlyLocalConfirmationDialogContent", "enhancePortraitBlurTitle", "enhancePortraitBlurParamBlurLabel", @@ -836,7 +839,7 @@ "enhanceIntroDialogDescription", "enhanceLowLightTitle", "enhanceLowLightParamBrightnessLabel", - "collectionEnhancedPhotosLabel", + "collectionEditedPhotosLabel", "deletePermanentlyLocalConfirmationDialogContent", "enhancePortraitBlurTitle", "enhancePortraitBlurParamBlurLabel", @@ -917,7 +920,7 @@ "enhanceIntroDialogDescription", "enhanceLowLightTitle", "enhanceLowLightParamBrightnessLabel", - "collectionEnhancedPhotosLabel", + "collectionEditedPhotosLabel", "deletePermanentlyLocalConfirmationDialogContent", "enhancePortraitBlurTitle", "enhancePortraitBlurParamBlurLabel", diff --git a/app/lib/widget/enhanced_photo_browser.dart b/app/lib/widget/enhanced_photo_browser.dart index a7862651..d7c7ae53 100644 --- a/app/lib/widget/enhanced_photo_browser.dart +++ b/app/lib/widget/enhanced_photo_browser.dart @@ -124,7 +124,7 @@ class _EnhancedPhotoBrowserState extends State return Column( children: [ AppBar( - title: Text(L10n.global().collectionEnhancedPhotosLabel), + title: Text(L10n.global().collectionEditedPhotosLabel), elevation: 0, ), Expanded( @@ -141,7 +141,7 @@ class _EnhancedPhotoBrowserState extends State return Column( children: [ AppBar( - title: Text(L10n.global().collectionEnhancedPhotosLabel), + title: Text(L10n.global().collectionEditedPhotosLabel), elevation: 0, ), Expanded( @@ -192,7 +192,7 @@ class _EnhancedPhotoBrowserState extends State } Widget _buildNormalAppBar(BuildContext context) => SliverAppBar( - title: Text(L10n.global().collectionEnhancedPhotosLabel), + title: Text(L10n.global().collectionEditedPhotosLabel), ); Widget _buildSelectionAppBar(BuildContext context) { diff --git a/app/lib/widget/home_albums.dart b/app/lib/widget/home_albums.dart index a34780c5..1d6c6977 100644 --- a/app/lib/widget/home_albums.dart +++ b/app/lib/widget/home_albums.dart @@ -271,7 +271,7 @@ class _HomeAlbumsState extends State SelectableItem _buildEnhancedPhotosItem(BuildContext context) { return _ButtonListItem( icon: Icons.auto_fix_high_outlined, - label: L10n.global().collectionEnhancedPhotosLabel, + label: L10n.global().collectionEditedPhotosLabel, onTap: () { if (!isSelectionMode) { Navigator.of(context).pushNamed(EnhancedPhotoBrowser.routeName,