Do not reuse master_clear_gesture_* strings for credential installation confirmation

Bug: http://code.google.com/p/android/issues/detail?id=29367
Change-Id: I3b651bc84f22b48d651802115600ab4e256bb3a6
This commit is contained in:
Brian Carlstrom
2012-05-01 11:17:02 -07:00
parent b96b35a62b
commit 81d7a806a6
2 changed files with 8 additions and 3 deletions

View File

@@ -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;
}