mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 20:17:37 +00:00
124 lines
5.0 KiB
XML
124 lines
5.0 KiB
XML
<?xml version="1.0"?>
|
|
<!-- ***** 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):
|
|
Peter Weilbacher <mozilla@Weilbacher.org>
|
|
|
|
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/" type="text/css"?>
|
|
|
|
<!DOCTYPE page [
|
|
<!ENTITY % platformCommunicationDTD SYSTEM "chrome://communicator-platform/locale/pref/platformPrefOverlay.dtd">
|
|
%platformCommunicationDTD;
|
|
<!ENTITY % tabsDTD SYSTEM "chrome://communicator/locale/pref/pref-tabs.dtd">
|
|
%tabsDTD;
|
|
]>
|
|
|
|
<page xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
|
onload="parent.initPanel('chrome://communicator/content/pref/pref-tabs.xul');"
|
|
headertitle="&tabHeader.label;">
|
|
|
|
<script type="application/x-javascript">
|
|
<![CDATA[
|
|
var _elementIDs = ["tabStrip", "tabBackground", "middleClick", "urlBar", "loadGroup",
|
|
"newWindowGroup", "externalGroup"];
|
|
]]>
|
|
</script>
|
|
<groupbox id="generalTabPreferences" align="start">
|
|
<caption label="&tabDisplay.label;"/>
|
|
<checkbox id="tabStrip"
|
|
label="&autoHide.label;"
|
|
accesskey="&autoHide.accesskey;"
|
|
prefstring="browser.tabs.autoHide"/>
|
|
<checkbox id="tabBackground"
|
|
label="&background.label;"
|
|
accesskey="&background.accesskey;"
|
|
prefstring="browser.tabs.loadInBackground"
|
|
reversed="true"/>
|
|
</groupbox>
|
|
|
|
<groupbox id="loadGroupPreferences" align="start">
|
|
<caption label="&loadGroup.label;"/>
|
|
<radiogroup id="loadGroup" orient="horizontal" prefstring="browser.tabs.loadGroup">
|
|
<radio value="0" label="&loadGroupAppend.label;"
|
|
accesskey="&loadGroupAppend.accesskey;"/>
|
|
<radio value="1" label="&loadGroupReplace.label;"
|
|
accesskey="&loadGroupReplace.accesskey;"/>
|
|
</radiogroup>
|
|
</groupbox>
|
|
|
|
<groupbox id="useTabPreferences" align="start">
|
|
<caption label="&openTabs.label;"/>
|
|
<checkbox id="middleClick"
|
|
label="&middleClick.label;"
|
|
accesskey="&middleClick.accesskey;"
|
|
prefstring="browser.tabs.opentabfor.middleclick"/>
|
|
|
|
<checkbox id="urlBar"
|
|
label="&urlbar.label;"
|
|
accesskey="&urlbar.accesskey;"
|
|
prefstring="browser.tabs.opentabfor.urlbar"/>
|
|
</groupbox>
|
|
|
|
<hbox equalsize="always">
|
|
<groupbox flex="1">
|
|
<caption label="&newWindow.label;"/>
|
|
<description>&newWindowDescription.label;</description>
|
|
<radiogroup id="newWindowGroup" prefstring="browser.link.open_newwindow">
|
|
<radio value="1" label="&openCurrent.label;"
|
|
accesskey="&newWindowGroupCurrent.accesskey;"/>
|
|
<radio value="3" label="&openTab.label;"
|
|
accesskey="&newWindowGroupTab.accesskey;"/>
|
|
<radio value="2" label="&openWindow.label;"
|
|
accesskey="&newWindowGroupWindow.accesskey;"/>
|
|
</radiogroup>
|
|
</groupbox>
|
|
|
|
<groupbox flex="1">
|
|
<caption label="&external.label;"/>
|
|
<description>&externalDescription.label;</description>
|
|
<radiogroup id="externalGroup" prefstring="browser.link.open_external">
|
|
<radio value="1" label="&openCurrent.label;"
|
|
accesskey="&externalGroupCurrent.accesskey;"/>
|
|
<radio value="3" label="&openTab.label;"
|
|
accesskey="&externalGroupTab.accesskey;"/>
|
|
<radio value="2" label="&openWindow.label;"
|
|
accesskey="&externalGroupWindow.accesskey;"/>
|
|
</radiogroup>
|
|
</groupbox>
|
|
</hbox>
|
|
|
|
</page>
|