From 4b3cb345e31bb09f81c87a7709a553aadbd1e7ee Mon Sep 17 00:00:00 2001 From: Nicolas Fella Date: Wed, 28 Oct 2020 22:12:31 +0100 Subject: [PATCH] Remove trailing dots from PlaceholderMessages --- src/qml/EntryListPage.qml | 2 +- src/qml/FeedListPage.qml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/qml/EntryListPage.qml b/src/qml/EntryListPage.qml index b2e6fb31..fa7e498f 100644 --- a/src/qml/EntryListPage.qml +++ b/src/qml/EntryListPage.qml @@ -54,7 +54,7 @@ Kirigami.ScrollablePage { width: Kirigami.Units.gridUnit * 20 anchors.centerIn: parent - text: feed.errorId === 0 ? i18n("No Entries available.") : i18n("Error (%1): %2", feed.errorId, feed.errorString) + text: feed.errorId === 0 ? i18n("No Entries available") : i18n("Error (%1): %2", feed.errorId, feed.errorString) icon.name: feed.errorId === 0 ? "" : "data-error" } diff --git a/src/qml/FeedListPage.qml b/src/qml/FeedListPage.qml index 83a44960..522a33fc 100644 --- a/src/qml/FeedListPage.qml +++ b/src/qml/FeedListPage.qml @@ -62,7 +62,7 @@ Kirigami.ScrollablePage { width: Kirigami.Units.gridUnit * 20 anchors.centerIn: parent - text: i18n("No Feeds added yet.") + text: i18n("No Feeds added yet") } ListView {