mirror of
https://github.com/bitwarden/browser.git
synced 2024-12-27 17:18:04 +01:00
Condensed text to verifyIdentity instead of different text for pin and no pin
This commit is contained in:
parent
1af712df04
commit
fdbcf81d2b
@ -1332,12 +1332,6 @@
|
|||||||
"invalidPin": {
|
"invalidPin": {
|
||||||
"message": "Invalid PIN code."
|
"message": "Invalid PIN code."
|
||||||
},
|
},
|
||||||
"verifyPin": {
|
|
||||||
"message": "Verify PIN"
|
|
||||||
},
|
|
||||||
"yourVaultIsLockedPinCode": {
|
|
||||||
"message": "Your vault is locked. Verify your PIN code to continue."
|
|
||||||
},
|
|
||||||
"unlockWithBiometrics": {
|
"unlockWithBiometrics": {
|
||||||
"message": "Unlock with biometrics"
|
"message": "Unlock with biometrics"
|
||||||
},
|
},
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
<header>
|
<header>
|
||||||
<div class="left"></div>
|
<div class="left"></div>
|
||||||
<div class="center">
|
<div class="center">
|
||||||
<span class="title">{{(pinLock ? 'verifyPin' : 'verifyIdentity') | i18n}}</span>
|
<span class="title">{{'verifyIdentity' | i18n}}</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="right">
|
<div class="right">
|
||||||
<button type="submit" appBlurClick *ngIf="!hideInput">{{'unlock' | i18n}}</button>
|
<button type="submit" appBlurClick *ngIf="!hideInput">{{'unlock' | i18n}}</button>
|
||||||
@ -32,7 +32,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="box-footer">
|
<div class="box-footer">
|
||||||
<p>{{(pinLock ? 'yourVaultIsLockedPinCode' : 'yourVaultIsLocked') | i18n}}</p>
|
<p>{{'yourVaultIsLocked' | i18n}}</p>
|
||||||
{{'loggedInAsOn' | i18n : email : webVaultHostname}}
|
{{'loggedInAsOn' | i18n : email : webVaultHostname}}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user