From c31f5521ecdbaed4ae4a1ab129e73956aba48ca8 Mon Sep 17 00:00:00 2001 From: Florian Duros Date: Fri, 14 Mar 2025 13:47:40 +0100 Subject: [PATCH] feat(room list): change *All rooms* meta space name to *All Chats* (#29498) --- src/i18n/strings/en_EN.json | 2 +- src/stores/spaces/index.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/i18n/strings/en_EN.json b/src/i18n/strings/en_EN.json index 2136c8c86c..d85b15d25b 100644 --- a/src/i18n/strings/en_EN.json +++ b/src/i18n/strings/en_EN.json @@ -455,7 +455,7 @@ "access_token": "Access Token", "accessibility": "Accessibility", "advanced": "Advanced", - "all_rooms": "All rooms", + "all_chats": "All Chats", "analytics": "Analytics", "and_n_others": { "one": "and one other...", diff --git a/src/stores/spaces/index.ts b/src/stores/spaces/index.ts index e1ded5a16a..5a775692c9 100644 --- a/src/stores/spaces/index.ts +++ b/src/stores/spaces/index.ts @@ -30,7 +30,7 @@ export enum MetaSpace { export const getMetaSpaceName = (spaceKey: MetaSpace, allRoomsInHome = false): string => { switch (spaceKey) { case MetaSpace.Home: - return allRoomsInHome ? _t("common|all_rooms") : _t("common|home"); + return allRoomsInHome ? _t("common|all_chats") : _t("common|home"); case MetaSpace.Favourites: return _t("common|favourites"); case MetaSpace.People: