commit 3ed37cc4a6bf02974288add6e6635e87c69cc80a parent 147d168ea429efef395df7d5b04987cad1f16cca Author: mike a. <mavduevskiy@mozilla.com> Date: Wed, 12 Nov 2025 19:32:05 +0000 Bug 1998775 - Update the fun group naming from other to featured r=android-reviewers,android-l10n-reviewers,twhite,flod Differential Revision: https://phabricator.services.mozilla.com/D271647 Diffstat:
3 files changed, 5 insertions(+), 3 deletions(-)
diff --git a/mobile/android/fenix/app/src/androidTest/java/org/mozilla/fenix/ui/robots/SettingsSubMenuCustomizeRobot.kt b/mobile/android/fenix/app/src/androidTest/java/org/mozilla/fenix/ui/robots/SettingsSubMenuCustomizeRobot.kt @@ -176,7 +176,7 @@ class SettingsSubMenuCustomizeRobot { verifyAppIconOptionIsDisplayed( composeTestRule, // Other section - R.string.alternative_app_icon_group_other, + R.string.alternative_app_icon_group_featured, R.string.alternative_app_icon_option_retro_2004, R.string.alternative_app_icon_option_pixelated, R.string.alternative_app_icon_option_cuddling, diff --git a/mobile/android/fenix/app/src/main/java/org/mozilla/fenix/iconpicker/AppIconRepository.kt b/mobile/android/fenix/app/src/main/java/org/mozilla/fenix/iconpicker/AppIconRepository.kt @@ -41,7 +41,7 @@ class DefaultAppIconRepository( override val groupedAppIcons: Map<IconGroupTitle, List<AppIcon>> get() = mapOf( - IconGroupTitle(R.string.alternative_app_icon_group_other) to listOf( + IconGroupTitle(R.string.alternative_app_icon_group_featured) to listOf( AppIcon.AppRetro2004, AppIcon.AppPixelated, AppIcon.AppCuddling, diff --git a/mobile/android/fenix/app/src/main/res/values/strings.xml b/mobile/android/fenix/app/src/main/res/values/strings.xml @@ -960,7 +960,9 @@ <!-- Title for the "Gradients" group of alternative app icon variants in the icon picker screen. This group contains icons with gradient backgrounds inspired by natural light conditions. --> <string name="alternative_app_icon_group_gradients">Gradients</string> <!-- Title for the "Other" group of alternative app icon variants in the icon picker screen. This group includes retro, pixel art, themed, and artist-created icons. --> - <string name="alternative_app_icon_group_other">Other</string> + <string name="alternative_app_icon_group_other" tools:ignore="UnusedResources" moz:removedIn="146">Other</string> + <!-- Title for the "Featured" group of alternative app icon variants in the icon picker screen. This group includes retro, pixel art, themed, and artist-created icons. --> + <string name="alternative_app_icon_group_featured">Featured</string> <!-- Title to show in alert when user selects an alternative app icon--> <string name="restart_warning_dialog_title">Change app icon?</string> <!-- Message to warn users that applying an alternative app icon may require an app restart. Whether or not the app closes depends on what version of Android it is, so we use the word "may" instead of "will". %1$s is replaced by the brand name (e.g. Firefox). -->