Tweak room settings checkbox texts
Always use present tense and shorten text length while trying to be more precise
This commit is contained in:
parent
93404559b9
commit
decb12d6ba
|
@ -8,8 +8,7 @@ HCheckBox {
|
|||
text: qsTr("Encrypt messages")
|
||||
subtitle.textFormat: Text.StyledText
|
||||
subtitle.text:
|
||||
qsTr("Only you and those you trust will be able to read the " +
|
||||
"conversation") +
|
||||
qsTr("Only users you trust can decrypt the conversation") +
|
||||
`<br><font color="${theme.colors.warningText}">` +
|
||||
qsTr("Cannot be disabled later!") +
|
||||
"</font>"
|
||||
|
|
|
@ -172,8 +172,7 @@ HFlickableColumnPage {
|
|||
id: encryptCheckBox
|
||||
text: qsTr("Encrypt messages")
|
||||
subtitle.text:
|
||||
qsTr("Only you and those you trust will be able to read the " +
|
||||
"conversation") +
|
||||
qsTr("Only users you trust can decrypt the conversation") +
|
||||
`<br><font color="${theme.colors.warningText}">` +
|
||||
(
|
||||
chat.roomInfo.encrypted ?
|
||||
|
@ -191,7 +190,7 @@ HFlickableColumnPage {
|
|||
HCheckBox {
|
||||
id: requireInviteCheckbox
|
||||
text: qsTr("Require being invited")
|
||||
subtitle.text: qsTr("Users will need an invite to join the room")
|
||||
subtitle.text: qsTr("Users need an invite from a member to join")
|
||||
defaultChecked: chat.roomInfo.invite_required
|
||||
enabled: chat.roomInfo.can_set_join_rules
|
||||
|
||||
|
@ -201,7 +200,7 @@ HFlickableColumnPage {
|
|||
HCheckBox {
|
||||
id: forbidGuestsCheckBox
|
||||
text: qsTr("Forbid guests")
|
||||
subtitle.text: qsTr("Users without an account won't be able to join")
|
||||
subtitle.text: qsTr("Users without accounts can't get invited or join")
|
||||
defaultChecked: ! chat.roomInfo.guests_allowed
|
||||
enabled: chat.roomInfo.can_set_guest_access
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user