1
0
mirror of https://github.com/bitwarden/browser synced 2026-01-04 17:43:39 +00:00

[PM-23258] changing verbiage from import data to import items (#17123)

* [PM-23258] changing verbiage from import data to import items

* [PM-23258] Removing vault and data from import and export titles, navs, and buttons

* [PM-23258] more verbiage changes

* [PM-23258] reverting unnecessary change

* [PM-23258] removing unused text from messages json files

* [PM-23258] small text changes from design

* [PM-23258] including secrets manager changes
This commit is contained in:
Alex Dragovich
2025-12-12 09:43:34 -08:00
committed by GitHub
parent 944d324985
commit 14dd732b52
24 changed files with 55 additions and 69 deletions

View File

@@ -436,8 +436,8 @@
"sync": {
"message": "Sync"
},
"syncVaultNow": {
"message": "Sync vault now"
"syncNow": {
"message": "Sync now"
},
"lastSync": {
"message": "Last sync:"
@@ -455,9 +455,6 @@
"bitWebVaultApp": {
"message": "Bitwarden web app"
},
"importItems": {
"message": "Import items"
},
"select": {
"message": "Select"
},
@@ -1325,8 +1322,11 @@
"exportFrom": {
"message": "Export from"
},
"exportVault": {
"message": "Export vault"
"export": {
"message": "Export"
},
"import": {
"message": "Import"
},
"fileFormat": {
"message": "File format"
@@ -4215,10 +4215,6 @@
"ignore": {
"message": "Ignore"
},
"importData": {
"message": "Import data",
"description": "Used for the header of the import dialog, the import button and within the file-password-prompt"
},
"importError": {
"message": "Import error"
},

View File

@@ -1,5 +1,5 @@
<popup-page>
<popup-header slot="header" [pageTitle]="'exportVault' | i18n" showBackButton>
<popup-header slot="header" [pageTitle]="'export' | i18n" showBackButton>
<ng-container slot="end">
<app-pop-out></app-pop-out>
</ng-container>
@@ -21,7 +21,7 @@
bitFormButton
buttonType="primary"
>
{{ "exportVault" | i18n }}
{{ "export" | i18n }}
</button>
<button bitButton type="button" buttonType="secondary" [popupBackAction]>
{{ "cancel" | i18n }}

View File

@@ -1,5 +1,5 @@
<popup-page>
<popup-header slot="header" [pageTitle]="'importData' | i18n" showBackButton>
<popup-header slot="header" [pageTitle]="'import' | i18n" showBackButton>
<ng-container slot="end">
<app-pop-out></app-pop-out>
</ng-container>
@@ -22,7 +22,7 @@
bitFormButton
buttonType="primary"
>
{{ "importData" | i18n }}
{{ "import" | i18n }}
</button>
</popup-footer>
</popup-page>

View File

@@ -15,7 +15,7 @@
<bit-item>
<button type="button" bit-item-content (click)="import()">
<div class="tw-flex tw-items-center tw-justify-center tw-gap-2">
<p>{{ "importItems" | i18n }}</p>
<p>{{ "import" | i18n }}</p>
<span
*ngIf="emptyVaultImportBadge$ | async"
bitBadge
@@ -30,7 +30,7 @@
</bit-item>
<bit-item>
<a bit-item-content routerLink="/export">
{{ "exportVault" | i18n }}
{{ "export" | i18n }}
<i slot="end" class="bwi bwi-angle-right" aria-hidden="true"></i>
</a>
</bit-item>
@@ -64,7 +64,7 @@
</bit-item>
<bit-item>
<button type="button" bit-item-content (click)="sync()">
{{ "syncVaultNow" | i18n }}
{{ "syncNow" | i18n }}
<span slot="secondary">{{ lastSync }}</span>
<i slot="end" class="bwi bwi-refresh" aria-hidden="true"></i>
</button>