diff --git a/res/values/strings.xml b/res/values/strings.xml
index 226398ea5eb..ad87e75f871 100644
--- a/res/values/strings.xml
+++ b/res/values/strings.xml
@@ -12198,15 +12198,18 @@
Unavailable because bedtime mode is on
- Untrusted device wants to access your messages. Tap for details.
+ A device wants to access your messages. Tap for details.
Allow access to messages?
- An untrusted Bluetooth device, %1$s, wants to access your messages.\n\nYou haven\u2019t connected to %2$s before.
+ A Bluetooth device, %1$s, wants to access your messages.\n\nYou haven\u2019t connected to %2$s before.
- Untrusted device wants to access your contacts and call log. Tap for details.
+ A device wants to access your contacts and call log. Tap for details.
Allow access to contacts and call log?
- An untrusted Bluetooth device, %1$s, wants to access your contacts and call log. This includes data about incoming and outgoing calls.\n\nYou haven\u2019t connected to %2$s before.
+ A Bluetooth device, %1$s, wants to access your contacts and call log. This includes data about incoming and outgoing calls.\n\nYou haven\u2019t connected to %2$s before.
+
+
+ Don\u2019t allow
diff --git a/src/com/android/settings/bluetooth/BluetoothPermissionActivity.java b/src/com/android/settings/bluetooth/BluetoothPermissionActivity.java
index 0cca4a4ec51..8794b08129b 100644
--- a/src/com/android/settings/bluetooth/BluetoothPermissionActivity.java
+++ b/src/com/android/settings/bluetooth/BluetoothPermissionActivity.java
@@ -135,7 +135,7 @@ public class BluetoothPermissionActivity extends AlertActivity implements
}
p.mPositiveButtonText = getString(R.string.allow);
p.mPositiveButtonListener = this;
- p.mNegativeButtonText = getString(R.string.deny);
+ p.mNegativeButtonText = getString(R.string.request_manage_bluetooth_permission_dont_allow);
p.mNegativeButtonListener = this;
mOkButton = mAlert.getButton(DialogInterface.BUTTON_POSITIVE);
setupAlert();