diff --git a/src/app/organizations/manage/policy-edit.component.ts b/src/app/organizations/manage/policy-edit.component.ts
index ebf934b716..9fde3db300 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 45f5cdeb47..51cb16bc54 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."