Update system colors string

Test: Manually tested
Bug: 376092260
Flag: com.android.systemui.shared.new_customization_picker_ui
Change-Id: I0ed979fdac1b280e1ec23bf9ce8a335f77308f3f
diff --git a/res/layout/customization_option_entry_colors.xml b/res/layout/customization_option_entry_colors.xml
index 2709cf9..1011fcb 100644
--- a/res/layout/customization_option_entry_colors.xml
+++ b/res/layout/customization_option_entry_colors.xml
@@ -27,7 +27,7 @@
         style="@style/CustomizationOptionEntryTitleTextStyle"
         android:layout_width="0dp"
         android:layout_height="wrap_content"
-        android:text="@string/color_picker_title"
+        android:text="@string/system_colors_title"
         android:layout_marginEnd="@dimen/customization_option_entry_text_margin_end"
         app:layout_constraintStart_toStartOf="parent"
         app:layout_constraintEnd_toStartOf="@+id/option_entry_colors_icon_container"
diff --git a/res/values/strings.xml b/res/values/strings.xml
index 586117f..573e6f0 100755
--- a/res/values/strings.xml
+++ b/res/values/strings.xml
@@ -370,6 +370,13 @@
     <string name="color_picker_title">System colors</string>
 
     <!--
+    Title for a customization picker section where the user can configure the system colors by
+    selecting from a list of color options.
+    [CHAR LIMIT=32].
+    -->
+    <string name="system_colors_title">Colors</string>
+
+    <!--
     Name of the slot on the "start" side of the bottom of the lock screen, where lock screen
     shortcuts can be added to the lock screen. In left-to-right languages, this is the left-hand
     side button. In right-to-left languages, this is the right-hand side button. [CHAR LIMIT=16].
diff --git a/src/com/android/wallpaper/customization/ui/binder/ThemePickerToolbarBinder.kt b/src/com/android/wallpaper/customization/ui/binder/ThemePickerToolbarBinder.kt
index e35e473..0ed5ff1 100644
--- a/src/com/android/wallpaper/customization/ui/binder/ThemePickerToolbarBinder.kt
+++ b/src/com/android/wallpaper/customization/ui/binder/ThemePickerToolbarBinder.kt
@@ -169,7 +169,7 @@
                     viewModel.selectedOption.collect {
                         val stringResId =
                             when (it) {
-                                COLORS -> ThemePickerR.string.color_picker_title
+                                COLORS -> ThemePickerR.string.system_colors_title
                                 APP_SHAPE_GRID -> ThemePickerR.string.shape_and_grid_title
                                 CLOCK -> ThemePickerR.string.custom_clocks_label
                                 SHORTCUTS ->