-
-
Notifications
You must be signed in to change notification settings - Fork 649
Open
Labels
Description
In particular, in Riot web the room name says "Empty room (was ..." when the other user leaves. This string can't be localized so it looks bad when everything else is in another language.
Related code:
matrix-js-sdk/src/models/room.js
Line 1910 in 84637c6
| return `Empty room (was ${memberNamesToRoomName(leftNames)})`; |
Same issue with memberNamesToRoomName function, it always sets the room name to "{user1} and {user2}" for a room with 3 participants regardless of the current locale.
MadLittleMods