tweak copy

This commit is contained in:
Michael Telatynski 2021-07-21 10:43:12 +01:00
parent f2a88599a4
commit a58edcb241
3 changed files with 3 additions and 4 deletions

View file

@ -249,7 +249,7 @@ export default class CreateRoomDialog extends React.Component<IProps, IState> {
publicPrivateLabel = <p>
{ _t(
"Everyone in <SpaceName/> will be able to find and join this room.", {}, {
SpaceName: () => this.props.parentSpace.name,
SpaceName: () => <b>{ this.props.parentSpace.name }</b>,
},
) }
&nbsp;
@ -259,7 +259,7 @@ export default class CreateRoomDialog extends React.Component<IProps, IState> {
publicPrivateLabel = <p>
{ _t(
"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>,
},
) }
&nbsp;