Update string for call link require admin approval
This commit is contained in:
parent
eab5f7762a
commit
1037fab680
2 changed files with 10 additions and 10 deletions
|
@ -5020,12 +5020,12 @@
|
||||||
"description": "This lets users generate a new group link"
|
"description": "This lets users generate a new group link"
|
||||||
},
|
},
|
||||||
"icu:GroupLinkManagement--approve-label": {
|
"icu:GroupLinkManagement--approve-label": {
|
||||||
"messageformat": "Approve new members",
|
"messageformat": "Require admin approval",
|
||||||
"description": "Title for the approve new members select area"
|
"description": "Title for the require new member admin approval select area"
|
||||||
},
|
},
|
||||||
"icu:GroupLinkManagement--approve-info": {
|
"icu:GroupLinkManagement--approve-info": {
|
||||||
"messageformat": "Require an admin to approve new members joining via the group link",
|
"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": {
|
"icu:PendingInvites--tab-requests": {
|
||||||
"messageformat": "Requests ({count, number})",
|
"messageformat": "Requests ({count, number})",
|
||||||
|
@ -7354,8 +7354,8 @@
|
||||||
"description": "Call History > Call Link Details > Edit Call Name Button > Label"
|
"description": "Call History > Call Link Details > Edit Call Name Button > Label"
|
||||||
},
|
},
|
||||||
"icu:CallLinkDetails__ApproveAllMembersLabel": {
|
"icu:CallLinkDetails__ApproveAllMembersLabel": {
|
||||||
"messageformat": "Approve all members",
|
"messageformat": "Require admin approval",
|
||||||
"description": "Call History > Call Link Details > Approve All Members > Label"
|
"description": "Call History > Call Link Details > Require admin approval > Label"
|
||||||
},
|
},
|
||||||
"icu:CallLinkDetails__SettingTooltip--disabled-for-active-call": {
|
"icu:CallLinkDetails__SettingTooltip--disabled-for-active-call": {
|
||||||
"messageformat": "This setting can't be changed while the call is active",
|
"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"
|
"description": "Call Link Edit Modal > Edit Call Name Button > Label"
|
||||||
},
|
},
|
||||||
"icu:CallLinkEditModal__InputLabel--ApproveAllMembers": {
|
"icu:CallLinkEditModal__InputLabel--ApproveAllMembers": {
|
||||||
"messageformat": "Approve all members",
|
"messageformat": "Require admin approval",
|
||||||
"description": "Call Link Edit Modal > Approve All Members Checkbox > Label"
|
"description": "Call Link Edit Modal > Require admin approval checkbox > Label"
|
||||||
},
|
},
|
||||||
"icu:CallLinkRestrictionsSelect__Option--Off": {
|
"icu:CallLinkRestrictionsSelect__Option--Off": {
|
||||||
"messageformat": "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": {
|
"icu:CallLinkRestrictionsSelect__Option--On": {
|
||||||
"messageformat": "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": {
|
"icu:CallLinkAddNameModal__Title": {
|
||||||
"messageformat": "Add call name",
|
"messageformat": "Add call name",
|
||||||
|
|
|
@ -45,7 +45,7 @@ describe('calling/callLinkAdmin', function (this: Mocha.Suite) {
|
||||||
const editModal = window.locator('.CallLinkEditModal');
|
const editModal = window.locator('.CallLinkEditModal');
|
||||||
await editModal.waitFor();
|
await editModal.waitFor();
|
||||||
|
|
||||||
const restrictionsInput = editModal.getByLabel('Approve all members');
|
const restrictionsInput = editModal.getByLabel('Require admin approval');
|
||||||
|
|
||||||
await expect(restrictionsInput).toHaveJSProperty('value', '0');
|
await expect(restrictionsInput).toHaveJSProperty('value', '0');
|
||||||
await restrictionsInput.selectOption({ label: 'On' });
|
await restrictionsInput.selectOption({ label: 'On' });
|
||||||
|
|
Loading…
Add table
Reference in a new issue