Touchpad: add final strings for tap dragging

The title string was approved by UX as it is, so mark it as ready to
translate, and add a summary line.

Screenshot: go/b-324058706-strings-screenshot

Bug: 324058706
Bug: 321978150
Change-Id: Iaa757be16b58b23fba8a6841621ad8000b51c250
Test: Open touchpad settings, check new summary line appears
This commit is contained in:
Harry Cutts
2024-04-03 14:27:42 +00:00
parent 9cfbe60998
commit 46e5fd8c28
2 changed files with 6 additions and 4 deletions

View File

@@ -4419,8 +4419,10 @@
<!-- Title text for 'Tap to click'. [CHAR LIMIT=35] --> <!-- Title text for 'Tap to click'. [CHAR LIMIT=35] -->
<string name="trackpad_tap_to_click">Tap to click</string> <string name="trackpad_tap_to_click">Tap to click</string>
<!-- TODO(b/321978150): mark as translatable once we have finalized text from UX. --> <!-- Title text for 'Tap dragging', a touchpad setting which allows dragging of UI elements by tapping the touchpad with a single finger and then moving it. [CHAR LIMIT=35] -->
<string name="trackpad_tap_dragging" translatable="false">Tap dragging</string> <string name="trackpad_tap_dragging_title">Tap dragging</string>
<!-- Summary text for 'Tap dragging', a touchpad setting which allows dragging of UI elements by tapping the touchpad with a single finger and then moving it. [CHAR LIMIT=60] -->
<string name="trackpad_tap_dragging_summary">Tap and drag your finger on the touchpad to move objects</string>
<!-- Title text for 'Touchpad gestures' [CHAR LIMIT=35] --> <!-- Title text for 'Touchpad gestures' [CHAR LIMIT=35] -->
<string name="trackpad_touchpad_gesture_title">Touchpad gestures</string> <string name="trackpad_touchpad_gesture_title">Touchpad gestures</string>
<!-- Summary text for 'Touchpad gestures' [CHAR LIMIT=60] --> <!-- Summary text for 'Touchpad gestures' [CHAR LIMIT=60] -->

View File

@@ -48,10 +48,10 @@
android:order="30" android:order="30"
settings:keywords="@string/keywords_trackpad_bottom_right_tap"/> settings:keywords="@string/keywords_trackpad_bottom_right_tap"/>
<!-- TODO(b/321978150): add a summary line once we have finalized text from UX. -->
<SwitchPreferenceCompat <SwitchPreferenceCompat
android:key="trackpad_tap_dragging" android:key="trackpad_tap_dragging"
android:title="@string/trackpad_tap_dragging" android:title="@string/trackpad_tap_dragging_title"
android:summary="@string/trackpad_tap_dragging_summary"
settings:controller="com.android.settings.inputmethod.TrackpadTapDraggingPreferenceController" settings:controller="com.android.settings.inputmethod.TrackpadTapDraggingPreferenceController"
android:order="35"/> android:order="35"/>