Loading res/values/strings.xml +6 −2 Original line number Diff line number Diff line Loading @@ -9073,6 +9073,10 @@ <!-- Configure notifications: Title for determining which notifications appear on the lock screen [CHAR LIMIT=60] --> <string name="lock_screen_notifs_title">Notifications on lock screen</string> <!-- Configure notifications: summary for lockscreen notifications: all notifications shown regardless of noisiness [CHAR LIMIT=60] --> <string name="lock_screen_notifs_show_all_summary">Show conversations, default, and silent</string> <!-- Configure notifications: Value for lockscreen notifications: all notifications shown regardless of noisiness [CHAR LIMIT=60] --> <string name="lock_screen_notifs_show_all">Show conversations, default, and silent</string> Loading Loading @@ -9324,11 +9328,11 @@ <!-- app summary of notification app list screen [CHAR LIMIT=100] --> <plurals name="notifications_sent_daily"> <item quantity="one">~<xliff:g id="number">%d</xliff:g> notification per day</item> <item quantity="other">~<xliff:g id="number">%d</xliff:g> notifications per day</item> <item quantity="other">~<xliff:g id="number">%,d</xliff:g> notifications per day</item> </plurals> <plurals name="notifications_sent_weekly"> <item quantity="one">~<xliff:g id="number">%d</xliff:g> notification per week</item> <item quantity="other">~<xliff:g id="number">%d</xliff:g> notifications per week</item> <item quantity="other">~<xliff:g id="number">%,d</xliff:g> notifications per week</item> </plurals> <!-- app summary of notification app list screen [CHAR LIMIT=100] --> <string name="notifications_sent_never">Never</string> src/com/android/settings/notification/ShowOnLockScreenNotificationPreferenceController.java +1 −1 Original line number Diff line number Diff line Loading @@ -116,7 +116,7 @@ public class ShowOnLockScreenNotificationPreferenceController extends AbstractPr } else if (!getLockscreenSilentNotificationsEnabled()) { return mContext.getString(R.string.lock_screen_notifs_show_alerting); } else { return mContext.getString(R.string.lock_screen_notifs_show_all); return mContext.getString(R.string.lock_screen_notifs_show_all_summary); } } Loading Loading
res/values/strings.xml +6 −2 Original line number Diff line number Diff line Loading @@ -9073,6 +9073,10 @@ <!-- Configure notifications: Title for determining which notifications appear on the lock screen [CHAR LIMIT=60] --> <string name="lock_screen_notifs_title">Notifications on lock screen</string> <!-- Configure notifications: summary for lockscreen notifications: all notifications shown regardless of noisiness [CHAR LIMIT=60] --> <string name="lock_screen_notifs_show_all_summary">Show conversations, default, and silent</string> <!-- Configure notifications: Value for lockscreen notifications: all notifications shown regardless of noisiness [CHAR LIMIT=60] --> <string name="lock_screen_notifs_show_all">Show conversations, default, and silent</string> Loading Loading @@ -9324,11 +9328,11 @@ <!-- app summary of notification app list screen [CHAR LIMIT=100] --> <plurals name="notifications_sent_daily"> <item quantity="one">~<xliff:g id="number">%d</xliff:g> notification per day</item> <item quantity="other">~<xliff:g id="number">%d</xliff:g> notifications per day</item> <item quantity="other">~<xliff:g id="number">%,d</xliff:g> notifications per day</item> </plurals> <plurals name="notifications_sent_weekly"> <item quantity="one">~<xliff:g id="number">%d</xliff:g> notification per week</item> <item quantity="other">~<xliff:g id="number">%d</xliff:g> notifications per week</item> <item quantity="other">~<xliff:g id="number">%,d</xliff:g> notifications per week</item> </plurals> <!-- app summary of notification app list screen [CHAR LIMIT=100] --> <string name="notifications_sent_never">Never</string>
src/com/android/settings/notification/ShowOnLockScreenNotificationPreferenceController.java +1 −1 Original line number Diff line number Diff line Loading @@ -116,7 +116,7 @@ public class ShowOnLockScreenNotificationPreferenceController extends AbstractPr } else if (!getLockscreenSilentNotificationsEnabled()) { return mContext.getString(R.string.lock_screen_notifs_show_alerting); } else { return mContext.getString(R.string.lock_screen_notifs_show_all); return mContext.getString(R.string.lock_screen_notifs_show_all_summary); } } Loading