mirror of
https://github.com/bitwarden/browser
synced 2025-12-11 13:53:34 +00:00
json exports
This commit is contained in:
2
jslib
2
jslib
Submodule jslib updated: 27566c3fd5...3b22df15e8
@@ -546,12 +546,15 @@
|
|||||||
"exportVault": {
|
"exportVault": {
|
||||||
"message": "Export Vault"
|
"message": "Export Vault"
|
||||||
},
|
},
|
||||||
|
"fileFormat": {
|
||||||
|
"message": "File Format"
|
||||||
|
},
|
||||||
"warning": {
|
"warning": {
|
||||||
"message": "WARNING",
|
"message": "WARNING",
|
||||||
"description": "WARNING (should stay in capitalized letters if the language permits)"
|
"description": "WARNING (should stay in capitalized letters if the language permits)"
|
||||||
},
|
},
|
||||||
"exportWarning": {
|
"exportWarningDesc": {
|
||||||
"message": "This export contains your unencrypted data in .csv format. You should not store or send it over unsecure channels (such as email). Delete it immediately after you are done using it."
|
"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."
|
||||||
},
|
},
|
||||||
"exportMasterPassword": {
|
"exportMasterPassword": {
|
||||||
"message": "Enter your master password to export your vault data."
|
"message": "Enter your master password to export your vault data."
|
||||||
|
|||||||
@@ -16,6 +16,13 @@
|
|||||||
<content>
|
<content>
|
||||||
<div class="box">
|
<div class="box">
|
||||||
<div class="box-content">
|
<div class="box-content">
|
||||||
|
<div class="box-content-row" appBoxRow>
|
||||||
|
<label for="format">{{'fileFormat' | i18n}}</label>
|
||||||
|
<select id="format" name="Format" [(ngModel)]="format">
|
||||||
|
<option value="json">.json</option>
|
||||||
|
<option value="csv">.csv</option>
|
||||||
|
</select>
|
||||||
|
</div>
|
||||||
<div class="box-content-row box-content-row-flex" appBoxRow>
|
<div class="box-content-row box-content-row-flex" appBoxRow>
|
||||||
<div class="row-main">
|
<div class="row-main">
|
||||||
<label for="masterPassword">{{'masterPass' | i18n}}</label>
|
<label for="masterPassword">{{'masterPass' | i18n}}</label>
|
||||||
@@ -33,7 +40,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="box-footer">
|
<div class="box-footer">
|
||||||
<p>{{'exportMasterPassword' | i18n}}</p>
|
<p>{{'exportMasterPassword' | i18n}}</p>
|
||||||
<strong>{{'warning' | i18n}}</strong>: {{'exportWarning' | i18n}}
|
<strong>{{'warning' | i18n}}</strong>: {{'exportWarningDesc' | i18n}}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</content>
|
</content>
|
||||||
|
|||||||
Reference in New Issue
Block a user