1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-06-25 10:25:36 +02:00

Condensed text to verifyIdentity instead of different text for pin and no pin

This commit is contained in:
Daniel James Smith 2021-11-22 17:20:08 +01:00
parent 1af712df04
commit fdbcf81d2b
No known key found for this signature in database
GPG Key ID: 03E4BD365FF06726
2 changed files with 2 additions and 8 deletions

View File

@ -1332,12 +1332,6 @@
"invalidPin": {
"message": "Invalid PIN code."
},
"verifyPin": {
"message": "Verify PIN"
},
"yourVaultIsLockedPinCode": {
"message": "Your vault is locked. Verify your PIN code to continue."
},
"unlockWithBiometrics": {
"message": "Unlock with biometrics"
},

View File

@ -2,7 +2,7 @@
<header>
<div class="left"></div>
<div class="center">
<span class="title">{{(pinLock ? 'verifyPin' : 'verifyIdentity') | i18n}}</span>
<span class="title">{{'verifyIdentity' | i18n}}</span>
</div>
<div class="right">
<button type="submit" appBlurClick *ngIf="!hideInput">{{'unlock' | i18n}}</button>
@ -32,7 +32,7 @@
</div>
</div>
<div class="box-footer">
<p>{{(pinLock ? 'yourVaultIsLockedPinCode' : 'yourVaultIsLocked') | i18n}}</p>
<p>{{'yourVaultIsLocked' | i18n}}</p>
{{'loggedInAsOn' | i18n : email : webVaultHostname}}
</div>
</div>