1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 16:23:44 +00:00

Update policy wording (#17118)

This commit is contained in:
Robyn MacCallum
2025-11-03 11:11:49 -05:00
committed by GitHub
parent 17e14009e2
commit 3c16547f11
2 changed files with 6 additions and 6 deletions

View File

@@ -6565,11 +6565,11 @@
"updateWeakMasterPasswordWarning": { "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." "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": { "automaticAppLoginWithSSO": {
"message": "Automatically log in users for allowed applications" "message": "Automatic login with SSO"
}, },
"automaticAppLoginDesc": { "automaticAppLoginWithSSODesc": {
"message": "Login forms will automatically be filled and submitted for apps launched from your configured identity provider." "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": { "automaticAppLoginIdpHostLabel": {
"message": "Identity provider host" "message": "Identity provider host"

View File

@@ -11,8 +11,8 @@ import {
import { SharedModule } from "@bitwarden/web-vault/app/shared"; import { SharedModule } from "@bitwarden/web-vault/app/shared";
export class AutomaticAppLoginPolicy extends BasePolicyEditDefinition { export class AutomaticAppLoginPolicy extends BasePolicyEditDefinition {
name = "automaticAppLogin"; name = "automaticAppLoginWithSSO";
description = "automaticAppLoginDesc"; description = "automaticAppLoginWithSSODesc";
type = PolicyType.AutomaticAppLogIn; type = PolicyType.AutomaticAppLogIn;
component = AutomaticAppLoginPolicyComponent; component = AutomaticAppLoginPolicyComponent;
} }