Update text on FeedDetailsPage to apply to podcasts rather than RSS feeds

This commit is contained in:
Bart De Vries 2021-05-08 16:24:15 +02:00
parent 53cba484fb
commit 506a419aff
1 changed files with 2 additions and 2 deletions

View File

@ -53,12 +53,12 @@ Kirigami.ScrollablePage {
Layout.fillWidth: true
}
Controls.Label {
text: i18n("last updated: %1", feed.lastUpdated.toLocaleString(Qt.locale(), Locale.ShortFormat))
text: i18n("Last updated: %1", feed.lastUpdated.toLocaleString(Qt.locale(), Locale.ShortFormat))
wrapMode: Text.WordWrap
Layout.fillWidth: true
}
Controls.Label {
text: i18n("%1 posts, %2 unread", feed.entryCount, feed.unreadEntryCount)
text: i18np("1 episode", "%1 episodes", feed.entryCount) + ", " + i18np("1 unplayed", "%1 unplayed", feed.unreadEntryCount)
wrapMode: Text.WordWrap
Layout.fillWidth: true
}