diff --git a/res/values/strings.xml b/res/values/strings.xml
index 50ac95f86dc..43313fb401f 100644
--- a/res/values/strings.xml
+++ b/res/values/strings.xml
@@ -7177,13 +7177,12 @@
Don\u2019t apply battery optimization. May drain your battery more quickly.
- Ignore battery optimizations?
+ Let app always run in background?
- Let app
- %1$s stay connected in the
- background? This may use more battery.
-
+
+ Allowing %1$s to always run in the background may reduce battery life.
+ \n\nYou can change this later from Settings > Apps & notifications.
%1$d%% use since last full charge
diff --git a/src/com/android/settings/fuelgauge/RequestIgnoreBatteryOptimizations.java b/src/com/android/settings/fuelgauge/RequestIgnoreBatteryOptimizations.java
index b16fd18a1f4..27bd889afcb 100644
--- a/src/com/android/settings/fuelgauge/RequestIgnoreBatteryOptimizations.java
+++ b/src/com/android/settings/fuelgauge/RequestIgnoreBatteryOptimizations.java
@@ -91,8 +91,8 @@ public class RequestIgnoreBatteryOptimizations extends AlertActivity implements
final AlertController.AlertParams p = mAlertParams;
p.mTitle = getText(R.string.high_power_prompt_title);
p.mMessage = getString(R.string.high_power_prompt_body, ai.loadLabel(getPackageManager()));
- p.mPositiveButtonText = getText(R.string.yes);
- p.mNegativeButtonText = getText(R.string.no);
+ p.mPositiveButtonText = getText(R.string.allow);
+ p.mNegativeButtonText = getText(R.string.deny);
p.mPositiveButtonListener = this;
p.mNegativeButtonListener = this;
setupAlert();