diff --git a/apps/web/src/locales/en/messages.json b/apps/web/src/locales/en/messages.json index 36dbd2143bb..e91464cb174 100644 --- a/apps/web/src/locales/en/messages.json +++ b/apps/web/src/locales/en/messages.json @@ -6565,11 +6565,11 @@ "updateWeakMasterPasswordWarning": { "message": "Your master password does not meet one or more of your organization policies. In order to access the vault, you must update your master password now. Proceeding will log you out of your current session, requiring you to log back in. Active sessions on other devices may continue to remain active for up to one hour." }, - "automaticAppLogin": { - "message": "Automatically log in users for allowed applications" + "automaticAppLoginWithSSO": { + "message": "Automatic login with SSO" }, - "automaticAppLoginDesc": { - "message": "Login forms will automatically be filled and submitted for apps launched from your configured identity provider." + "automaticAppLoginWithSSODesc": { + "message": "Extend SSO security and convenience to unmanaged apps. When users launch an app from your identity provider, their login details are automatically filled and submitted, creating a one-click, secure flow from the identity provider to the app." }, "automaticAppLoginIdpHostLabel": { "message": "Identity provider host" diff --git a/bitwarden_license/bit-web/src/app/admin-console/policies/policy-edit-definitions/automatic-app-login.component.ts b/bitwarden_license/bit-web/src/app/admin-console/policies/policy-edit-definitions/automatic-app-login.component.ts index 85110a5af21..eb82dce4383 100644 --- a/bitwarden_license/bit-web/src/app/admin-console/policies/policy-edit-definitions/automatic-app-login.component.ts +++ b/bitwarden_license/bit-web/src/app/admin-console/policies/policy-edit-definitions/automatic-app-login.component.ts @@ -11,8 +11,8 @@ import { import { SharedModule } from "@bitwarden/web-vault/app/shared"; export class AutomaticAppLoginPolicy extends BasePolicyEditDefinition { - name = "automaticAppLogin"; - description = "automaticAppLoginDesc"; + name = "automaticAppLoginWithSSO"; + description = "automaticAppLoginWithSSODesc"; type = PolicyType.AutomaticAppLogIn; component = AutomaticAppLoginPolicyComponent; }