From e70e67d35cb979cc00cfddac5e3d9a09ed58e7ae Mon Sep 17 00:00:00 2001 From: Stuart Breckenridge Date: Sat, 21 Nov 2020 09:54:03 +0800 Subject: [PATCH] uses correct string --- Widget/Widget Views/StarredWidget.swift | 2 +- Widget/Widget Views/TodayWidget.swift | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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()