diff --git a/res/values/strings.xml b/res/values/strings.xml index 4ac6977397d..e2df885af6b 100644 --- a/res/values/strings.xml +++ b/res/values/strings.xml @@ -5218,9 +5218,10 @@ Credential storage couldn\u2019t be erased. Credential storage is enabled. - - You need to set a lock screen PIN or password before you can use credential storage. - + + Before you can use credential storage, your device need to have a secure lock screen + + SET LOCK Apps with usage access diff --git a/src/com/android/settings/security/ConfigureKeyGuardDialog.java b/src/com/android/settings/security/ConfigureKeyGuardDialog.java index 3c893407698..dfe3bbe314e 100644 --- a/src/com/android/settings/security/ConfigureKeyGuardDialog.java +++ b/src/com/android/settings/security/ConfigureKeyGuardDialog.java @@ -51,7 +51,7 @@ public class ConfigureKeyGuardDialog extends InstrumentedDialogFragment return new AlertDialog.Builder(getActivity()) .setTitle(android.R.string.dialog_alert_title) .setMessage(R.string.credentials_configure_lock_screen_hint) - .setPositiveButton(android.R.string.ok, this) + .setPositiveButton(R.string.credentials_configure_lock_screen_button, this) .setNegativeButton(android.R.string.cancel, this) .create(); }