Use ellipsis in «Loading…» strings

This commit is contained in:
ivan tkachenko
2022-02-04 20:57:08 +03:00
parent a6ab447955
commit 3e6f38c8ea
5 changed files with 6 additions and 6 deletions

View File

@@ -20,7 +20,7 @@ Kirigami.ScrollablePage {
Kirigami.PlaceholderMessage {
visible: parent.model.count === 0 // We can assume 0 means loading since there is at least one device
anchors.centerIn: parent
text: i18n("Loading")
text: i18n("Loading")
Controls.BusyIndicator {
running: parent.visible
}