From c7358084f8bcb23db60cd52d05f81a2ec6dfc504 Mon Sep 17 00:00:00 2001 From: Ming Ming Date: Sun, 29 Aug 2021 22:16:42 +0800 Subject: [PATCH] Rename albums tab --- lib/l10n/app_en.arb | 6 +++--- lib/l10n/untranslated-messages.txt | 7 +++++++ lib/widget/home.dart | 4 ++-- 3 files changed, 12 insertions(+), 5 deletions(-) diff --git a/lib/l10n/app_en.arb b/lib/l10n/app_en.arb index 4ed7b121..72ea295d 100644 --- a/lib/l10n/app_en.arb +++ b/lib/l10n/app_en.arb @@ -8,9 +8,9 @@ "@photosTabLabel": { "description": "Label of the tab that lists user photos" }, - "albumsTabLabel": "Albums", - "@albumsTabLabel": { - "description": "Label of the tab that lists user albums" + "collectionsTooltip": "Collections", + "@collectionsTooltip": { + "description": "Groups of photos, e.g., albums, trash bin, etc" }, "zoomTooltip": "Zoom", "@zoomTooltip": { diff --git a/lib/l10n/untranslated-messages.txt b/lib/l10n/untranslated-messages.txt index b220ed70..f7c6b0ff 100644 --- a/lib/l10n/untranslated-messages.txt +++ b/lib/l10n/untranslated-messages.txt @@ -1,5 +1,6 @@ { "el": [ + "collectionsTooltip", "settingsViewerSectionTitle", "settingsScreenBrightnessTitle", "settingsScreenBrightnessDescription", @@ -33,7 +34,12 @@ "emptyTrashbinConfirmationDialogContent" ], + "es": [ + "collectionsTooltip" + ], + "fr": [ + "collectionsTooltip", "settingsViewerSectionTitle", "settingsScreenBrightnessTitle", "settingsScreenBrightnessDescription", @@ -48,6 +54,7 @@ ], "ru": [ + "collectionsTooltip", "settingsViewerSectionTitle", "settingsScreenBrightnessTitle", "settingsScreenBrightnessDescription", diff --git a/lib/widget/home.dart b/lib/widget/home.dart index 0a160983..0c01f3b8 100644 --- a/lib/widget/home.dart +++ b/lib/widget/home.dart @@ -74,8 +74,8 @@ class _HomeState extends State { label: L10n.global().photosTabLabel, ), BottomNavigationBarItem( - icon: const Icon(Icons.photo_album_outlined), - label: L10n.global().albumsTabLabel, + icon: const Icon(Icons.grid_view_outlined), + label: L10n.global().collectionsTooltip, ), ], currentIndex: _nextPage,