+ { _t("This groups your ongoing conversations with members of this space. " + + "Turning off will hide it from your view.") } +
+- { _t("This groups your ongoing conversations with members of this space. " + - "Turning off will hide it from your view.") } + { _t("This groups your chats with members of this space. " + + "Turning this off will hide those chats from your view of %(spaceName)s.", { + spaceName: space.name, + }) }
diff --git a/src/i18n/strings/en_EN.json b/src/i18n/strings/en_EN.json index 143f04c0c7c..af6b3e9d60e 100644 --- a/src/i18n/strings/en_EN.json +++ b/src/i18n/strings/en_EN.json @@ -2706,7 +2706,7 @@ "Link to room": "Link to room", "Command Help": "Command Help", "Sections to show": "Sections to show", - "This groups your ongoing conversations with members of this space. Turning off will hide it from your view.": "This groups your ongoing conversations with members of this space. Turning off will hide it from your view.", + "This groups your chats with members of this space. Turning this off will hide those chats from your view of %(spaceName)s.": "This groups your chats with members of this space. Turning this off will hide those chats from your view of %(spaceName)s.", "Space settings": "Space settings", "Settings - %(spaceName)s": "Settings - %(spaceName)s", "Spaces you're in": "Spaces you're in", From 04eceec2775156e8f01994c5cdae5b145645edab Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Tue, 14 Dec 2021 09:56:42 +0000 Subject: [PATCH 23/26] consolidate types --- src/utils/arrays.ts | 2 ++ src/utils/sets.ts | 4 +--- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/utils/arrays.ts b/src/utils/arrays.ts index 3f9dcbc34bc..a528b5fc1ae 100644 --- a/src/utils/arrays.ts +++ b/src/utils/arrays.ts @@ -184,6 +184,8 @@ export function arrayHasDiff(a: any[], b: any[]): boolean { } } +export type Diff