AddChat tab titles: say "group" instead of "room"

Helps users new to Matrix in knowing what to click, as the direct chat
option explicitely creates a 1-to-1 experience, while "create room"
(now "create group") could be also be used as such but asks for more
details and wouldn't mark the room as direct.

The content of the tabs still say "room" as that is the correct general
term for anything that contains one or more user.
This commit is contained in:
miruka 2021-04-14 14:08:23 -04:00
parent decb12d6ba
commit 4ef8e2f1fb
2 changed files with 3 additions and 3 deletions

View File

@ -22,8 +22,8 @@ HPage {
tabBar: HTabBar {
HTabButton { text: qsTr("Direct chat") }
HTabButton { text: qsTr("Join room") }
HTabButton { text: qsTr("Create room") }
HTabButton { text: qsTr("Join group") }
HTabButton { text: qsTr("Create group") }
}
DirectChat { userId: page.userId }

View File

@ -120,7 +120,7 @@ HFlickableColumnPage {
id: publicCheckBox
text: qsTr("Make this room public")
subtitle.text:
qsTr("Anyone will be able to join with no invite required")
qsTr("Anyone can join without being invited")
Layout.fillWidth: true
}