mirror of https://github.com/vector-im/riot-web
Undo translation changes that must be done via localazy
parent
ad96434eba
commit
ec78793812
|
@ -1583,7 +1583,7 @@
|
||||||
"one": "%(count)s Member",
|
"one": "%(count)s Member",
|
||||||
"other": "%(count)s Members"
|
"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",
|
"invite_button_no_perms_tooltip": "You do not have permission to invite users",
|
||||||
"invited_label": "Invited",
|
"invited_label": "Invited",
|
||||||
"no_matches": "No matches",
|
"no_matches": "No matches",
|
||||||
|
@ -2366,7 +2366,7 @@
|
||||||
"enable_element_call_no_permissions_tooltip": "You do not have sufficient permissions to change this."
|
"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": {
|
"scalar": {
|
||||||
"error_create": "Unable to create widget.",
|
"error_create": "Unable to create widget.",
|
||||||
"error_membership": "You are not in this room.",
|
"error_membership": "You are not in this room.",
|
||||||
|
|
|
@ -63,7 +63,7 @@ describe("MemberListHeaderView", () => {
|
||||||
});
|
});
|
||||||
|
|
||||||
it("Does not show search box when there's less than 20 members", async () => {
|
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 () => {
|
it("Shows search box when there's more than 20 members", async () => {
|
||||||
|
@ -81,7 +81,7 @@ describe("MemberListHeaderView", () => {
|
||||||
memberListRoom.currentState.members[newMember.userId] = newMember;
|
memberListRoom.currentState.members[newMember.userId] = newMember;
|
||||||
}
|
}
|
||||||
await reRender();
|
await reRender();
|
||||||
expect(screen.queryByPlaceholderText("Search members...")).toBeVisible();
|
expect(screen.queryByPlaceholderText("Filter room members")).toBeVisible();
|
||||||
});
|
});
|
||||||
|
|
||||||
describe("Invite button functionality", () => {
|
describe("Invite button functionality", () => {
|
||||||
|
|
Loading…
Reference in New Issue