Remove trailing dots from PlaceholderMessages

This commit is contained in:
Nicolas Fella 2020-10-28 22:12:31 +01:00
parent 1cc71b0614
commit 4b3cb345e3
2 changed files with 2 additions and 2 deletions

View File

@ -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"
}

View File

@ -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 {