diff --git a/src/components/structures/SpaceRoomView.tsx b/src/components/structures/SpaceRoomView.tsx index 896c296504..fec714ea46 100644 --- a/src/components/structures/SpaceRoomView.tsx +++ b/src/components/structures/SpaceRoomView.tsx @@ -897,10 +897,11 @@ export default class SpaceRoomView extends React.PureComponent { 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.") } +
+ { _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 { return + { _t("We'll create rooms for each of them.") } +
+ { _t("You can add more later too, including already existing ones.") } + } onFinished={(firstRoomId: string) => this.setState({ phase: Phase.PrivateInvite, firstRoomId })} />; case Phase.PrivateExistingRooms: diff --git a/src/i18n/strings/en_EN.json b/src/i18n/strings/en_EN.json index 411169378b..96b054a83e 100644 --- a/src/i18n/strings/en_EN.json +++ b/src/i18n/strings/en_EN.json @@ -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",