diff options
author | Jim Miller <jaggies@google.com> | 2014-10-17 18:28:52 -0700 |
---|---|---|
committer | Jim Miller <jaggies@google.com> | 2014-10-17 18:28:52 -0700 |
commit | aa0376759873893197a0109025fd4ec8beca5929 (patch) | |
tree | aee830652e2530550f31e982d46cae4d950e053a /res | |
parent | 47adff0a8bb4aeeefe6e3d3efc0b2579f6754af0 (diff) | |
download | packages_apps_Settings-aa0376759873893197a0109025fd4ec8beca5929.zip packages_apps_Settings-aa0376759873893197a0109025fd4ec8beca5929.tar.gz packages_apps_Settings-aa0376759873893197a0109025fd4ec8beca5929.tar.bz2 |
Fix bad string in EncryptionInterstitial
The string contains "Talkback", but it should grab one of
the installed Accessibility services so it works on 3rd party
devices.
Fixes bug 17881324
Change-Id: Iee2d8d4ce93c851badc59b5ef21462213f530a96
Diffstat (limited to 'res')
-rw-r--r-- | res/values/strings.xml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/res/values/strings.xml b/res/values/strings.xml index e73825e..0a139d5 100644 --- a/res/values/strings.xml +++ b/res/values/strings.xml @@ -5971,12 +5971,12 @@ <string name="encrypt_talkback_dialog_require_password">Require password?</string> <!-- Message for encryption dialog telling the user that Talkback and other accessibility services will be disabled. --> - <string name="encrypt_talkback_dialog_message_pin">When you enter your PIN to start this device, accessibility services like Talkback won\'t yet be available.</string> + <string name="encrypt_talkback_dialog_message_pin">When you enter your PIN to start this device, accessibility services like <xliff:g id="service" example="TalkBack">%1$s</xliff:g> won\'t yet be available.</string> <!-- Message for encryption dialog telling the user that Talkback and other accessibility services will be disabled. --> - <string name="encrypt_talkback_dialog_message_pattern">When you enter your pattern to start this device, accessibility services like Talkback won\'t yet be available.</string> + <string name="encrypt_talkback_dialog_message_pattern">When you enter your pattern to start this device, accessibility services like <xliff:g id="service" example="TalkBack">%1$s</xliff:g> won\'t yet be available.</string> <!-- Message for encryption dialog telling the user that Talkback and other accessibility services will be disabled. --> - <string name="encrypt_talkback_dialog_message_password">When you enter your password to start this device, accessibility services like Talkback won\'t yet be available.</string> + <string name="encrypt_talkback_dialog_message_password">When you enter your password to start this device, accessibility services like <xliff:g id="service" example="TalkBack">%1$s</xliff:g> won\'t yet be available.</string> </resources> |