home *** CD-ROM | disk | FTP | other *** search
/ ftp.swcp.com / ftp.swcp.com.zip / ftp.swcp.com / mac / mozilla-macos9-1.3.1.sea.bin / Mozilla1.3.1 / Chrome / comm.jar / content / communicator / pref / pref-languages-add.xul < prev    next >
Extensible Markup Language  |  2003-06-08  |  2KB  |  52 lines

  1. <?xml version="1.0"?> <!-- -*- Mode: SGML; indent-tabs-mode: nil; -*- -->
  2. <!--
  3.  
  4.   The contents of this file are subject to the Netscape Public License
  5.   Version 1.1 (the "NPL"); you may not use this file except in
  6.   compliance with the NPL.  You may obtain a copy of the NPL at
  7.   http://www.mozilla.org/NPL/
  8.  
  9.   Software distributed under the NPL is distributed on an "AS IS" basis,
  10.   WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
  11.   for the specific language governing rights and limitations under the
  12.   NPL.
  13.  
  14.   The Initial Developer of this code under the NPL is Netscape
  15.   Communications Corporation.  Portions created by Netscape are
  16.   Copyright (C) 1999 Netscape Communications Corporation.  All Rights
  17.   Reserved.
  18.  
  19.  Contributor(s):
  20.    Adrian Havill <havill@redhat.com>
  21. -->
  22.  
  23. <?xml-stylesheet href="chrome://communicator/skin/" type="text/css"?>
  24.  
  25. <!DOCTYPE dialog SYSTEM "chrome://communicator/locale/pref/pref-languages.dtd" >
  26.  
  27. <dialog xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  28.       title="&languages.customize.add.title.label;"
  29.       onload="Init();"
  30.       ondialogaccept="return AddAvailableLanguage();"
  31.       style="width: 25em;height: 25em;">
  32.  
  33.   <script type="application/x-javascript" src="pref-languages.js"/>
  34.   <!-- XXX: Replace strres.js when pref-languages is converted -->
  35.   <script type="application/x-javascript" src="chrome://global/content/strres.js"/>
  36.  
  37.   <description>&languages.customize.prefAddLangDescript;</description>
  38.   <separator class="thin"/>
  39.   <description>&languages.customize.available.label;</description>
  40.  
  41.   <listbox id="available_languages" flex="1" seltype="multiple"
  42.            ondblclick="HandleDoubleClick(event.target)"/>
  43.  
  44.   <hbox align="center">
  45.     <label value="&languages.customize.others.label;" control="languages.other"/>
  46.     <textbox id="languages.other" size="6" />
  47.     <label value="&languages.customize.others.examples;" control="languages.other"/>
  48.   </hbox>
  49.  
  50. </dialog>
  51.  
  52.