1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-23 11:43:46 +00: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
2 changed files with 2 additions and 8 deletions

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>