From ccf34cfe205a60027b53b38b9f08bda3c2bd18ad Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Sat, 8 Jun 2024 11:40:08 -0400 Subject: [PATCH] The "Search Room" action should be called "Search Rooms" --- src/qml/ExploreComponent.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qml/ExploreComponent.qml b/src/qml/ExploreComponent.qml index 205959a30..7acce17f1 100644 --- a/src/qml/ExploreComponent.qml +++ b/src/qml/ExploreComponent.qml @@ -102,7 +102,7 @@ RowLayout { display: QQC2.AbstractButton.IconOnly onClicked: root.search(); icon.name: "search" - text: i18nc("@action", "Search Room") + text: i18nc("@action", "Search Rooms") Shortcut { sequence: "Ctrl+F" onActivated: searchButton.clicked()