diff --git a/res/values/strings.xml b/res/values/strings.xml
index 7c2865341e5..8ee96e414e9 100644
--- a/res/values/strings.xml
+++ b/res/values/strings.xml
@@ -2036,7 +2036,7 @@
Erase everything
Draw your unlock pattern
-
+
You need to draw your unlock pattern to confirm a factory data reset.
No reset was performed because the System Clear service isn\'t available.
@@ -3236,6 +3236,11 @@
Display trusted CA certificates
+
+ Draw your unlock pattern
+
+ You need to draw your unlock pattern to confirm credential installation.
+
diff --git a/src/com/android/settings/CredentialStorage.java b/src/com/android/settings/CredentialStorage.java
index b9a43a1a0f7..c12d06c1540 100644
--- a/src/com/android/settings/CredentialStorage.java
+++ b/src/com/android/settings/CredentialStorage.java
@@ -338,8 +338,8 @@ public final class CredentialStorage extends Activity {
Resources res = getResources();
boolean launched = new ChooseLockSettingsHelper(this)
.launchConfirmationActivity(CONFIRM_KEY_GUARD_REQUEST,
- res.getText(R.string.master_clear_gesture_prompt),
- res.getText(R.string.master_clear_gesture_explanation));
+ res.getText(R.string.credentials_install_gesture_prompt),
+ res.getText(R.string.credentials_install_gesture_explanation));
return launched;
}