diff --git a/app/browser/menu.js b/app/browser/menu.js index 48dba98dae9..7842c2709e9 100644 --- a/app/browser/menu.js +++ b/app/browser/menu.js @@ -322,21 +322,11 @@ const createHistorySubmenu = () => { CommonMenu.separatorMenuItem, */ { - label: locale.translation('clearHistory'), + label: locale.translation('clearBrowsingData'), accelerator: 'Shift+CmdOrCtrl+Delete', click: function (item, focusedWindow) { CommonMenu.sendToFocusedWindow(focusedWindow, [messages.SHORTCUT_OPEN_CLEAR_BROWSING_DATA_PANEL, {browserHistory: true}]) } - }, { - label: locale.translation('clearCache'), - click: function (item, focusedWindow) { - CommonMenu.sendToFocusedWindow(focusedWindow, [messages.SHORTCUT_OPEN_CLEAR_BROWSING_DATA_PANEL, {cachedImagesAndFiles: true}]) - } - }, { - label: locale.translation('clearSiteData'), - click: function (item, focusedWindow) { - CommonMenu.sendToFocusedWindow(focusedWindow, [messages.SHORTCUT_OPEN_CLEAR_BROWSING_DATA_PANEL, {allSiteCookies: true, cachedImagesAndFiles: true}]) - } } ] submenu = submenu.concat(menuUtil.createRecentlyClosedMenuItems(Immutable.fromJS(Object.keys(closedFrames).map(key => closedFrames[key])))) diff --git a/app/extensions/brave/locales/en-US/menu.properties b/app/extensions/brave/locales/en-US/menu.properties index 64477cb4540..5319c9dcadf 100644 --- a/app/extensions/brave/locales/en-US/menu.properties +++ b/app/extensions/brave/locales/en-US/menu.properties @@ -51,6 +51,7 @@ back=Back forward=Forward reopenLastClosedWindow=Reopen Last Closed Window showAllHistory=Show History +clearBrowsingData=Clear Browsing Data… clearHistory=Clear History… clearCache=Clear Cache… clearSiteData=Clear All Cookies and Site Data… diff --git a/app/locale.js b/app/locale.js index 1ebb663147b..cb963ed3740 100644 --- a/app/locale.js +++ b/app/locale.js @@ -121,6 +121,7 @@ var rendererIdentifiers = function () { 'clearCache', 'clearHistory', 'clearSiteData', + 'clearBrowsingData', 'recentlyClosed', 'recentlyVisited', 'bookmarks',