diff --git a/app/extensions/brave/locales/en-US/menu.properties b/app/extensions/brave/locales/en-US/menu.properties index 7bf4f1f9102..96a67dcea17 100644 --- a/app/extensions/brave/locales/en-US/menu.properties +++ b/app/extensions/brave/locales/en-US/menu.properties @@ -92,7 +92,7 @@ editBookmark=Edit Bookmark... deleteFolder=Delete Folder deleteBookmark=Delete Bookmark stop=Stop -cloneTab=Clone Tab +clone=Clone reloadTab=Reload unpinTab=Unpin pinTab=Pin diff --git a/app/locale.js b/app/locale.js index e51b8a9d94c..f8945a465d5 100644 --- a/app/locale.js +++ b/app/locale.js @@ -94,7 +94,7 @@ var rendererIdentifiers = function () { 'reloadTab', 'cleanReload', 'reload', - 'cloneTab', + 'clone', 'readingView', 'tabManager', 'textEncoding', diff --git a/js/contextMenus.js b/js/contextMenus.js index f16672786e1..7d6ce12d977 100644 --- a/js/contextMenus.js +++ b/js/contextMenus.js @@ -363,6 +363,13 @@ function tabTemplateInit (frameProps) { focusedWindow.webContents.send(messages.SHORTCUT_FRAME_RELOAD, tabKey) } } + }, { + label: locale.translation('clone'), + click: (item, focusedWindow) => { + if (focusedWindow) { + focusedWindow.webContents.send(messages.SHORTCUT_ACTIVE_FRAME_CLONE) + } + } }) if (!frameProps.get('isPrivate')) { @@ -858,15 +865,6 @@ function mainTemplateInit (nodeProps, frame) { } } }, - { - label: locale.translation('cloneTab'), - click: (item, focusedWindow) => { - if (focusedWindow) { - focusedWindow.webContents.send(messages.SHORTCUT_ACTIVE_FRAME_CLONE) - } - } - }, - CommonMenu.separatorMenuItem, addBookmarkMenuItem('bookmarkPage', siteUtil.getDetailFromFrame(frame, siteTags.BOOKMARK), false), { label: locale.translation('find'),