mirror of
https://github.com/Ranchero-Software/NetNewsWire
synced 2025-08-12 06:26:36 +00:00
uses correct string
This commit is contained in:
@@ -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()
|
||||
|
||||
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user