52 lines
2 KiB
HTML
52 lines
2 KiB
HTML
<?xml version="1.0"?>
|
|
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
|
|
<?xml-stylesheet href="chrome://zotero/skin/zotero.css"?>
|
|
<?xml-stylesheet href="chrome://zotero/skin/bibliography.css"?>
|
|
<!DOCTYPE window SYSTEM "chrome://zotero/locale/zotero.dtd">
|
|
|
|
<window
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
|
xmlns:html="http://www.w3.org/1999/xhtml"
|
|
title="&zotero.bibliography.title;"
|
|
onload="Zotero_File_Interface_Bibliography.init()">
|
|
<dialog
|
|
buttons="cancel,accept"
|
|
id="zotero-bibliography">
|
|
|
|
<script src="include.js"/>
|
|
<script src="bibliography.js"/>
|
|
|
|
<vbox id="zotero-bibliography-container">
|
|
<groupbox>
|
|
<label><html:h2>&zotero.bibliography.style.label;</html:h2></label>
|
|
<richlistbox id="style-listbox" onselect="Zotero_File_Interface_Bibliography.styleChanged()"/>
|
|
<hbox pack="end">
|
|
<label id="manage-styles" class="text-link"
|
|
onclick="Zotero_File_Interface_Bibliography.manageStyles()">&zotero.bibliography.manageStyles;</label>
|
|
</hbox>
|
|
</groupbox>
|
|
<groupbox id="locale-box">
|
|
<hbox align="center">
|
|
<label><html:h2>&zotero.bibliography.locale.label;</html:h2></label>
|
|
<menulist id="locale-menu" oncommand="Zotero_File_Interface_Bibliography.localeChanged(this.selectedItem.value)" native="true"/>
|
|
</hbox>
|
|
</groupbox>
|
|
<groupbox>
|
|
<label><html:h2>&zotero.bibliography.outputMode;</html:h2></label>
|
|
<radiogroup id="output-mode-radio">
|
|
<radio id="citations"/>
|
|
<radio id="bibliography" label="&zotero.bibliography.bibliography;"/>
|
|
</radiogroup>
|
|
</groupbox>
|
|
<groupbox>
|
|
<label><html:h2>&zotero.bibliography.outputMethod;</html:h2></label>
|
|
<radiogroup id="output-method-radio">
|
|
<radio id="save-as-rtf" label="&zotero.bibliography.saveAsRTF.label;"/>
|
|
<radio id="save-as-html" label="&zotero.bibliography.saveAsHTML.label;"/>
|
|
<radio id="copy-to-clipboard" label="&zotero.bibliography.copyToClipboard.label;"/>
|
|
<radio id="print" label="&zotero.bibliography.print.label;"/>
|
|
</radiogroup>
|
|
</groupbox>
|
|
</vbox>
|
|
</dialog>
|
|
</window>
|