diff --git a/res/xml/upgraded_channel_notification_settings.xml b/res/xml/upgraded_channel_notification_settings.xml
index 7925bb78ebc..c274abea930 100644
--- a/res/xml/upgraded_channel_notification_settings.xml
+++ b/res/xml/upgraded_channel_notification_settings.xml
@@ -37,28 +37,34 @@
android:title="@string/notification_vibrate_title"
settings:useAdditionalSummary="true" />
-
-
+
-
-
+
+
-
-
+
+
+
+
-
-
+
+
+
+
diff --git a/src/com/android/settings/notification/AppNotificationSettings.java b/src/com/android/settings/notification/AppNotificationSettings.java
index deb5c4d2a64..5cac0bb4cf0 100644
--- a/src/com/android/settings/notification/AppNotificationSettings.java
+++ b/src/com/android/settings/notification/AppNotificationSettings.java
@@ -338,15 +338,15 @@ public class AppNotificationSettings extends NotificationSettingsBase {
case NotificationManager.IMPORTANCE_NONE:
return getContext().getString(R.string.notification_toggle_off);
case NotificationManager.IMPORTANCE_MIN:
- return getContext().getString(R.string.notification_channel_summary_min);
+ return getContext().getString(R.string.notification_importance_min);
case NotificationManager.IMPORTANCE_LOW:
- return getContext().getString(R.string.notification_channel_summary_low);
+ return getContext().getString(R.string.notification_importance_low);
case NotificationManager.IMPORTANCE_DEFAULT:
- return getContext().getString(R.string.notification_channel_summary_default);
+ return getContext().getString(R.string.notification_importance_default);
case NotificationManager.IMPORTANCE_HIGH:
case NotificationManager.IMPORTANCE_MAX:
default:
- return getContext().getString(R.string.notification_channel_summary_high);
+ return getContext().getString(R.string.notification_importance_high);
}
}