Add a new line on SpaceRoomView (#8002)

pull/21833/head
Suguru Hirahara 2022-03-09 12:59:17 +00:00 committed by GitHub
parent c10ac9e4a0
commit a71009fca0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 7 deletions

View File

@ -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:

View File

@ -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",