diff --git a/src/gui/Pages/AddChat/AddChat.qml b/src/gui/Pages/AddChat/AddChat.qml index d10072b2..fbfd1cd2 100644 --- a/src/gui/Pages/AddChat/AddChat.qml +++ b/src/gui/Pages/AddChat/AddChat.qml @@ -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 } diff --git a/src/gui/Pages/AddChat/CreateRoom.qml b/src/gui/Pages/AddChat/CreateRoom.qml index ff283d21..0f121ad2 100644 --- a/src/gui/Pages/AddChat/CreateRoom.qml +++ b/src/gui/Pages/AddChat/CreateRoom.qml @@ -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 }