1
0
mirror of https://github.com/bitwarden/web synced 2025-12-06 00:03:28 +00:00

warning dialog is now handled in base component (#751)

This commit is contained in:
Kyle Spearrin
2020-12-22 16:37:50 -05:00
committed by GitHub
parent 5a76ca4676
commit 6774ae0ef3
3 changed files with 4 additions and 4 deletions

2
jslib

Submodule jslib updated: 573eea66ee...aa1499f70a

View File

@@ -3,9 +3,6 @@
<h1>{{'exportVault' | i18n}}</h1>
</div>
<p>{{'exportMasterPassword' | i18n}}</p>
<app-callout type="warning" *ngIf="!encryptedFormat">{{'exportWarningDesc' | i18n}}</app-callout>
<app-callout type="warning" *ngIf="encryptedFormat && !organizationId">{{'encExportWarningDesc' | i18n}}
</app-callout>
<div class="row">
<div class="form-group col-6">
<label for="format">{{'fileFormat' | i18n}}</label>

View File

@@ -793,6 +793,9 @@
"warning": {
"message": "Warning"
},
"confirmVaultExport": {
"message": "Confirm Vault Export"
},
"exportWarningDesc": {
"message": "This export contains your vault data in an unencrypted format. You should not store or send the exported file over unsecure channels (such as email). Delete it immediately after you are done using it."
},