diff --git a/res/values/strings.xml b/res/values/strings.xml
index 1efe06c6c7f..555cbd14c65 100644
--- a/res/values/strings.xml
+++ b/res/values/strings.xml
@@ -2742,7 +2742,7 @@
- Turn on screen attention
+ Screen attention
On / Screen won\u2019t turn off if you\u2019re looking at it
@@ -2755,6 +2755,8 @@
Prevents your screen from turning off if you\u2019re looking at it
Screen attention uses the front camera to see if someone is looking at the screen. It works on device, and images are never stored or sent to Google.
+
+ Turn on screen attention
Keep screen on when looking at it
diff --git a/src/com/android/settings/homepage/contextualcards/slices/ContextualAdaptiveSleepSlice.java b/src/com/android/settings/homepage/contextualcards/slices/ContextualAdaptiveSleepSlice.java
index c94469a6cbe..b9cc202fbc4 100644
--- a/src/com/android/settings/homepage/contextualcards/slices/ContextualAdaptiveSleepSlice.java
+++ b/src/com/android/settings/homepage/contextualcards/slices/ContextualAdaptiveSleepSlice.java
@@ -81,7 +81,8 @@ public class ContextualAdaptiveSleepSlice implements CustomSliceable {
if (isSettingsAvailable() && !isUserInteracted() && !isRecentlySetup() && !isTurnedOn()) {
final IconCompat icon = IconCompat.createWithResource(mContext,
R.drawable.ic_settings_adaptive_sleep);
- final CharSequence title = mContext.getText(R.string.adaptive_sleep_title);
+ final CharSequence title =
+ mContext.getText(R.string.adaptive_sleep_contextual_slice_title);
final CharSequence subtitle = mContext.getText(
R.string.adaptive_sleep_contextual_slice_summary);