diff --git a/src/qml/EntryListPage.qml b/src/qml/EntryListPage.qml index 990f0e99..c97f342d 100644 --- a/src/qml/EntryListPage.qml +++ b/src/qml/EntryListPage.qml @@ -97,7 +97,7 @@ Kirigami.ScrollablePage { image: feed.cachedImage title: feed.name - subtitle: page.feed.authors.length === 0 ? "" : i18nc("by ", "by") + " " + page.feed.authors[0].name + subtitle: page.feed.authors.length === 0 ? "" : i18nc("by ", "by %1", page.feed.authors[0].name) MouseArea { anchors.fill: parent diff --git a/src/qml/FeedDetailsPage.qml b/src/qml/FeedDetailsPage.qml index f9ed8a90..153488fe 100644 --- a/src/qml/FeedDetailsPage.qml +++ b/src/qml/FeedDetailsPage.qml @@ -25,7 +25,7 @@ Kirigami.ScrollablePage { image: feed.cachedImage title: feed.name - subtitle: page.feed.authors.length === 0 ? "" : i18nc("by ", "by") + " " + page.feed.authors[0].name + subtitle: page.feed.authors.length === 0 ? "" : i18nc("by ", "by %1", page.feed.authors[0].name) } ColumnLayout {