diff --git a/src/app/organizations/manage/policy-edit.component.html b/src/app/organizations/manage/policy-edit.component.html index d5795feacc6..02f9313b99a 100644 --- a/src/app/organizations/manage/policy-edit.component.html +++ b/src/app/organizations/manage/policy-edit.component.html @@ -36,7 +36,7 @@
- +
diff --git a/src/app/organizations/manage/policy-edit.component.ts b/src/app/organizations/manage/policy-edit.component.ts index ebf934b7168..9fde3db300a 100644 --- a/src/app/organizations/manage/policy-edit.component.ts +++ b/src/app/organizations/manage/policy-edit.component.ts @@ -172,6 +172,11 @@ export class PolicyEditComponent implements OnInit { } } + get checkboxDesc(): string { + return this.type === PolicyType.PersonalOwnership ? this.i18nService.t('personalOwnershipCheckboxDesc') : + this.i18nService.t('enabled'); + } + private preValidate(): boolean { switch (this.type) { case PolicyType.RequireSso: diff --git a/src/locales/en/messages.json b/src/locales/en/messages.json index 45f5cdeb479..51cb16bc540 100644 --- a/src/locales/en/messages.json +++ b/src/locales/en/messages.json @@ -3625,6 +3625,9 @@ "custom": { "message": "Custom" }, + "personalOwnershipCheckboxDesc": { + "message": "Disable personal ownership for organization users" + }, "textHiddenByDefault": { "message": "When accessing the Send, hide the text by default", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."