chore: update i18n
This commit is contained in:
parent
8a33ed9f9f
commit
9477071556
|
@ -14,7 +14,7 @@ extension NewsView {
|
|||
public func configure(link: Mastodon.Entity.Link) {
|
||||
providerNameLabel.text = link.providerName
|
||||
headlineLabel.text = link.title
|
||||
footnoteLabel.text = L10n.Scene.Search.Recommend.HashTag.peopleTalking(link.talkingPeopleCount ?? 0)
|
||||
footnoteLabel.text = L10n.Plural.peopleTalking(link.talkingPeopleCount ?? 0)
|
||||
|
||||
let configuration = MediaView.Configuration(
|
||||
info: .image(info: .init(
|
||||
|
|
|
@ -12,7 +12,7 @@ import MastodonLocalization
|
|||
extension TrendView {
|
||||
public func configure(tag: Mastodon.Entity.Tag) {
|
||||
let primaryLabelText = "#" + tag.name
|
||||
let secondaryLabelText = L10n.Scene.Search.Recommend.HashTag.peopleTalking(tag.talkingPeopleCount ?? 0)
|
||||
let secondaryLabelText = L10n.Plural.peopleTalking(tag.talkingPeopleCount ?? 0)
|
||||
|
||||
primaryLabel.text = primaryLabelText
|
||||
secondaryLabel.text = secondaryLabelText
|
||||
|
|
Loading…
Reference in New Issue