Skip to content

Commit

Permalink
Undo translation changes that must be done via localazy
Browse files Browse the repository at this point in the history
  • Loading branch information
MidhunSureshR committed Jan 6, 2025
1 parent ad96434 commit ec78793
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/i18n/strings/en_EN.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -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.",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 () => {
Expand All @@ -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", () => {
Expand Down

0 comments on commit ec78793

Please sign in to comment.