Bug 361193 In suiterunner preferences, advanced -> Mousewheel pane doesn't display. r=KaiRo,sr=Neil
This commit is contained in:
Родитель
6036902dbf
Коммит
77c170cbb8
|
@ -1,96 +0,0 @@
|
|||
<?xml version="1.0"?>
|
||||
<!-- -*- Mode: xml; indent-tabs-mode: nil; -*-
|
||||
- ***** BEGIN LICENSE BLOCK *****
|
||||
- Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
||||
-
|
||||
- The contents of this file are subject to the Mozilla Public License Version
|
||||
- 1.1 (the "License"); you may not use this file except in compliance with
|
||||
- the License. You may obtain a copy of the License at
|
||||
- http://www.mozilla.org/MPL/
|
||||
-
|
||||
- Software distributed under the License is distributed on an "AS IS" basis,
|
||||
- WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
||||
- for the specific language governing rights and limitations under the
|
||||
- License.
|
||||
-
|
||||
- The Original Code is Mozilla Communicator client code, released
|
||||
- March 31, 1998.
|
||||
-
|
||||
- The Initial Developer of the Original Code is
|
||||
- Netscape Communications Corporation.
|
||||
- Portions created by the Initial Developer are Copyright (C) 1998-1999
|
||||
- the Initial Developer. All Rights Reserved.
|
||||
-
|
||||
- Contributor(s):
|
||||
- - Blake Ross <blake@netscape.com> (Original Author)
|
||||
-
|
||||
- Alternatively, the contents of this file may be used under the terms of
|
||||
- either of the GNU General Public License Version 2 or later (the "GPL"),
|
||||
- or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
||||
- in which case the provisions of the GPL or the LGPL are applicable instead
|
||||
- of those above. If you wish to allow use of your version of this file only
|
||||
- under the terms of either the GPL or the LGPL, and not to allow others to
|
||||
- use your version of this file under the terms of the MPL, indicate your
|
||||
- decision by deleting the provisions above and replace them with the notice
|
||||
- and other provisions required by the GPL or the LGPL. If you do not delete
|
||||
- the provisions above, a recipient may use your version of this file under
|
||||
- the terms of any one of the MPL, the GPL or the LGPL.
|
||||
-
|
||||
- ***** END LICENSE BLOCK ***** -->
|
||||
|
||||
<?xml-stylesheet href="chrome://communicator/skin/dialogs.css" type="text/css"?>
|
||||
|
||||
<!DOCTYPE dialog [
|
||||
<!ENTITY % turboDialogDTD SYSTEM "chrome://navigator/locale/turboDialog.dtd" >
|
||||
%turboDialogDTD;
|
||||
<!ENTITY % dialogOverlayDTD SYSTEM "chrome://global-platform/locale/platformDialogOverlay.dtd" >
|
||||
%dialogOverlayDTD;
|
||||
<!ENTITY % brandDTD SYSTEM "chrome://branding/locale/brand.dtd" >
|
||||
%brandDTD;
|
||||
]>
|
||||
|
||||
<dialog id="turboDialog" buttons="accept" buttonpack="center"
|
||||
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
||||
title="&exitWarningTitle.label;"
|
||||
onunload="SetTurboPref();">
|
||||
<script type="application/x-javascript">
|
||||
<![CDATA[
|
||||
function SetTurboPref() {
|
||||
var showDialog = document.getElementById("showAgain").checked;
|
||||
try {
|
||||
var prefs = Components.classes["@mozilla.org/preferences-service;1"].getService(Components.interfaces.nsIPrefBranch);
|
||||
if (prefs)
|
||||
prefs.setBoolPref("browser.turbo.showDialog", !showDialog);
|
||||
}
|
||||
catch(e) {
|
||||
}
|
||||
}
|
||||
]]>
|
||||
</script>
|
||||
|
||||
<hbox flex="1">
|
||||
<hbox align="start" valign="top">
|
||||
<image class="message-icon"/>
|
||||
</hbox>
|
||||
<separator orient="vertical" class="thin"/>
|
||||
<vbox flex="1">
|
||||
<!-- text -->
|
||||
<description flex="1">&exitWarningMsg.label;</description>
|
||||
<vbox flex="1" style="max-width: 36em;"/>
|
||||
<separator/>
|
||||
<hbox>
|
||||
<spacer flex="45%"/>
|
||||
<image id="turboTrayImage"/>
|
||||
<spacer flex="55%"/>
|
||||
</hbox>
|
||||
<separator class="thin"/>
|
||||
<separator class="thin"/>
|
||||
<!-- checkbox -->
|
||||
<hbox align="start">
|
||||
<checkbox id="showAgain" label="&exitWarningCheckbox.label;"
|
||||
accesskey="&exitWarningCheckbox.accesskey;"/>
|
||||
</hbox>
|
||||
</vbox>
|
||||
</hbox>
|
||||
|
||||
</dialog>
|
|
@ -43,8 +43,8 @@
|
|||
<?xml-stylesheet href="chrome://communicator/skin/" type="text/css"?>
|
||||
|
||||
<!DOCTYPE page [
|
||||
<!ENTITY % platformDTD SYSTEM "chrome://global-platform/locale/platformDialogOverlay.dtd" >
|
||||
%platformDTD;
|
||||
<!ENTITY % platformCommunicatorDTD SYSTEM "chrome://communicator-platform/locale/platformCommunicatorOverlay.dtd" >
|
||||
%platformCommunicatorDTD;
|
||||
<!ENTITY % prefMousewheelDTD SYSTEM "chrome://communicator/locale/pref/pref-mousewheel.dtd" >
|
||||
%prefMousewheelDTD;
|
||||
]>
|
||||
|
|
|
@ -43,8 +43,6 @@
|
|||
<!DOCTYPE page [
|
||||
<!ENTITY % brandDTD SYSTEM "chrome://branding/locale/brand.dtd" >
|
||||
%brandDTD;
|
||||
<!ENTITY % platformDTD SYSTEM "chrome://global-platform/locale/platformDialogOverlay.dtd" >
|
||||
%platformDTD;
|
||||
<!ENTITY % prefWinhooksDTD SYSTEM "chrome://communicator/locale/pref/pref-winhooks.dtd" >
|
||||
%prefWinhooksDTD;
|
||||
]>
|
||||
|
|
|
@ -1,39 +1,44 @@
|
|||
<!-- mac -->
|
||||
<!-- LOCALIZATION NOTE : FILE Do not translate all the Cmd.key-->
|
||||
|
||||
<!ENTITY closeCmd.label "Close">
|
||||
<!ENTITY closeCmd.key "W">
|
||||
<!ENTITY closeCmd.label "Close">
|
||||
<!ENTITY closeCmd.key "W">
|
||||
|
||||
<!ENTITY printSetupCmd.label "Page Setup...">
|
||||
<!ENTITY printSetupCmd.accesskey "u">
|
||||
<!ENTITY printSetupCmd.label "Page Setup...">
|
||||
<!ENTITY printSetupCmd.accesskey "u">
|
||||
|
||||
<!ENTITY quitApplicationCmd.label "Quit">
|
||||
<!ENTITY quitApplicationCmd.key "Q">
|
||||
<!ENTITY quitApplicationCmd.label "Quit">
|
||||
<!ENTITY quitApplicationCmd.key "Q">
|
||||
|
||||
<!ENTITY redoCmd.label "Redo">
|
||||
<!ENTITY redoCmd.key "Z">
|
||||
<!ENTITY redoCmd.label "Redo">
|
||||
<!ENTITY redoCmd.key "Z">
|
||||
|
||||
<!ENTITY historyCmd.key "H">
|
||||
<!ENTITY historyCmd.key "H">
|
||||
|
||||
<!ENTITY findTypeTextCmd.key "">
|
||||
<!ENTITY findTypeLinksCmd.key "">
|
||||
<!ENTITY findTypeTextCmd.key "">
|
||||
<!ENTITY findTypeLinksCmd.key "">
|
||||
|
||||
<!ENTITY accel.emacs_conflict "accel">
|
||||
<!ENTITY accel.emacs_conflict "accel">
|
||||
|
||||
<!ENTITY minimizeWindowCmd.label "Minimize">
|
||||
<!ENTITY minimizeWindowCmd.key "M">
|
||||
<!ENTITY zoomWindowCmd.label "Zoom">
|
||||
<!ENTITY minimizeWindowCmd.label "Minimize">
|
||||
<!ENTITY minimizeWindowCmd.key "M">
|
||||
<!ENTITY zoomWindowCmd.label "Zoom">
|
||||
|
||||
<!-- Help viewer -->
|
||||
<!ENTITY openHelpCmd.label "&brandShortName; Help">
|
||||
<!ENTITY openHelpCmd.accesskey "H">
|
||||
<!ENTITY openHelpCmd.label "&brandShortName; Help">
|
||||
<!ENTITY openHelpCmd.accesskey "H">
|
||||
|
||||
<!-- LOCALIZATION NOTE: openHelpFrontend.key and openHelpFrontend.modifiers
|
||||
will show the standard OS X shortcut (Cmd+? on most locales) in the Help
|
||||
menu. To make the shortcut work, mapping (Cmd+Shift+/ on en-US) is done with
|
||||
openHelpCmd.key and openHelpCmd.modifiers. -->
|
||||
<!ENTITY openHelpFrontend.key "?">
|
||||
<!ENTITY openHelpFrontend.modifiers "accel">
|
||||
<!ENTITY openHelpCmd.key "/">
|
||||
<!ENTITY openHelpCmd.modifiers "accel,shift">
|
||||
<!ENTITY openHelp2Cmd.key "VK_HELP">
|
||||
<!ENTITY openHelpFrontend.key "?">
|
||||
<!ENTITY openHelpFrontend.modifiers "accel">
|
||||
<!ENTITY openHelpCmd.key "/">
|
||||
<!ENTITY openHelpCmd.modifiers "accel,shift">
|
||||
<!ENTITY openHelp2Cmd.key "VK_HELP">
|
||||
|
||||
<!-- Key labels, for mousewheel prefs -->
|
||||
<!ENTITY ctrlKey.label "Ctrl">
|
||||
<!ENTITY altKey.label "Option">
|
||||
<!ENTITY shiftKey.label "Shift">
|
||||
|
|
|
@ -1,24 +1,29 @@
|
|||
<!-- unix -->
|
||||
<!-- LOCALIZATION NOTE : FILE Do not translate all the Cmd.key and accesskey -->
|
||||
|
||||
<!ENTITY closeCmd.label "Close">
|
||||
<!ENTITY closeCmd.key "W">
|
||||
<!ENTITY closeCmd.accesskey "c">
|
||||
<!ENTITY closeCmd.label "Close">
|
||||
<!ENTITY closeCmd.key "W">
|
||||
<!ENTITY closeCmd.accesskey "c">
|
||||
|
||||
<!ENTITY quitApplicationCmd.label "Quit">
|
||||
<!ENTITY quitApplicationCmd.key "Q">
|
||||
<!ENTITY quitApplicationCmd.accesskey "q">
|
||||
<!ENTITY quitApplicationCmd.label "Quit">
|
||||
<!ENTITY quitApplicationCmd.key "Q">
|
||||
<!ENTITY quitApplicationCmd.accesskey "q">
|
||||
|
||||
<!ENTITY redoCmd.label "Redo">
|
||||
<!ENTITY redoCmd.key "Y">
|
||||
<!ENTITY redoCmd.accesskey "r">
|
||||
<!ENTITY redoCmd.label "Redo">
|
||||
<!ENTITY redoCmd.key "Y">
|
||||
<!ENTITY redoCmd.accesskey "r">
|
||||
|
||||
<!ENTITY findTypeTextCmd.key "/">
|
||||
<!ENTITY findTypeLinksCmd.key "'">
|
||||
<!ENTITY findTypeTextCmd.key "/">
|
||||
<!ENTITY findTypeLinksCmd.key "'">
|
||||
|
||||
<!ENTITY accel.emacs_conflict "accel,shift">
|
||||
<!ENTITY accel.emacs_conflict "accel,shift">
|
||||
|
||||
<!-- Help viewer -->
|
||||
<!ENTITY openHelpCmd.label "Help Contents">
|
||||
<!ENTITY openHelpCmd.accesskey "H">
|
||||
<!ENTITY openHelpCmd.key "VK_F1">
|
||||
<!ENTITY openHelpCmd.label "Help Contents">
|
||||
<!ENTITY openHelpCmd.accesskey "H">
|
||||
<!ENTITY openHelpCmd.key "VK_F1">
|
||||
|
||||
<!-- Key labels, for mousewheel prefs -->
|
||||
<!ENTITY ctrlKey.label "Ctrl">
|
||||
<!ENTITY altKey.label "Alt">
|
||||
<!ENTITY shiftKey.label "Shift">
|
||||
|
|
|
@ -2,17 +2,17 @@
|
|||
<!-- LOCALIZATION NOTE : FILE Do not translate "accel" or "shift",
|
||||
You may want to translate the Cmd.key and accesskey -->
|
||||
|
||||
<!ENTITY closeCmd.label "Close">
|
||||
<!ENTITY closeCmd.key "W">
|
||||
<!ENTITY closeCmd.accesskey "c">
|
||||
<!ENTITY closeCmd.label "Close">
|
||||
<!ENTITY closeCmd.key "W">
|
||||
<!ENTITY closeCmd.accesskey "c">
|
||||
|
||||
<!ENTITY quitApplicationCmd.label "Exit">
|
||||
<!ENTITY quitApplicationCmd.key "Q">
|
||||
<!ENTITY quitApplicationCmd.accesskey "x">
|
||||
<!ENTITY quitApplicationCmd.label "Exit">
|
||||
<!ENTITY quitApplicationCmd.key "Q">
|
||||
<!ENTITY quitApplicationCmd.accesskey "x">
|
||||
|
||||
<!ENTITY redoCmd.label "Redo">
|
||||
<!ENTITY redoCmd.key "Y">
|
||||
<!ENTITY redoCmd.accesskey "r">
|
||||
<!ENTITY redoCmd.label "Redo">
|
||||
<!ENTITY redoCmd.key "Y">
|
||||
<!ENTITY redoCmd.accesskey "r">
|
||||
|
||||
<!ENTITY findTypeTextCmd.key "/">
|
||||
<!ENTITY findTypeLinksCmd.key "'">
|
||||
|
@ -23,3 +23,9 @@
|
|||
<!ENTITY openHelpCmd.label "Help Contents">
|
||||
<!ENTITY openHelpCmd.accesskey "H">
|
||||
<!ENTITY openHelpCmd.key "VK_F1">
|
||||
|
||||
<!-- Key labels, for mousewheel prefs -->
|
||||
<!ENTITY ctrlKey.label "Ctrl">
|
||||
<!ENTITY altKey.label "Alt">
|
||||
<!ENTITY shiftKey.label "Shift">
|
||||
|
||||
|
|
|
@ -115,16 +115,13 @@ en-US.jar:
|
|||
* locale/en-US/global-region/region.dtd (resources/locale/en-US/region.dtd)
|
||||
locale/en-US/global-region/region.properties (resources/locale/en-US/region.properties)
|
||||
* locale/en-US/global-platform/win/contents.rdf (resources/locale/en-US/win/contents-platform.rdf)
|
||||
locale/en-US/global-platform/win/platformDialogOverlay.dtd (resources/locale/en-US/win/platformDialogOverlay.dtd)
|
||||
locale/en-US/global-platform/win/platformKeys.properties (resources/locale/en-US/win/platformKeys.properties)
|
||||
locale/en-US/global-platform/win/wizard.properties (resources/locale/en-US/win/wizard.properties)
|
||||
* locale/en-US/global-platform/unix/contents.rdf (resources/locale/en-US/unix/contents-platform.rdf)
|
||||
locale/en-US/global-platform/unix/platformDialogOverlay.dtd (resources/locale/en-US/unix/platformDialogOverlay.dtd)
|
||||
locale/en-US/global-platform/unix/platformKeys.properties (resources/locale/en-US/unix/platformKeys.properties)
|
||||
locale/en-US/global-platform/unix/wizard.properties (resources/locale/en-US/unix/wizard.properties)
|
||||
locale/en-US/global-platform/unix/printjoboptions.dtd (resources/locale/en-US/unix/printjoboptions.dtd)
|
||||
* locale/en-US/global-platform/mac/contents.rdf (resources/locale/en-US/mac/contents-platform.rdf)
|
||||
locale/en-US/global-platform/mac/platformDialogOverlay.dtd (resources/locale/en-US/mac/platformDialogOverlay.dtd)
|
||||
locale/en-US/global-platform/mac/platformKeys.properties (resources/locale/en-US/mac/platformKeys.properties)
|
||||
locale/en-US/global-platform/mac/wizard.properties (resources/locale/en-US/mac/wizard.properties)
|
||||
#endif
|
||||
|
|
Загрузка…
Ссылка в новой задаче