mirror of
https://github.com/bitwarden/browser
synced 2026-01-04 09:33:27 +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:
@@ -1,5 +1,5 @@
|
||||
<bit-dialog #dialog dialogSize="large">
|
||||
<span bitDialogTitle>{{ "exportVault" | i18n }}</span>
|
||||
<span bitDialogTitle>{{ "export" | i18n }}</span>
|
||||
<ng-container bitDialogContent>
|
||||
<tools-export
|
||||
(formLoading)="this.loading = $event"
|
||||
@@ -17,7 +17,7 @@
|
||||
bitFormButton
|
||||
buttonType="primary"
|
||||
>
|
||||
{{ "exportVault" | i18n }}
|
||||
{{ "export" | i18n }}
|
||||
</button>
|
||||
<button type="button" bitButton bitFormButton buttonType="secondary" bitDialogClose>
|
||||
{{ "cancel" | i18n }}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<bit-dialog #dialog dialogSize="large" background="alt">
|
||||
<span bitDialogTitle>{{ "importData" | i18n }}</span>
|
||||
<span bitDialogTitle>{{ "import" | i18n }}</span>
|
||||
<ng-container bitDialogContent>
|
||||
<div class="tw-relative">
|
||||
<tools-import
|
||||
@@ -27,7 +27,7 @@
|
||||
bitFormButton
|
||||
buttonType="primary"
|
||||
>
|
||||
{{ "importData" | i18n }}
|
||||
{{ "import" | i18n }}
|
||||
</button>
|
||||
<button type="button" bitButton bitFormButton buttonType="secondary" bitDialogClose>
|
||||
{{ "cancel" | i18n }}
|
||||
|
||||
@@ -1198,8 +1198,8 @@
|
||||
"followUs": {
|
||||
"message": "Follow us"
|
||||
},
|
||||
"syncVault": {
|
||||
"message": "Sync vault"
|
||||
"syncNow": {
|
||||
"message": "Sync now"
|
||||
},
|
||||
"changeMasterPass": {
|
||||
"message": "Change master password"
|
||||
@@ -1775,8 +1775,11 @@
|
||||
"exportFrom": {
|
||||
"message": "Export from"
|
||||
},
|
||||
"exportVault": {
|
||||
"message": "Export vault"
|
||||
"export": {
|
||||
"message": "Export"
|
||||
},
|
||||
"import": {
|
||||
"message": "Import"
|
||||
},
|
||||
"fileFormat": {
|
||||
"message": "File format"
|
||||
@@ -3492,10 +3495,6 @@
|
||||
"aliasDomain": {
|
||||
"message": "Alias domain"
|
||||
},
|
||||
"importData": {
|
||||
"message": "Import data",
|
||||
"description": "Used for the desktop menu item and the header of the import dialog"
|
||||
},
|
||||
"importError": {
|
||||
"message": "Import error"
|
||||
},
|
||||
|
||||
@@ -146,8 +146,8 @@ export class FileMenu extends FirstMenu implements IMenubarMenu {
|
||||
|
||||
private get syncVault(): MenuItemConstructorOptions {
|
||||
return {
|
||||
id: "syncVault",
|
||||
label: this.localize("syncVault"),
|
||||
id: "syncNow",
|
||||
label: this.localize("syncNow"),
|
||||
click: () => this.sendMessage("syncVault"),
|
||||
enabled: this.hasAuthenticatedAccounts,
|
||||
};
|
||||
@@ -155,8 +155,8 @@ export class FileMenu extends FirstMenu implements IMenubarMenu {
|
||||
|
||||
private get importVault(): MenuItemConstructorOptions {
|
||||
return {
|
||||
id: "importVault",
|
||||
label: this.localize("importData"),
|
||||
id: "import",
|
||||
label: this.localize("import"),
|
||||
click: () => this.sendMessage("importVault"),
|
||||
enabled: !this._isLocked,
|
||||
};
|
||||
@@ -164,8 +164,8 @@ export class FileMenu extends FirstMenu implements IMenubarMenu {
|
||||
|
||||
private get exportVault(): MenuItemConstructorOptions {
|
||||
return {
|
||||
id: "exportVault",
|
||||
label: this.localize("exportVault"),
|
||||
id: "export",
|
||||
label: this.localize("export"),
|
||||
click: () => this.sendMessage("exportVault"),
|
||||
enabled: !this._isLocked,
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user