integrationDocPrefs.xul (4224B)
1 <?xml version="1.0"?> 2 <!-- 3 ***** BEGIN LICENSE BLOCK ***** 4 5 Copyright © 2009 Center for History and New Media 6 George Mason University, Fairfax, Virginia, USA 7 http://zotero.org 8 9 This file is part of Zotero. 10 11 Zotero is free software: you can redistribute it and/or modify 12 it under the terms of the GNU Affero General Public License as published by 13 the Free Software Foundation, either version 3 of the License, or 14 (at your option) any later version. 15 16 Zotero is distributed in the hope that it will be useful, 17 but WITHOUT ANY WARRANTY; without even the implied warranty of 18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 19 GNU Affero General Public License for more details. 20 21 You should have received a copy of the GNU Affero General Public License 22 along with Zotero. If not, see <http://www.gnu.org/licenses/>. 23 24 ***** END LICENSE BLOCK ***** 25 --> 26 <?xml-stylesheet href="chrome://global/skin/global.css"?> 27 <?xml-stylesheet href="chrome://browser/skin/preferences/preferences.css"?> 28 <?xml-stylesheet href="chrome://zotero/skin/bibliography.css"?> 29 <!DOCTYPE window SYSTEM "chrome://zotero/locale/zotero.dtd"> 30 31 <dialog 32 id="zotero-doc-prefs-dialog" 33 orient="vertical" 34 buttons="accept,cancel,help" 35 title="&zotero.integration.docPrefs.title;" 36 onload="Zotero_File_Interface_Bibliography.init();" 37 ondialogaccept="Zotero_File_Interface_Bibliography.acceptSelection();" 38 ondialoghelp="Zotero_File_Interface_Bibliography.openHelpLink();" 39 onclose="document.documentElement.cancelDialog(); event.preventDefault(); event.stopPropagation();" 40 xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" 41 persist="screenX screenY" 42 style="width: 600px"> 43 44 <script src="../include.js"/> 45 <script src="../bibliography.js"/> 46 <vbox id="zotero-bibliography-container"> 47 <groupbox> 48 <caption label="&zotero.bibliography.style.label;"/> 49 <listbox id="style-listbox" onselect="Zotero_File_Interface_Bibliography.styleChanged()"/> 50 <hbox align="right"> 51 <label id="manage-styles" class="text-link" 52 onclick="Zotero_File_Interface_Bibliography.manageStyles()">&zotero.bibliography.manageStyles;</label> 53 </hbox> 54 </groupbox> 55 56 <groupbox id="locale-box"> 57 <hbox align="center"> 58 <caption label="&zotero.bibliography.locale.label;"/> 59 <menulist id="locale-menu" oncommand="Zotero_File_Interface_Bibliography.localeChanged(this.selectedItem.value)"/> 60 </hbox> 61 </groupbox> 62 63 <groupbox id="displayAs-groupbox"> 64 <caption label="&zotero.integration.prefs.displayAs.label;"/> 65 <radiogroup id="displayAs" orient="horizontal"> 66 <radio id="footnotes" label="&zotero.integration.prefs.footnotes.label;" selected="true"/> 67 <radio id="endnotes" label="&zotero.integration.prefs.endnotes.label;"/> 68 </radiogroup> 69 </groupbox> 70 71 <groupbox id="formatUsing-groupbox"> 72 <caption label="&zotero.integration.prefs.formatUsing.label;"/> 73 74 <radiogroup id="formatUsing" orient="vertical"> 75 <radio id="fields" selected="true"/> 76 <label class="radioDescription" id="fields-caption"/> 77 <label class="radioDescription" id="fields-file-format-notice"/> 78 <radio id="bookmarks" label="&zotero.integration.prefs.bookmarks.label;"/> 79 <description class="radioDescription" id="bookmarks-caption">&zotero.integration.prefs.bookmarks.caption;</description> 80 <description class="radioDescription" id="bookmarks-file-format-notice"/> 81 </radiogroup> 82 </groupbox> 83 84 <vbox id="automaticJournalAbbreviations-vbox"> 85 <checkbox id="automaticJournalAbbreviations-checkbox" label="&zotero.integration.prefs.automaticJournalAbbeviations.label;"/> 86 <description class="radioDescription">&zotero.integration.prefs.automaticJournalAbbeviations.caption;</description> 87 </vbox> 88 89 <vbox id="automaticCitationUpdates-vbox"> 90 <checkbox id="automaticCitationUpdates-checkbox" label="&zotero.integration.prefs.automaticCitationUpdates.label;" tooltiptext="&zotero.integration.prefs.automaticCitationUpdates.tooltip;"/> 91 <description class="radioDescription">&zotero.integration.prefs.automaticCitationUpdates.description;</description> 92 </vbox> 93 </vbox> 94 </dialog>