Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6bb07bf0 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Add theme component options to settings keywords."

parents 6bc3378f be8345e5
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -7406,6 +7406,9 @@
    <!-- List of synonyms for the Wallpaper picker setting, used to match in settings search [CHAR LIMIT=NONE] -->
    <string name="keywords_wallpaper">background, screen, lockscreen, theme</string>
    <!-- List of synonyms for the Styles picker setting, used to match in settings search [CHAR LIMIT=NONE] -->
    <string name="keywords_styles">icon shape, accent color, font</string>
    <!-- List of synonyms for the Default Assist and Voice input setting, used to match in settings search [CHAR LIMIT=NONE] -->
    <string name="keywords_assist_input">default, assistant</string>
@@ -10001,8 +10004,6 @@
    <!-- Notification log debug tool: the word 'none' -->
    <string name="notification_log_details_ranking_none">Ranking object doesn\'t contain this key.</string>
    <!-- [CHAR_LIMIT=NONE] Developer Settings: Title of the settings category for theme overlays. -->
    <string name="theme_customization_category">Theming</string>
    <!-- [CHAR_LIMIT=NONE] Developer Settings: Label for the option that turns off customizations for a given category.-->
    <string name="theme_customization_device_default">Device default</string>
+1 −3
Original line number Diff line number Diff line
@@ -69,9 +69,7 @@ public class WallpaperPreferenceController extends BasePreferenceController {
    public String getKeywords() {
        StringBuilder sb = new StringBuilder(mContext.getString(R.string.keywords_wallpaper));
        if (areStylesAvailable()) {
            // TODO(b/130759285): Create a new string keywords_styles_and_wallpaper
            sb.append(", ").append(mContext.getString(R.string.theme_customization_category))
                    .append(", ").append(mContext.getString(R.string.keywords_dark_ui_mode));
            sb.append(", ").append(mContext.getString(R.string.keywords_styles));
        }
        return sb.toString();
    }
+2 −2
Original line number Diff line number Diff line
@@ -123,7 +123,7 @@ public class WallpaperPreferenceControllerTest {
        assertThat(mController.getKeywords())
                .contains(mContext.getString(R.string.keywords_wallpaper));
        assertThat(mController.getKeywords())
                .doesNotContain(mContext.getString(R.string.theme_customization_category));
                .doesNotContain(mContext.getString(R.string.keywords_styles));
    }

    @Test
@@ -136,7 +136,7 @@ public class WallpaperPreferenceControllerTest {
        assertThat(mController.getKeywords())
                .contains(mContext.getString(R.string.keywords_wallpaper));
        assertThat(mController.getKeywords())
                .contains(mContext.getString(R.string.theme_customization_category));
                .contains(mContext.getString(R.string.keywords_styles));
    }

    @Test