Chatzilla Startup pref page fails to show lists when only one item, bug 190210 Chatzilla Preferences: to many 'Appearance' titles, bug 190777 git-svn-id: svn://10.0.0.236/trunk@137186 18797224-902f-48f8-a5cc-f745e15eee43
112 lines
4.4 KiB
XML
112 lines
4.4 KiB
XML
<?xml version="1.0"?>
|
|
|
|
<!--
|
|
-
|
|
- 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 Chatzilla
|
|
-
|
|
- Alternatively, the contents of this file may be used under the
|
|
- terms of the GNU Public License (the "GPL"), in which case the
|
|
- provisions of the GPL are applicable instead of those above.
|
|
- If you wish to allow use of your version of this file only
|
|
- under the terms of the GPL and not to allow others to use your
|
|
- version of this file under the MPL, indicate your decision by
|
|
- deleting the provisions above and replace them with the notice
|
|
- and other provisions required by the GPL. If you do not delete
|
|
- the provisions above, a recipient may use your version of this
|
|
- file under either the MPL or the GPL.
|
|
-
|
|
- Contributor(s):
|
|
- James Ross, <twpol@aol.com>, original author
|
|
-
|
|
-->
|
|
|
|
<?xml-stylesheet href="chrome://communicator/skin/" type="text/css"?>
|
|
<!DOCTYPE window SYSTEM "chrome://chatzilla/locale/pref-irc.dtd">
|
|
|
|
<page xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
|
onload="parent.initPanel('chrome://chatzilla/content/prefpanel/text.xul');"
|
|
headertitle="&text.window.title;">
|
|
|
|
<script type="application/x-javascript">
|
|
<![CDATA[
|
|
var _elementIDs = ["czMungerBold", "czMungerItalic", "czMungerUnderline",
|
|
"czMungerTeletype", "czMungerWeb", "czMungerMail", "czMungerChannels",
|
|
"czMungerBugzilla", "czMungerEmoti", "czMungerColors", "czMungerWrap",
|
|
"czDisplayCollapse", "czDisplayCopyMsgs"];
|
|
]]>
|
|
</script>
|
|
|
|
<groupbox>
|
|
<caption label="&prePro.title;"/>
|
|
<label>&prePro.desc;</label>
|
|
|
|
<grid>
|
|
<columns>
|
|
<column/>
|
|
<column flex="1"/><column flex="1"/><column flex="1"/><column flex="1"/>
|
|
</columns>
|
|
<rows>
|
|
<row align="center">
|
|
<label value="&prePro.styles;"/>
|
|
<checkbox id="czMungerBold" label="Bold" accesskey="B"
|
|
prefstring="extensions.irc.munger.bold"/>
|
|
<checkbox id="czMungerItalic" label="Italic" accesskey="I"
|
|
prefstring="extensions.irc.munger.italic"/>
|
|
<checkbox id="czMungerUnderline" label="Underline" accesskey="U"
|
|
prefstring="extensions.irc.munger.underline"/>
|
|
<checkbox id="czMungerTeletype" label="Teletype" accesskey="T"
|
|
prefstring="extensions.irc.munger.teletype"/>
|
|
</row>
|
|
<row align="center">
|
|
<label value="&prePro.links;"/>
|
|
<checkbox id="czMungerWeb" label="Web" accesskey="W"
|
|
prefstring="extensions.irc.munger.link"/>
|
|
<checkbox id="czMungerMail" label="Mail" accesskey="M"
|
|
prefstring="extensions.irc.munger.mailto"/>
|
|
<checkbox id="czMungerChannels" label="Channels" accesskey="C"
|
|
prefstring="extensions.irc.munger.channel-link"/>
|
|
<checkbox id="czMungerBugzilla" label="Bugzilla" accesskey="z"
|
|
prefstring="extensions.irc.munger.bugzilla-link"/>
|
|
</row>
|
|
</rows>
|
|
</grid>
|
|
|
|
<label value="&prePro.otherOptions;"/>
|
|
<vbox class="indent" align="start">
|
|
<checkbox id="czMungerEmoti" label="&prePro.emoti;" accesskey="e"
|
|
prefstring="extensions.irc.munger.face"/>
|
|
<checkbox id="czMungerColors" label="&prePro.colors;" accesskey="c"
|
|
prefstring="extensions.irc.munger.colorCodes"/>
|
|
<checkbox id="czMungerWrap" label="&prePro.wrap;" accesskey="W"
|
|
prefstring="extensions.irc.munger.word-hyphenator"/>
|
|
</vbox>
|
|
</groupbox>
|
|
|
|
<groupbox align="start">
|
|
<caption label="&text.title;"/>
|
|
<label>&text.desc;</label>
|
|
|
|
<checkbox id="czDisplayCollapse" label="&text.collapse;" accesskey="l"
|
|
prefstring="extensions.irc.views.collapseMsgs"/>
|
|
<checkbox id="czDisplayCopyMsgs" label="&text.copyMsgs;" accesskey="p"
|
|
prefstring="extensions.irc.views.copyMessages"/>
|
|
</groupbox>
|
|
|
|
<groupbox>
|
|
<caption label="&style.title;"/>
|
|
<label>&style.desc;</label>
|
|
|
|
<textbox/>
|
|
</groupbox>
|
|
</page>
|