Add a new line on SpaceRoomView (#8002)
parent
c10ac9e4a0
commit
a71009fca0
|
@ -897,10 +897,11 @@ export default class SpaceRoomView extends React.PureComponent<IProps, IState> {
|
|||
title={_t("What are some things you want to discuss in %(spaceName)s?", {
|
||||
spaceName: this.props.justCreatedOpts?.createOpts?.name || this.props.space.name,
|
||||
})}
|
||||
description={
|
||||
_t("Let's create a room for each of them.") + "\n" +
|
||||
_t("You can add more later too, including already existing ones.")
|
||||
}
|
||||
description={<>
|
||||
{ _t("Let's create a room for each of them.") }
|
||||
<br />
|
||||
{ _t("You can add more later too, including already existing ones.") }
|
||||
</>}
|
||||
onFinished={(firstRoomId: string) => this.setState({ phase: Phase.PublicShare, firstRoomId })}
|
||||
/>;
|
||||
case Phase.PublicShare:
|
||||
|
@ -928,8 +929,11 @@ export default class SpaceRoomView extends React.PureComponent<IProps, IState> {
|
|||
return <SpaceSetupFirstRooms
|
||||
space={this.props.space}
|
||||
title={_t("What projects are your team working on?")}
|
||||
description={_t("We'll create rooms for each of them. " +
|
||||
"You can add more later too, including already existing ones.")}
|
||||
description={<>
|
||||
{ _t("We'll create rooms for each of them.") }
|
||||
<br />
|
||||
{ _t("You can add more later too, including already existing ones.") }
|
||||
</>}
|
||||
onFinished={(firstRoomId: string) => this.setState({ phase: Phase.PrivateInvite, firstRoomId })}
|
||||
/>;
|
||||
case Phase.PrivateExistingRooms:
|
||||
|
|
|
@ -3199,7 +3199,7 @@
|
|||
"Let's create a room for each of them.": "Let's create a room for each of them.",
|
||||
"You can add more later too, including already existing ones.": "You can add more later too, including already existing ones.",
|
||||
"What projects are your team working on?": "What projects are your team working on?",
|
||||
"We'll create rooms for each of them. You can add more later too, including already existing ones.": "We'll create rooms for each of them. You can add more later too, including already existing ones.",
|
||||
"We'll create rooms for each of them.": "We'll create rooms for each of them.",
|
||||
"All threads": "All threads",
|
||||
"Shows all threads from current room": "Shows all threads from current room",
|
||||
"My threads": "My threads",
|
||||
|
|
Loading…
Reference in New Issue