diff --git a/res/values/strings.xml b/res/values/strings.xml index ef155b1b6af..76e25d59c64 100644 --- a/res/values/strings.xml +++ b/res/values/strings.xml @@ -3389,17 +3389,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 f64b16b07e9..f3ee0210ffd 100644 --- a/src/com/android/settings/DevelopmentSettings.java +++ b/src/com/android/settings/DevelopmentSettings.java @@ -1335,7 +1335,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();