tweak copy
This commit is contained in:
parent
f2a88599a4
commit
a58edcb241
3 changed files with 3 additions and 4 deletions
|
@ -249,7 +249,7 @@ export default class CreateRoomDialog extends React.Component<IProps, IState> {
|
||||||
publicPrivateLabel = <p>
|
publicPrivateLabel = <p>
|
||||||
{ _t(
|
{ _t(
|
||||||
"Everyone in <SpaceName/> will be able to find and join this room.", {}, {
|
"Everyone in <SpaceName/> will be able to find and join this room.", {}, {
|
||||||
SpaceName: () => this.props.parentSpace.name,
|
SpaceName: () => <b>{ this.props.parentSpace.name }</b>,
|
||||||
},
|
},
|
||||||
) }
|
) }
|
||||||
|
|
||||||
|
@ -259,7 +259,7 @@ export default class CreateRoomDialog extends React.Component<IProps, IState> {
|
||||||
publicPrivateLabel = <p>
|
publicPrivateLabel = <p>
|
||||||
{ _t(
|
{ _t(
|
||||||
"Anyone will be able to find and join this room, not just members of <SpaceName/>.", {}, {
|
"Anyone will be able to find and join this room, not just members of <SpaceName/>.", {}, {
|
||||||
SpaceName: () => this.props.parentSpace.name,
|
SpaceName: () => <b>{ this.props.parentSpace.name }</b>,
|
||||||
},
|
},
|
||||||
) }
|
) }
|
||||||
|
|
||||||
|
|
|
@ -337,7 +337,7 @@ export default class SecurityRoomSettingsTab extends React.Component<IProps, ISt
|
||||||
|| (this.state.joinRule === JoinRule.Restricted && !this.state.restrictedAllowRoomIds?.length),
|
|| (this.state.joinRule === JoinRule.Restricted && !this.state.restrictedAllowRoomIds?.length),
|
||||||
}, {
|
}, {
|
||||||
value: JoinRule.Public,
|
value: JoinRule.Public,
|
||||||
label: _t("Public (anyone)"),
|
label: _t("Public"),
|
||||||
description: _t("Anyone can find and join."),
|
description: _t("Anyone can find and join."),
|
||||||
}];
|
}];
|
||||||
|
|
||||||
|
|
|
@ -1440,7 +1440,6 @@
|
||||||
"To link to this room, please add an address.": "To link to this room, please add an address.",
|
"To link to this room, please add an address.": "To link to this room, please add an address.",
|
||||||
"Private (invite only)": "Private (invite only)",
|
"Private (invite only)": "Private (invite only)",
|
||||||
"Only invited people can join.": "Only invited people can join.",
|
"Only invited people can join.": "Only invited people can join.",
|
||||||
"Public (anyone)": "Public (anyone)",
|
|
||||||
"Anyone can find and join.": "Anyone can find and join.",
|
"Anyone can find and join.": "Anyone can find and join.",
|
||||||
"Upgrade required": "Upgrade required",
|
"Upgrade required": "Upgrade required",
|
||||||
"& %(count)s more|other": "& %(count)s more",
|
"& %(count)s more|other": "& %(count)s more",
|
||||||
|
|
Loading…
Reference in a new issue