Merge "Changed app string changes in user aspect ratio settings" into udc-qpr-dev

This commit is contained in:
Massimo Carli
2023-09-12 10:09:19 +00:00
committed by Android (Google) Code Review
2 changed files with 3 additions and 3 deletions

View File

@@ -12147,8 +12147,8 @@
<string name="aspect_ratio_summary">Choose an aspect ratio to view this app if it hasn\'t been designed to fit your <xliff:g id="device_name">%1$s</xliff:g></string>
<!-- [CHAR LIMIT=NONE] Aspect ratio suggested apps filter label -->
<string name="user_aspect_ratio_suggested_apps_label">Suggested apps</string>
<!-- [CHAR LIMIT=NONE] Filter label for apps that have user aspect ratio override applied -->
<string name="user_aspect_ratio_overridden_apps_label">Apps you have overridden</string>
<!-- [CHAR LIMIT=14] Filter label for apps that have user aspect ratio changed -->
<string name="user_aspect_ratio_changed_apps_label">Changed apps</string>
<!-- [CHAR LIMIT=NONE] App default aspect ratio entry -->
<string name="user_aspect_ratio_app_default">App default</string>
<!-- [CHAR LIMIT=NONE] Fullscreen aspect ratio entry -->

View File

@@ -217,5 +217,5 @@ class UserAspectRatioAppListModel(private val context: Context)
private enum class SpinnerItem(val stringResId: Int) {
Suggested(R.string.user_aspect_ratio_suggested_apps_label),
All(R.string.filter_all_apps),
Overridden(R.string.user_aspect_ratio_overridden_apps_label)
Overridden(R.string.user_aspect_ratio_changed_apps_label)
}