diff options
| author | 2020-09-23 02:28:20 +0800 | |
|---|---|---|
| committer | 2020-09-23 03:27:51 +0800 | |
| commit | 137af3fc8f964fdfef1b5ebdf680bdc15f5c3ce0 (patch) | |
| tree | c64053663e4e852f2a9e583a1f1df9b7bb620481 | |
| parent | 90ec06cf470055940fdd10ee2c15eea7848f2b08 (diff) | |
Update more intuitive string in shortcut warning dialog
Root cause:
The title for the shortcut warning dialog "Turn on TalkBack?" and its button "Turn on", "Don't Turn on" will misdirect users to think it will directly turn on service, but it actually turn on shortcut not service.
Solution:
Change the tile from "Turn on TalkBack?" to "Turn on TalkBack shortcut?"
and "Turn on accessibility features?" to "Turn on shortcut for accessibility features?"
Bug: 156908620
Test: manual test
Change-Id: Ib159f6c838ef717bbaa955b44872945ffdbc84ba
| -rw-r--r-- | core/res/res/values/strings.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/res/res/values/strings.xml b/core/res/res/values/strings.xml index 03975daf1f76..25a9bbd8b445 100644 --- a/core/res/res/values/strings.xml +++ b/core/res/res/values/strings.xml @@ -4374,7 +4374,7 @@ </string> <!-- Dialog title for dialog shown when the multiple accessibility shortcut is activated, and we want to confirm that the user understands what's going to happen. [CHAR LIMIT=none] --> - <string name="accessibility_shortcut_multiple_service_warning_title">Turn on accessibility features?</string> + <string name="accessibility_shortcut_multiple_service_warning_title">Turn on shortcut for accessibility features?</string> <!-- Message shown in dialog when user is in the process of enabling the multiple accessibility service via the volume buttons shortcut for the first time. [CHAR LIMIT=none] --> <string name="accessibility_shortcut_multiple_service_warning">Holding down both volume keys for a few seconds turns on accessibility features. This may change how your device works.\n\nCurrent features:\n<xliff:g id="service" example="TalkBack">%1$s</xliff:g>\nYou can change selected features in Settings > Accessibility.</string> @@ -4383,7 +4383,7 @@ <string name="accessibility_shortcut_multiple_service_list">\t• <xliff:g id="service" example="TalkBack">%1$s</xliff:g>\n</string> <!-- Dialog title for dialog shown when this accessibility shortcut is activated, and we want to confirm that the user understands what's going to happen. [CHAR LIMIT=none] --> - <string name="accessibility_shortcut_single_service_warning_title">Turn on <xliff:g id="service" example="TalkBack">%1$s</xliff:g>?</string> + <string name="accessibility_shortcut_single_service_warning_title">Turn on <xliff:g id="service" example="TalkBack">%1$s</xliff:g> shortcut?</string> <!-- Message shown in dialog when user is in the process of enabling this accessibility service via the volume buttons shortcut for the first time. [CHAR LIMIT=none] --> <string name="accessibility_shortcut_single_service_warning">Holding down both volume keys for a few seconds turns on <xliff:g id="service" example="TalkBack">%1$s</xliff:g>, an accessibility feature. This may change how your device works.\n\nYou can change this shortcut to another feature in Settings > Accessibility.</string> |