i18n for menu item roles
This commit is contained in:
parent
b0f5ae827f
commit
858f82742a
|
@ -749,9 +749,6 @@
|
||||||
"disableFaviconDesc": {
|
"disableFaviconDesc": {
|
||||||
"message": "Website Icons provide a recognizable image next to each login item in your vault."
|
"message": "Website Icons provide a recognizable image next to each login item in your vault."
|
||||||
},
|
},
|
||||||
"about": {
|
|
||||||
"message": "About"
|
|
||||||
},
|
|
||||||
"copy": {
|
"copy": {
|
||||||
"message": "Copy",
|
"message": "Copy",
|
||||||
"description": "Copy to clipboard"
|
"description": "Copy to clipboard"
|
||||||
|
@ -877,5 +874,72 @@
|
||||||
},
|
},
|
||||||
"noPasswordsInList": {
|
"noPasswordsInList": {
|
||||||
"message": "There are no passwords to list."
|
"message": "There are no passwords to list."
|
||||||
|
},
|
||||||
|
"undo": {
|
||||||
|
"message": "Undo"
|
||||||
|
},
|
||||||
|
"redo": {
|
||||||
|
"message": "Redo"
|
||||||
|
},
|
||||||
|
"cut": {
|
||||||
|
"message": "Cut",
|
||||||
|
"description": "Cut to clipboard"
|
||||||
|
},
|
||||||
|
"paste": {
|
||||||
|
"message": "Paste",
|
||||||
|
"description": "Paste from clipboard"
|
||||||
|
},
|
||||||
|
"selectAll": {
|
||||||
|
"message": "Select All"
|
||||||
|
},
|
||||||
|
"zoomIn": {
|
||||||
|
"message": "Zoom In"
|
||||||
|
},
|
||||||
|
"zoomOut": {
|
||||||
|
"message": "Zoom Out"
|
||||||
|
},
|
||||||
|
"resetZoom": {
|
||||||
|
"message": "Reset Zoom"
|
||||||
|
},
|
||||||
|
"toggleFullScreen": {
|
||||||
|
"message": "Toggle Full Screen"
|
||||||
|
},
|
||||||
|
"reload": {
|
||||||
|
"message": "Reload"
|
||||||
|
},
|
||||||
|
"forceReload": {
|
||||||
|
"message": "Force Reload"
|
||||||
|
},
|
||||||
|
"toggleDevTools": {
|
||||||
|
"message": "Toggle Developer Tools"
|
||||||
|
},
|
||||||
|
"minimize": {
|
||||||
|
"message": "Minimize",
|
||||||
|
"description": "Minimize window"
|
||||||
|
},
|
||||||
|
"zoom": {
|
||||||
|
"message": "Zoom"
|
||||||
|
},
|
||||||
|
"bringAllToFront": {
|
||||||
|
"message": "Bring All to Front",
|
||||||
|
"description": "Bring all windows to front (foreground)"
|
||||||
|
},
|
||||||
|
"aboutBitwarden": {
|
||||||
|
"message": "About Bitwarden"
|
||||||
|
},
|
||||||
|
"services": {
|
||||||
|
"message": "Services"
|
||||||
|
},
|
||||||
|
"hideBitwarden": {
|
||||||
|
"message": "Hide Bitwarden"
|
||||||
|
},
|
||||||
|
"hideOthers": {
|
||||||
|
"message": "Hide Others"
|
||||||
|
},
|
||||||
|
"showAll": {
|
||||||
|
"message": "Show All"
|
||||||
|
},
|
||||||
|
"quitBitwarden": {
|
||||||
|
"message": "Quit Bitwarden"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -77,28 +77,66 @@ export class MenuMain {
|
||||||
}
|
}
|
||||||
|
|
||||||
const selectionMenu = Menu.buildFromTemplate([
|
const selectionMenu = Menu.buildFromTemplate([
|
||||||
{ role: 'copy' },
|
{
|
||||||
|
label: this.main.i18nService.t('copy'),
|
||||||
|
role: 'copy',
|
||||||
|
},
|
||||||
{ type: 'separator' },
|
{ type: 'separator' },
|
||||||
{ role: 'selectall' },
|
{
|
||||||
|
label: this.main.i18nService.t('selectAll'),
|
||||||
|
role: 'selectall',
|
||||||
|
},
|
||||||
]);
|
]);
|
||||||
|
|
||||||
const inputMenu = Menu.buildFromTemplate([
|
const inputMenu = Menu.buildFromTemplate([
|
||||||
{ role: 'undo' },
|
{
|
||||||
{ role: 'redo' },
|
label: this.main.i18nService.t('undo'),
|
||||||
|
role: 'undo',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: this.main.i18nService.t('redo'),
|
||||||
|
role: 'redo',
|
||||||
|
},
|
||||||
{ type: 'separator' },
|
{ type: 'separator' },
|
||||||
{ role: 'cut', enabled: false },
|
{
|
||||||
{ role: 'copy', enabled: false },
|
label: this.main.i18nService.t('cut'),
|
||||||
{ role: 'paste' },
|
role: 'cut',
|
||||||
|
enabled: false,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: this.main.i18nService.t('copy'),
|
||||||
|
role: 'copy',
|
||||||
|
enabled: false,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: this.main.i18nService.t('paste'),
|
||||||
|
role: 'paste',
|
||||||
|
},
|
||||||
{ type: 'separator' },
|
{ type: 'separator' },
|
||||||
{ role: 'selectall' },
|
{
|
||||||
|
label: this.main.i18nService.t('selectAll'),
|
||||||
|
role: 'selectall',
|
||||||
|
},
|
||||||
]);
|
]);
|
||||||
|
|
||||||
const inputSelectionMenu = Menu.buildFromTemplate([
|
const inputSelectionMenu = Menu.buildFromTemplate([
|
||||||
{ role: 'cut' },
|
{
|
||||||
{ role: 'copy' },
|
label: this.main.i18nService.t('cut'),
|
||||||
{ role: 'paste' },
|
role: 'cut',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: this.main.i18nService.t('copy'),
|
||||||
|
role: 'copy',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: this.main.i18nService.t('paste'),
|
||||||
|
role: 'paste',
|
||||||
|
},
|
||||||
{ type: 'separator' },
|
{ type: 'separator' },
|
||||||
{ role: 'selectall' },
|
{
|
||||||
|
label: this.main.i18nService.t('selectAll'),
|
||||||
|
role: 'selectall',
|
||||||
|
},
|
||||||
]);
|
]);
|
||||||
|
|
||||||
this.main.windowMain.win.webContents.on('context-menu', (e, props) => {
|
this.main.windowMain.win.webContents.on('context-menu', (e, props) => {
|
||||||
|
@ -166,14 +204,32 @@ export class MenuMain {
|
||||||
{
|
{
|
||||||
label: this.main.i18nService.t('edit'),
|
label: this.main.i18nService.t('edit'),
|
||||||
submenu: [
|
submenu: [
|
||||||
{ role: 'undo' },
|
{
|
||||||
{ role: 'redo' },
|
label: this.main.i18nService.t('undo'),
|
||||||
|
role: 'undo',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: this.main.i18nService.t('redo'),
|
||||||
|
role: 'redo',
|
||||||
|
},
|
||||||
{ type: 'separator' },
|
{ type: 'separator' },
|
||||||
{ role: 'cut' },
|
{
|
||||||
{ role: 'copy' },
|
label: this.main.i18nService.t('cut'),
|
||||||
{ role: 'paste' },
|
role: 'cut',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: this.main.i18nService.t('copy'),
|
||||||
|
role: 'copy',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: this.main.i18nService.t('paste'),
|
||||||
|
role: 'paste',
|
||||||
|
},
|
||||||
{ type: 'separator' },
|
{ type: 'separator' },
|
||||||
{ role: 'selectall' },
|
{
|
||||||
|
label: this.main.i18nService.t('selectAll'),
|
||||||
|
role: 'selectall',
|
||||||
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -198,15 +254,37 @@ export class MenuMain {
|
||||||
click: () => this.main.messagingService.send('openPasswordHistory'),
|
click: () => this.main.messagingService.send('openPasswordHistory'),
|
||||||
},
|
},
|
||||||
{ type: 'separator' },
|
{ type: 'separator' },
|
||||||
{ role: 'zoomin', accelerator: 'CmdOrCtrl+=' },
|
{
|
||||||
{ role: 'zoomout', accelerator: 'CmdOrCtrl+-' },
|
label: this.main.i18nService.t('zoomIn'),
|
||||||
{ role: 'resetzoom', accelerator: 'CmdOrCtrl+0' },
|
role: 'zoomin', accelerator: 'CmdOrCtrl+=',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: this.main.i18nService.t('zoomOut'),
|
||||||
|
role: 'zoomout', accelerator: 'CmdOrCtrl+-',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: this.main.i18nService.t('resetZoom'),
|
||||||
|
role: 'resetzoom', accelerator: 'CmdOrCtrl+0',
|
||||||
|
},
|
||||||
{ type: 'separator' },
|
{ type: 'separator' },
|
||||||
{ role: 'togglefullscreen' },
|
{
|
||||||
|
label: this.main.i18nService.t('toggleFullScreen'),
|
||||||
|
role: 'togglefullscreen',
|
||||||
|
},
|
||||||
{ type: 'separator' },
|
{ type: 'separator' },
|
||||||
{ role: 'reload', accelerator: 'Alt+Shift+R' },
|
{
|
||||||
{ role: 'forcereload' },
|
label: this.main.i18nService.t('reload'),
|
||||||
{ role: 'toggledevtools' },
|
role: 'reload',
|
||||||
|
accelerator: 'Alt+Shift+R',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: this.main.i18nService.t('forceReload'),
|
||||||
|
role: 'forcereload',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: this.main.i18nService.t('toggleDevTools'),
|
||||||
|
role: 'toggledevtools',
|
||||||
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -295,8 +373,14 @@ export class MenuMain {
|
||||||
{
|
{
|
||||||
role: 'window',
|
role: 'window',
|
||||||
submenu: [
|
submenu: [
|
||||||
{ role: 'minimize' },
|
{
|
||||||
{ role: 'close' },
|
label: this.main.i18nService.t('minimize'),
|
||||||
|
role: 'minimize',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: this.main.i18nService.t('close'),
|
||||||
|
role: 'close',
|
||||||
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -431,7 +515,10 @@ export class MenuMain {
|
||||||
|
|
||||||
if (process.platform === 'darwin') {
|
if (process.platform === 'darwin') {
|
||||||
const firstMenuPart: MenuItemConstructorOptions[] = [
|
const firstMenuPart: MenuItemConstructorOptions[] = [
|
||||||
{ role: 'about' },
|
{
|
||||||
|
label: this.main.i18nService.t('aboutBitwarden'),
|
||||||
|
role: 'about',
|
||||||
|
},
|
||||||
updateMenuItem,
|
updateMenuItem,
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -439,23 +526,50 @@ export class MenuMain {
|
||||||
label: 'Bitwarden',
|
label: 'Bitwarden',
|
||||||
submenu: firstMenuPart.concat(firstMenuOptions, [
|
submenu: firstMenuPart.concat(firstMenuOptions, [
|
||||||
{ type: 'separator' },
|
{ type: 'separator' },
|
||||||
{ role: 'services', submenu: [] },
|
{
|
||||||
|
label: this.main.i18nService.t('services'),
|
||||||
|
role: 'services', submenu: [],
|
||||||
|
},
|
||||||
{ type: 'separator' },
|
{ type: 'separator' },
|
||||||
{ role: 'hide' },
|
{
|
||||||
{ role: 'hideothers' },
|
label: this.main.i18nService.t('hideBitwarden'),
|
||||||
{ role: 'unhide' },
|
role: 'hide',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: this.main.i18nService.t('hideOthers'),
|
||||||
|
role: 'hideothers',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: this.main.i18nService.t('showAll'),
|
||||||
|
role: 'unhide',
|
||||||
|
},
|
||||||
{ type: 'separator' },
|
{ type: 'separator' },
|
||||||
{ role: 'quit' },
|
{
|
||||||
|
label: this.main.i18nService.t('quitBitwarden'),
|
||||||
|
role: 'quit',
|
||||||
|
},
|
||||||
]),
|
]),
|
||||||
});
|
});
|
||||||
|
|
||||||
// Window menu
|
// Window menu
|
||||||
template[template.length - 2].submenu = [
|
template[template.length - 2].submenu = [
|
||||||
{ role: 'close' },
|
{
|
||||||
{ role: 'minimize' },
|
label: this.main.i18nService.t('close'),
|
||||||
{ role: 'zoom' },
|
role: 'close',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: this.main.i18nService.t('minimize'),
|
||||||
|
role: 'minimize',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: this.main.i18nService.t('zoom'),
|
||||||
|
role: 'zoom',
|
||||||
|
},
|
||||||
{ type: 'separator' },
|
{ type: 'separator' },
|
||||||
{ role: 'front' },
|
{
|
||||||
|
label: this.main.i18nService.t('bringAllToFront'),
|
||||||
|
role: 'front',
|
||||||
|
},
|
||||||
];
|
];
|
||||||
} else {
|
} else {
|
||||||
// File menu
|
// File menu
|
||||||
|
@ -468,7 +582,7 @@ export class MenuMain {
|
||||||
{ type: 'separator' },
|
{ type: 'separator' },
|
||||||
updateMenuItem,
|
updateMenuItem,
|
||||||
{
|
{
|
||||||
label: this.main.i18nService.t('about'),
|
label: this.main.i18nService.t('aboutBitwarden'),
|
||||||
click: () => {
|
click: () => {
|
||||||
const aboutInformation = this.main.i18nService.t('version', app.getVersion()) +
|
const aboutInformation = this.main.i18nService.t('version', app.getVersion()) +
|
||||||
'\nShell ' + process.versions.electron +
|
'\nShell ' + process.versions.electron +
|
||||||
|
|
Loading…
Reference in New Issue