Browse Source

[AC-1595] Update SSO identifier hint (#6608)

cloudops-437
Shane Melton 2 years ago committed by GitHub
parent
commit
eabdbe3d19
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 7
      apps/web/src/locales/en/messages.json
  2. 5
      bitwarden_license/bit-web/src/app/auth/sso/sso.component.html

7
apps/web/src/locales/en/messages.json

@ -3640,7 +3640,7 @@
}, },
"secretsAccessSuspended": { "secretsAccessSuspended": {
"message": "Suspended organizations cannot be accessed. Please contact your organization owner for assistance." "message": "Suspended organizations cannot be accessed. Please contact your organization owner for assistance."
}, },
"secretsCannotCreate": { "secretsCannotCreate": {
"message": "Secrets cannot be created in suspended organizations. Please contact your organization owner for assistance." "message": "Secrets cannot be created in suspended organizations. Please contact your organization owner for assistance."
}, },
@ -3995,8 +3995,9 @@
"ssoIdentifier": { "ssoIdentifier": {
"message": "SSO identifier" "message": "SSO identifier"
}, },
"ssoIdentifierHint": { "ssoIdentifierHintPartOne": {
"message": "Provide this ID to your members to login with SSO." "message": "Provide this ID to your members to login with SSO. To bypass this step, set up ",
"description": "This will be used as part of a larger sentence, broken up to include links. The full sentence will read 'Provide this ID to your members to login with SSO. To bypass this step, set up Domain verification'"
}, },
"unlinkSso": { "unlinkSso": {
"message": "Unlink SSO" "message": "Unlink SSO"

5
bitwarden_license/bit-web/src/app/auth/sso/sso.component.html

@ -30,7 +30,10 @@
<bit-form-field> <bit-form-field>
<bit-label>{{ "ssoIdentifier" | i18n }}</bit-label> <bit-label>{{ "ssoIdentifier" | i18n }}</bit-label>
<input bitInput type="text" formControlName="ssoIdentifier" /> <input bitInput type="text" formControlName="ssoIdentifier" />
<bit-hint>{{ "ssoIdentifierHint" | i18n }}</bit-hint> <bit-hint>
{{ "ssoIdentifierHintPartOne" | i18n }}
<a routerLink="../domain-verification">{{ "domainVerification" | i18n }}</a>
</bit-hint>
</bit-form-field> </bit-form-field>
<hr /> <hr />

Loading…
Cancel
Save