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: