2005-03-24 16:00:01 +00:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
|
2012-05-21 11:12:37 +00:00
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2005-03-24 16:00:01 +00:00
|
|
|
|
|
|
|
<!DOCTYPE overlay [
|
|
|
|
<!ENTITY % brandDTD SYSTEM "chrome://branding/locale/brand.dtd">
|
|
|
|
%brandDTD;
|
|
|
|
<!ENTITY % baseMenuOverlayDTD SYSTEM "chrome://browser/locale/baseMenuOverlay.dtd">
|
|
|
|
%baseMenuOverlayDTD;
|
|
|
|
]>
|
|
|
|
<overlay id="baseMenuOverlay"
|
|
|
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
|
|
|
|
|
2009-11-05 13:53:26 +00:00
|
|
|
<script type="application/javascript" src="chrome://browser/content/utilityOverlay.js"/>
|
2005-03-24 16:00:01 +00:00
|
|
|
|
|
|
|
#ifdef XP_MACOSX
|
2006-02-21 19:53:35 +00:00
|
|
|
<!-- nsMenuBarX hides these and uses them to build the Application menu.
|
|
|
|
When using Carbon widgets for Mac OS X widgets, some of these are not
|
|
|
|
used as they only apply to Cocoa widget builds. All version of Firefox
|
|
|
|
through Firefox 2 will use Carbon widgets. -->
|
2005-03-24 16:00:01 +00:00
|
|
|
<menupopup id="menu_ToolsPopup">
|
2006-02-02 00:23:03 +00:00
|
|
|
<menuitem id="menu_preferences" label="&preferencesCmdMac.label;" key="key_preferencesCmdMac" oncommand="openPreferences();"/>
|
|
|
|
<menuitem id="menu_mac_services" label="&servicesMenuMac.label;"/>
|
2015-02-06 21:15:45 +00:00
|
|
|
<menuitem id="menu_mac_hide_app" label="&hideThisAppCmdMac2.label;" key="key_hideThisAppCmdMac"/>
|
2006-02-02 00:23:03 +00:00
|
|
|
<menuitem id="menu_mac_hide_others" label="&hideOtherAppsCmdMac.label;" key="key_hideOtherAppsCmdMac"/>
|
|
|
|
<menuitem id="menu_mac_show_all" label="&showAllAppsCmdMac.label;"/>
|
2005-03-24 16:00:01 +00:00
|
|
|
</menupopup>
|
|
|
|
<!-- Mac window menu -->
|
|
|
|
#include ../../../toolkit/content/macWindowMenu.inc
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef XP_WIN
|
|
|
|
<menu id="helpMenu"
|
|
|
|
label="&helpMenuWin.label;"
|
|
|
|
accesskey="&helpMenuWin.accesskey;">
|
|
|
|
#else
|
|
|
|
<menu id="helpMenu"
|
|
|
|
label="&helpMenu.label;"
|
|
|
|
accesskey="&helpMenu.accesskey;">
|
|
|
|
#endif
|
2005-06-20 21:25:45 +00:00
|
|
|
<menupopup id="menu_HelpPopup" onpopupshowing="buildHelpMenu();">
|
2008-03-28 08:48:26 +00:00
|
|
|
<menuitem id="menu_openHelp"
|
|
|
|
oncommand="openHelpLink('firefox-help')"
|
2010-01-18 02:29:56 +00:00
|
|
|
onclick="checkForMiddleClick(this, event);"
|
2015-02-06 21:15:45 +00:00
|
|
|
label="&productHelp2.label;"
|
|
|
|
accesskey="&productHelp2.accesskey;"
|
2005-03-24 16:00:01 +00:00
|
|
|
#ifdef XP_MACOSX
|
2009-04-18 18:49:22 +00:00
|
|
|
key="key_openHelpMac"/>
|
2005-03-24 16:00:01 +00:00
|
|
|
#else
|
2009-11-27 20:47:16 +00:00
|
|
|
/>
|
2005-03-24 16:00:01 +00:00
|
|
|
#endif
|
2014-03-06 01:41:43 +00:00
|
|
|
<menuitem id="menu_openTour"
|
|
|
|
oncommand="openTourPage();"
|
2015-02-06 21:15:45 +00:00
|
|
|
label="&helpShowTour2.label;"
|
|
|
|
accesskey="&helpShowTour2.accesskey;"/>
|
2013-07-23 10:43:54 +00:00
|
|
|
<menuitem id="menu_keyboardShortcuts"
|
|
|
|
oncommand="openHelpLink('keyboard-shortcuts')"
|
|
|
|
onclick="checkForMiddleClick(this, event);"
|
|
|
|
label="&helpKeyboardShortcuts.label;"
|
|
|
|
accesskey="&helpKeyboardShortcuts.accesskey;"/>
|
2013-01-15 00:55:43 +00:00
|
|
|
#ifdef MOZ_SERVICES_HEALTHREPORT
|
2013-01-11 23:31:38 +00:00
|
|
|
<menuitem id="healthReport"
|
2015-02-06 21:15:45 +00:00
|
|
|
label="&healthReport2.label;"
|
|
|
|
accesskey="&healthReport2.accesskey;"
|
2013-01-11 23:31:38 +00:00
|
|
|
oncommand="openHealthReport()"
|
|
|
|
onclick="checkForMiddleClick(this, event);"/>
|
2013-01-15 00:55:43 +00:00
|
|
|
#endif
|
2009-09-25 16:40:51 +00:00
|
|
|
<menuitem id="troubleShooting"
|
2009-11-14 12:44:19 +00:00
|
|
|
accesskey="&helpTroubleshootingInfo.accesskey;"
|
|
|
|
label="&helpTroubleshootingInfo.label;"
|
2009-09-25 16:40:51 +00:00
|
|
|
oncommand="openTroubleshootingPage()"
|
|
|
|
onclick="checkForMiddleClick(this, event);"/>
|
2010-08-23 17:34:29 +00:00
|
|
|
<menuitem id="feedbackPage"
|
|
|
|
accesskey="&helpFeedbackPage.accesskey;"
|
|
|
|
label="&helpFeedbackPage.label;"
|
|
|
|
oncommand="openFeedbackPage()"
|
|
|
|
onclick="checkForMiddleClick(this, event);"/>
|
2010-09-22 02:36:53 +00:00
|
|
|
<menuitem id="helpSafeMode"
|
|
|
|
accesskey="&helpSafeMode.accesskey;"
|
|
|
|
label="&helpSafeMode.label;"
|
|
|
|
oncommand="safeModeRestart();"/>
|
2007-03-28 05:10:53 +00:00
|
|
|
<menuseparator id="aboutSeparator"/>
|
2005-06-06 21:07:13 +00:00
|
|
|
<menuitem id="aboutName"
|
2015-02-06 21:15:45 +00:00
|
|
|
accesskey="&aboutProduct2.accesskey;"
|
|
|
|
label="&aboutProduct2.label;"
|
2005-06-06 21:07:13 +00:00
|
|
|
oncommand="openAboutDialog();"/>
|
|
|
|
</menupopup>
|
2005-03-24 16:00:01 +00:00
|
|
|
</menu>
|
|
|
|
|
|
|
|
<keyset id="baseMenuKeyset">
|
|
|
|
#ifdef XP_MACOSX
|
2009-04-18 18:49:22 +00:00
|
|
|
<key id="key_openHelpMac"
|
2009-05-30 04:09:57 +00:00
|
|
|
oncommand="openHelpLink('firefox-osxkey');"
|
2009-04-18 18:49:22 +00:00
|
|
|
key="&helpMac.commandkey;"
|
|
|
|
modifiers="accel"/>
|
2006-02-02 00:23:03 +00:00
|
|
|
<!-- These are used to build the Application menu under Cocoa widgets -->
|
|
|
|
<key id="key_preferencesCmdMac"
|
|
|
|
key="&preferencesCmdMac.commandkey;"
|
2009-04-18 18:49:22 +00:00
|
|
|
modifiers="accel"/>
|
2006-02-02 00:23:03 +00:00
|
|
|
<key id="key_hideThisAppCmdMac"
|
2015-02-06 21:15:45 +00:00
|
|
|
key="&hideThisAppCmdMac2.commandkey;"
|
2009-04-18 18:49:22 +00:00
|
|
|
modifiers="accel"/>
|
2006-02-02 00:23:03 +00:00
|
|
|
<key id="key_hideOtherAppsCmdMac"
|
|
|
|
key="&hideOtherAppsCmdMac.commandkey;"
|
2009-04-18 18:49:22 +00:00
|
|
|
modifiers="accel,alt"/>
|
2005-03-24 16:00:01 +00:00
|
|
|
#endif
|
|
|
|
</keyset>
|
2005-03-27 21:06:28 +00:00
|
|
|
|
|
|
|
<stringbundleset id="stringbundleset">
|
2005-07-10 20:01:10 +00:00
|
|
|
<stringbundle id="bundle_browser" src="chrome://browser/locale/browser.properties"/>
|
2005-03-27 21:06:28 +00:00
|
|
|
<stringbundle id="bundle_browser_region" src="chrome://browser-region/locale/region.properties"/>
|
|
|
|
</stringbundleset>
|
2005-03-24 16:00:01 +00:00
|
|
|
</overlay>
|