Use a new string for category headers

The existing string refers to singular objects, but we need
to refer to several

Test: manual
Fixes: 185325146
Change-Id: Ie22fa7a8c1857558baceb05d8ca80cfd6ff61ed4
This commit is contained in:
Julia Reynolds
2021-04-21 10:04:26 -04:00
parent 4752ea17b9
commit 60ded30669
2 changed files with 6 additions and 2 deletions

View File

@@ -9067,6 +9067,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>