Swap order of private space creation and tweak copy

pull/21833/head
Michael Telatynski 2021-10-18 09:30:57 +01:00
parent d93c220aae
commit 6a23aee725
2 changed files with 5 additions and 5 deletions

View File

@ -906,21 +906,21 @@ export default class SpaceRoomView extends React.PureComponent<IProps, IState> {
space={this.props.space} space={this.props.space}
justCreatedOpts={this.props.justCreatedOpts} justCreatedOpts={this.props.justCreatedOpts}
onFinished={(invite: boolean) => { onFinished={(invite: boolean) => {
this.setState({ phase: invite ? Phase.PrivateInvite : Phase.PrivateExistingRooms }); this.setState({ phase: invite ? Phase.PrivateCreateRooms : Phase.PrivateExistingRooms });
}} }}
/>; />;
case Phase.PrivateInvite: case Phase.PrivateInvite:
return <SpaceSetupPrivateInvite return <SpaceSetupPrivateInvite
space={this.props.space} space={this.props.space}
onFinished={() => this.setState({ phase: Phase.PrivateCreateRooms })} onFinished={() => this.setState({ phase: Phase.Landing })}
/>; />;
case Phase.PrivateCreateRooms: case Phase.PrivateCreateRooms:
return <SpaceSetupFirstRooms return <SpaceSetupFirstRooms
space={this.props.space} space={this.props.space}
title={_t("What projects are you working on?")} title={_t("What projects are your team working on?")}
description={_t("We'll create rooms for each of them. " + description={_t("We'll create rooms for each of them. " +
"You can add more later too, including already existing ones.")} "You can add more later too, including already existing ones.")}
onFinished={(firstRoomId: string) => this.setState({ phase: Phase.Landing, firstRoomId })} onFinished={(firstRoomId: string) => this.setState({ phase: Phase.PrivateInvite, firstRoomId })}
/>; />;
case Phase.PrivateExistingRooms: case Phase.PrivateExistingRooms:
return <SpaceAddExistingRooms return <SpaceAddExistingRooms

View File

@ -2976,7 +2976,7 @@
"What are some things you want to discuss in %(spaceName)s?": "What are some things you want to discuss in %(spaceName)s?", "What are some things you want to discuss in %(spaceName)s?": "What are some things you want to discuss in %(spaceName)s?",
"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 you working on?": "What projects are you 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. 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.",
"My threads": "My threads", "My threads": "My threads",
"Shows all threads youve participated in": "Shows all threads youve participated in", "Shows all threads youve participated in": "Shows all threads youve participated in",