1
0
mirror of https://github.com/bitwarden/browser.git synced 2025-02-14 01:01:31 +01:00

PM-8113 - Webauthn Iframe - update translation per figma

This commit is contained in:
Jared Snider 2025-01-30 20:31:10 -05:00
parent afad4e08cf
commit 33ab7e6358
No known key found for this signature in database
GPG Key ID: A149DDD612516286
4 changed files with 10 additions and 1 deletions

View File

@ -1395,6 +1395,9 @@
"webAuthnAuthenticate": {
"message": "Authenticate WebAuthn"
},
"readSecurityKey": {
"message": "Read security key"
},
"loginUnavailable": {
"message": "Login unavailable"
},

View File

@ -2269,6 +2269,9 @@
"webAuthnAuthenticate": {
"message": "Authenticate WebAuthn"
},
"readSecurityKey": {
"message": "Read security key"
},
"hideEmail": {
"message": "Hide my email address from recipients."
},

View File

@ -5621,6 +5621,9 @@
"webAuthnAuthenticate": {
"message": "Authenticate WebAuthn"
},
"readSecurityKey": {
"message": "Read security key"
},
"webAuthnNotSupported": {
"message": "WebAuthn is not supported in this browser."
},

View File

@ -25,7 +25,7 @@ export class WebAuthnIFrame {
const params = new URLSearchParams({
data: this.base64Encode(JSON.stringify(data)),
parent: encodeURIComponent(this.win.document.location.href),
btnText: encodeURIComponent(this.i18nService.t("webAuthnAuthenticate")),
btnText: encodeURIComponent(this.i18nService.t("readSecurityKey")),
v: "1",
});