mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-23 11:56:00 +01:00
change new item shortcuts, resolves #52
This commit is contained in:
parent
cd80d68a80
commit
cd904cbb82
2
jslib
2
jslib
@ -1 +1 @@
|
||||
Subproject commit e3b3e444dbff7e4541fa5367ee26bc7ed4d73b26
|
||||
Subproject commit 6aef18ee7f54fc5cfb042206eb27e76f2458b60a
|
@ -907,9 +907,6 @@
|
||||
"reload": {
|
||||
"message": "Reload"
|
||||
},
|
||||
"forceReload": {
|
||||
"message": "Force Reload"
|
||||
},
|
||||
"toggleDevTools": {
|
||||
"message": "Toggle Developer Tools"
|
||||
},
|
||||
|
@ -254,22 +254,22 @@ export class MenuMain {
|
||||
{
|
||||
label: this.main.i18nService.t('typeLogin'),
|
||||
click: () => this.main.messagingService.send('newLogin'),
|
||||
accelerator: 'Alt+L',
|
||||
accelerator: 'CmdOrCtrl+Shift+L',
|
||||
},
|
||||
{
|
||||
label: this.main.i18nService.t('typeCard'),
|
||||
click: () => this.main.messagingService.send('newCard'),
|
||||
accelerator: 'Alt+C',
|
||||
accelerator: 'CmdOrCtrl+Shift+C',
|
||||
},
|
||||
{
|
||||
label: this.main.i18nService.t('typeIdentity'),
|
||||
click: () => this.main.messagingService.send('newIdentity'),
|
||||
accelerator: 'Alt+I',
|
||||
accelerator: 'CmdOrCtrl+Shift+I',
|
||||
},
|
||||
{
|
||||
label: this.main.i18nService.t('typeSecureNote'),
|
||||
click: () => this.main.messagingService.send('newSecureNote'),
|
||||
accelerator: 'Alt+S',
|
||||
accelerator: 'CmdOrCtrl+Shift+S',
|
||||
},
|
||||
],
|
||||
},
|
||||
@ -359,16 +359,12 @@ export class MenuMain {
|
||||
{ type: 'separator' },
|
||||
{
|
||||
label: this.main.i18nService.t('reload'),
|
||||
role: 'reload',
|
||||
accelerator: 'Alt+Shift+R',
|
||||
},
|
||||
{
|
||||
label: this.main.i18nService.t('forceReload'),
|
||||
role: 'forcereload',
|
||||
},
|
||||
{
|
||||
label: this.main.i18nService.t('toggleDevTools'),
|
||||
role: 'toggledevtools',
|
||||
accelerator: 'F12',
|
||||
},
|
||||
],
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user