Rename albums tab

This commit is contained in:
Ming Ming 2021-08-29 22:16:42 +08:00
parent 90b79a65e0
commit c7358084f8
3 changed files with 12 additions and 5 deletions

View file

@ -8,9 +8,9 @@
"@photosTabLabel": { "@photosTabLabel": {
"description": "Label of the tab that lists user photos" "description": "Label of the tab that lists user photos"
}, },
"albumsTabLabel": "Albums", "collectionsTooltip": "Collections",
"@albumsTabLabel": { "@collectionsTooltip": {
"description": "Label of the tab that lists user albums" "description": "Groups of photos, e.g., albums, trash bin, etc"
}, },
"zoomTooltip": "Zoom", "zoomTooltip": "Zoom",
"@zoomTooltip": { "@zoomTooltip": {

View file

@ -1,5 +1,6 @@
{ {
"el": [ "el": [
"collectionsTooltip",
"settingsViewerSectionTitle", "settingsViewerSectionTitle",
"settingsScreenBrightnessTitle", "settingsScreenBrightnessTitle",
"settingsScreenBrightnessDescription", "settingsScreenBrightnessDescription",
@ -33,7 +34,12 @@
"emptyTrashbinConfirmationDialogContent" "emptyTrashbinConfirmationDialogContent"
], ],
"es": [
"collectionsTooltip"
],
"fr": [ "fr": [
"collectionsTooltip",
"settingsViewerSectionTitle", "settingsViewerSectionTitle",
"settingsScreenBrightnessTitle", "settingsScreenBrightnessTitle",
"settingsScreenBrightnessDescription", "settingsScreenBrightnessDescription",
@ -48,6 +54,7 @@
], ],
"ru": [ "ru": [
"collectionsTooltip",
"settingsViewerSectionTitle", "settingsViewerSectionTitle",
"settingsScreenBrightnessTitle", "settingsScreenBrightnessTitle",
"settingsScreenBrightnessDescription", "settingsScreenBrightnessDescription",

View file

@ -74,8 +74,8 @@ class _HomeState extends State<Home> {
label: L10n.global().photosTabLabel, label: L10n.global().photosTabLabel,
), ),
BottomNavigationBarItem( BottomNavigationBarItem(
icon: const Icon(Icons.photo_album_outlined), icon: const Icon(Icons.grid_view_outlined),
label: L10n.global().albumsTabLabel, label: L10n.global().collectionsTooltip,
), ),
], ],
currentIndex: _nextPage, currentIndex: _nextPage,