From e40528ba4520c45c3f27c4e41b365f3f34ccea7d Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Sat, 8 Jun 2024 09:29:56 -0400 Subject: [PATCH] Use a more natural sounding action name for favoriting the room "Make room favorite" doesn't sound very natural in English, but "Favorite this room" is and fits in with the rest of the actions here. --- src/qml/RoomInformation.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qml/RoomInformation.qml b/src/qml/RoomInformation.qml index 89901c05a..9f474dc4e 100644 --- a/src/qml/RoomInformation.qml +++ b/src/qml/RoomInformation.qml @@ -93,7 +93,7 @@ QQC2.ScrollView { id: favouriteButton visible: !root.room.isSpace icon.name: root.room && root.room.isFavourite ? "rating" : "rating-unrated" - text: root.room && root.room.isFavourite ? i18n("Remove room from favorites") : i18n("Make room favorite") + text: root.room && root.room.isFavourite ? i18n("Remove room from favorites") : i18n("Favorite this room") onClicked: root.room.isFavourite ? root.room.removeTag("m.favourite") : root.room.addTag("m.favourite", 1.0)