feat(room list): change *All rooms* meta space name to *All Chats* (#29498)

This commit is contained in:
Florian Duros 2025-03-14 13:47:40 +01:00 committed by GitHub
parent 66d9d717c4
commit c31f5521ec
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -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...",

View File

@ -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: