diff --git a/_locales/en/messages.json b/_locales/en/messages.json index 03eae924f2..19bb626bcf 100644 --- a/_locales/en/messages.json +++ b/_locales/en/messages.json @@ -5020,12 +5020,12 @@ "description": "This lets users generate a new group link" }, "icu:GroupLinkManagement--approve-label": { - "messageformat": "Approve new members", - "description": "Title for the approve new members select area" + "messageformat": "Require admin approval", + "description": "Title for the require new member admin approval select area" }, "icu:GroupLinkManagement--approve-info": { "messageformat": "Require an admin to approve new members joining via the group link", - "description": "Description for the approve new members select area" + "description": "Description for the require new member admin approval select area" }, "icu:PendingInvites--tab-requests": { "messageformat": "Requests ({count, number})", @@ -7354,8 +7354,8 @@ "description": "Call History > Call Link Details > Edit Call Name Button > Label" }, "icu:CallLinkDetails__ApproveAllMembersLabel": { - "messageformat": "Approve all members", - "description": "Call History > Call Link Details > Approve All Members > Label" + "messageformat": "Require admin approval", + "description": "Call History > Call Link Details > Require admin approval > Label" }, "icu:CallLinkDetails__SettingTooltip--disabled-for-active-call": { "messageformat": "This setting can't be changed while the call is active", @@ -7410,16 +7410,16 @@ "description": "Call Link Edit Modal > Edit Call Name Button > Label" }, "icu:CallLinkEditModal__InputLabel--ApproveAllMembers": { - "messageformat": "Approve all members", - "description": "Call Link Edit Modal > Approve All Members Checkbox > Label" + "messageformat": "Require admin approval", + "description": "Call Link Edit Modal > Require admin approval checkbox > Label" }, "icu:CallLinkRestrictionsSelect__Option--Off": { "messageformat": "Off", - "description": "Call Link Edit Modal > Approve All Members Checkbox > Option > Off" + "description": "Call Link Edit Modal > Require admin approval checkbox > Option > Off" }, "icu:CallLinkRestrictionsSelect__Option--On": { "messageformat": "On", - "description": "Call Link Edit Modal > Approve All Members Checkbox > Option > On" + "description": "Call Link Edit Modal > Require admin approval checkbox > Option > On" }, "icu:CallLinkAddNameModal__Title": { "messageformat": "Add call name", diff --git a/ts/test-mock/calling/callLinkAdmin_test.ts b/ts/test-mock/calling/callLinkAdmin_test.ts index f25fe9375f..42582e3cfb 100644 --- a/ts/test-mock/calling/callLinkAdmin_test.ts +++ b/ts/test-mock/calling/callLinkAdmin_test.ts @@ -45,7 +45,7 @@ describe('calling/callLinkAdmin', function (this: Mocha.Suite) { const editModal = window.locator('.CallLinkEditModal'); await editModal.waitFor(); - const restrictionsInput = editModal.getByLabel('Approve all members'); + const restrictionsInput = editModal.getByLabel('Require admin approval'); await expect(restrictionsInput).toHaveJSProperty('value', '0'); await restrictionsInput.selectOption({ label: 'On' });