mirror of https://github.com/KDE/kasts.git
Remove trailing dots from PlaceholderMessages
This commit is contained in:
parent
1cc71b0614
commit
4b3cb345e3
|
@ -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"
|
||||
}
|
||||
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue