diff --git a/Widget/Widget Views/StarredWidget.swift b/Widget/Widget Views/StarredWidget.swift index 6a4091fb2..8f5a900b2 100644 --- a/Widget/Widget Views/StarredWidget.swift +++ b/Widget/Widget Views/StarredWidget.swift @@ -69,7 +69,7 @@ struct StarredWidgetView : View { count = count - 3 } if count < 0 { count = 0 } - let str = L10n.unreadCount(count) + let str = L10n.starredCount(count) return Text(str) .font(.caption2) .bold() diff --git a/Widget/Widget Views/TodayWidget.swift b/Widget/Widget Views/TodayWidget.swift index 0c132cd53..40d6e87c9 100644 --- a/Widget/Widget Views/TodayWidget.swift +++ b/Widget/Widget Views/TodayWidget.swift @@ -69,7 +69,7 @@ struct TodayWidgetView : View { count = count - 3 } if count < 0 { count = 0 } - let str = L10n.unreadCount(count) + let str = L10n.todayCount(count) return Text(str) .font(.caption2) .bold()