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