From 8c380a1c2565f9244bdef10397294d400b4f5c39 Mon Sep 17 00:00:00 2001 From: Nate Graham Date: Sun, 22 Nov 2020 18:00:09 -0700 Subject: [PATCH] Improve initial view placeholder messages --- imports/NeoChat/Page/RoomListPage.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imports/NeoChat/Page/RoomListPage.qml b/imports/NeoChat/Page/RoomListPage.qml index 383fe21a9..2e3f9b814 100644 --- a/imports/NeoChat/Page/RoomListPage.qml +++ b/imports/NeoChat/Page/RoomListPage.qml @@ -42,7 +42,7 @@ Kirigami.ScrollablePage { anchors.centerIn: parent width: parent.width - (Kirigami.Units.largeSpacing * 4) visible: listView.count == 0 - text: sortFilterRoomListModel.filterText.length > 0 ? i18n("No room found") : i18n("You didn't join any room yet") + text: sortFilterRoomListModel.filterText.length > 0 ? i18n("No rooms found") : i18n("Join some rooms to get started") helpfulAction: Kirigami.Action { icon.name: sortFilterRoomListModel.filterText.length > 0 ? "search" : "list-add" text: sortFilterRoomListModel.filterText.length > 0 ? i18n("Search in room directory") : i18n("Explore rooms")