diff --git a/res/values/strings.xml b/res/values/strings.xml index 4e9832ede93..3e17021bb09 100644 --- a/res/values/strings.xml +++ b/res/values/strings.xml @@ -3385,17 +3385,17 @@ Capture all bluetooth HCI packets in a file - Enable OEM unlock + OEM unlocking - Allow the device to be OEM unlocked + Allow the bootloader to be unlocked Enter your PIN Enter your device PIN to enable OEM unlock - Warning - - Enabling OEM unlock disables theft protection features on this device and may void your warranty. Continue? + Allow OEM unlocking? + + WARNING: Device protection features will not work on this device while this setting is turned on. diff --git a/src/com/android/settings/DevelopmentSettings.java b/src/com/android/settings/DevelopmentSettings.java index 4af2baf47d2..dc0a5e1a5ce 100644 --- a/src/com/android/settings/DevelopmentSettings.java +++ b/src/com/android/settings/DevelopmentSettings.java @@ -1291,7 +1291,7 @@ public class DevelopmentSettings extends SettingsPreferenceFragment new AlertDialog.Builder(getActivity()) .setTitle(R.string.confirm_enable_oem_unlock_title) .setMessage(R.string.confirm_enable_oem_unlock_text) - .setPositiveButton(R.string.yes, onConfirmListener) + .setPositiveButton(R.string.enable_text, onConfirmListener) .setNegativeButton(android.R.string.cancel, null) .create() .show();