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:
parent
decb12d6ba
commit
4ef8e2f1fb
|
@ -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 }
|
||||
|
|
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user