mirror of
https://github.com/bitwarden/browser
synced 2025-12-12 22:33:35 +00:00
fix(auth): clarify 2FA security key verification text
Updates user interface text to improve clarity when prompting for security key verification during two-factor authentication. Ref: PM-20055
This commit is contained in:
@@ -886,6 +886,9 @@
|
|||||||
"followTheStepsBelowToFinishLoggingIn": {
|
"followTheStepsBelowToFinishLoggingIn": {
|
||||||
"message": "Follow the steps below to finish logging in."
|
"message": "Follow the steps below to finish logging in."
|
||||||
},
|
},
|
||||||
|
"followTheStepsBelowToFinishLoggingInWithSecurityKey": {
|
||||||
|
"message": "Follow the steps below to finish logging in with your security key."
|
||||||
|
},
|
||||||
"restartRegistration": {
|
"restartRegistration": {
|
||||||
"message": "Restart registration"
|
"message": "Restart registration"
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -3212,6 +3212,9 @@
|
|||||||
"followTheStepsBelowToFinishLoggingIn": {
|
"followTheStepsBelowToFinishLoggingIn": {
|
||||||
"message": "Follow the steps below to finish logging in."
|
"message": "Follow the steps below to finish logging in."
|
||||||
},
|
},
|
||||||
|
"followTheStepsBelowToFinishLoggingInWithSecurityKey": {
|
||||||
|
"message": "Follow the steps below to finish logging in with your security key."
|
||||||
|
},
|
||||||
"launchDuo": {
|
"launchDuo": {
|
||||||
"message": "Launch Duo in Browser"
|
"message": "Launch Duo in Browser"
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -86,7 +86,7 @@ document.addEventListener("DOMContentLoaded", async () => {
|
|||||||
titleForLargerScreens.innerText = localeService.t("verifyYourIdentity");
|
titleForLargerScreens.innerText = localeService.t("verifyYourIdentity");
|
||||||
|
|
||||||
const subtitle = document.getElementById("subtitle");
|
const subtitle = document.getElementById("subtitle");
|
||||||
subtitle.innerText = localeService.t("followTheStepsBelowToFinishLoggingIn");
|
subtitle.innerText = localeService.t("followTheStepsBelowToFinishLoggingInWithSecurityKey");
|
||||||
});
|
});
|
||||||
|
|
||||||
function start() {
|
function start() {
|
||||||
|
|||||||
@@ -7280,6 +7280,9 @@
|
|||||||
"followTheStepsBelowToFinishLoggingIn": {
|
"followTheStepsBelowToFinishLoggingIn": {
|
||||||
"message": "Follow the steps below to finish logging in."
|
"message": "Follow the steps below to finish logging in."
|
||||||
},
|
},
|
||||||
|
"followTheStepsBelowToFinishLoggingInWithSecurityKey": {
|
||||||
|
"message": "Follow the steps below to finish logging in with your security key."
|
||||||
|
},
|
||||||
"launchDuo": {
|
"launchDuo": {
|
||||||
"message": "Launch Duo"
|
"message": "Launch Duo"
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -362,7 +362,7 @@ export class TwoFactorAuthComponent implements OnInit, OnDestroy {
|
|||||||
break;
|
break;
|
||||||
case TwoFactorProviderType.WebAuthn:
|
case TwoFactorProviderType.WebAuthn:
|
||||||
this.anonLayoutWrapperDataService.setAnonLayoutWrapperData({
|
this.anonLayoutWrapperDataService.setAnonLayoutWrapperData({
|
||||||
pageSubtitle: this.i18nService.t("followTheStepsBelowToFinishLoggingIn"),
|
pageSubtitle: this.i18nService.t("followTheStepsBelowToFinishLoggingInWithSecurityKey"),
|
||||||
pageIcon: TwoFactorAuthWebAuthnIcon,
|
pageIcon: TwoFactorAuthWebAuthnIcon,
|
||||||
});
|
});
|
||||||
break;
|
break;
|
||||||
|
|||||||
Reference in New Issue
Block a user