diff --git a/src/qml/FeedListPage.qml b/src/qml/FeedListPage.qml index 7ae179de..62baa6e9 100644 --- a/src/qml/FeedListPage.qml +++ b/src/qml/FeedListPage.qml @@ -246,7 +246,7 @@ Kirigami.ScrollablePage { property var deleteFeedAction: Kirigami.Action { iconName: "delete" - text: i18np("Remove Podcast", "Remove Podcasts", feedList.selectionForContextMenu.length) + text: i18ncp("context menu action", "Remove Podcast", "Remove Podcasts", feedList.selectionForContextMenu.length) visible: feedList.selectionModel.hasSelection onTriggered: { // First get an array of pointers to the feeds to be deleted diff --git a/src/qml/GenericEntryListView.qml b/src/qml/GenericEntryListView.qml index 4814a9cb..4f3b1a97 100644 --- a/src/qml/GenericEntryListView.qml +++ b/src/qml/GenericEntryListView.qml @@ -204,7 +204,7 @@ ListView { } property var deleteEnclosureAction: Kirigami.Action { - text: i18np("Delete Download", "Delete Downloads", selectionForContextMenu.length) + text: i18ncp("context menu action", "Delete Download", "Delete Downloads", selectionForContextMenu.length) icon.name: "delete" visible: listView.selectionModel.hasSelection && (singleSelectedEntry ? (singleSelectedEntry.hasEnclosure ? singleSelectedEntry.enclosure.status !== Enclosure.Downloadable : false) : true) onTriggered: {