mirror of
https://github.com/Ranchero-Software/NetNewsWire.git
synced 2025-01-24 16:10:41 +01:00
uses correct string
This commit is contained in:
parent
ee4ab43a8b
commit
e70e67d35c
@ -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()
|
||||
|
Loading…
Reference in New Issue
Block a user