diff --git a/src/components/structures/SpaceRoomView.tsx b/src/components/structures/SpaceRoomView.tsx index 7887e9b744..5ed3453db1 100644 --- a/src/components/structures/SpaceRoomView.tsx +++ b/src/components/structures/SpaceRoomView.tsx @@ -155,10 +155,10 @@ const SpaceInfo = ({ space }) => { ; }; -const onBetaClick = () => { +const onPreferencesClick = () => { defaultDispatcher.dispatch({ action: Action.ViewUserSettings, - initialTabId: UserTab.Labs, + initialTabId: UserTab.Preferences, }); }; @@ -280,15 +280,11 @@ const SpacePreview = ({ space, onJoinButtonClicked, onRejectButtonClicked }: ISp if (!spacesEnabled) { footer =
{ myMembership === "join" - ? _t("To view %(spaceName)s, turn on the Spaces beta", { - spaceName: space.name, - }, { - a: sub => { sub }, + ? _t("To view this Space, hide communities in your preferences", {}, { + a: sub => { sub }, }) - : _t("To join %(spaceName)s, turn on the Spaces beta", { - spaceName: space.name, - }, { - a: sub => { sub }, + : _t("To join this Space, hide communities in your preferences", {}, { + a: sub => { sub }, }) }
; @@ -717,7 +713,7 @@ const SpaceSetupPrivateInvite = ({ space, onFinished }) => {
- + { _t("This is an experimental feature. For now, " + "new users receiving an invite will have to open the invite on to actually join.", {}, { b: sub => { sub }, diff --git a/src/i18n/strings/en_EN.json b/src/i18n/strings/en_EN.json index a3e7ee74f5..b273fd975c 100644 --- a/src/i18n/strings/en_EN.json +++ b/src/i18n/strings/en_EN.json @@ -2856,8 +2856,8 @@ "Create room": "Create room", "Private space": "Private space", " invites you": " invites you", - "To view %(spaceName)s, turn on the Spaces beta": "To view %(spaceName)s, turn on the Spaces beta", - "To join %(spaceName)s, turn on the Spaces beta": "To join %(spaceName)s, turn on the Spaces beta", + "To view this Space, hide communities in your preferences": "To view this Space, hide communities in your preferences", + "To join this Space, hide communities in your preferences": "To join this Space, hide communities in your preferences", "To view %(spaceName)s, you need an invite": "To view %(spaceName)s, you need an invite", "Created from ": "Created from ", "Welcome to ": "Welcome to ",