diff --git a/res/values/strings.xml b/res/values/strings.xml index 855866d8747..0fee1874cdb 100644 --- a/res/values/strings.xml +++ b/res/values/strings.xml @@ -8552,7 +8552,7 @@ Never - Device & app notifications + Notification read, reply & control Control which apps and devices can read notifications @@ -8838,7 +8838,7 @@ Never show notifications in the shade or on peripheral devices - Allow full screen notifications + Allow full-screen notifications Allow notifications to take up the full screen when the device is locked @@ -9852,10 +9852,10 @@ Can access all files - Full screen notifications + Full-screen notifications - Allow full screen notifications from this app + Allow full-screen notifications from this app Allow this app to show notifications that take up the full screen when the device is locked. Apps may use these to highlight alarms, incoming calls, or other urgent notifications. @@ -10186,8 +10186,8 @@ {count, plural, - =1 {1 app allowed to use unrestricted data when Data Saver is on} - other {# apps allowed to use unrestricted data when Data Saver is on} + =1 {1 app allowed to use unrestricted mobile data when Data Saver is on} + other {# apps allowed to use unrestricted mobile data when Data Saver is on} } @@ -10241,8 +10241,8 @@ Data Saver - - Unrestricted data + + Unrestricted mobile data Background data is turned off @@ -10256,11 +10256,11 @@ Use Data Saver - - Unrestricted data usage + + Unrestricted mobile data usage - Allow unrestricted data access when Data Saver is on + Allow unrestricted mobile data access when Data Saver is on Home app @@ -10462,13 +10462,13 @@ Smallest width - No installed apps have requested Premium SMS access + No installed apps have requested Premium SMS Premium SMS may cost you money and will add up to your carrier bills. If you enable permission for an app, you will be able to send premium SMS using that app. - Premium SMS access + Premium SMS Off diff --git a/tests/spa_unit/src/com/android/settings/applications/specialaccess/DataSaverControllerTest.kt b/tests/spa_unit/src/com/android/settings/applications/specialaccess/DataSaverControllerTest.kt index 5d3c1c07e60..a9efcade2d6 100644 --- a/tests/spa_unit/src/com/android/settings/applications/specialaccess/DataSaverControllerTest.kt +++ b/tests/spa_unit/src/com/android/settings/applications/specialaccess/DataSaverControllerTest.kt @@ -90,7 +90,7 @@ class DataSaverControllerTest { getUnrestrictedSummary(context = context, appListRepository = FakeAppListRepository) assertThat(summary) - .isEqualTo("2 apps allowed to use unrestricted data when Data Saver is on") + .isEqualTo("2 apps allowed to use unrestricted mobile data when Data Saver is on") } @Test @@ -103,7 +103,7 @@ class DataSaverControllerTest { getUnrestrictedSummary(context = context, appListRepository = FakeAppListRepository) assertThat(summary) - .isEqualTo("0 apps allowed to use unrestricted data when Data Saver is on") + .isEqualTo("0 apps allowed to use unrestricted mobile data when Data Saver is on") } private companion object {