From e68f5224e4359aef7f62c94130d5b9b221bee389 Mon Sep 17 00:00:00 2001 From: Paul Lawrence Date: Wed, 23 Jul 2014 14:14:53 -0700 Subject: [PATCH] Show correct string when prompting for pattern before encrypting Bug: 16505763 Change-Id: I05d874be7651f68688d6582236541f418ec6afc2 --- res/values/strings.xml | 6 ++++++ src/com/android/settings/CryptKeeperSettings.java | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/res/values/strings.xml b/res/values/strings.xml index 76fdafc0961..1d910769e23 100644 --- a/res/values/strings.xml +++ b/res/values/strings.xml @@ -831,6 +831,12 @@ You need to set a lock screen PIN or password before you can start encryption. + + + You need to draw your unlock pattern to confirm encrypting your device. + + Encrypt? diff --git a/src/com/android/settings/CryptKeeperSettings.java b/src/com/android/settings/CryptKeeperSettings.java index 45df8ba57c7..c5727387379 100644 --- a/src/com/android/settings/CryptKeeperSettings.java +++ b/src/com/android/settings/CryptKeeperSettings.java @@ -164,7 +164,7 @@ public class CryptKeeperSettings extends Fragment { return helper.launchConfirmationActivity(request, res.getText(R.string.master_clear_gesture_prompt), - res.getText(R.string.master_clear_gesture_explanation), + res.getText(R.string.crypt_keeper_confirm_encrypt), true); }