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")
|
text: qsTr("Encrypt messages")
|
||||||
subtitle.textFormat: Text.StyledText
|
subtitle.textFormat: Text.StyledText
|
||||||
subtitle.text:
|
subtitle.text:
|
||||||
qsTr("Only you and those you trust will be able to read the " +
|
qsTr("Only users you trust can decrypt the conversation") +
|
||||||
"conversation") +
|
|
||||||
`<br><font color="${theme.colors.warningText}">` +
|
`<br><font color="${theme.colors.warningText}">` +
|
||||||
qsTr("Cannot be disabled later!") +
|
qsTr("Cannot be disabled later!") +
|
||||||
"</font>"
|
"</font>"
|
||||||
|
@ -172,8 +172,7 @@ HFlickableColumnPage {
|
|||||||
id: encryptCheckBox
|
id: encryptCheckBox
|
||||||
text: qsTr("Encrypt messages")
|
text: qsTr("Encrypt messages")
|
||||||
subtitle.text:
|
subtitle.text:
|
||||||
qsTr("Only you and those you trust will be able to read the " +
|
qsTr("Only users you trust can decrypt the conversation") +
|
||||||
"conversation") +
|
|
||||||
`<br><font color="${theme.colors.warningText}">` +
|
`<br><font color="${theme.colors.warningText}">` +
|
||||||
(
|
(
|
||||||
chat.roomInfo.encrypted ?
|
chat.roomInfo.encrypted ?
|
||||||
@ -191,7 +190,7 @@ HFlickableColumnPage {
|
|||||||
HCheckBox {
|
HCheckBox {
|
||||||
id: requireInviteCheckbox
|
id: requireInviteCheckbox
|
||||||
text: qsTr("Require being invited")
|
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
|
defaultChecked: chat.roomInfo.invite_required
|
||||||
enabled: chat.roomInfo.can_set_join_rules
|
enabled: chat.roomInfo.can_set_join_rules
|
||||||
|
|
||||||
@ -201,7 +200,7 @@ HFlickableColumnPage {
|
|||||||
HCheckBox {
|
HCheckBox {
|
||||||
id: forbidGuestsCheckBox
|
id: forbidGuestsCheckBox
|
||||||
text: qsTr("Forbid guests")
|
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
|
defaultChecked: ! chat.roomInfo.guests_allowed
|
||||||
enabled: chat.roomInfo.can_set_guest_access
|
enabled: chat.roomInfo.can_set_guest_access
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user