Undo translation changes that must be done via localazy

midhun/member-redesign-accessibility
R Midhun Suresh 2025-01-06 15:14:48 +05:30
parent ad96434eba
commit ec78793812
No known key found for this signature in database
2 changed files with 4 additions and 4 deletions

View File

@ -1583,7 +1583,7 @@
"one": "%(count)s Member",
"other": "%(count)s Members"
},
"filter_placeholder": "Search members...",
"filter_placeholder": "Filter room members",
"invite_button_no_perms_tooltip": "You do not have permission to invite users",
"invited_label": "Invited",
"no_matches": "No matches",
@ -2366,7 +2366,7 @@
"enable_element_call_no_permissions_tooltip": "You do not have sufficient permissions to change this."
}
},
"room_summary_card_back_action_label": "Room info",
"room_summary_card_back_action_label": "Room information",
"scalar": {
"error_create": "Unable to create widget.",
"error_membership": "You are not in this room.",

View File

@ -63,7 +63,7 @@ describe("MemberListHeaderView", () => {
});
it("Does not show search box when there's less than 20 members", async () => {
expect(screen.queryByPlaceholderText("Search members...")).toBeNull();
expect(screen.queryByPlaceholderText("Filter room members")).toBeNull();
});
it("Shows search box when there's more than 20 members", async () => {
@ -81,7 +81,7 @@ describe("MemberListHeaderView", () => {
memberListRoom.currentState.members[newMember.userId] = newMember;
}
await reRender();
expect(screen.queryByPlaceholderText("Search members...")).toBeVisible();
expect(screen.queryByPlaceholderText("Filter room members")).toBeVisible();
});
describe("Invite button functionality", () => {