diff --git a/res/values/strings.xml b/res/values/strings.xml
index 8141192b34e..cedbd74d0e9 100644
--- a/res/values/strings.xml
+++ b/res/values/strings.xml
@@ -98,11 +98,11 @@
Make larger
- Use Auto-Rotate
+ Use Auto-rotate
- Face Detection uses the front-facing camera to improve Auto-Rotate accuracy. Images are never stored or sent to Google.<br><br>
+ Face Detection uses the front-facing camera to improve Auto-rotate accuracy. Images are never stored or sent to Google.<br><br>
<a href="http://support.google.com/mobile?p=telephony_rtt">Learn more</a>
Sample text
@@ -11393,6 +11393,9 @@
Temporarily disabled due to Battery Saver
+
+ Turn off battery saver
+
Temporarily turned on due to Battery Saver
diff --git a/src/com/android/settings/display/SmartAutoRotateBatterySaverController.java b/src/com/android/settings/display/SmartAutoRotateBatterySaverController.java
index 9bb2196acbd..d135d4b06a4 100644
--- a/src/com/android/settings/display/SmartAutoRotateBatterySaverController.java
+++ b/src/com/android/settings/display/SmartAutoRotateBatterySaverController.java
@@ -70,7 +70,7 @@ public class SmartAutoRotateBatterySaverController extends BasePreferenceControl
super.displayPreference(screen);
mPreference = screen.findPreference(getPreferenceKey());
((BannerMessagePreference) mPreference)
- .setPositiveButtonText(R.string.disable_text)
+ .setPositiveButtonText(R.string.ambient_camera_battery_saver_off)
.setPositiveButtonOnClickListener(v -> {
mPowerManager.setPowerSaveModeEnabled(false);
});