Merge "Use a new string for category headers" into sc-dev am: 5770b4e928

Original change: https://googleplex-android-review.googlesource.com/c/platform/packages/apps/Settings/+/14265928

Change-Id: I9bb8705b59e20e3fd49dda97ad345c72e3fcad5b
This commit is contained in:
Julia Reynolds
2021-04-21 16:25:04 +00:00
committed by Automerger Merge Worker
2 changed files with 6 additions and 2 deletions

View File

@@ -9056,6 +9056,10 @@
<string name="notif_type_alerting_summary">Notifications that may ring or vibrate based on settings</string>
<string name="notif_type_silent">Silent</string>
<string name="notif_type_silent_summary">Notifications that never make sound or vibrations</string>
<!-- category header for apps allowed to read notifications. [CHAR LIMIT=45] -->
<string name="notification_listener_allowed">Allowed</string>
<!-- category header for apps not allowed to read notifications. [CHAR LIMIT=45] -->
<string name="notification_listener_not_allowed">Not allowed</string>
<!-- Per notification listener, a list of apps whose notifications this listener cannot see -->
<string name="notif_listener_excluded_app_title">See all apps</string>

View File

@@ -25,9 +25,9 @@
<PreferenceCategory
android:key="allowed"
android:title="@string/app_permission_summary_allowed"/>
android:title="@string/notification_listener_allowed"/>
<PreferenceCategory
android:key="not_allowed"
android:title="@string/app_permission_summary_not_allowed"/>
android:title="@string/notification_listener_not_allowed"/>
</PreferenceScreen>