Use citeproc-js as CSL parser. There is an issue with multiple citations in numbered styles that I will probably need Frank's help to track down, but otherwise, this seems to work. Many things are completely untested, including EndNote style support. Currently requires CSL 1.0 styles. In the near future, I hope to use the XSLT stylesheet to transform CSL 0.8 to CSL 1.0.

closes #1650: suppress author does not work for multiple sources
closes #1505: Edit Biblography Button Strips Year Disambiguation
closes #1503: Editing a bibliography resets all reference numbers to 1 (new)
closes #1262: Broken pluralization with et al. + other issues
closes #1238: Localize quotation marks
closes #1191: Harmonize 'plural/pluralize' label attribute with CSL schema
closes #1154: Only one works page numbers are added to the citation are when citing multiple works by the same author
closes #1097: Disambiguation issues
closes #1083: Defect in IEEE CSL with Multiple Citations
closes #993: more sophisticated subsequent-author-substitute
closes #833: text-transform doesn't work with name
This commit is contained in:
Simon Kornblith 2010-05-30 11:25:25 +00:00
parent 79d3122f58
commit bd0a4a3b96
54 changed files with 20131 additions and 11613 deletions

View file

@ -60,15 +60,30 @@
"<b>":"\\b ",
"</b>":"\\b0 ",
"<br />":"\x0B",
"<sup>":"\\super ",
"</sup>":"\\super0 ",
"<sub>":"\\sub ",
"</sub>":"\\sub0 ",
// there's no way to mimic a tab stop in CSS without
// tables, which wouldn't work here.
'<span class="tab">&nbsp;</span>':"\t"
'<span class="tab">&nbsp;</span>':"\\tab "
};
this._rtfToHtmlMap = [
[/\\uc0\{?\\u([0-9]+)\}? ?/g, function(wholeStr, aCode) { return String.fromCharCode(aCode) }],
["\\t ", '<span class="tab">&nbsp;</span>'],
[/(?:\\par |\\\r?\n)/g, "</p><p>"],
[/\\super (.*?)\\nosupersub /g, "<sup>$1</sup>"],
[/\\sub (.*?)\\nosupersub /g, "<sub>$1</sub>"],
];
this._htmlToRtfMap = [
[/[\x7F-\uFFFF]/g, function(aChar) { return "\\uc0\\u"+aChar.charCodeAt(0).toString()+" " }],
["<p>", ""],
["</p>", "\\par "],
[/<\/?div[^>]*>/g, ""],
["<sup>", "\\super "],
["</sup>", "\\nosupersub "],
["<sub>", "\\sub "],
["</sub>", "\\nosupersub "],
];
this._rtfRexMap = [
["<span style=\"font-variant:small-caps;\">",
/small-caps/,
@ -117,7 +132,6 @@
break;
case 'change':
Zotero.debug("Event type is " + event.type);
break;
default:
@ -163,16 +177,9 @@
<!-- Sets or returns contents of rich text box -->
<property name="value">
<getter><![CDATA[
var output = this._editor.getBody();
output = output.innerHTML;
Zotero.debug("RAW");
Zotero.debug(output);
var output = this._editor.getContent();
Zotero.debug("XHTML");
Zotero.debug(output);
if(this._format == "Integration" || this._format == "RTF") {
if(this._format == "RTF") {
// do appropriate replacement operations
for(var needle in this._rtfMap) {
output = output.replace(needle, this._rtfMap[needle], "g");
@ -201,9 +208,9 @@
};
output = l.join("");
};
output = output.replace("<p>", "", "g");
output = output.replace("</p>", "\\par ", "g");
output = output.replace(/<\/?div[^>]*>/g, "");
for each(var entry in this._htmlToRtfMap) {
output = output.replace(entry[0], entry[1], "g");
}
output = Zotero.Utilities.prototype.trim(output);
output = output.replace(" ", "&nbsp;", "g");
output = Zotero.Utilities.prototype.unescapeHTML(output);
@ -213,8 +220,6 @@
return output;
]]></getter>
<setter><![CDATA[
Zotero.debug("Setting value!");
if (self._timer) {
clearTimeout(self._timer);
}
@ -233,16 +238,8 @@
return ;
}
if (this.value == val) {
Zotero.debug("Value hasn't changed!");
return;
}
Zotero.debug("Value has changed");
var html = val;
if(this._format == "Integration" || this._format == "RTF") {
if(this._format == "RTF") {
var bodyStyle = "";
if(html.substr(0, 3) == "\\li") {
// try to show paragraph formatting
@ -277,8 +274,10 @@
html = html.replace(tagspec[2], tagspec[0], "g");
html = html.replace(tagspec[3], "</span>", "g");
}
html = '<div style="'+bodyStyle+'"><p>'+html.replace("\par ", "</p><p>")+"</p></div>";
Zotero.debug("setting content to "+html);
for each(var entry in this._rtfToHtmlMap) {
html = html.replace(entry[0], entry[1], "g");
}
html = '<div style="'+bodyStyle+'"><p>'+html+"</p></div>";
}
this._editor.setContent(html);

View file

@ -379,11 +379,11 @@ var Zotero_File_Interface = new function() {
createInstance(Components.interfaces.nsITransferable);
var clipboardService = Components.classes["@mozilla.org/widget/clipboard;1"].
getService(Components.interfaces.nsIClipboard);
var csl = Zotero.Styles.get(style).csl;
var itemSet = csl.createItemSet(items);
var style = Zotero.Styles.get(style).csl;
style.updateItems([item.id for each(item in items)]);
// add HTML
var bibliography = csl.formatBibliography(itemSet, "HTML");
var bibliography = Zotero.Cite.makeFormattedBibliography(style, "html");
var str = Components.classes["@mozilla.org/supports-string;1"].
createInstance(Components.interfaces.nsISupportsString);
str.data = bibliography;
@ -391,7 +391,9 @@ var Zotero_File_Interface = new function() {
transferable.setTransferData("text/html", str, bibliography.length*2);
// add text (or HTML source)
var bibliography = csl.formatBibliography(itemSet, asHTML ? 'HTML' : 'Text');
if(!asHTML) {
var bibliography = Zotero.Cite.makeFormattedBibliography(style, "text");
}
var str = Components.classes["@mozilla.org/supports-string;1"].
createInstance(Components.interfaces.nsISupportsString);
str.data = bibliography;
@ -416,16 +418,13 @@ var Zotero_File_Interface = new function() {
var clipboardService = Components.classes["@mozilla.org/widget/clipboard;1"].
getService(Components.interfaces.nsIClipboard);
var csl = Zotero.Styles.get(style).csl;
var itemSet = csl.createItemSet(items);
var itemIDs = [];
for (var i=0; i<items.length; i++) {
itemIDs.push(items[i].getID());
}
var citation = csl.createCitation(itemSet.getItemsByIds(itemIDs));
var style = Zotero.Styles.get(style).csl;
style.updateItems([item.id for each(item in items)]);
var citation = {"citationItems":[{id:item.id} for each(item in items)], properties:{}};
// add HTML
var bibliography = csl.formatCitation(citation, "HTML");
style.setOutputFormat("html");
var bibliography = style.appendCitationCluster(citation, true)[0][1];
var str = Components.classes["@mozilla.org/supports-string;1"].
createInstance(Components.interfaces.nsISupportsString);
str.data = bibliography;
@ -433,7 +432,10 @@ var Zotero_File_Interface = new function() {
transferable.setTransferData("text/html", str, bibliography.length*2);
// add text (or HTML source)
var bibliography = csl.formatCitation(citation, asHTML ? 'HTML' : 'Text');
if(!asHTML) {
style.setOutputFormat("text");
var bibliography = style.appendCitationCluster(citation, true)[0][1];
}
var str = Components.classes["@mozilla.org/supports-string;1"].
createInstance(Components.interfaces.nsISupportsString);
str.data = bibliography;
@ -467,9 +469,9 @@ var Zotero_File_Interface = new function() {
if(!io.output) return;
// determine output format
var format = "HTML";
var format = "html";
if(io.output == "save-as-rtf") {
format = "RTF";
format = "rtf";
}
// generate bibliography
@ -479,9 +481,9 @@ var Zotero_File_Interface = new function() {
return;
}
else {
var csl = Zotero.Styles.get(io.style).csl;
var itemSet = csl.createItemSet(items);
var bibliography = csl.formatBibliography(itemSet, format);
var style = Zotero.Styles.get(io.style).csl;
style.updateItems([item.id for each(item in items)]);
var bibliography = Zotero.Cite.makeFormattedBibliography(style, format);
}
} catch(e) {
window.alert(Zotero.getString("fileInterface.bibliographyGenerationError"));

View file

@ -27,9 +27,9 @@ var Zotero_Citation_Dialog = new function () {
var _preserveData = {
"prefix":"value",
"suffix":"value",
"locatorType":"selectedIndex",
"label":"selectedIndex",
"locator":"value",
"suppressAuthor":"checked"
"suppress-author":"checked"
};
var _itemData = new Object();
@ -38,6 +38,7 @@ var Zotero_Citation_Dialog = new function () {
var _previewShown = false;
var _suppressNextTreeSelect = false;
var _locatorIndexArray = {};
var _locatorNameArray = {};
var _autoRegeneratePref;
var _acceptButton;
var _sortCheckbox;
@ -78,20 +79,21 @@ var Zotero_Citation_Dialog = new function () {
}
// load locators
var locators = Zotero.CSL.Global.getLocatorStrings();
var menu = document.getElementById("locatorType");
var locators = Zotero.Cite.labels;
var menu = document.getElementById("label");
var popup = document.getElementById("locator-type-popup");
var i = 0;
for(var value in locators) {
var locator = locators[value];
locator = locator[0].toUpperCase()+locator.substr(1);
var locatorLabel = locator[0].toUpperCase()+locator.substr(1);
// add to popup
var child = document.createElement("menuitem");
child.setAttribute("value", value);
child.setAttribute("label", locator);
child.setAttribute("label", locatorLabel);
popup.appendChild(child);
// add to array
_locatorIndexArray[value] = i;
_locatorIndexArray[locator] = i;
_locatorNameArray[i] = locator;
i++;
}
menu.selectedIndex = 0;
@ -100,15 +102,15 @@ var Zotero_Citation_Dialog = new function () {
doLoad();
// if we already have a citation, load data from it
document.getElementById('editor').format = "Integration";
document.getElementById('editor').format = "RTF";
if(io.citation.citationItems.length) {
if(io.citation.citationItems.length == 1) {
// single citation
_suppressNextTreeSelect = true;
itemsView.selectItem(io.citation.citationItems[0].itemID); // treeview from selectItemsDialog.js
itemsView.selectItem(io.citation.citationItems[0].id); // treeview from selectItemsDialog.js
for(var property in _preserveData) {
if(io.citation.citationItems[0][property]) {
if(property == "locatorType") {
if(property == "label") {
document.getElementById(property)[_preserveData[property]] = _locatorIndexArray[io.citation.citationItems[0][property]];
} else {
document.getElementById(property)[_preserveData[property]] = io.citation.citationItems[0][property];
@ -119,10 +121,10 @@ var Zotero_Citation_Dialog = new function () {
// multiple citations
toggleMultipleSources();
for(var i=0; i<io.citation.citationItems.length; i++) {
var item = Zotero.Items.get(io.citation.citationItems[i].itemID);
var item = Zotero.Items.get(io.citation.citationItems[i].id);
if(item) {
_addItem(item);
_itemData[io.citation.citationItems[i].itemID] = io.citation.citationItems[i];
_itemData[io.citation.citationItems[i].id] = io.citation.citationItems[i];
}
}
}
@ -288,7 +290,7 @@ var Zotero_Citation_Dialog = new function () {
// add items back to list
for(var i=0; i<io.citation.citationItems.length; i++) {
var item = Zotero.Items.get(io.citation.citationItems[i].itemID);
var item = Zotero.Items.get(io.citation.citationItems[i].id);
_addItem(item);
}
}
@ -361,7 +363,9 @@ var Zotero_Citation_Dialog = new function () {
* called when accept button is clicked
*/
function accept() {
Zotero.debug("Trying to accept");
_getCitation();
Zotero.debug("got citation");
var isCustom = _previewShown && io.citation.citationItems.length // if a citation is selected
&& document.getElementById('editor').value != _originalHTML // and citation has been edited
@ -370,6 +374,7 @@ var Zotero_Citation_Dialog = new function () {
} else {
var citation = (io.citation.citationItems.length ? io.previewFunction() : "");
}
Zotero.debug("verified not custom");
if(Zotero.Utilities.prototype.trim(citation) == "") {
var promptService = Components.classes["@mozilla.org/embedcomp/prompt-service;1"]
@ -379,6 +384,7 @@ var Zotero_Citation_Dialog = new function () {
Zotero.getString("integration.emptyCitationWarning.body"));
if(!insert) return false;
}
Zotero.debug("verified not empty");
if(isCustom) io.citation.properties.custom = citation;
@ -431,8 +437,8 @@ var Zotero_Citation_Dialog = new function () {
// save property
if(_lastSelected) {
if(property == "locatorType") {
_itemData[_lastSelected][box] = domBox.selectedItem.value;
if(property == "label") {
_itemData[_lastSelected][box] = _locatorNameArray[domBox.selectedIndex];
} else {
_itemData[_lastSelected][box] = domBox[property];
}
@ -441,7 +447,7 @@ var Zotero_Citation_Dialog = new function () {
if(itemID) {
domBox.disabled = false;
if(_itemData[itemID] && _itemData[itemID][box] !== undefined) {
if(property == "locatorType") {
if(property == "label") {
domBox[property] = _locatorIndexArray[_itemData[itemID][box]];
} else {
domBox[property] = _itemData[itemID][box];
@ -463,7 +469,7 @@ var Zotero_Citation_Dialog = new function () {
io.citation.citationItems = new Array();
// use to map selectedIndexes back to page/paragraph/line
var locatorTypeElements = document.getElementById("locatorType").getElementsByTagName("menuitem");
var locatorTypeElements = document.getElementById("label").getElementsByTagName("menuitem");
if(_multipleSourcesOn) {
_itemSelected(); // store locator info
@ -477,25 +483,25 @@ var Zotero_Citation_Dialog = new function () {
var itemID = citationList.childNodes[i].value;
var citationItem = _itemData[itemID];
citationItem.itemID = itemID;
citationItem.id = itemID;
io.citation.citationItems.push(citationItem);
}
}
} else {
var items = itemsView.getSelectedItems(true); // treeview from selectItemsDialog.js
var citationItem = new Zotero.CSL.CitationItem();
citationItem.itemID = items[0];
var citationItem = {};
citationItem.id = items[0];
for(var property in _preserveData) {
if(property == "locatorType") {
citationItem[property] = document.getElementById(property).selectedItem.value;
if(property == "label") {
citationItem[property] = _locatorNameArray[document.getElementById(property).selectedIndex];
} else {
citationItem[property] = document.getElementById(property)[_preserveData[property]];
}
}
if(citationItem["locator"] == "") {
citationItem["locator"] = citationItem["locatorType"] = undefined;
citationItem["locator"] = citationItem["label"] = undefined;
}
io.citation.citationItems = [citationItem];

View file

@ -187,13 +187,13 @@
<separator flex="4"/>
<vbox flex="1">
<hbox align="stretch">
<menulist onchange="Zotero_Citation_Dialog.confirmRegenerate(true)" id="locatorType">
<menulist onchange="Zotero_Citation_Dialog.confirmRegenerate(true)" id="label">
<menupopup id="locator-type-popup"/>
</menulist>
<textbox oninput="Zotero_Citation_Dialog.confirmRegenerate(false)" onchange="Zotero_Citation_Dialog.confirmRegenerate(true)" id="locator" flex="1"/>
</hbox>
<separator style="height: 2px" flex="1"/>
<checkbox oncommand="Zotero_Citation_Dialog.confirmRegenerate(true)" id="suppressAuthor" label="&zotero.citation.suppressAuthor.label;"/>
<checkbox oncommand="Zotero_Citation_Dialog.confirmRegenerate(true)" id="suppress-author" label="&zotero.citation.suppressAuthor.label;"/>
</vbox>
</hbox>
</vbox>

View file

@ -25,9 +25,9 @@
var Zotero_Bibliography_Dialog = new function () {
var bibEditInterface;
var itemSet;
var _originalBibEntry;
var _lastSelectedItem;
var _lastSelectedItemID = false;
var _lastSelectedIndex = false;
var _lastSelectedValue = false;
this.load = load;
this.treeItemSelected = treeItemSelected;
@ -40,10 +40,9 @@ var Zotero_Bibliography_Dialog = new function () {
* initialize add citation dialog
*/
function load() {
document.getElementById('editor').format = "Integration";
document.getElementById('editor').format = "RTF";
bibEditInterface = window.arguments[0].wrappedJSObject;
itemSet = bibEditInterface.getItemSet();
// load (from selectItemsDialog.js)
doLoad();
@ -56,10 +55,10 @@ var Zotero_Bibliography_Dialog = new function () {
* called when an item in the item selection tree is clicked
*/
function treeItemSelected() {
var items = itemsView.getSelectedItems(true); // treeview from selectItemsDialog.js
var selectedItems = itemsView.getSelectedItems(true); // treeview from selectItemsDialog.js
// disable add if item already in itemSet
document.getElementById("add").disabled = !items.length || itemSet.getItemsByIds([items[0]])[0];
document.getElementById("add").disabled = selectedItems.length && bibEditInterface.bibliography[0].entry_ids.indexOf(selectedItems[0].id) !== -1;
}
/*
@ -72,9 +71,9 @@ var Zotero_Bibliography_Dialog = new function () {
document.getElementById("remove").disabled = !selectedListItem;
if(selectedListItem) {
_updatePreview(itemSet.getItemsByIds([selectedListItem.value])[0]);
_updatePreview(selectedListItem.value);
} else {
_updatePreview(false);
_updatePreview();
}
}
@ -82,9 +81,10 @@ var Zotero_Bibliography_Dialog = new function () {
* Adds a citation to the reference list
*/
function add() {
var item = itemsView.getSelectedItems()[0]; // treeview from selectItemsDialog.js
var selectedItem = itemsView.getSelectedItems()[0]; // treeview from selectItemsDialog.js
Zotero.debug(selectedItem);
bibEditInterface.add(item);
bibEditInterface.add(selectedItem.id);
document.getElementById("add").disabled = true;
_loadItems();
}
@ -94,10 +94,9 @@ var Zotero_Bibliography_Dialog = new function () {
*/
function remove() {
var selectedListItem = document.getElementById("item-list").getSelectedItem(0);
var itemID = selectedListItem.value;
var item = itemSet.getItemsByIds([itemID])[0];
var itemID = bibEditInterface.bibliography[0].entry_ids[selectedListItem.value];
if(bibEditInterface.isCited(item)) {
if(bibEditInterface.isCited(itemID)) {
var promptService = Components.classes["@mozilla.org/embedcomp/prompt-service;1"]
.getService(Components.interfaces.nsIPromptService);
@ -113,13 +112,10 @@ var Zotero_Bibliography_Dialog = new function () {
if(regenerate != 0) return;
}
bibEditInterface.remove(item);
bibEditInterface.remove(itemID);
_loadItems();
}
/*
* Called on "Accept" button
*/
function accept() {
_updatePreview();
}
@ -127,23 +123,39 @@ var Zotero_Bibliography_Dialog = new function () {
/*
* Updates the contents of the preview pane
*/
function _updatePreview(item) {
function _updatePreview(index) {
Zotero.debug("_updatePreview called");
var editor = document.getElementById('editor');
if(_lastSelectedItem && editor.value != _originalBibEntry) {
Zotero.debug("setting bibliography for "+_lastSelectedItem.getID()+" to "+editor.value);
_lastSelectedItem.setProperty("bibliography-RTF", editor.value);
if(_lastSelectedItemID) {
var newValue = editor.value;
if(_lastSelectedValue != newValue) {
Zotero.debug("setting bibliography for "+_lastSelectedItemID+" to "+newValue);
bibEditInterface.setCustomText(_lastSelectedItemID, newValue);
}
}
editor.readonly = !item;
editor.value = _originalBibEntry = (item ? bibEditInterface.preview(item) : "");
_lastSelectedItem = item;
editor.readonly = index === undefined;
if(index !== undefined) {
Zotero.debug("updating preview of "+index);
var itemID = bibEditInterface.bibliography[0].entry_ids[index];
editor.value = bibEditInterface.bibliography[1][index];
_lastSelectedIndex = index;
_lastSelectedItemID = itemID;
_lastSelectedValue = editor.value;
} else {
editor.value = "";
_lastSelectedIndex = _lastSelectedItemID = _lastSelectedValue = false;
}
}
/*
* loads items from itemSet
*/
function _loadItems() {
var itemIDs = bibEditInterface.bibliography[0].entry_ids;
var items = Zotero.Items.get(itemIDs);
// delete all existing items from list
var itemList = document.getElementById("item-list");
while(itemList.firstChild) {
@ -151,14 +163,12 @@ var Zotero_Bibliography_Dialog = new function () {
}
// add new items
for(var i=0; i<itemSet.items.length; i++) {
var item = itemSet.items[i].zoteroItem;
for(var i=0; i<items.length; i++) {
var itemNode = document.createElement("listitem");
itemNode.setAttribute("value", item.getID());
itemNode.setAttribute("label", item.getField("title"));
itemNode.setAttribute("value", i);
itemNode.setAttribute("label", items[i].getField("title"));
itemNode.setAttribute("class", "listitem-iconic");
itemNode.setAttribute("image", item.getImageSrc());
itemNode.setAttribute("image", items[i].getImageSrc());
itemList.appendChild(itemNode);
}

View file

@ -1,211 +1,299 @@
<?xml version="1.0" encoding="UTF-8"?>
<terms xmlns="http://purl.org/net/xbiblio/csl">
<locale xml:lang="af">
<term name="at">at</term>
<term name="in">in</term>
<term name="ibid">ibid</term>
<term name="accessed">toegang verkry</term>
<term name="retrieved">opgehaal</term>
<term name="from">van</term>
<term name="forthcoming">voorhande</term>
<term name="references">Verwysings</term>
<term name="reference item">
<single>source</single>
<multiple>sources</multiple>
</term>
<term name="no date">n.d.</term>
<term name="and">en</term>
<term name="et-al">et al.</term>
<term name="interview">interview</term>
<term name="letter">letter</term>
<term name="anonymous">anonymous</term>
<term name="anonymous" form="short">anon</term>
<term name="and others">and others</term>
<term name="in press">in press</term>
<term name="online">online</term>
<term name="cited">cited</term>
<term name="internet">internet</term>
<term name="presented at">presented at the</term>
<term name="anthropology">anthropology</term>
<term name="astronomy">astronomy</term>
<term name="biology">biology</term>
<term name="botany">botany</term>
<term name="chemistry">chemistry</term>
<term name="engineering">engineering</term>
<term name="generic-base">generic base</term>
<term name="geography">geography</term>
<term name="geology">geology</term>
<term name="history">history</term>
<term name="humanities">humanities</term>
<term name="literature">literature</term>
<term name="math">math</term>
<term name="medicine">medicine</term>
<term name="philosophy">philosophy</term>
<term name="physics">physics</term>
<term name="psychology">psychology</term>
<term name="sociology">sociology</term>
<term name="science">science</term>
<term name="political_science">political science</term>
<term name="social_science">social science</term>
<term name="theology">theology</term>
<term name="zoology">zoology</term>
<term name="book">
<single>book</single>
<multiple>books</multiple>
</term>
<term name="chapter">
<single>chapter</single>
<multiple>chapters</multiple>
</term>
<term name="column">
<single>column</single>
<multiple>columns</multiple>
</term>
<term name="figure">
<single>figure</single>
<multiple>figures</multiple>
</term>
<term name="folio">
<single>folio</single>
<multiple>folios</multiple>
</term>
<term name="issue">
<single>number</single>
<multiple>numbers</multiple>
</term>
<term name="line">
<single>reël</single>
<multiple>reëls</multiple>
</term>
<term name="note">
<single>note</single>
<multiple>notes</multiple>
</term>
<term name="opus">
<single>opus</single>
<multiple>opera</multiple>
</term>
<term name="page">
<single>bladsy</single>
<multiple>bladsye</multiple>
</term>
<term name="paragraph">
<single>paragraaf</single>
<multiple>paragrawe</multiple>
</term>
<term name="part">
<single>part</single>
<multiple>parts</multiple>
</term>
<term name="section">
<single>section</single>
<multiple>sections</multiple>
</term>
<term name="volume">
<single>volume</single>
<multiple>volumes</multiple>
</term>
<term name="edition">
<single>edition</single>
<multiple>editions</multiple>
</term>
<term name="verse">
<single>verse</single>
<multiple>verses</multiple>
</term>
<term name="sub verbo">
<single>sub verbo</single>
<multiple>s.vv</multiple>
</term>
<term name="book" form="short">bk</term>
<term name="chapter" form="short">chap</term>
<term name="column" form="short">col</term>
<term name="figure" form="short">fig</term>
<term name="folio" form="short">f</term>
<term name="issue" form="short">no</term>
<term name="opus" form="short">op</term>
<term name="page" form="short">
<single>bl</single>
<multiple>bll</multiple>
</term>
<term name="paragraph" form="short">para</term>
<term name="part" form="short">pt</term>
<term name="section" form="short">sec</term>
<term name="sub verbo" form="short">
<single>s.v</single>
<multiple>s.vv</multiple>
</term>
<term name="verse" form="short">
<single>v</single>
<multiple>vv</multiple>
</term>
<term name="volume" form="short">
<single>vol</single>
<multiple>vols</multiple>
</term>
<term name="edition">edition</term>
<term name="edition" form="short">ed</term>
<term name="paragraph" form="symbol">
<single></single>
<multiple>¶¶</multiple>
</term>
<term name="section" form="symbol">
<single>§</single>
<multiple>§§</multiple>
</term>
<term name="author">
<single/>
<multiple/>
</term>
<term name="editor">
<single>redakteur</single>
<multiple>redakteurs</multiple>
</term>
<term name="translator">
<single>vertaler</single>
<multiple>vertalers</multiple>
</term>
<term name="author" form="short">
<single/>
<multiple/>
</term>
<term name="editor" form="short">
<single>red</single>
<multiple>reds</multiple>
</term>
<term name="translator" form="short">
<single>vert</single>
<multiple>verts</multiple>
</term>
<term name="editor" form="verb">onder redaksie van</term>
<term name="translator" form="verb">vertaal deur</term>
<term name="recipient" form="verb">to</term>
<term name="interviewer" form="verb">interview by</term>
<term name="editor" form="verb-short">red</term>
<term name="translator" form="verb-short">verts</term>
<term name="month-01">Januarie</term>
<term name="month-02">Februarie</term>
<term name="month-03">Maart</term>
<term name="month-04">April</term>
<term name="month-05">Mei</term>
<term name="month-06">Junie</term>
<term name="month-07">Julie</term>
<term name="month-08">Augustus</term>
<term name="month-09">September</term>
<term name="month-10">Oktober</term>
<term name="month-11">November</term>
<term name="month-12">Desember</term>
<term name="month-01" form="short">Jan</term>
<term name="month-02" form="short">Feb</term>
<term name="month-03" form="short">Mrt</term>
<term name="month-04" form="short">Apr</term>
<term name="month-05" form="short">Mei</term>
<term name="month-06" form="short">Jun</term>
<term name="month-07" form="short">Jul</term>
<term name="month-08" form="short">Aug</term>
<term name="month-09" form="short">Sep</term>
<term name="month-10" form="short">Okt</term>
<term name="month-11" form="short">Nov</term>
<term name="month-12" form="short">Des</term>
</locale>
</terms>
<?xml version="1.0" encoding="utf-8"?>
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="af">
<style-options punctuation-in-quote="true"/>
<date form="text">
<date-part name="month" suffix=" "/>
<date-part name="day" suffix=", "/>
<date-part name="year"/>
</date>
<date form="numeric">
<date-part name="year"/>
<date-part name="month" form="numeric" prefix="-" range-delimiter="/"/>
<date-part name="day" prefix="-" range-delimiter="/"/>
</date>
<terms>
<term name="at">at</term>
<term name="in">in</term>
<term name="ibid">ibid</term>
<term name="accessed">toegang verkry</term>
<term name="retrieved">opgehaal</term>
<term name="from">van</term>
<term name="forthcoming">voorhande</term>
<term name="reference">
<single>reference</single>
<multiple>references</multiple>
</term>
<term name="reference" form="short">
<single>ref.</single>
<multiple>refs.</multiple>
</term>
<term name="no date">n.d.</term>
<term name="and">en</term>
<term name="et-al">et al.</term>
<term name="circa">circa</term>
<term name="circa" form="short">c.</term>
<term name="interview">interview</term>
<term name="letter">letter</term>
<term name="anonymous">anonymous</term>
<term name="anonymous" form="short">anon</term>
<term name="and others">and others</term>
<term name="in press">in press</term>
<term name="online">online</term>
<term name="cited">cited</term>
<term name="internet">internet</term>
<term name="presented at">presented at the</term>
<term name="ad">AD</term>
<term name="bc">BC</term>
<!-- QUOTES -->
<term name="open-quote"></term>
<term name="close-quote"></term>
<term name="open-inner-quote"></term>
<term name="close-inner-quote"></term>
<!-- ORDINALS -->
<term name="ordinal-01">st</term>
<term name="ordinal-02">nd</term>
<term name="ordinal-03">rd</term>
<term name="ordinal-04">th</term>
<!-- LONG ORDINALS -->
<term name="long-ordinal-01">first</term>
<term name="long-ordinal-02">second</term>
<term name="long-ordinal-03">third</term>
<term name="long-ordinal-04">fourth</term>
<term name="long-ordinal-05">fifth</term>
<term name="long-ordinal-06">sixth</term>
<term name="long-ordinal-07">seventh</term>
<term name="long-ordinal-08">eighth</term>
<term name="long-ordinal-09">ninth</term>
<term name="long-ordinal-10">tenth</term>
<!-- CATEGORIES -->
<term name="anthropology">anthropology</term>
<term name="astronomy">astronomy</term>
<term name="biology">biology</term>
<term name="botany">botany</term>
<term name="chemistry">chemistry</term>
<term name="engineering">engineering</term>
<term name="generic-base">generic base</term>
<term name="geography">geography</term>
<term name="geology">geology</term>
<term name="history">history</term>
<term name="humanities">humanities</term>
<term name="linguistics">linguistics</term>
<term name="literature">literature</term>
<term name="math">math</term>
<term name="medicine">medicine</term>
<term name="philosophy">philosophy</term>
<term name="physics">physics</term>
<term name="psychology">psychology</term>
<term name="sociology">sociology</term>
<term name="science">science</term>
<term name="political_science">political science</term>
<term name="social_science">social science</term>
<term name="theology">theology</term>
<term name="zoology">zoology</term>
<!-- LONG LOCATOR FORMS -->
<term name="book">
<single>book</single>
<multiple>books</multiple>
</term>
<term name="chapter">
<single>chapter</single>
<multiple>chapters</multiple>
</term>
<term name="column">
<single>column</single>
<multiple>columns</multiple>
</term>
<term name="figure">
<single>figure</single>
<multiple>figures</multiple>
</term>
<term name="folio">
<single>folio</single>
<multiple>folios</multiple>
</term>
<term name="issue">
<single>number</single>
<multiple>numbers</multiple>
</term>
<term name="line">
<single>reël</single>
<multiple>reëls</multiple>
</term>
<term name="note">
<single>note</single>
<multiple>notes</multiple>
</term>
<term name="opus">
<single>opus</single>
<multiple>opera</multiple>
</term>
<term name="page">
<single>bladsy</single>
<multiple>bladsye</multiple>
</term>
<term name="paragraph">
<single>paragraaf</single>
<multiple>paragrawe</multiple>
</term>
<term name="part">
<single>part</single>
<multiple>parts</multiple>
</term>
<term name="section">
<single>section</single>
<multiple>sections</multiple>
</term>
<term name="volume">
<single>volume</single>
<multiple>volumes</multiple>
</term>
<term name="edition">
<single>edition</single>
<multiple>editions</multiple>
</term>
<term name="verse">
<single>verse</single>
<multiple>verses</multiple>
</term>
<term name="sub verbo">
<single>sub verbo</single>
<multiple>s.vv</multiple>
</term>
<!-- SHORT LOCATOR FORMS -->
<term name="book" form="short">bk</term>
<term name="chapter" form="short">chap</term>
<term name="column" form="short">col</term>
<term name="figure" form="short">fig</term>
<term name="folio" form="short">f</term>
<term name="issue" form="short">no</term>
<term name="opus" form="short">op</term>
<term name="page" form="short">
<single>bl</single>
<multiple>bll</multiple>
</term>
<term name="paragraph" form="short">para</term>
<term name="part" form="short">pt</term>
<term name="section" form="short">sec</term>
<term name="sub verbo" form="short">
<single>s.v</single>
<multiple>s.vv</multiple>
</term>
<term name="verse" form="short">
<single>v</single>
<multiple>vv</multiple>
</term>
<term name="volume" form="short">
<single>vol</single>
<multiple>vols</multiple>
</term>
<term name="edition" form="short">ed</term>
<!-- SYMBOL LOCATOR FORMS -->
<term name="paragraph" form="symbol">
<single></single>
<multiple>¶¶</multiple>
</term>
<term name="section" form="symbol">
<single>§</single>
<multiple>§§</multiple>
</term>
<!-- LONG ROLE FORMS -->
<term name="author">
<single/>
<multiple/>
</term>
<term name="editor">
<single>redakteur</single>
<multiple>redakteurs</multiple>
</term>
<term name="editorial-director">
<single>editor</single>
<multiple>editors</multiple>
</term>
<term name="translator">
<single>vertaler</single>
<multiple>vertalers</multiple>
</term>
<term name="editortranslator">
<single>editor &amp; translator</single>
<multiple>editors &amp; translators</multiple>
</term>
<!-- SHORT ROLE FORMS -->
<term name="author" form="short">
<single/>
<multiple/>
</term>
<term name="editor" form="short">
<single>red</single>
<multiple>reds</multiple>
</term>
<term name="editorial-director" form="short">
<single>ed.</single>
<multiple>eds.</multiple>
</term>
<term name="translator" form="short">
<single>vert</single>
<multiple>verts</multiple>
</term>
<term name="editortranslator" form="short">
<single>ed. &amp; tran.</single>
<multiple>eds. &amp; trans.</multiple>
</term>
<!-- VERB ROLE FORMS -->
<term name="editor" form="verb">onder redaksie van</term>
<term name="editorial-director" form="verb">edited by</term>
<term name="translator" form="verb">vertaal deur</term>
<term name="editortranslator" form="verb">edited &amp; translated by</term>
<term name="recipient" form="verb">to</term>
<term name="interviewer" form="verb">interview by</term>
<!-- SHORT VERB ROLE FORMS -->
<term name="editor" form="verb-short">red</term>
<term name="editorial-director" form="verb-short">ed.</term>
<term name="translator" form="verb-short">verts</term>
<term name="editortranslator" form="verb-short">ed. &amp; trans. by</term>
<!-- LONG MONTH FORMS -->
<term name="month-01">Januarie</term>
<term name="month-02">Februarie</term>
<term name="month-03">Maart</term>
<term name="month-04">April</term>
<term name="month-05">Mei</term>
<term name="month-06">Junie</term>
<term name="month-07">Julie</term>
<term name="month-08">Augustus</term>
<term name="month-09">September</term>
<term name="month-10">Oktober</term>
<term name="month-11">November</term>
<term name="month-12">Desember</term>
<!-- SHORT MONTH FORMS -->
<term name="month-01" form="short">Jan</term>
<term name="month-02" form="short">Feb</term>
<term name="month-03" form="short">Mrt</term>
<term name="month-04" form="short">Apr</term>
<term name="month-05" form="short">Mei</term>
<term name="month-06" form="short">Jun</term>
<term name="month-07" form="short">Jul</term>
<term name="month-08" form="short">Aug</term>
<term name="month-09" form="short">Sep</term>
<term name="month-10" form="short">Okt</term>
<term name="month-11" form="short">Nov</term>
<term name="month-12" form="short">Des</term>
<!-- SEASONS -->
<term name="season-01">Spring</term>
<term name="season-02">Summer</term>
<term name="season-03">Autumn</term>
<term name="season-04">Winter</term>
</terms>
</locale>

View file

@ -1,211 +1,299 @@
<?xml version="1.0" encoding="UTF-8"?>
<terms xmlns="http://purl.org/net/xbiblio/csl">
<locale xml:lang="ar">
<term name="at">عند</term>
<term name="in">في</term>
<term name="ibid">آيبيد</term>
<term name="accessed">زير</term>
<term name="retrieved">جلب</term>
<term name="from">من</term>
<term name="forthcoming">القادم</term>
<term name="references">مراجع</term>
<term name="reference item">
<single>source</single>
<multiple>sources</multiple>
</term>
<term name="no date"/>
<term name="and">و</term>
<term name="et-al">et al.</term>
<term name="interview">مقابلة</term>
<term name="letter">رسالة</term>
<term name="anonymous">مجهول</term>
<term name="anonymous" form="short">مجهول</term>
<term name="and others">وآخرون</term>
<term name="in press">تحت الطبع</term>
<term name="online">ربط مباشر</term>
<term name="cited">وثِّقَ</term>
<term name="internet">الإنترنت</term>
<term name="presented at">قُدَّم في</term>
<term name="anthropology">علم الإنسان</term>
<term name="astronomy">علم الفلك</term>
<term name="biology">علم الأحياء</term>
<term name="botany">علم النبات</term>
<term name="chemistry">علم الكيمياء</term>
<term name="engineering">الهندسة</term>
<term name="generic-base">أساس عام</term>
<term name="geography">جغرافيا</term>
<term name="geology">علم الأرض</term>
<term name="history">التاريخ</term>
<term name="humanities">الإنسانيات</term>
<term name="literature">الأدب</term>
<term name="math">الرياضيات</term>
<term name="medicine">الطب</term>
<term name="philosophy">الفلسفة</term>
<term name="physics">الفيزياء</term>
<term name="psychology">علم النفس</term>
<term name="sociology">علم الإجتماع</term>
<term name="science">العلوم</term>
<term name="political_science">العلوم السياسية</term>
<term name="social_science">العلوم الإجتماعية</term>
<term name="theology">العلوم الإلهية</term>
<term name="zoology">علم الحيوان</term>
<term name="book">
<single>كتاب</single>
<multiple>كُتُب</multiple>
</term>
<term name="chapter">
<single>فصل</single>
<multiple>فصول</multiple>
</term>
<term name="column">
<single>عمود</single>
<multiple>أعمدة</multiple>
</term>
<term name="figure">
<single>رسم توضيحي</single>
<multiple>رسوم توضيحية</multiple>
</term>
<term name="folio">
<single>ورقة</single>
<multiple>أوراق</multiple>
</term>
<term name="issue">
<single>عدد</single>
<multiple>أعداد</multiple>
</term>
<term name="line">
<single>سطر</single>
<multiple>أسطر</multiple>
</term>
<term name="note">
<single>ملاحظة</single>
<multiple>ملاحظات</multiple>
</term>
<term name="opus">
<single>قطعة موسيقية</single>
<multiple>أوبرا</multiple>
</term>
<term name="page">
<single>صفحة</single>
<multiple>صفحات</multiple>
</term>
<term name="paragraph">
<single>فقرة</single>
<multiple>فقرات</multiple>
</term>
<term name="part">
<single>جزء</single>
<multiple>أجزاء</multiple>
</term>
<term name="section">
<single>قسم</single>
<multiple>أقسام</multiple>
</term>
<term name="volume">
<single>مجلد</single>
<multiple>مجلدات</multiple>
</term>
<term name="edition">
<single>الطبعة</single>
<multiple>الطبعات</multiple>
</term>
<term name="verse">
<single>بيت</single>
<multiple>أبيات</multiple>
</term>
<term name="sub verbo">
<single>sub verbo</single>
<multiple>s.vv</multiple>
</term>
<term name="book" form="short">ك</term>
<term name="chapter" form="short">ف</term>
<term name="column" form="short">عم</term>
<term name="figure" form="short">ر</term>
<term name="folio" form="short">و</term>
<term name="issue" form="short">عد</term>
<term name="opus" form="short">مم</term>
<term name="page" form="short">
<single>ص</single>
<multiple>ص.ص</multiple>
</term>
<term name="paragraph" form="short">فق</term>
<term name="part" form="short">جز</term>
<term name="section" form="short">ق</term>
<term name="sub verbo" form="short">
<single>s.v</single>
<multiple>s.vv</multiple>
</term>
<term name="verse" form="short">
<single>ب</single>
<multiple>بب</multiple>
</term>
<term name="volume" form="short">
<single>مج</single>
<multiple>مجج</multiple>
</term>
<term name="edition">edition</term>
<term name="edition" form="short">ط</term>
<term name="paragraph" form="symbol">
<single></single>
<multiple>¶¶</multiple>
</term>
<term name="section" form="symbol">
<single>§</single>
<multiple>§§</multiple>
</term>
<term name="author">
<single/>
<multiple/>
</term>
<term name="editor">
<single>تحرير</single>
<multiple>تحرير</multiple>
</term>
<term name="translator">
<single>ترجمة</single>
<multiple>ترجمة</multiple>
</term>
<term name="author" form="short">
<single/>
<multiple/>
</term>
<term name="editor" form="short">
<single>مح</single>
<multiple>محح</multiple>
</term>
<term name="translator" form="short">
<single>تر</single>
<multiple>ترر</multiple>
</term>
<term name="editor" form="verb">حرره</term>
<term name="translator" form="verb">ترجمه</term>
<term name="recipient" form="verb">إلى</term>
<term name="interviewer" form="verb">مقابلة بواسطة</term>
<term name="editor" form="verb-short">مح</term>
<term name="translator" form="verb-short">مت</term>
<term name="month-01">يناير</term>
<term name="month-02">فبراير</term>
<term name="month-03">مارس</term>
<term name="month-04">ابريل</term>
<term name="month-05">مايو</term>
<term name="month-06">يونيو</term>
<term name="month-07">يوليو</term>
<term name="month-08">اغسطس</term>
<term name="month-09">سبتمبر</term>
<term name="month-10">اكتوبر</term>
<term name="month-11">نوفمبر</term>
<term name="month-12">ديسمبر</term>
<term name="month-01" form="short">يناير</term>
<term name="month-02" form="short">فبراير</term>
<term name="month-03" form="short">مارس</term>
<term name="month-04" form="short">ابريل</term>
<term name="month-05" form="short">مايو</term>
<term name="month-06" form="short">يونيو</term>
<term name="month-07" form="short">يوليو</term>
<term name="month-08" form="short">اغسطس</term>
<term name="month-09" form="short">سبتمبر</term>
<term name="month-10" form="short">اكتوبر</term>
<term name="month-11" form="short">نوفمبر</term>
<term name="month-12" form="short">ديسمبر</term>
</locale>
</terms>
<?xml version="1.0" encoding="utf-8"?>
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="ar">
<style-options punctuation-in-quote="true"/>
<date form="text">
<date-part name="month" suffix=" "/>
<date-part name="day" suffix=", "/>
<date-part name="year"/>
</date>
<date form="numeric">
<date-part name="year"/>
<date-part name="month" form="numeric" prefix="-" range-delimiter="/"/>
<date-part name="day" prefix="-" range-delimiter="/"/>
</date>
<terms>
<term name="at">عند</term>
<term name="in">في</term>
<term name="ibid">آيبيد</term>
<term name="accessed">زير</term>
<term name="retrieved">جلب</term>
<term name="from">من</term>
<term name="forthcoming">القادم</term>
<term name="reference">
<single>reference</single>
<multiple>references</multiple>
</term>
<term name="reference" form="short">
<single>ref.</single>
<multiple>refs.</multiple>
</term>
<term name="no date"/>
<term name="and">و</term>
<term name="et-al">et al.</term>
<term name="circa">circa</term>
<term name="circa" form="short">c.</term>
<term name="interview">مقابلة</term>
<term name="letter">رسالة</term>
<term name="anonymous">مجهول</term>
<term name="anonymous" form="short">مجهول</term>
<term name="and others">وآخرون</term>
<term name="in press">تحت الطبع</term>
<term name="online">ربط مباشر</term>
<term name="cited">وثِّقَ</term>
<term name="internet">الإنترنت</term>
<term name="presented at">قُدَّم في</term>
<term name="ad">AD</term>
<term name="bc">BC</term>
<!-- QUOTES -->
<term name="open-quote"></term>
<term name="close-quote"></term>
<term name="open-inner-quote"></term>
<term name="close-inner-quote"></term>
<!-- ORDINALS -->
<term name="ordinal-01">st</term>
<term name="ordinal-02">nd</term>
<term name="ordinal-03">rd</term>
<term name="ordinal-04">th</term>
<!-- LONG ORDINALS -->
<term name="long-ordinal-01">first</term>
<term name="long-ordinal-02">second</term>
<term name="long-ordinal-03">third</term>
<term name="long-ordinal-04">fourth</term>
<term name="long-ordinal-05">fifth</term>
<term name="long-ordinal-06">sixth</term>
<term name="long-ordinal-07">seventh</term>
<term name="long-ordinal-08">eighth</term>
<term name="long-ordinal-09">ninth</term>
<term name="long-ordinal-10">tenth</term>
<!-- CATEGORIES -->
<term name="anthropology">علم الإنسان</term>
<term name="astronomy">علم الفلك</term>
<term name="biology">علم الأحياء</term>
<term name="botany">علم النبات</term>
<term name="chemistry">علم الكيمياء</term>
<term name="engineering">الهندسة</term>
<term name="generic-base">أساس عام</term>
<term name="geography">جغرافيا</term>
<term name="geology">علم الأرض</term>
<term name="history">التاريخ</term>
<term name="humanities">الإنسانيات</term>
<term name="linguistics">linguistics</term>
<term name="literature">الأدب</term>
<term name="math">الرياضيات</term>
<term name="medicine">الطب</term>
<term name="philosophy">الفلسفة</term>
<term name="physics">الفيزياء</term>
<term name="psychology">علم النفس</term>
<term name="sociology">علم الإجتماع</term>
<term name="science">العلوم</term>
<term name="political_science">العلوم السياسية</term>
<term name="social_science">العلوم الإجتماعية</term>
<term name="theology">العلوم الإلهية</term>
<term name="zoology">علم الحيوان</term>
<!-- LONG LOCATOR FORMS -->
<term name="book">
<single>كتاب</single>
<multiple>كُتُب</multiple>
</term>
<term name="chapter">
<single>فصل</single>
<multiple>فصول</multiple>
</term>
<term name="column">
<single>عمود</single>
<multiple>أعمدة</multiple>
</term>
<term name="figure">
<single>رسم توضيحي</single>
<multiple>رسوم توضيحية</multiple>
</term>
<term name="folio">
<single>ورقة</single>
<multiple>أوراق</multiple>
</term>
<term name="issue">
<single>عدد</single>
<multiple>أعداد</multiple>
</term>
<term name="line">
<single>سطر</single>
<multiple>أسطر</multiple>
</term>
<term name="note">
<single>ملاحظة</single>
<multiple>ملاحظات</multiple>
</term>
<term name="opus">
<single>قطعة موسيقية</single>
<multiple>أوبرا</multiple>
</term>
<term name="page">
<single>صفحة</single>
<multiple>صفحات</multiple>
</term>
<term name="paragraph">
<single>فقرة</single>
<multiple>فقرات</multiple>
</term>
<term name="part">
<single>جزء</single>
<multiple>أجزاء</multiple>
</term>
<term name="section">
<single>قسم</single>
<multiple>أقسام</multiple>
</term>
<term name="volume">
<single>مجلد</single>
<multiple>مجلدات</multiple>
</term>
<term name="edition">
<single>الطبعة</single>
<multiple>الطبعات</multiple>
</term>
<term name="verse">
<single>بيت</single>
<multiple>أبيات</multiple>
</term>
<term name="sub verbo">
<single>sub verbo</single>
<multiple>s.vv</multiple>
</term>
<!-- SHORT LOCATOR FORMS -->
<term name="book" form="short">ك</term>
<term name="chapter" form="short">ف</term>
<term name="column" form="short">عم</term>
<term name="figure" form="short">ر</term>
<term name="folio" form="short">و</term>
<term name="issue" form="short">عد</term>
<term name="opus" form="short">مم</term>
<term name="page" form="short">
<single>ص</single>
<multiple>ص.ص</multiple>
</term>
<term name="paragraph" form="short">فق</term>
<term name="part" form="short">جز</term>
<term name="section" form="short">ق</term>
<term name="sub verbo" form="short">
<single>s.v</single>
<multiple>s.vv</multiple>
</term>
<term name="verse" form="short">
<single>ب</single>
<multiple>بب</multiple>
</term>
<term name="volume" form="short">
<single>مج</single>
<multiple>مجج</multiple>
</term>
<term name="edition" form="short">ط</term>
<!-- SYMBOL LOCATOR FORMS -->
<term name="paragraph" form="symbol">
<single></single>
<multiple>¶¶</multiple>
</term>
<term name="section" form="symbol">
<single>§</single>
<multiple>§§</multiple>
</term>
<!-- LONG ROLE FORMS -->
<term name="author">
<single/>
<multiple/>
</term>
<term name="editor">
<single>تحرير</single>
<multiple>تحرير</multiple>
</term>
<term name="editorial-director">
<single>editor</single>
<multiple>editors</multiple>
</term>
<term name="translator">
<single>ترجمة</single>
<multiple>ترجمة</multiple>
</term>
<term name="editortranslator">
<single>editor &amp; translator</single>
<multiple>editors &amp; translators</multiple>
</term>
<!-- SHORT ROLE FORMS -->
<term name="author" form="short">
<single/>
<multiple/>
</term>
<term name="editor" form="short">
<single>مح</single>
<multiple>محح</multiple>
</term>
<term name="editorial-director" form="short">
<single>ed.</single>
<multiple>eds.</multiple>
</term>
<term name="translator" form="short">
<single>تر</single>
<multiple>ترر</multiple>
</term>
<term name="editortranslator" form="short">
<single>ed. &amp; tran.</single>
<multiple>eds. &amp; trans.</multiple>
</term>
<!-- VERB ROLE FORMS -->
<term name="editor" form="verb">حرره</term>
<term name="editorial-director" form="verb">edited by</term>
<term name="translator" form="verb">ترجمه</term>
<term name="editortranslator" form="verb">edited &amp; translated by</term>
<term name="recipient" form="verb">إلى</term>
<term name="interviewer" form="verb">مقابلة بواسطة</term>
<!-- SHORT VERB ROLE FORMS -->
<term name="editor" form="verb-short">مح</term>
<term name="editorial-director" form="verb-short">ed.</term>
<term name="translator" form="verb-short">مت</term>
<term name="editortranslator" form="verb-short">ed. &amp; trans. by</term>
<!-- LONG MONTH FORMS -->
<term name="month-01">يناير</term>
<term name="month-02">فبراير</term>
<term name="month-03">مارس</term>
<term name="month-04">ابريل</term>
<term name="month-05">مايو</term>
<term name="month-06">يونيو</term>
<term name="month-07">يوليو</term>
<term name="month-08">اغسطس</term>
<term name="month-09">سبتمبر</term>
<term name="month-10">اكتوبر</term>
<term name="month-11">نوفمبر</term>
<term name="month-12">ديسمبر</term>
<!-- SHORT MONTH FORMS -->
<term name="month-01" form="short">يناير</term>
<term name="month-02" form="short">فبراير</term>
<term name="month-03" form="short">مارس</term>
<term name="month-04" form="short">ابريل</term>
<term name="month-05" form="short">مايو</term>
<term name="month-06" form="short">يونيو</term>
<term name="month-07" form="short">يوليو</term>
<term name="month-08" form="short">اغسطس</term>
<term name="month-09" form="short">سبتمبر</term>
<term name="month-10" form="short">اكتوبر</term>
<term name="month-11" form="short">نوفمبر</term>
<term name="month-12" form="short">ديسمبر</term>
<!-- SEASONS -->
<term name="season-01">Spring</term>
<term name="season-02">Summer</term>
<term name="season-03">Autumn</term>
<term name="season-04">Winter</term>
</terms>
</locale>

View file

@ -1,211 +1,299 @@
<?xml version="1.0" encoding="UTF-8"?>
<terms xmlns="http://purl.org/net/xbiblio/csl">
<locale xml:lang="bg">
<term name="at">в</term>
<term name="in">в</term>
<term name="ibid">пак там</term>
<term name="accessed">отворен на</term>
<term name="retrieved">изтеглен на</term>
<term name="from">от</term>
<term name="forthcoming">предстоящ</term>
<term name="references">цитати</term>
<term name="reference item">
<single>source</single>
<multiple>sources</multiple>
</term>
<term name="no date">без дата</term>
<term name="and">и</term>
<term name="et-al">и съавт.</term>
<term name="interview">интервю</term>
<term name="letter">писмо</term>
<term name="anonymous">анонимен</term>
<term name="anonymous" form="short">анон</term>
<term name="and others">и други</term>
<term name="in press">под печат</term>
<term name="online">онлайн</term>
<term name="cited">цитиран</term>
<term name="internet">интернет</term>
<term name="presented at">представен на</term>
<term name="anthropology">антропология</term>
<term name="astronomy">астрономия</term>
<term name="biology">биология</term>
<term name="botany">ботаника</term>
<term name="chemistry">химия</term>
<term name="engineering">инженерство</term>
<term name="generic-base">обща база</term>
<term name="geography">география</term>
<term name="geology">геология</term>
<term name="history">история</term>
<term name="humanities">хуманитарни науки</term>
<term name="literature">литература</term>
<term name="math">математика</term>
<term name="medicine">медицина</term>
<term name="philosophy">философия</term>
<term name="physics">физика</term>
<term name="psychology">физиология</term>
<term name="sociology">социология</term>
<term name="science">наука</term>
<term name="political_science">политически науки</term>
<term name="social_science">обществени науки</term>
<term name="theology">теология</term>
<term name="zoology">зоология</term>
<term name="book">
<single>книга</single>
<multiple>книги</multiple>
</term>
<term name="chapter">
<single>глава</single>
<multiple>глави</multiple>
</term>
<term name="column">
<single>колона</single>
<multiple>колони</multiple>
</term>
<term name="figure">
<single>фигура</single>
<multiple>фигури</multiple>
</term>
<term name="folio">
<single>фолио</single>
<multiple>фолия</multiple>
</term>
<term name="issue">
<single>брой</single>
<multiple>броеве</multiple>
</term>
<term name="line">
<single>ред</single>
<multiple>редове</multiple>
</term>
<term name="note">
<single>бележка</single>
<multiple>бележки</multiple>
</term>
<term name="opus">
<single>опус</single>
<multiple>опуси</multiple>
</term>
<term name="page">
<single>страница</single>
<multiple>страници</multiple>
</term>
<term name="paragraph">
<single>параграф</single>
<multiple>параграфи</multiple>
</term>
<term name="part">
<single>част</single>
<multiple>части</multiple>
</term>
<term name="section">
<single>раздел</single>
<multiple>раздели</multiple>
</term>
<term name="volume">
<single>том</single>
<multiple>томове</multiple>
</term>
<term name="edition">
<single>издание</single>
<multiple>издания</multiple>
</term>
<term name="verse">
<single>стих</single>
<multiple>стихове</multiple>
</term>
<term name="sub verbo">
<single>sub verbo</single>
<multiple>s.vv</multiple>
</term>
<term name="book" form="short">кн</term>
<term name="chapter" form="short">гл</term>
<term name="column" form="short">кол</term>
<term name="figure" form="short">фиг</term>
<term name="folio" form="short">фол</term>
<term name="issue" form="short">бр</term>
<term name="opus" form="short">оп</term>
<term name="page" form="short">
<single>с</single>
<multiple>с-ци</multiple>
</term>
<term name="paragraph" form="short">п</term>
<term name="part" form="short">ч</term>
<term name="section" form="short">разд</term>
<term name="sub verbo" form="short">
<single>s.v</single>
<multiple>s.vv</multiple>
</term>
<term name="verse" form="short">
<single>ст</single>
<multiple>ст-ове</multiple>
</term>
<term name="volume" form="short">
<single>том</single>
<multiple>т-ове</multiple>
</term>
<term name="edition">edition</term>
<term name="edition" form="short">изд</term>
<term name="paragraph" form="symbol">
<single></single>
<multiple>¶¶</multiple>
</term>
<term name="section" form="symbol">
<single>§</single>
<multiple>§§</multiple>
</term>
<term name="author">
<single>автор</single>
<multiple>автори</multiple>
</term>
<term name="editor">
<single>редактор</single>
<multiple>редактори</multiple>
</term>
<term name="translator">
<single>преводач</single>
<multiple>преводачи</multiple>
</term>
<term name="author" form="short">
<single>авт</single>
<multiple>авт-ри</multiple>
</term>
<term name="editor" form="short">
<single>ред</single>
<multiple>ред-ри</multiple>
</term>
<term name="translator" form="short">
<single>прев</single>
<multiple>прев-чи</multiple>
</term>
<term name="editor" form="verb">редактиран от</term>
<term name="translator" form="verb">преведен от</term>
<term name="recipient" form="verb">до</term>
<term name="interviewer" form="verb">интервюиран от</term>
<term name="editor" form="verb-short">ред</term>
<term name="translator" form="verb-short">прев</term>
<term name="month-01">Януари</term>
<term name="month-02">Февруари</term>
<term name="month-03">Март</term>
<term name="month-04">Април</term>
<term name="month-05">Май</term>
<term name="month-06">Юни</term>
<term name="month-07">Юли</term>
<term name="month-08">Август</term>
<term name="month-09">Септември</term>
<term name="month-10">Октомври</term>
<term name="month-11">Ноември</term>
<term name="month-12">Декември</term>
<term name="month-01" form="short">Яну</term>
<term name="month-02" form="short">Фев</term>
<term name="month-03" form="short">Мар</term>
<term name="month-04" form="short">Апр</term>
<term name="month-05" form="short">Май</term>
<term name="month-06" form="short">Юни</term>
<term name="month-07" form="short">Юли</term>
<term name="month-08" form="short">Авг</term>
<term name="month-09" form="short">Сеп</term>
<term name="month-10" form="short">Окт</term>
<term name="month-11" form="short">Ное</term>
<term name="month-12" form="short">Дек</term>
</locale>
</terms>
<?xml version="1.0" encoding="utf-8"?>
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="bg">
<style-options punctuation-in-quote="true"/>
<date form="text">
<date-part name="month" suffix=" "/>
<date-part name="day" suffix=", "/>
<date-part name="year"/>
</date>
<date form="numeric">
<date-part name="year"/>
<date-part name="month" form="numeric" prefix="-" range-delimiter="/"/>
<date-part name="day" prefix="-" range-delimiter="/"/>
</date>
<terms>
<term name="at">в</term>
<term name="in">в</term>
<term name="ibid">пак там</term>
<term name="accessed">отворен на</term>
<term name="retrieved">изтеглен на</term>
<term name="from">от</term>
<term name="forthcoming">предстоящ</term>
<term name="reference">
<single>reference</single>
<multiple>references</multiple>
</term>
<term name="reference" form="short">
<single>ref.</single>
<multiple>refs.</multiple>
</term>
<term name="no date">без дата</term>
<term name="and">и</term>
<term name="et-al">и съавт.</term>
<term name="circa">circa</term>
<term name="circa" form="short">c.</term>
<term name="interview">интервю</term>
<term name="letter">писмо</term>
<term name="anonymous">анонимен</term>
<term name="anonymous" form="short">анон</term>
<term name="and others">и други</term>
<term name="in press">под печат</term>
<term name="online">онлайн</term>
<term name="cited">цитиран</term>
<term name="internet">интернет</term>
<term name="presented at">представен на</term>
<term name="ad">AD</term>
<term name="bc">BC</term>
<!-- QUOTES -->
<term name="open-quote"></term>
<term name="close-quote"></term>
<term name="open-inner-quote"></term>
<term name="close-inner-quote"></term>
<!-- ORDINALS -->
<term name="ordinal-01">st</term>
<term name="ordinal-02">nd</term>
<term name="ordinal-03">rd</term>
<term name="ordinal-04">th</term>
<!-- LONG ORDINALS -->
<term name="long-ordinal-01">first</term>
<term name="long-ordinal-02">second</term>
<term name="long-ordinal-03">third</term>
<term name="long-ordinal-04">fourth</term>
<term name="long-ordinal-05">fifth</term>
<term name="long-ordinal-06">sixth</term>
<term name="long-ordinal-07">seventh</term>
<term name="long-ordinal-08">eighth</term>
<term name="long-ordinal-09">ninth</term>
<term name="long-ordinal-10">tenth</term>
<!-- CATEGORIES -->
<term name="anthropology">антропология</term>
<term name="astronomy">астрономия</term>
<term name="biology">биология</term>
<term name="botany">ботаника</term>
<term name="chemistry">химия</term>
<term name="engineering">инженерство</term>
<term name="generic-base">обща база</term>
<term name="geography">география</term>
<term name="geology">геология</term>
<term name="history">история</term>
<term name="humanities">хуманитарни науки</term>
<term name="linguistics">linguistics</term>
<term name="literature">литература</term>
<term name="math">математика</term>
<term name="medicine">медицина</term>
<term name="philosophy">философия</term>
<term name="physics">физика</term>
<term name="psychology">физиология</term>
<term name="sociology">социология</term>
<term name="science">наука</term>
<term name="political_science">политически науки</term>
<term name="social_science">обществени науки</term>
<term name="theology">теология</term>
<term name="zoology">зоология</term>
<!-- LONG LOCATOR FORMS -->
<term name="book">
<single>книга</single>
<multiple>книги</multiple>
</term>
<term name="chapter">
<single>глава</single>
<multiple>глави</multiple>
</term>
<term name="column">
<single>колона</single>
<multiple>колони</multiple>
</term>
<term name="figure">
<single>фигура</single>
<multiple>фигури</multiple>
</term>
<term name="folio">
<single>фолио</single>
<multiple>фолия</multiple>
</term>
<term name="issue">
<single>брой</single>
<multiple>броеве</multiple>
</term>
<term name="line">
<single>ред</single>
<multiple>редове</multiple>
</term>
<term name="note">
<single>бележка</single>
<multiple>бележки</multiple>
</term>
<term name="opus">
<single>опус</single>
<multiple>опуси</multiple>
</term>
<term name="page">
<single>страница</single>
<multiple>страници</multiple>
</term>
<term name="paragraph">
<single>параграф</single>
<multiple>параграфи</multiple>
</term>
<term name="part">
<single>част</single>
<multiple>части</multiple>
</term>
<term name="section">
<single>раздел</single>
<multiple>раздели</multiple>
</term>
<term name="volume">
<single>том</single>
<multiple>томове</multiple>
</term>
<term name="edition">
<single>издание</single>
<multiple>издания</multiple>
</term>
<term name="verse">
<single>стих</single>
<multiple>стихове</multiple>
</term>
<term name="sub verbo">
<single>sub verbo</single>
<multiple>s.vv</multiple>
</term>
<!-- SHORT LOCATOR FORMS -->
<term name="book" form="short">кн</term>
<term name="chapter" form="short">гл</term>
<term name="column" form="short">кол</term>
<term name="figure" form="short">фиг</term>
<term name="folio" form="short">фол</term>
<term name="issue" form="short">бр</term>
<term name="opus" form="short">оп</term>
<term name="page" form="short">
<single>с</single>
<multiple>с-ци</multiple>
</term>
<term name="paragraph" form="short">п</term>
<term name="part" form="short">ч</term>
<term name="section" form="short">разд</term>
<term name="sub verbo" form="short">
<single>s.v</single>
<multiple>s.vv</multiple>
</term>
<term name="verse" form="short">
<single>ст</single>
<multiple>ст-ове</multiple>
</term>
<term name="volume" form="short">
<single>том</single>
<multiple>т-ове</multiple>
</term>
<term name="edition" form="short">изд</term>
<!-- SYMBOL LOCATOR FORMS -->
<term name="paragraph" form="symbol">
<single></single>
<multiple>¶¶</multiple>
</term>
<term name="section" form="symbol">
<single>§</single>
<multiple>§§</multiple>
</term>
<!-- LONG ROLE FORMS -->
<term name="author">
<single>автор</single>
<multiple>автори</multiple>
</term>
<term name="editor">
<single>редактор</single>
<multiple>редактори</multiple>
</term>
<term name="editorial-director">
<single>editor</single>
<multiple>editors</multiple>
</term>
<term name="translator">
<single>преводач</single>
<multiple>преводачи</multiple>
</term>
<term name="editortranslator">
<single>editor &amp; translator</single>
<multiple>editors &amp; translators</multiple>
</term>
<!-- SHORT ROLE FORMS -->
<term name="author" form="short">
<single>авт</single>
<multiple>авт-ри</multiple>
</term>
<term name="editor" form="short">
<single>ред</single>
<multiple>ред-ри</multiple>
</term>
<term name="editorial-director" form="short">
<single>ed.</single>
<multiple>eds.</multiple>
</term>
<term name="translator" form="short">
<single>прев</single>
<multiple>прев-чи</multiple>
</term>
<term name="editortranslator" form="short">
<single>ed. &amp; tran.</single>
<multiple>eds. &amp; trans.</multiple>
</term>
<!-- VERB ROLE FORMS -->
<term name="editor" form="verb">редактиран от</term>
<term name="editorial-director" form="verb">edited by</term>
<term name="translator" form="verb">преведен от</term>
<term name="editortranslator" form="verb">edited &amp; translated by</term>
<term name="recipient" form="verb">до</term>
<term name="interviewer" form="verb">интервюиран от</term>
<!-- SHORT VERB ROLE FORMS -->
<term name="editor" form="verb-short">ред</term>
<term name="editorial-director" form="verb-short">ed.</term>
<term name="translator" form="verb-short">прев</term>
<term name="editortranslator" form="verb-short">ed. &amp; trans. by</term>
<!-- LONG MONTH FORMS -->
<term name="month-01">Януари</term>
<term name="month-02">Февруари</term>
<term name="month-03">Март</term>
<term name="month-04">Април</term>
<term name="month-05">Май</term>
<term name="month-06">Юни</term>
<term name="month-07">Юли</term>
<term name="month-08">Август</term>
<term name="month-09">Септември</term>
<term name="month-10">Октомври</term>
<term name="month-11">Ноември</term>
<term name="month-12">Декември</term>
<!-- SHORT MONTH FORMS -->
<term name="month-01" form="short">Яну</term>
<term name="month-02" form="short">Фев</term>
<term name="month-03" form="short">Мар</term>
<term name="month-04" form="short">Апр</term>
<term name="month-05" form="short">Май</term>
<term name="month-06" form="short">Юни</term>
<term name="month-07" form="short">Юли</term>
<term name="month-08" form="short">Авг</term>
<term name="month-09" form="short">Сеп</term>
<term name="month-10" form="short">Окт</term>
<term name="month-11" form="short">Ное</term>
<term name="month-12" form="short">Дек</term>
<!-- SEASONS -->
<term name="season-01">Spring</term>
<term name="season-02">Summer</term>
<term name="season-03">Autumn</term>
<term name="season-04">Winter</term>
</terms>
</locale>

View file

@ -1,211 +1,299 @@
<?xml version="1.0" encoding="UTF-8"?>
<terms xmlns="http://purl.org/net/xbiblio/csl">
<locale xml:lang="ca">
<term name="at">at</term>
<term name="in">in</term>
<term name="ibid">ibid</term>
<term name="accessed">accessed</term>
<term name="retrieved">retrieved</term>
<term name="from">from</term>
<term name="forthcoming">forthcoming</term>
<term name="references">References</term>
<term name="reference item">
<single>source</single>
<multiple>sources</multiple>
</term>
<term name="no date">nd</term>
<term name="and">and</term>
<term name="et-al">et al.</term>
<term name="interview">interview</term>
<term name="letter">letter</term>
<term name="anonymous">anonymous</term>
<term name="anonymous" form="short">anon</term>
<term name="and others">and others</term>
<term name="in press">in press</term>
<term name="online">online</term>
<term name="cited">cited</term>
<term name="internet">internet</term>
<term name="presented at">presented at the</term>
<term name="anthropology">anthropology</term>
<term name="astronomy">astronomy</term>
<term name="biology">biology</term>
<term name="botany">botany</term>
<term name="chemistry">chemistry</term>
<term name="engineering">engineering</term>
<term name="generic-base">generic base</term>
<term name="geography">geography</term>
<term name="geology">geology</term>
<term name="history">history</term>
<term name="humanities">humanities</term>
<term name="literature">literature</term>
<term name="math">math</term>
<term name="medicine">medicine</term>
<term name="philosophy">philosophy</term>
<term name="physics">physics</term>
<term name="psychology">psychology</term>
<term name="sociology">sociology</term>
<term name="science">science</term>
<term name="political_science">political science</term>
<term name="social_science">social science</term>
<term name="theology">theology</term>
<term name="zoology">zoology</term>
<term name="book">
<single>book</single>
<multiple>books</multiple>
</term>
<term name="chapter">
<single>chapter</single>
<multiple>chapters</multiple>
</term>
<term name="column">
<single>column</single>
<multiple>columns</multiple>
</term>
<term name="figure">
<single>figure</single>
<multiple>figures</multiple>
</term>
<term name="folio">
<single>folio</single>
<multiple>folios</multiple>
</term>
<term name="issue">
<single>number</single>
<multiple>numbers</multiple>
</term>
<term name="line">
<single>line</single>
<multiple>line</multiple>
</term>
<term name="note">
<single>note</single>
<multiple>notes</multiple>
</term>
<term name="opus">
<single>opus</single>
<multiple>opera</multiple>
</term>
<term name="page">
<single>page</single>
<multiple>pages</multiple>
</term>
<term name="paragraph">
<single>paragraph</single>
<multiple>paragraph</multiple>
</term>
<term name="part">
<single>part</single>
<multiple>parts</multiple>
</term>
<term name="section">
<single>section</single>
<multiple>sections</multiple>
</term>
<term name="volume">
<single>volume</single>
<multiple>volumes</multiple>
</term>
<term name="edition">
<single>edition</single>
<multiple>editions</multiple>
</term>
<term name="verse">
<single>verse</single>
<multiple>verses</multiple>
</term>
<term name="sub verbo">
<single>sub verbo</single>
<multiple>s.vv</multiple>
</term>
<term name="book" form="short">bk</term>
<term name="chapter" form="short">chap</term>
<term name="column" form="short">col</term>
<term name="figure" form="short">fig</term>
<term name="folio" form="short">f</term>
<term name="issue" form="short">no</term>
<term name="opus" form="short">op</term>
<term name="page" form="short">
<single>p</single>
<multiple>pp</multiple>
</term>
<term name="paragraph" form="short">para</term>
<term name="part" form="short">pt</term>
<term name="section" form="short">sec</term>
<term name="sub verbo" form="short">
<single>s.v</single>
<multiple>s.vv</multiple>
</term>
<term name="verse" form="short">
<single>v</single>
<multiple>vv</multiple>
</term>
<term name="volume" form="short">
<single>vol</single>
<multiple>vols</multiple>
</term>
<term name="edition">edition</term>
<term name="edition" form="short">ed</term>
<term name="paragraph" form="symbol">
<single></single>
<multiple>¶¶</multiple>
</term>
<term name="section" form="symbol">
<single>§</single>
<multiple>§§</multiple>
</term>
<term name="author">
<single/>
<multiple/>
</term>
<term name="editor">
<single>editor</single>
<multiple>editors</multiple>
</term>
<term name="translator">
<single>translator</single>
<multiple>translators</multiple>
</term>
<term name="author" form="short">
<single/>
<multiple/>
</term>
<term name="editor" form="short">
<single>ed</single>
<multiple>eds</multiple>
</term>
<term name="translator" form="short">
<single>tran</single>
<multiple>trans</multiple>
</term>
<term name="editor" form="verb">edited by</term>
<term name="translator" form="verb">translated by</term>
<term name="recipient" form="verb">to</term>
<term name="interviewer" form="verb">interview by</term>
<term name="editor" form="verb-short">ed</term>
<term name="translator" form="verb-short">trans</term>
<term name="month-01">January</term>
<term name="month-02">February</term>
<term name="month-03">March</term>
<term name="month-04">April</term>
<term name="month-05">May</term>
<term name="month-06">June</term>
<term name="month-07">July</term>
<term name="month-08">August</term>
<term name="month-09">September</term>
<term name="month-10">October</term>
<term name="month-11">November</term>
<term name="month-12">December</term>
<term name="month-01" form="short">Jan</term>
<term name="month-02" form="short">Feb</term>
<term name="month-03" form="short">Mar</term>
<term name="month-04" form="short">Apr</term>
<term name="month-05" form="short">May</term>
<term name="month-06" form="short">Jun</term>
<term name="month-07" form="short">Jul</term>
<term name="month-08" form="short">Aug</term>
<term name="month-09" form="short">Sep</term>
<term name="month-10" form="short">Oct</term>
<term name="month-11" form="short">Nov</term>
<term name="month-12" form="short">Dec</term>
</locale>
</terms>
<?xml version="1.0" encoding="utf-8"?>
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="ca">
<style-options punctuation-in-quote="true"/>
<date form="text">
<date-part name="month" suffix=" "/>
<date-part name="day" suffix=", "/>
<date-part name="year"/>
</date>
<date form="numeric">
<date-part name="year"/>
<date-part name="month" form="numeric" prefix="-" range-delimiter="/"/>
<date-part name="day" prefix="-" range-delimiter="/"/>
</date>
<terms>
<term name="at">at</term>
<term name="in">in</term>
<term name="ibid">ibid</term>
<term name="accessed">accessed</term>
<term name="retrieved">retrieved</term>
<term name="from">from</term>
<term name="forthcoming">forthcoming</term>
<term name="reference">
<single>reference</single>
<multiple>references</multiple>
</term>
<term name="reference" form="short">
<single>ref.</single>
<multiple>refs.</multiple>
</term>
<term name="no date">nd</term>
<term name="and">and</term>
<term name="et-al">et al.</term>
<term name="circa">circa</term>
<term name="circa" form="short">c.</term>
<term name="interview">interview</term>
<term name="letter">letter</term>
<term name="anonymous">anonymous</term>
<term name="anonymous" form="short">anon</term>
<term name="and others">and others</term>
<term name="in press">in press</term>
<term name="online">online</term>
<term name="cited">cited</term>
<term name="internet">internet</term>
<term name="presented at">presented at the</term>
<term name="ad">AD</term>
<term name="bc">BC</term>
<!-- QUOTES -->
<term name="open-quote"></term>
<term name="close-quote"></term>
<term name="open-inner-quote"></term>
<term name="close-inner-quote"></term>
<!-- ORDINALS -->
<term name="ordinal-01">st</term>
<term name="ordinal-02">nd</term>
<term name="ordinal-03">rd</term>
<term name="ordinal-04">th</term>
<!-- LONG ORDINALS -->
<term name="long-ordinal-01">first</term>
<term name="long-ordinal-02">second</term>
<term name="long-ordinal-03">third</term>
<term name="long-ordinal-04">fourth</term>
<term name="long-ordinal-05">fifth</term>
<term name="long-ordinal-06">sixth</term>
<term name="long-ordinal-07">seventh</term>
<term name="long-ordinal-08">eighth</term>
<term name="long-ordinal-09">ninth</term>
<term name="long-ordinal-10">tenth</term>
<!-- CATEGORIES -->
<term name="anthropology">anthropology</term>
<term name="astronomy">astronomy</term>
<term name="biology">biology</term>
<term name="botany">botany</term>
<term name="chemistry">chemistry</term>
<term name="engineering">engineering</term>
<term name="generic-base">generic base</term>
<term name="geography">geography</term>
<term name="geology">geology</term>
<term name="history">history</term>
<term name="humanities">humanities</term>
<term name="linguistics">linguistics</term>
<term name="literature">literature</term>
<term name="math">math</term>
<term name="medicine">medicine</term>
<term name="philosophy">philosophy</term>
<term name="physics">physics</term>
<term name="psychology">psychology</term>
<term name="sociology">sociology</term>
<term name="science">science</term>
<term name="political_science">political science</term>
<term name="social_science">social science</term>
<term name="theology">theology</term>
<term name="zoology">zoology</term>
<!-- LONG LOCATOR FORMS -->
<term name="book">
<single>book</single>
<multiple>books</multiple>
</term>
<term name="chapter">
<single>chapter</single>
<multiple>chapters</multiple>
</term>
<term name="column">
<single>column</single>
<multiple>columns</multiple>
</term>
<term name="figure">
<single>figure</single>
<multiple>figures</multiple>
</term>
<term name="folio">
<single>folio</single>
<multiple>folios</multiple>
</term>
<term name="issue">
<single>number</single>
<multiple>numbers</multiple>
</term>
<term name="line">
<single>line</single>
<multiple>line</multiple>
</term>
<term name="note">
<single>note</single>
<multiple>notes</multiple>
</term>
<term name="opus">
<single>opus</single>
<multiple>opera</multiple>
</term>
<term name="page">
<single>page</single>
<multiple>pages</multiple>
</term>
<term name="paragraph">
<single>paragraph</single>
<multiple>paragraph</multiple>
</term>
<term name="part">
<single>part</single>
<multiple>parts</multiple>
</term>
<term name="section">
<single>section</single>
<multiple>sections</multiple>
</term>
<term name="volume">
<single>volume</single>
<multiple>volumes</multiple>
</term>
<term name="edition">
<single>edition</single>
<multiple>editions</multiple>
</term>
<term name="verse">
<single>verse</single>
<multiple>verses</multiple>
</term>
<term name="sub verbo">
<single>sub verbo</single>
<multiple>s.vv</multiple>
</term>
<!-- SHORT LOCATOR FORMS -->
<term name="book" form="short">bk</term>
<term name="chapter" form="short">chap</term>
<term name="column" form="short">col</term>
<term name="figure" form="short">fig</term>
<term name="folio" form="short">f</term>
<term name="issue" form="short">no</term>
<term name="opus" form="short">op</term>
<term name="page" form="short">
<single>p</single>
<multiple>pp</multiple>
</term>
<term name="paragraph" form="short">para</term>
<term name="part" form="short">pt</term>
<term name="section" form="short">sec</term>
<term name="sub verbo" form="short">
<single>s.v</single>
<multiple>s.vv</multiple>
</term>
<term name="verse" form="short">
<single>v</single>
<multiple>vv</multiple>
</term>
<term name="volume" form="short">
<single>vol</single>
<multiple>vols</multiple>
</term>
<term name="edition" form="short">ed</term>
<!-- SYMBOL LOCATOR FORMS -->
<term name="paragraph" form="symbol">
<single></single>
<multiple>¶¶</multiple>
</term>
<term name="section" form="symbol">
<single>§</single>
<multiple>§§</multiple>
</term>
<!-- LONG ROLE FORMS -->
<term name="author">
<single/>
<multiple/>
</term>
<term name="editor">
<single>editor</single>
<multiple>editors</multiple>
</term>
<term name="editorial-director">
<single>editor</single>
<multiple>editors</multiple>
</term>
<term name="translator">
<single>translator</single>
<multiple>translators</multiple>
</term>
<term name="editortranslator">
<single>editor &amp; translator</single>
<multiple>editors &amp; translators</multiple>
</term>
<!-- SHORT ROLE FORMS -->
<term name="author" form="short">
<single/>
<multiple/>
</term>
<term name="editor" form="short">
<single>ed</single>
<multiple>eds</multiple>
</term>
<term name="editorial-director" form="short">
<single>ed.</single>
<multiple>eds.</multiple>
</term>
<term name="translator" form="short">
<single>tran</single>
<multiple>trans</multiple>
</term>
<term name="editortranslator" form="short">
<single>ed. &amp; tran.</single>
<multiple>eds. &amp; trans.</multiple>
</term>
<!-- VERB ROLE FORMS -->
<term name="editor" form="verb">edited by</term>
<term name="editorial-director" form="verb">edited by</term>
<term name="translator" form="verb">translated by</term>
<term name="editortranslator" form="verb">edited &amp; translated by</term>
<term name="recipient" form="verb">to</term>
<term name="interviewer" form="verb">interview by</term>
<!-- SHORT VERB ROLE FORMS -->
<term name="editor" form="verb-short">ed</term>
<term name="editorial-director" form="verb-short">ed.</term>
<term name="translator" form="verb-short">trans</term>
<term name="editortranslator" form="verb-short">ed. &amp; trans. by</term>
<!-- LONG MONTH FORMS -->
<term name="month-01">January</term>
<term name="month-02">February</term>
<term name="month-03">March</term>
<term name="month-04">April</term>
<term name="month-05">May</term>
<term name="month-06">June</term>
<term name="month-07">July</term>
<term name="month-08">August</term>
<term name="month-09">September</term>
<term name="month-10">October</term>
<term name="month-11">November</term>
<term name="month-12">December</term>
<!-- SHORT MONTH FORMS -->
<term name="month-01" form="short">Jan</term>
<term name="month-02" form="short">Feb</term>
<term name="month-03" form="short">Mar</term>
<term name="month-04" form="short">Apr</term>
<term name="month-05" form="short">May</term>
<term name="month-06" form="short">Jun</term>
<term name="month-07" form="short">Jul</term>
<term name="month-08" form="short">Aug</term>
<term name="month-09" form="short">Sep</term>
<term name="month-10" form="short">Oct</term>
<term name="month-11" form="short">Nov</term>
<term name="month-12" form="short">Dec</term>
<!-- SEASONS -->
<term name="season-01">Spring</term>
<term name="season-02">Summer</term>
<term name="season-03">Autumn</term>
<term name="season-04">Winter</term>
</terms>
</locale>

View file

@ -1,211 +1,299 @@
<?xml version="1.0" encoding="UTF-8"?>
<terms xmlns="http://purl.org/net/xbiblio/csl">
<locale xml:lang="cs">
<term name="at">v</term>
<term name="in">v</term>
<term name="ibid">ibid</term>
<term name="accessed">přistoupeno</term>
<term name="retrieved">získáno</term>
<term name="from">z</term>
<term name="forthcoming">nadcházející</term>
<term name="references">reference</term>
<term name="reference item">
<single>zdroj</single>
<multiple>zdroje</multiple>
</term>
<term name="no date">bez data</term>
<term name="and">a</term>
<term name="et-al">et al.</term>
<term name="interview">interview</term>
<term name="letter">dopis</term>
<term name="anonymous">anonymous</term>
<term name="anonymous" form="short">anon</term>
<term name="and others">a další</term>
<term name="in press">v tisku</term>
<term name="online">online</term>
<term name="cited">citován</term>
<term name="internet">internet</term>
<term name="presented at">prezentován v</term>
<term name="anthropology">antropologie</term>
<term name="astronomy">astronomie</term>
<term name="biology">biologie</term>
<term name="botany">botanika</term>
<term name="chemistry">chemie</term>
<term name="engineering">technika</term>
<term name="generic-base">všeobecný základ</term>
<term name="geography">geografie</term>
<term name="geology">geologie</term>
<term name="history">historie</term>
<term name="humanities">humanitní</term>
<term name="literature">literatura</term>
<term name="math">matematika</term>
<term name="medicine">medicína</term>
<term name="philosophy">filosofie</term>
<term name="physics">fyzika</term>
<term name="psychology">psychologie</term>
<term name="sociology">sociologie</term>
<term name="science">věda</term>
<term name="political_science">politologie</term>
<term name="social_science">společenská věda</term>
<term name="theology">teologie</term>
<term name="zoology">zoologie</term>
<term name="book">
<single>kniha</single>
<multiple>knihy</multiple>
</term>
<term name="chapter">
<single>kapitola</single>
<multiple>kapitoly</multiple>
</term>
<term name="column">
<single>sloupec</single>
<multiple>sloupce</multiple>
</term>
<term name="figure">
<single>obrázek</single>
<multiple>obrázky</multiple>
</term>
<term name="folio">
<single>list</single>
<multiple>listy</multiple>
</term>
<term name="issue">
<single>číslo</single>
<multiple>číslo</multiple>
</term>
<term name="line">
<single>řádek</single>
<multiple>řádky</multiple>
</term>
<term name="note">
<single>poznámka</single>
<multiple>poznámky</multiple>
</term>
<term name="opus">
<single>opus</single>
<multiple>opera</multiple>
</term>
<term name="page">
<single>strana</single>
<multiple>strany</multiple>
</term>
<term name="paragraph">
<single>odstavec</single>
<multiple>odstavce</multiple>
</term>
<term name="part">
<single>část</single>
<multiple>části</multiple>
</term>
<term name="section">
<single>sekce</single>
<multiple>sekce</multiple>
</term>
<term name="volume">
<single>ročník</single>
<multiple>ročníky</multiple>
</term>
<term name="edition">
<single>edice</single>
<multiple>edice</multiple>
</term>
<term name="verse">
<single>verš</single>
<multiple>verše</multiple>
</term>
<term name="sub verbo">
<single>sub verbo</single>
<multiple>s.vv</multiple>
</term>
<term name="book" form="short">kn</term>
<term name="chapter" form="short">kap</term>
<term name="column" form="short">sl</term>
<term name="figure" form="short">obr</term>
<term name="folio" form="short">l</term>
<term name="issue" form="short">čís</term>
<term name="opus" form="short">op</term>
<term name="page" form="short">
<single>s</single>
<multiple>s</multiple>
</term>
<term name="paragraph" form="short">odst</term>
<term name="part" form="short">č</term>
<term name="section" form="short">sek</term>
<term name="sub verbo" form="short">
<single>s.v</single>
<multiple>s.vv</multiple>
</term>
<term name="verse" form="short">
<single>v</single>
<multiple>v</multiple>
</term>
<term name="volume" form="short">
<single>roč</single>
<multiple>roč</multiple>
</term>
<term name="edition">edition</term>
<term name="edition" form="short">ed</term>
<term name="paragraph" form="symbol">
<single></single>
<multiple>¶¶</multiple>
</term>
<term name="section" form="symbol">
<single>§</single>
<multiple>§§</multiple>
</term>
<term name="author">
<single>autor</single>
<multiple>autoři</multiple>
</term>
<term name="editor">
<single>editor</single>
<multiple>editoři</multiple>
</term>
<term name="translator">
<single>překladatel</single>
<multiple>překladatelé</multiple>
</term>
<term name="author" form="short">
<single/>
<multiple/>
</term>
<term name="editor" form="short">
<single>ed</single>
<multiple>ed</multiple>
</term>
<term name="translator" form="short">
<single>překl</single>
<multiple>překl</multiple>
</term>
<term name="editor" form="verb">editoval</term>
<term name="translator" form="verb">přeložil</term>
<term name="recipient" form="verb">pro</term>
<term name="interviewer" form="verb">rozhovor vedl</term>
<term name="editor" form="verb-short">ed</term>
<term name="translator" form="verb-short">překl</term>
<term name="month-01">leden</term>
<term name="month-02">únor</term>
<term name="month-03">březen</term>
<term name="month-04">duben</term>
<term name="month-05">květen</term>
<term name="month-06">červen</term>
<term name="month-07">červenec</term>
<term name="month-08">srpen</term>
<term name="month-09">září</term>
<term name="month-10">říjen</term>
<term name="month-11">listopad</term>
<term name="month-12">prosinec</term>
<term name="month-01" form="short">led</term>
<term name="month-02" form="short">úno</term>
<term name="month-03" form="short">bře</term>
<term name="month-04" form="short">dub</term>
<term name="month-05" form="short">kvě</term>
<term name="month-06" form="short">čer</term>
<term name="month-07" form="short">čvc</term>
<term name="month-08" form="short">srp</term>
<term name="month-09" form="short">zář</term>
<term name="month-10" form="short">říj</term>
<term name="month-11" form="short">lis</term>
<term name="month-12" form="short">pro</term>
</locale>
</terms>
<?xml version="1.0" encoding="utf-8"?>
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="cs">
<style-options punctuation-in-quote="true"/>
<date form="text">
<date-part name="month" suffix=" "/>
<date-part name="day" suffix=", "/>
<date-part name="year"/>
</date>
<date form="numeric">
<date-part name="year"/>
<date-part name="month" form="numeric" prefix="-" range-delimiter="/"/>
<date-part name="day" prefix="-" range-delimiter="/"/>
</date>
<terms>
<term name="at">v</term>
<term name="in">v</term>
<term name="ibid">ibid</term>
<term name="accessed">přístup</term>
<term name="retrieved">získáno</term>
<term name="from">z</term>
<term name="forthcoming">nadcházející</term>
<term name="reference">
<single>reference</single>
<multiple>references</multiple>
</term>
<term name="reference" form="short">
<single>ref.</single>
<multiple>refs.</multiple>
</term>
<term name="no date">bez data</term>
<term name="and">a</term>
<term name="et-al">et al.</term>
<term name="circa">circa</term>
<term name="circa" form="short">c.</term>
<term name="interview">interview</term>
<term name="letter">dopis</term>
<term name="anonymous">anonymous</term>
<term name="anonymous" form="short">anon</term>
<term name="and others">a další</term>
<term name="in press">v tisku</term>
<term name="online">online</term>
<term name="cited">citován</term>
<term name="internet">internet</term>
<term name="presented at">prezentován v</term>
<term name="ad">AD</term>
<term name="bc">BC</term>
<!-- QUOTES -->
<term name="open-quote"></term>
<term name="close-quote"></term>
<term name="open-inner-quote"></term>
<term name="close-inner-quote"></term>
<!-- ORDINALS -->
<term name="ordinal-01">st</term>
<term name="ordinal-02">nd</term>
<term name="ordinal-03">rd</term>
<term name="ordinal-04">th</term>
<!-- LONG ORDINALS -->
<term name="long-ordinal-01">first</term>
<term name="long-ordinal-02">second</term>
<term name="long-ordinal-03">third</term>
<term name="long-ordinal-04">fourth</term>
<term name="long-ordinal-05">fifth</term>
<term name="long-ordinal-06">sixth</term>
<term name="long-ordinal-07">seventh</term>
<term name="long-ordinal-08">eighth</term>
<term name="long-ordinal-09">ninth</term>
<term name="long-ordinal-10">tenth</term>
<!-- CATEGORIES -->
<term name="anthropology">antropologie</term>
<term name="astronomy">astronomie</term>
<term name="biology">biologie</term>
<term name="botany">botanika</term>
<term name="chemistry">chemie</term>
<term name="engineering">technika</term>
<term name="generic-base">všeobecný základ</term>
<term name="geography">geografie</term>
<term name="geology">geologie</term>
<term name="history">historie</term>
<term name="humanities">humanitní</term>
<term name="linguistics">linguistics</term>
<term name="literature">literatura</term>
<term name="math">matematika</term>
<term name="medicine">medicína</term>
<term name="philosophy">filosofie</term>
<term name="physics">fyzika</term>
<term name="psychology">psychologie</term>
<term name="sociology">sociologie</term>
<term name="science">věda</term>
<term name="political_science">politologie</term>
<term name="social_science">sociální věda</term>
<term name="theology">teologie</term>
<term name="zoology">zoologie</term>
<!-- LONG LOCATOR FORMS -->
<term name="book">
<single>kniha</single>
<multiple>knihy</multiple>
</term>
<term name="chapter">
<single>kapitola</single>
<multiple>kapitoly</multiple>
</term>
<term name="column">
<single>sloupec</single>
<multiple>sloupce</multiple>
</term>
<term name="figure">
<single>obrázek</single>
<multiple>obrázky</multiple>
</term>
<term name="folio">
<single>list</single>
<multiple>listy</multiple>
</term>
<term name="issue">
<single>číslo</single>
<multiple>číslo</multiple>
</term>
<term name="line">
<single>řádek</single>
<multiple>řádky</multiple>
</term>
<term name="note">
<single>poznámka</single>
<multiple>poznámky</multiple>
</term>
<term name="opus">
<single>opus</single>
<multiple>opera</multiple>
</term>
<term name="page">
<single>strana</single>
<multiple>strany</multiple>
</term>
<term name="paragraph">
<single>odstavec</single>
<multiple>odstavce</multiple>
</term>
<term name="part">
<single>část</single>
<multiple>části</multiple>
</term>
<term name="section">
<single>sekce</single>
<multiple>sekce</multiple>
</term>
<term name="volume">
<single>ročník</single>
<multiple>ročníky</multiple>
</term>
<term name="edition">
<single>edice</single>
<multiple>edice</multiple>
</term>
<term name="verse">
<single>verš</single>
<multiple>verše</multiple>
</term>
<term name="sub verbo">
<single>sub verbo</single>
<multiple>s.vv</multiple>
</term>
<!-- SHORT LOCATOR FORMS -->
<term name="book" form="short">kn</term>
<term name="chapter" form="short">kap</term>
<term name="column" form="short">sl</term>
<term name="figure" form="short">obr</term>
<term name="folio" form="short">l</term>
<term name="issue" form="short">čís</term>
<term name="opus" form="short">op</term>
<term name="page" form="short">
<single>s</single>
<multiple>s</multiple>
</term>
<term name="paragraph" form="short">odst</term>
<term name="part" form="short">č</term>
<term name="section" form="short">sek</term>
<term name="sub verbo" form="short">
<single>s.v</single>
<multiple>s.vv</multiple>
</term>
<term name="verse" form="short">
<single>v</single>
<multiple>v</multiple>
</term>
<term name="volume" form="short">
<single>roč</single>
<multiple>roč</multiple>
</term>
<term name="edition" form="short">ed</term>
<!-- SYMBOL LOCATOR FORMS -->
<term name="paragraph" form="symbol">
<single></single>
<multiple>¶¶</multiple>
</term>
<term name="section" form="symbol">
<single>§</single>
<multiple>§§</multiple>
</term>
<!-- LONG ROLE FORMS -->
<term name="author">
<single>autor</single>
<multiple>autoři</multiple>
</term>
<term name="editor">
<single>editor</single>
<multiple>editoři</multiple>
</term>
<term name="editorial-director">
<single>editor</single>
<multiple>editors</multiple>
</term>
<term name="translator">
<single>překladatel</single>
<multiple>překladatelé</multiple>
</term>
<term name="editortranslator">
<single>editor &amp; translator</single>
<multiple>editors &amp; translators</multiple>
</term>
<!-- SHORT ROLE FORMS -->
<term name="author" form="short">
<single/>
<multiple/>
</term>
<term name="editor" form="short">
<single>ed</single>
<multiple>ed</multiple>
</term>
<term name="editorial-director" form="short">
<single>ed.</single>
<multiple>eds.</multiple>
</term>
<term name="translator" form="short">
<single>překl</single>
<multiple>překl</multiple>
</term>
<term name="editortranslator" form="short">
<single>ed. &amp; tran.</single>
<multiple>eds. &amp; trans.</multiple>
</term>
<!-- VERB ROLE FORMS -->
<term name="editor" form="verb">editoval</term>
<term name="editorial-director" form="verb">edited by</term>
<term name="translator" form="verb">přeložil</term>
<term name="editortranslator" form="verb">edited &amp; translated by</term>
<term name="recipient" form="verb">pro</term>
<term name="interviewer" form="verb">rozhovor vedl</term>
<!-- SHORT VERB ROLE FORMS -->
<term name="editor" form="verb-short">ed</term>
<term name="editorial-director" form="verb-short">ed.</term>
<term name="translator" form="verb-short">překl</term>
<term name="editortranslator" form="verb-short">ed. &amp; trans. by</term>
<!-- LONG MONTH FORMS -->
<term name="month-01">leden</term>
<term name="month-02">únor</term>
<term name="month-03">březen</term>
<term name="month-04">duben</term>
<term name="month-05">květen</term>
<term name="month-06">červen</term>
<term name="month-07">červenec</term>
<term name="month-08">srpen</term>
<term name="month-09">září</term>
<term name="month-10">říjen</term>
<term name="month-11">listopad</term>
<term name="month-12">prosinec</term>
<!-- SHORT MONTH FORMS -->
<term name="month-01" form="short">led</term>
<term name="month-02" form="short">úno</term>
<term name="month-03" form="short">bře</term>
<term name="month-04" form="short">dub</term>
<term name="month-05" form="short">kvě</term>
<term name="month-06" form="short">čer</term>
<term name="month-07" form="short">čvc</term>
<term name="month-08" form="short">srp</term>
<term name="month-09" form="short">zář</term>
<term name="month-10" form="short">říj</term>
<term name="month-11" form="short">lis</term>
<term name="month-12" form="short">pro</term>
<!-- SEASONS -->
<term name="season-01">Spring</term>
<term name="season-02">Summer</term>
<term name="season-03">Autumn</term>
<term name="season-04">Winter</term>
</terms>
</locale>

View file

@ -1,211 +1,299 @@
<?xml version="1.0" encoding="UTF-8"?>
<terms xmlns="http://purl.org/net/xbiblio/csl">
<locale xml:lang="da">
<term name="at">at</term>
<term name="in">in</term>
<term name="ibid">ibid</term>
<term name="accessed">accessed</term>
<term name="retrieved">retrieved</term>
<term name="from">from</term>
<term name="forthcoming">forthcoming</term>
<term name="references">References</term>
<term name="reference item">
<single>source</single>
<multiple>sources</multiple>
</term>
<term name="no date">nd</term>
<term name="and">and</term>
<term name="et-al">et al.</term>
<term name="interview">interview</term>
<term name="letter">letter</term>
<term name="anonymous">anonymous</term>
<term name="anonymous" form="short">anon</term>
<term name="and others">and others</term>
<term name="in press">in press</term>
<term name="online">online</term>
<term name="cited">cited</term>
<term name="internet">internet</term>
<term name="presented at">presented at the</term>
<term name="anthropology">anthropology</term>
<term name="astronomy">astronomy</term>
<term name="biology">biology</term>
<term name="botany">botany</term>
<term name="chemistry">chemistry</term>
<term name="engineering">engineering</term>
<term name="generic-base">generic base</term>
<term name="geography">geography</term>
<term name="geology">geology</term>
<term name="history">history</term>
<term name="humanities">humanities</term>
<term name="literature">literature</term>
<term name="math">math</term>
<term name="medicine">medicine</term>
<term name="philosophy">philosophy</term>
<term name="physics">physics</term>
<term name="psychology">psychology</term>
<term name="sociology">sociology</term>
<term name="science">science</term>
<term name="political_science">political science</term>
<term name="social_science">social science</term>
<term name="theology">theology</term>
<term name="zoology">zoology</term>
<term name="book">
<single>book</single>
<multiple>books</multiple>
</term>
<term name="chapter">
<single>chapter</single>
<multiple>chapters</multiple>
</term>
<term name="column">
<single>column</single>
<multiple>columns</multiple>
</term>
<term name="figure">
<single>figure</single>
<multiple>figures</multiple>
</term>
<term name="folio">
<single>folio</single>
<multiple>folios</multiple>
</term>
<term name="issue">
<single>number</single>
<multiple>numbers</multiple>
</term>
<term name="line">
<single>line</single>
<multiple>line</multiple>
</term>
<term name="note">
<single>note</single>
<multiple>notes</multiple>
</term>
<term name="opus">
<single>opus</single>
<multiple>opera</multiple>
</term>
<term name="page">
<single>page</single>
<multiple>pages</multiple>
</term>
<term name="paragraph">
<single>paragraph</single>
<multiple>paragraph</multiple>
</term>
<term name="part">
<single>part</single>
<multiple>parts</multiple>
</term>
<term name="section">
<single>section</single>
<multiple>sections</multiple>
</term>
<term name="volume">
<single>volume</single>
<multiple>volumes</multiple>
</term>
<term name="edition">
<single>edition</single>
<multiple>editions</multiple>
</term>
<term name="verse">
<single>verse</single>
<multiple>verses</multiple>
</term>
<term name="sub verbo">
<single>sub verbo</single>
<multiple>s.vv</multiple>
</term>
<term name="book" form="short">bk</term>
<term name="chapter" form="short">chap</term>
<term name="column" form="short">col</term>
<term name="figure" form="short">fig</term>
<term name="folio" form="short">f</term>
<term name="issue" form="short">no</term>
<term name="opus" form="short">op</term>
<term name="page" form="short">
<single>p</single>
<multiple>pp</multiple>
</term>
<term name="paragraph" form="short">para</term>
<term name="part" form="short">pt</term>
<term name="section" form="short">sec</term>
<term name="sub verbo" form="short">
<single>s.v</single>
<multiple>s.vv</multiple>
</term>
<term name="verse" form="short">
<single>v</single>
<multiple>vv</multiple>
</term>
<term name="volume" form="short">
<single>vol</single>
<multiple>vols</multiple>
</term>
<term name="edition">edition</term>
<term name="edition" form="short">ed</term>
<term name="paragraph" form="symbol">
<single></single>
<multiple>¶¶</multiple>
</term>
<term name="section" form="symbol">
<single>§</single>
<multiple>§§</multiple>
</term>
<term name="author">
<single/>
<multiple/>
</term>
<term name="editor">
<single>editor</single>
<multiple>editors</multiple>
</term>
<term name="translator">
<single>translator</single>
<multiple>translators</multiple>
</term>
<term name="author" form="short">
<single/>
<multiple/>
</term>
<term name="editor" form="short">
<single>ed</single>
<multiple>eds</multiple>
</term>
<term name="translator" form="short">
<single>tran</single>
<multiple>trans</multiple>
</term>
<term name="editor" form="verb">edited by</term>
<term name="translator" form="verb">translated by</term>
<term name="recipient" form="verb">to</term>
<term name="interviewer" form="verb">interview by</term>
<term name="editor" form="verb-short">ed</term>
<term name="translator" form="verb-short">trans</term>
<term name="month-01">January</term>
<term name="month-02">February</term>
<term name="month-03">March</term>
<term name="month-04">April</term>
<term name="month-05">May</term>
<term name="month-06">June</term>
<term name="month-07">July</term>
<term name="month-08">August</term>
<term name="month-09">September</term>
<term name="month-10">October</term>
<term name="month-11">November</term>
<term name="month-12">December</term>
<term name="month-01" form="short">Jan</term>
<term name="month-02" form="short">Feb</term>
<term name="month-03" form="short">Mar</term>
<term name="month-04" form="short">Apr</term>
<term name="month-05" form="short">May</term>
<term name="month-06" form="short">Jun</term>
<term name="month-07" form="short">Jul</term>
<term name="month-08" form="short">Aug</term>
<term name="month-09" form="short">Sep</term>
<term name="month-10" form="short">Oct</term>
<term name="month-11" form="short">Nov</term>
<term name="month-12" form="short">Dec</term>
</locale>
</terms>
<?xml version="1.0" encoding="utf-8"?>
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="da">
<style-options punctuation-in-quote="true"/>
<date form="text">
<date-part name="month" suffix=" "/>
<date-part name="day" suffix=", "/>
<date-part name="year"/>
</date>
<date form="numeric">
<date-part name="year"/>
<date-part name="month" form="numeric" prefix="-" range-delimiter="/"/>
<date-part name="day" prefix="-" range-delimiter="/"/>
</date>
<terms>
<term name="at">at</term>
<term name="in">in</term>
<term name="ibid">ibid</term>
<term name="accessed">accessed</term>
<term name="retrieved">retrieved</term>
<term name="from">from</term>
<term name="forthcoming">forthcoming</term>
<term name="reference">
<single>reference</single>
<multiple>references</multiple>
</term>
<term name="reference" form="short">
<single>ref.</single>
<multiple>refs.</multiple>
</term>
<term name="no date">nd</term>
<term name="and">and</term>
<term name="et-al">et al.</term>
<term name="circa">circa</term>
<term name="circa" form="short">c.</term>
<term name="interview">interview</term>
<term name="letter">letter</term>
<term name="anonymous">anonymous</term>
<term name="anonymous" form="short">anon</term>
<term name="and others">and others</term>
<term name="in press">in press</term>
<term name="online">online</term>
<term name="cited">cited</term>
<term name="internet">internet</term>
<term name="presented at">presented at the</term>
<term name="ad">AD</term>
<term name="bc">BC</term>
<!-- QUOTES -->
<term name="open-quote"></term>
<term name="close-quote"></term>
<term name="open-inner-quote"></term>
<term name="close-inner-quote"></term>
<!-- ORDINALS -->
<term name="ordinal-01">st</term>
<term name="ordinal-02">nd</term>
<term name="ordinal-03">rd</term>
<term name="ordinal-04">th</term>
<!-- LONG ORDINALS -->
<term name="long-ordinal-01">first</term>
<term name="long-ordinal-02">second</term>
<term name="long-ordinal-03">third</term>
<term name="long-ordinal-04">fourth</term>
<term name="long-ordinal-05">fifth</term>
<term name="long-ordinal-06">sixth</term>
<term name="long-ordinal-07">seventh</term>
<term name="long-ordinal-08">eighth</term>
<term name="long-ordinal-09">ninth</term>
<term name="long-ordinal-10">tenth</term>
<!-- CATEGORIES -->
<term name="anthropology">anthropology</term>
<term name="astronomy">astronomy</term>
<term name="biology">biology</term>
<term name="botany">botany</term>
<term name="chemistry">chemistry</term>
<term name="engineering">engineering</term>
<term name="generic-base">generic base</term>
<term name="geography">geography</term>
<term name="geology">geology</term>
<term name="history">history</term>
<term name="humanities">humanities</term>
<term name="linguistics">linguistics</term>
<term name="literature">literature</term>
<term name="math">math</term>
<term name="medicine">medicine</term>
<term name="philosophy">philosophy</term>
<term name="physics">physics</term>
<term name="psychology">psychology</term>
<term name="sociology">sociology</term>
<term name="science">science</term>
<term name="political_science">political science</term>
<term name="social_science">social science</term>
<term name="theology">theology</term>
<term name="zoology">zoology</term>
<!-- LONG LOCATOR FORMS -->
<term name="book">
<single>book</single>
<multiple>books</multiple>
</term>
<term name="chapter">
<single>chapter</single>
<multiple>chapters</multiple>
</term>
<term name="column">
<single>column</single>
<multiple>columns</multiple>
</term>
<term name="figure">
<single>figure</single>
<multiple>figures</multiple>
</term>
<term name="folio">
<single>folio</single>
<multiple>folios</multiple>
</term>
<term name="issue">
<single>number</single>
<multiple>numbers</multiple>
</term>
<term name="line">
<single>line</single>
<multiple>line</multiple>
</term>
<term name="note">
<single>note</single>
<multiple>notes</multiple>
</term>
<term name="opus">
<single>opus</single>
<multiple>opera</multiple>
</term>
<term name="page">
<single>page</single>
<multiple>pages</multiple>
</term>
<term name="paragraph">
<single>paragraph</single>
<multiple>paragraph</multiple>
</term>
<term name="part">
<single>part</single>
<multiple>parts</multiple>
</term>
<term name="section">
<single>section</single>
<multiple>sections</multiple>
</term>
<term name="volume">
<single>volume</single>
<multiple>volumes</multiple>
</term>
<term name="edition">
<single>edition</single>
<multiple>editions</multiple>
</term>
<term name="verse">
<single>verse</single>
<multiple>verses</multiple>
</term>
<term name="sub verbo">
<single>sub verbo</single>
<multiple>s.vv</multiple>
</term>
<!-- SHORT LOCATOR FORMS -->
<term name="book" form="short">bk</term>
<term name="chapter" form="short">chap</term>
<term name="column" form="short">col</term>
<term name="figure" form="short">fig</term>
<term name="folio" form="short">f</term>
<term name="issue" form="short">no</term>
<term name="opus" form="short">op</term>
<term name="page" form="short">
<single>p</single>
<multiple>pp</multiple>
</term>
<term name="paragraph" form="short">para</term>
<term name="part" form="short">pt</term>
<term name="section" form="short">sec</term>
<term name="sub verbo" form="short">
<single>s.v</single>
<multiple>s.vv</multiple>
</term>
<term name="verse" form="short">
<single>v</single>
<multiple>vv</multiple>
</term>
<term name="volume" form="short">
<single>vol</single>
<multiple>vols</multiple>
</term>
<term name="edition" form="short">ed</term>
<!-- SYMBOL LOCATOR FORMS -->
<term name="paragraph" form="symbol">
<single></single>
<multiple>¶¶</multiple>
</term>
<term name="section" form="symbol">
<single>§</single>
<multiple>§§</multiple>
</term>
<!-- LONG ROLE FORMS -->
<term name="author">
<single/>
<multiple/>
</term>
<term name="editor">
<single>editor</single>
<multiple>editors</multiple>
</term>
<term name="editorial-director">
<single>editor</single>
<multiple>editors</multiple>
</term>
<term name="translator">
<single>translator</single>
<multiple>translators</multiple>
</term>
<term name="editortranslator">
<single>editor &amp; translator</single>
<multiple>editors &amp; translators</multiple>
</term>
<!-- SHORT ROLE FORMS -->
<term name="author" form="short">
<single/>
<multiple/>
</term>
<term name="editor" form="short">
<single>ed</single>
<multiple>eds</multiple>
</term>
<term name="editorial-director" form="short">
<single>ed.</single>
<multiple>eds.</multiple>
</term>
<term name="translator" form="short">
<single>tran</single>
<multiple>trans</multiple>
</term>
<term name="editortranslator" form="short">
<single>ed. &amp; tran.</single>
<multiple>eds. &amp; trans.</multiple>
</term>
<!-- VERB ROLE FORMS -->
<term name="editor" form="verb">edited by</term>
<term name="editorial-director" form="verb">edited by</term>
<term name="translator" form="verb">translated by</term>
<term name="editortranslator" form="verb">edited &amp; translated by</term>
<term name="recipient" form="verb">to</term>
<term name="interviewer" form="verb">interview by</term>
<!-- SHORT VERB ROLE FORMS -->
<term name="editor" form="verb-short">ed</term>
<term name="editorial-director" form="verb-short">ed.</term>
<term name="translator" form="verb-short">trans</term>
<term name="editortranslator" form="verb-short">ed. &amp; trans. by</term>
<!-- LONG MONTH FORMS -->
<term name="month-01">January</term>
<term name="month-02">February</term>
<term name="month-03">March</term>
<term name="month-04">April</term>
<term name="month-05">May</term>
<term name="month-06">June</term>
<term name="month-07">July</term>
<term name="month-08">August</term>
<term name="month-09">September</term>
<term name="month-10">October</term>
<term name="month-11">November</term>
<term name="month-12">December</term>
<!-- SHORT MONTH FORMS -->
<term name="month-01" form="short">Jan</term>
<term name="month-02" form="short">Feb</term>
<term name="month-03" form="short">Mar</term>
<term name="month-04" form="short">Apr</term>
<term name="month-05" form="short">May</term>
<term name="month-06" form="short">Jun</term>
<term name="month-07" form="short">Jul</term>
<term name="month-08" form="short">Aug</term>
<term name="month-09" form="short">Sep</term>
<term name="month-10" form="short">Oct</term>
<term name="month-11" form="short">Nov</term>
<term name="month-12" form="short">Dec</term>
<!-- SEASONS -->
<term name="season-01">Spring</term>
<term name="season-02">Summer</term>
<term name="season-03">Autumn</term>
<term name="season-04">Winter</term>
</terms>
</locale>

View file

@ -1,211 +1,299 @@
<?xml version="1.0" encoding="UTF-8"?>
<terms xmlns="http://purl.org/net/xbiblio/csl">
<locale xml:lang="de">
<term name="at">at</term>
<term name="in">in</term>
<term name="ibid">ebd.</term>
<term name="accessed">zugegriffen</term>
<term name="retrieved">abgerufen</term>
<term name="from">von</term>
<term name="forthcoming">i.E.</term>
<term name="references">Quellenangabe</term>
<term name="reference item">
<single>source</single>
<multiple>sources</multiple>
</term>
<term name="no date">o.J.</term>
<term name="and">und</term>
<term name="et-al">u.a.</term>
<term name="interview">interview</term>
<term name="letter">letter</term>
<term name="anonymous">anonymous</term>
<term name="anonymous" form="short">anon</term>
<term name="and others">and others</term>
<term name="in press">in press</term>
<term name="online">online</term>
<term name="cited">cited</term>
<term name="internet">internet</term>
<term name="presented at">presented at the</term>
<term name="anthropology">anthropology</term>
<term name="astronomy">astronomy</term>
<term name="biology">biology</term>
<term name="botany">botany</term>
<term name="chemistry">chemistry</term>
<term name="engineering">engineering</term>
<term name="generic-base">generic base</term>
<term name="geography">geography</term>
<term name="geology">geology</term>
<term name="history">history</term>
<term name="humanities">humanities</term>
<term name="literature">literature</term>
<term name="math">math</term>
<term name="medicine">medicine</term>
<term name="philosophy">philosophy</term>
<term name="physics">physics</term>
<term name="psychology">psychology</term>
<term name="sociology">sociology</term>
<term name="science">science</term>
<term name="political_science">political science</term>
<term name="social_science">social science</term>
<term name="theology">theology</term>
<term name="zoology">zoology</term>
<term name="book">
<single>book</single>
<multiple>books</multiple>
</term>
<term name="chapter">
<single>chapter</single>
<multiple>chapters</multiple>
</term>
<term name="column">
<single>column</single>
<multiple>columns</multiple>
</term>
<term name="figure">
<single>figure</single>
<multiple>figures</multiple>
</term>
<term name="folio">
<single>folio</single>
<multiple>folios</multiple>
</term>
<term name="issue">
<single>number</single>
<multiple>numbers</multiple>
</term>
<term name="line">
<single>Zeile</single>
<multiple>Zeilen</multiple>
</term>
<term name="note">
<single>note</single>
<multiple>notes</multiple>
</term>
<term name="opus">
<single>opus</single>
<multiple>opera</multiple>
</term>
<term name="page">
<single>Seite</single>
<multiple>Seiten</multiple>
</term>
<term name="paragraph">
<single>Absatz</single>
<multiple>Absätze</multiple>
</term>
<term name="part">
<single>part</single>
<multiple>parts</multiple>
</term>
<term name="section">
<single>section</single>
<multiple>sections</multiple>
</term>
<term name="volume">
<single>volume</single>
<multiple>volumes</multiple>
</term>
<term name="edition">
<single>edition</single>
<multiple>editions</multiple>
</term>
<term name="verse">
<single>verse</single>
<multiple>verses</multiple>
</term>
<term name="sub verbo">
<single>sub verbo</single>
<multiple>s.vv</multiple>
</term>
<term name="book" form="short">bk</term>
<term name="chapter" form="short">chap</term>
<term name="column" form="short">col</term>
<term name="figure" form="short">fig</term>
<term name="folio" form="short">f</term>
<term name="issue" form="short">Nr</term>
<term name="opus" form="short">op</term>
<term name="page" form="short">
<single>S</single>
<multiple>S</multiple>
</term>
<term name="paragraph" form="short">para</term>
<term name="part" form="short">pt</term>
<term name="section" form="short">sec</term>
<term name="sub verbo" form="short">
<single>s.v</single>
<multiple>s.vv</multiple>
</term>
<term name="verse" form="short">
<single>v</single>
<multiple>vv</multiple>
</term>
<term name="volume" form="short">
<single>vol</single>
<multiple>vols</multiple>
</term>
<term name="edition">edition</term>
<term name="edition" form="short">ed</term>
<term name="paragraph" form="symbol">
<single></single>
<multiple>¶¶</multiple>
</term>
<term name="section" form="symbol">
<single>§</single>
<multiple>§§</multiple>
</term>
<term name="author">
<single/>
<multiple/>
</term>
<term name="editor">
<single>Herausgeber</single>
<multiple>Herausgeber</multiple>
</term>
<term name="translator">
<single>Übersetzer</single>
<multiple>Übersetzer</multiple>
</term>
<term name="author" form="short">
<single/>
<multiple/>
</term>
<term name="editor" form="short">
<single>Hrsg</single>
<multiple>Hrsg</multiple>
</term>
<term name="translator" form="short">
<single>Übers</single>
<multiple>Übers</multiple>
</term>
<term name="editor" form="verb">Hg. v</term>
<term name="translator" form="verb">Übers. v</term>
<term name="recipient" form="verb">to</term>
<term name="interviewer" form="verb">interview by</term>
<term name="editor" form="verb-short">ed</term>
<term name="translator" form="verb-short">trans</term>
<term name="month-01">Jänner</term>
<term name="month-02">Februar</term>
<term name="month-03">März</term>
<term name="month-04">April</term>
<term name="month-05">Mai</term>
<term name="month-06">Juni</term>
<term name="month-07">Juli</term>
<term name="month-08">August</term>
<term name="month-09">September</term>
<term name="month-10">Oktober</term>
<term name="month-11">November</term>
<term name="month-12">Dezember</term>
<term name="month-01" form="short">Jän</term>
<term name="month-02" form="short">Feb</term>
<term name="month-03" form="short">Mar</term>
<term name="month-04" form="short">Apr</term>
<term name="month-05" form="short">Mai</term>
<term name="month-06" form="short">Jun</term>
<term name="month-07" form="short">Jul</term>
<term name="month-08" form="short">Aug</term>
<term name="month-09" form="short">Sep</term>
<term name="month-10" form="short">Okt</term>
<term name="month-11" form="short">Nov</term>
<term name="month-12" form="short">Dez</term>
</locale>
</terms>
<?xml version="1.0" encoding="utf-8"?>
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="de">
<style-options punctuation-in-quote="true"/>
<date form="text">
<date-part name="month" suffix=" "/>
<date-part name="day" suffix=", "/>
<date-part name="year"/>
</date>
<date form="numeric">
<date-part name="year"/>
<date-part name="month" form="numeric" prefix="-" range-delimiter="/"/>
<date-part name="day" prefix="-" range-delimiter="/"/>
</date>
<terms>
<term name="at">at</term>
<term name="in">in</term>
<term name="ibid">ebd.</term>
<term name="accessed">zugegriffen</term>
<term name="retrieved">abgerufen</term>
<term name="from">von</term>
<term name="forthcoming">i.E.</term>
<term name="reference">
<single>reference</single>
<multiple>references</multiple>
</term>
<term name="reference" form="short">
<single>ref.</single>
<multiple>refs.</multiple>
</term>
<term name="no date">o.J.</term>
<term name="and">und</term>
<term name="et-al">u.a.</term>
<term name="circa">circa</term>
<term name="circa" form="short">c.</term>
<term name="interview">interview</term>
<term name="letter">letter</term>
<term name="anonymous">anonymous</term>
<term name="anonymous" form="short">anon</term>
<term name="and others">and others</term>
<term name="in press">in press</term>
<term name="online">online</term>
<term name="cited">cited</term>
<term name="internet">internet</term>
<term name="presented at">presented at the</term>
<term name="ad">AD</term>
<term name="bc">BC</term>
<!-- QUOTES -->
<term name="open-quote"></term>
<term name="close-quote"></term>
<term name="open-inner-quote"></term>
<term name="close-inner-quote"></term>
<!-- ORDINALS -->
<term name="ordinal-01">st</term>
<term name="ordinal-02">nd</term>
<term name="ordinal-03">rd</term>
<term name="ordinal-04">th</term>
<!-- LONG ORDINALS -->
<term name="long-ordinal-01">first</term>
<term name="long-ordinal-02">second</term>
<term name="long-ordinal-03">third</term>
<term name="long-ordinal-04">fourth</term>
<term name="long-ordinal-05">fifth</term>
<term name="long-ordinal-06">sixth</term>
<term name="long-ordinal-07">seventh</term>
<term name="long-ordinal-08">eighth</term>
<term name="long-ordinal-09">ninth</term>
<term name="long-ordinal-10">tenth</term>
<!-- CATEGORIES -->
<term name="anthropology">anthropology</term>
<term name="astronomy">astronomy</term>
<term name="biology">biology</term>
<term name="botany">botany</term>
<term name="chemistry">chemistry</term>
<term name="engineering">engineering</term>
<term name="generic-base">generic base</term>
<term name="geography">geography</term>
<term name="geology">geology</term>
<term name="history">history</term>
<term name="humanities">humanities</term>
<term name="linguistics">linguistics</term>
<term name="literature">literature</term>
<term name="math">math</term>
<term name="medicine">medicine</term>
<term name="philosophy">philosophy</term>
<term name="physics">physics</term>
<term name="psychology">psychology</term>
<term name="sociology">sociology</term>
<term name="science">science</term>
<term name="political_science">political science</term>
<term name="social_science">social science</term>
<term name="theology">theology</term>
<term name="zoology">zoology</term>
<!-- LONG LOCATOR FORMS -->
<term name="book">
<single>book</single>
<multiple>books</multiple>
</term>
<term name="chapter">
<single>chapter</single>
<multiple>chapters</multiple>
</term>
<term name="column">
<single>column</single>
<multiple>columns</multiple>
</term>
<term name="figure">
<single>figure</single>
<multiple>figures</multiple>
</term>
<term name="folio">
<single>folio</single>
<multiple>folios</multiple>
</term>
<term name="issue">
<single>number</single>
<multiple>numbers</multiple>
</term>
<term name="line">
<single>Zeile</single>
<multiple>Zeilen</multiple>
</term>
<term name="note">
<single>note</single>
<multiple>notes</multiple>
</term>
<term name="opus">
<single>opus</single>
<multiple>opera</multiple>
</term>
<term name="page">
<single>Seite</single>
<multiple>Seiten</multiple>
</term>
<term name="paragraph">
<single>Absatz</single>
<multiple>Absätze</multiple>
</term>
<term name="part">
<single>part</single>
<multiple>parts</multiple>
</term>
<term name="section">
<single>section</single>
<multiple>sections</multiple>
</term>
<term name="volume">
<single>volume</single>
<multiple>volumes</multiple>
</term>
<term name="edition">
<single>edition</single>
<multiple>editions</multiple>
</term>
<term name="verse">
<single>verse</single>
<multiple>verses</multiple>
</term>
<term name="sub verbo">
<single>sub verbo</single>
<multiple>s.vv</multiple>
</term>
<!-- SHORT LOCATOR FORMS -->
<term name="book" form="short">bk</term>
<term name="chapter" form="short">chap</term>
<term name="column" form="short">col</term>
<term name="figure" form="short">fig</term>
<term name="folio" form="short">f</term>
<term name="issue" form="short">Nr</term>
<term name="opus" form="short">op</term>
<term name="page" form="short">
<single>S</single>
<multiple>S</multiple>
</term>
<term name="paragraph" form="short">para</term>
<term name="part" form="short">pt</term>
<term name="section" form="short">sec</term>
<term name="sub verbo" form="short">
<single>s.v</single>
<multiple>s.vv</multiple>
</term>
<term name="verse" form="short">
<single>v</single>
<multiple>vv</multiple>
</term>
<term name="volume" form="short">
<single>vol</single>
<multiple>vols</multiple>
</term>
<term name="edition" form="short">ed</term>
<!-- SYMBOL LOCATOR FORMS -->
<term name="paragraph" form="symbol">
<single></single>
<multiple>¶¶</multiple>
</term>
<term name="section" form="symbol">
<single>§</single>
<multiple>§§</multiple>
</term>
<!-- LONG ROLE FORMS -->
<term name="author">
<single/>
<multiple/>
</term>
<term name="editor">
<single>Herausgeber</single>
<multiple>Herausgeber</multiple>
</term>
<term name="editorial-director">
<single>editor</single>
<multiple>editors</multiple>
</term>
<term name="translator">
<single>Übersetzer</single>
<multiple>Übersetzer</multiple>
</term>
<term name="editortranslator">
<single>editor &amp; translator</single>
<multiple>editors &amp; translators</multiple>
</term>
<!-- SHORT ROLE FORMS -->
<term name="author" form="short">
<single/>
<multiple/>
</term>
<term name="editor" form="short">
<single>Hrsg</single>
<multiple>Hrsg</multiple>
</term>
<term name="editorial-director" form="short">
<single>ed.</single>
<multiple>eds.</multiple>
</term>
<term name="translator" form="short">
<single>Übers</single>
<multiple>Übers</multiple>
</term>
<term name="editortranslator" form="short">
<single>ed. &amp; tran.</single>
<multiple>eds. &amp; trans.</multiple>
</term>
<!-- VERB ROLE FORMS -->
<term name="editor" form="verb">Hg. v</term>
<term name="editorial-director" form="verb">edited by</term>
<term name="translator" form="verb">Übers. v</term>
<term name="editortranslator" form="verb">edited &amp; translated by</term>
<term name="recipient" form="verb">to</term>
<term name="interviewer" form="verb">interview by</term>
<!-- SHORT VERB ROLE FORMS -->
<term name="editor" form="verb-short">ed</term>
<term name="editorial-director" form="verb-short">ed.</term>
<term name="translator" form="verb-short">trans</term>
<term name="editortranslator" form="verb-short">ed. &amp; trans. by</term>
<!-- LONG MONTH FORMS -->
<term name="month-01">Jänner</term>
<term name="month-02">Februar</term>
<term name="month-03">März</term>
<term name="month-04">April</term>
<term name="month-05">Mai</term>
<term name="month-06">Juni</term>
<term name="month-07">Juli</term>
<term name="month-08">August</term>
<term name="month-09">September</term>
<term name="month-10">Oktober</term>
<term name="month-11">November</term>
<term name="month-12">Dezember</term>
<!-- SHORT MONTH FORMS -->
<term name="month-01" form="short">Jän</term>
<term name="month-02" form="short">Feb</term>
<term name="month-03" form="short">Mar</term>
<term name="month-04" form="short">Apr</term>
<term name="month-05" form="short">Mai</term>
<term name="month-06" form="short">Jun</term>
<term name="month-07" form="short">Jul</term>
<term name="month-08" form="short">Aug</term>
<term name="month-09" form="short">Sep</term>
<term name="month-10" form="short">Okt</term>
<term name="month-11" form="short">Nov</term>
<term name="month-12" form="short">Dez</term>
<!-- SEASONS -->
<term name="season-01">Spring</term>
<term name="season-02">Summer</term>
<term name="season-03">Autumn</term>
<term name="season-04">Winter</term>
</terms>
</locale>

View file

@ -1,211 +1,299 @@
<?xml version="1.0" encoding="UTF-8"?>
<terms xmlns="http://purl.org/net/xbiblio/csl">
<locale xml:lang="de">
<term name="at">at</term>
<term name="in">in</term>
<term name="ibid">ebd.</term>
<term name="accessed">zugegriffen</term>
<term name="retrieved">abgerufen</term>
<term name="from">von</term>
<term name="forthcoming">i.E.</term>
<term name="references">Quellenangabe</term>
<term name="reference item">
<single>source</single>
<multiple>sources</multiple>
</term>
<term name="no date">o.J.</term>
<term name="and">und</term>
<term name="et-al">u.a.</term>
<term name="interview">interview</term>
<term name="letter">letter</term>
<term name="anonymous">anonymous</term>
<term name="anonymous" form="short">anon</term>
<term name="and others">and others</term>
<term name="in press">in press</term>
<term name="online">online</term>
<term name="cited">cited</term>
<term name="internet">internet</term>
<term name="presented at">presented at the</term>
<term name="anthropology">anthropology</term>
<term name="astronomy">astronomy</term>
<term name="biology">biology</term>
<term name="botany">botany</term>
<term name="chemistry">chemistry</term>
<term name="engineering">engineering</term>
<term name="generic-base">generic base</term>
<term name="geography">geography</term>
<term name="geology">geology</term>
<term name="history">history</term>
<term name="humanities">humanities</term>
<term name="literature">literature</term>
<term name="math">math</term>
<term name="medicine">medicine</term>
<term name="philosophy">philosophy</term>
<term name="physics">physics</term>
<term name="psychology">psychology</term>
<term name="sociology">sociology</term>
<term name="science">science</term>
<term name="political_science">political science</term>
<term name="social_science">social science</term>
<term name="theology">theology</term>
<term name="zoology">zoology</term>
<term name="book">
<single>book</single>
<multiple>books</multiple>
</term>
<term name="chapter">
<single>chapter</single>
<multiple>chapters</multiple>
</term>
<term name="column">
<single>column</single>
<multiple>columns</multiple>
</term>
<term name="figure">
<single>figure</single>
<multiple>figures</multiple>
</term>
<term name="folio">
<single>folio</single>
<multiple>folios</multiple>
</term>
<term name="issue">
<single>number</single>
<multiple>numbers</multiple>
</term>
<term name="line">
<single>Zeile</single>
<multiple>Zeilen</multiple>
</term>
<term name="note">
<single>note</single>
<multiple>notes</multiple>
</term>
<term name="opus">
<single>opus</single>
<multiple>opera</multiple>
</term>
<term name="page">
<single>Seite</single>
<multiple>Seiten</multiple>
</term>
<term name="paragraph">
<single>Absatz</single>
<multiple>Absätze</multiple>
</term>
<term name="part">
<single>part</single>
<multiple>parts</multiple>
</term>
<term name="section">
<single>section</single>
<multiple>sections</multiple>
</term>
<term name="volume">
<single>volume</single>
<multiple>volumes</multiple>
</term>
<term name="edition">
<single>edition</single>
<multiple>editions</multiple>
</term>
<term name="verse">
<single>verse</single>
<multiple>verses</multiple>
</term>
<term name="sub verbo">
<single>sub verbo</single>
<multiple>s.vv</multiple>
</term>
<term name="book" form="short">bk</term>
<term name="chapter" form="short">chap</term>
<term name="column" form="short">col</term>
<term name="figure" form="short">fig</term>
<term name="folio" form="short">f</term>
<term name="issue" form="short">Nr</term>
<term name="opus" form="short">op</term>
<term name="page" form="short">
<single>S</single>
<multiple>S</multiple>
</term>
<term name="paragraph" form="short">para</term>
<term name="part" form="short">pt</term>
<term name="section" form="short">sec</term>
<term name="sub verbo" form="short">
<single>s.v</single>
<multiple>s.vv</multiple>
</term>
<term name="verse" form="short">
<single>v</single>
<multiple>vv</multiple>
</term>
<term name="volume" form="short">
<single>vol</single>
<multiple>vols</multiple>
</term>
<term name="edition">edition</term>
<term name="edition" form="short">ed</term>
<term name="paragraph" form="symbol">
<single></single>
<multiple>¶¶</multiple>
</term>
<term name="section" form="symbol">
<single>§</single>
<multiple>§§</multiple>
</term>
<term name="author">
<single/>
<multiple/>
</term>
<term name="editor">
<single>Herausgeber</single>
<multiple>Herausgeber</multiple>
</term>
<term name="translator">
<single>Übersetzer</single>
<multiple>Übersetzer</multiple>
</term>
<term name="author" form="short">
<single/>
<multiple/>
</term>
<term name="editor" form="short">
<single>Hrsg</single>
<multiple>Hrsg</multiple>
</term>
<term name="translator" form="short">
<single>Übers</single>
<multiple>Übers</multiple>
</term>
<term name="editor" form="verb">Hg. v</term>
<term name="translator" form="verb">Übers. v</term>
<term name="recipient" form="verb">to</term>
<term name="interviewer" form="verb">interview by</term>
<term name="editor" form="verb-short">ed</term>
<term name="translator" form="verb-short">trans</term>
<term name="month-01">Januar</term>
<term name="month-02">Februar</term>
<term name="month-03">März</term>
<term name="month-04">April</term>
<term name="month-05">Mai</term>
<term name="month-06">Juni</term>
<term name="month-07">Juli</term>
<term name="month-08">August</term>
<term name="month-09">September</term>
<term name="month-10">Oktober</term>
<term name="month-11">November</term>
<term name="month-12">Dezember</term>
<term name="month-01" form="short">Jan</term>
<term name="month-02" form="short">Feb</term>
<term name="month-03" form="short">Mar</term>
<term name="month-04" form="short">Apr</term>
<term name="month-05" form="short">Mai</term>
<term name="month-06" form="short">Jun</term>
<term name="month-07" form="short">Jul</term>
<term name="month-08" form="short">Aug</term>
<term name="month-09" form="short">Sep</term>
<term name="month-10" form="short">Okt</term>
<term name="month-11" form="short">Nov</term>
<term name="month-12" form="short">Dez</term>
</locale>
</terms>
<?xml version="1.0" encoding="utf-8"?>
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="de">
<style-options punctuation-in-quote="true"/>
<date form="text">
<date-part name="month" suffix=" "/>
<date-part name="day" suffix=", "/>
<date-part name="year"/>
</date>
<date form="numeric">
<date-part name="year"/>
<date-part name="month" form="numeric" prefix="-" range-delimiter="/"/>
<date-part name="day" prefix="-" range-delimiter="/"/>
</date>
<terms>
<term name="at">at</term>
<term name="in">in</term>
<term name="ibid">ebd.</term>
<term name="accessed">zugegriffen</term>
<term name="retrieved">abgerufen</term>
<term name="from">von</term>
<term name="forthcoming">i.E.</term>
<term name="reference">
<single>reference</single>
<multiple>references</multiple>
</term>
<term name="reference" form="short">
<single>ref.</single>
<multiple>refs.</multiple>
</term>
<term name="no date">o.J.</term>
<term name="and">und</term>
<term name="et-al">u.a.</term>
<term name="circa">circa</term>
<term name="circa" form="short">c.</term>
<term name="interview">interview</term>
<term name="letter">letter</term>
<term name="anonymous">anonymous</term>
<term name="anonymous" form="short">anon</term>
<term name="and others">and others</term>
<term name="in press">in press</term>
<term name="online">online</term>
<term name="cited">cited</term>
<term name="internet">internet</term>
<term name="presented at">presented at the</term>
<term name="ad">AD</term>
<term name="bc">BC</term>
<!-- QUOTES -->
<term name="open-quote"></term>
<term name="close-quote"></term>
<term name="open-inner-quote"></term>
<term name="close-inner-quote"></term>
<!-- ORDINALS -->
<term name="ordinal-01">st</term>
<term name="ordinal-02">nd</term>
<term name="ordinal-03">rd</term>
<term name="ordinal-04">th</term>
<!-- LONG ORDINALS -->
<term name="long-ordinal-01">first</term>
<term name="long-ordinal-02">second</term>
<term name="long-ordinal-03">third</term>
<term name="long-ordinal-04">fourth</term>
<term name="long-ordinal-05">fifth</term>
<term name="long-ordinal-06">sixth</term>
<term name="long-ordinal-07">seventh</term>
<term name="long-ordinal-08">eighth</term>
<term name="long-ordinal-09">ninth</term>
<term name="long-ordinal-10">tenth</term>
<!-- CATEGORIES -->
<term name="anthropology">anthropology</term>
<term name="astronomy">astronomy</term>
<term name="biology">biology</term>
<term name="botany">botany</term>
<term name="chemistry">chemistry</term>
<term name="engineering">engineering</term>
<term name="generic-base">generic base</term>
<term name="geography">geography</term>
<term name="geology">geology</term>
<term name="history">history</term>
<term name="humanities">humanities</term>
<term name="linguistics">linguistics</term>
<term name="literature">literature</term>
<term name="math">math</term>
<term name="medicine">medicine</term>
<term name="philosophy">philosophy</term>
<term name="physics">physics</term>
<term name="psychology">psychology</term>
<term name="sociology">sociology</term>
<term name="science">science</term>
<term name="political_science">political science</term>
<term name="social_science">social science</term>
<term name="theology">theology</term>
<term name="zoology">zoology</term>
<!-- LONG LOCATOR FORMS -->
<term name="book">
<single>book</single>
<multiple>books</multiple>
</term>
<term name="chapter">
<single>chapter</single>
<multiple>chapters</multiple>
</term>
<term name="column">
<single>column</single>
<multiple>columns</multiple>
</term>
<term name="figure">
<single>figure</single>
<multiple>figures</multiple>
</term>
<term name="folio">
<single>folio</single>
<multiple>folios</multiple>
</term>
<term name="issue">
<single>number</single>
<multiple>numbers</multiple>
</term>
<term name="line">
<single>Zeile</single>
<multiple>Zeilen</multiple>
</term>
<term name="note">
<single>note</single>
<multiple>notes</multiple>
</term>
<term name="opus">
<single>opus</single>
<multiple>opera</multiple>
</term>
<term name="page">
<single>Seite</single>
<multiple>Seiten</multiple>
</term>
<term name="paragraph">
<single>Absatz</single>
<multiple>Absätze</multiple>
</term>
<term name="part">
<single>part</single>
<multiple>parts</multiple>
</term>
<term name="section">
<single>section</single>
<multiple>sections</multiple>
</term>
<term name="volume">
<single>volume</single>
<multiple>volumes</multiple>
</term>
<term name="edition">
<single>edition</single>
<multiple>editions</multiple>
</term>
<term name="verse">
<single>verse</single>
<multiple>verses</multiple>
</term>
<term name="sub verbo">
<single>sub verbo</single>
<multiple>s.vv</multiple>
</term>
<!-- SHORT LOCATOR FORMS -->
<term name="book" form="short">bk</term>
<term name="chapter" form="short">chap</term>
<term name="column" form="short">col</term>
<term name="figure" form="short">fig</term>
<term name="folio" form="short">f</term>
<term name="issue" form="short">Nr</term>
<term name="opus" form="short">op</term>
<term name="page" form="short">
<single>S</single>
<multiple>S</multiple>
</term>
<term name="paragraph" form="short">para</term>
<term name="part" form="short">pt</term>
<term name="section" form="short">sec</term>
<term name="sub verbo" form="short">
<single>s.v</single>
<multiple>s.vv</multiple>
</term>
<term name="verse" form="short">
<single>v</single>
<multiple>vv</multiple>
</term>
<term name="volume" form="short">
<single>vol</single>
<multiple>vols</multiple>
</term>
<term name="edition" form="short">ed</term>
<!-- SYMBOL LOCATOR FORMS -->
<term name="paragraph" form="symbol">
<single></single>
<multiple>¶¶</multiple>
</term>
<term name="section" form="symbol">
<single>§</single>
<multiple>§§</multiple>
</term>
<!-- LONG ROLE FORMS -->
<term name="author">
<single/>
<multiple/>
</term>
<term name="editor">
<single>Herausgeber</single>
<multiple>Herausgeber</multiple>
</term>
<term name="editorial-director">
<single>editor</single>
<multiple>editors</multiple>
</term>
<term name="translator">
<single>Übersetzer</single>
<multiple>Übersetzer</multiple>
</term>
<term name="editortranslator">
<single>editor &amp; translator</single>
<multiple>editors &amp; translators</multiple>
</term>
<!-- SHORT ROLE FORMS -->
<term name="author" form="short">
<single/>
<multiple/>
</term>
<term name="editor" form="short">
<single>Hrsg</single>
<multiple>Hrsg</multiple>
</term>
<term name="editorial-director" form="short">
<single>ed.</single>
<multiple>eds.</multiple>
</term>
<term name="translator" form="short">
<single>Übers</single>
<multiple>Übers</multiple>
</term>
<term name="editortranslator" form="short">
<single>ed. &amp; tran.</single>
<multiple>eds. &amp; trans.</multiple>
</term>
<!-- VERB ROLE FORMS -->
<term name="editor" form="verb">Hg. v</term>
<term name="editorial-director" form="verb">edited by</term>
<term name="translator" form="verb">Übers. v</term>
<term name="editortranslator" form="verb">edited &amp; translated by</term>
<term name="recipient" form="verb">to</term>
<term name="interviewer" form="verb">interview by</term>
<!-- SHORT VERB ROLE FORMS -->
<term name="editor" form="verb-short">ed</term>
<term name="editorial-director" form="verb-short">ed.</term>
<term name="translator" form="verb-short">trans</term>
<term name="editortranslator" form="verb-short">ed. &amp; trans. by</term>
<!-- LONG MONTH FORMS -->
<term name="month-01">Januar</term>
<term name="month-02">Februar</term>
<term name="month-03">März</term>
<term name="month-04">April</term>
<term name="month-05">Mai</term>
<term name="month-06">Juni</term>
<term name="month-07">Juli</term>
<term name="month-08">August</term>
<term name="month-09">September</term>
<term name="month-10">Oktober</term>
<term name="month-11">November</term>
<term name="month-12">Dezember</term>
<!-- SHORT MONTH FORMS -->
<term name="month-01" form="short">Jan</term>
<term name="month-02" form="short">Feb</term>
<term name="month-03" form="short">Mar</term>
<term name="month-04" form="short">Apr</term>
<term name="month-05" form="short">Mai</term>
<term name="month-06" form="short">Jun</term>
<term name="month-07" form="short">Jul</term>
<term name="month-08" form="short">Aug</term>
<term name="month-09" form="short">Sep</term>
<term name="month-10" form="short">Okt</term>
<term name="month-11" form="short">Nov</term>
<term name="month-12" form="short">Dez</term>
<!-- SEASONS -->
<term name="season-01">Spring</term>
<term name="season-02">Summer</term>
<term name="season-03">Autumn</term>
<term name="season-04">Winter</term>
</terms>
</locale>

View file

@ -1,211 +1,299 @@
<?xml version="1.0" encoding="UTF-8"?>
<terms xmlns="http://purl.org/net/xbiblio/csl">
<locale xml:lang="de">
<term name="at">auf</term>
<term name="in">in</term>
<term name="ibid">ebd</term>
<term name="accessed">zugegriffen</term>
<term name="retrieved">abgerufen</term>
<term name="from">von</term>
<term name="forthcoming">i. E.</term>
<term name="references">Quellenangabe</term>
<term name="reference item">
<single>source</single>
<multiple>sources</multiple>
</term>
<term name="no date">o. J.</term>
<term name="and">und</term>
<term name="et-al">u. a.</term>
<term name="interview">Interview</term>
<term name="letter">Brief</term>
<term name="anonymous">ohne Autor</term>
<term name="anonymous" form="short">o. A.</term>
<term name="and others">und andere</term>
<term name="in press">im Druck</term>
<term name="online">online</term>
<term name="cited">zitiert</term>
<term name="internet">Internet</term>
<term name="presented at">gehalten auf der</term>
<term name="anthropology">Anthropologie</term>
<term name="astronomy">Astronomie</term>
<term name="biology">Biologie</term>
<term name="botany">Botanik</term>
<term name="chemistry">Chemie</term>
<term name="engineering">Ingenieurswissenschaften</term>
<term name="generic-base">generischer Stil</term>
<term name="geography">Geographie</term>
<term name="geology">Geologie</term>
<term name="history">Geschichte</term>
<term name="humanities">Geisteswissenschaften</term>
<term name="literature">Literatur</term>
<term name="math">Mathematik</term>
<term name="medicine">Medizin</term>
<term name="philosophy">Philosophie</term>
<term name="physics">Physik</term>
<term name="psychology">Psychologie</term>
<term name="sociology">Soziologie</term>
<term name="science">Naturwissenschaften</term>
<term name="political_science">Politikwissenschaft</term>
<term name="social_science">Sozialwissenschaften</term>
<term name="theology">Theologie</term>
<term name="zoology">Zoologie</term>
<term name="book">
<single>Buch</single>
<multiple>Bücher</multiple>
</term>
<term name="chapter">
<single>Kapitel</single>
<multiple>Kapitel</multiple>
</term>
<term name="column">
<single>Spalte</single>
<multiple>Spalten</multiple>
</term>
<term name="figure">
<single>Abbildung</single>
<multiple>Abbildungen</multiple>
</term>
<term name="folio">
<single>Blatt</single>
<multiple>Blätter</multiple>
</term>
<term name="issue">
<single>Nummer</single>
<multiple>Nummern</multiple>
</term>
<term name="line">
<single>Zeile</single>
<multiple>Zeilen</multiple>
</term>
<term name="note">
<single>Note</single>
<multiple>Noten</multiple>
</term>
<term name="opus">
<single>Opus</single>
<multiple>Opera</multiple>
</term>
<term name="page">
<single>Seite</single>
<multiple>Seiten</multiple>
</term>
<term name="paragraph">
<single>Absatz</single>
<multiple>Absätze</multiple>
</term>
<term name="part">
<single>Teil</single>
<multiple>Teile</multiple>
</term>
<term name="section">
<single>Abschnitt</single>
<multiple>Abschnitte</multiple>
</term>
<term name="volume">
<single>Band</single>
<multiple>Bände</multiple>
</term>
<term name="edition">
<single>Auflage</single>
<multiple>Auflagen</multiple>
</term>
<term name="verse">
<single>Vers</single>
<multiple>Verse</multiple>
</term>
<term name="sub verbo">
<single>sub verbo</single>
<multiple>s.vv</multiple>
</term>
<term name="book" form="short">B</term>
<term name="chapter" form="short">Kap</term>
<term name="column" form="short">Sp</term>
<term name="figure" form="short">Abb</term>
<term name="folio" form="short">Fol</term>
<term name="issue" form="short">Nr</term>
<term name="opus" form="short">op</term>
<term name="page" form="short">
<single>S</single>
<multiple>S</multiple>
</term>
<term name="paragraph" form="short">Abs</term>
<term name="part" form="short">Teil</term>
<term name="section" form="short">Abschn</term>
<term name="sub verbo" form="short">
<single>s.v</single>
<multiple>s.vv</multiple>
</term>
<term name="verse" form="short">
<single>V</single>
<multiple>Vv</multiple>
</term>
<term name="volume" form="short">
<single>Bd</single>
<multiple>Bd</multiple>
</term>
<term name="edition">edition</term>
<term name="edition" form="short">Aufl</term>
<term name="paragraph" form="symbol">
<single></single>
<multiple>¶¶</multiple>
</term>
<term name="section" form="symbol">
<single>§</single>
<multiple>§§</multiple>
</term>
<term name="author">
<single/>
<multiple/>
</term>
<term name="editor">
<single>Herausgeber</single>
<multiple>Herausgeber</multiple>
</term>
<term name="translator">
<single>Übersetzer</single>
<multiple>Übersetzer</multiple>
</term>
<term name="author" form="short">
<single/>
<multiple/>
</term>
<term name="editor" form="short">
<single>Hrsg</single>
<multiple>Hrsg</multiple>
</term>
<term name="translator" form="short">
<single>Übers</single>
<multiple>Übers</multiple>
</term>
<term name="editor" form="verb">herausgegeben von</term>
<term name="translator" form="verb">übersetzt von</term>
<term name="recipient" form="verb">an</term>
<term name="interviewer" form="verb">interviewt von</term>
<term name="editor" form="verb-short">hg. v</term>
<term name="translator" form="verb-short">übers. v</term>
<term name="month-01">Januar</term>
<term name="month-02">Februar</term>
<term name="month-03">März</term>
<term name="month-04">April</term>
<term name="month-05">Mai</term>
<term name="month-06">Juni</term>
<term name="month-07">Juli</term>
<term name="month-08">August</term>
<term name="month-09">September</term>
<term name="month-10">Oktober</term>
<term name="month-11">November</term>
<term name="month-12">Dezember</term>
<term name="month-01" form="short">Jan</term>
<term name="month-02" form="short">Feb</term>
<term name="month-03" form="short">März</term>
<term name="month-04" form="short">Apr</term>
<term name="month-05" form="short">Mai</term>
<term name="month-06" form="short">Juni</term>
<term name="month-07" form="short">Juli</term>
<term name="month-08" form="short">Aug</term>
<term name="month-09" form="short">Sep</term>
<term name="month-10" form="short">Okt</term>
<term name="month-11" form="short">Nov</term>
<term name="month-12" form="short">Dez</term>
</locale>
</terms>
<?xml version="1.0" encoding="utf-8"?>
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="de">
<style-options punctuation-in-quote="true"/>
<date form="text">
<date-part name="month" suffix=" "/>
<date-part name="day" suffix=", "/>
<date-part name="year"/>
</date>
<date form="numeric">
<date-part name="year"/>
<date-part name="month" form="numeric" prefix="-" range-delimiter="/"/>
<date-part name="day" prefix="-" range-delimiter="/"/>
</date>
<terms>
<term name="at">auf</term>
<term name="in">in</term>
<term name="ibid">ebd</term>
<term name="accessed">zugegriffen</term>
<term name="retrieved">abgerufen</term>
<term name="from">von</term>
<term name="forthcoming">i. E.</term>
<term name="reference">
<single>reference</single>
<multiple>references</multiple>
</term>
<term name="reference" form="short">
<single>ref.</single>
<multiple>refs.</multiple>
</term>
<term name="no date">o. J.</term>
<term name="and">und</term>
<term name="et-al">u. a.</term>
<term name="circa">circa</term>
<term name="circa" form="short">c.</term>
<term name="interview">Interview</term>
<term name="letter">Brief</term>
<term name="anonymous">ohne Autor</term>
<term name="anonymous" form="short">o. A.</term>
<term name="and others">und andere</term>
<term name="in press">im Druck</term>
<term name="online">online</term>
<term name="cited">zitiert</term>
<term name="internet">Internet</term>
<term name="presented at">gehalten auf der</term>
<term name="ad">AD</term>
<term name="bc">BC</term>
<!-- QUOTES -->
<term name="open-quote"></term>
<term name="close-quote"></term>
<term name="open-inner-quote"></term>
<term name="close-inner-quote"></term>
<!-- ORDINALS -->
<term name="ordinal-01">st</term>
<term name="ordinal-02">nd</term>
<term name="ordinal-03">rd</term>
<term name="ordinal-04">th</term>
<!-- LONG ORDINALS -->
<term name="long-ordinal-01">first</term>
<term name="long-ordinal-02">second</term>
<term name="long-ordinal-03">third</term>
<term name="long-ordinal-04">fourth</term>
<term name="long-ordinal-05">fifth</term>
<term name="long-ordinal-06">sixth</term>
<term name="long-ordinal-07">seventh</term>
<term name="long-ordinal-08">eighth</term>
<term name="long-ordinal-09">ninth</term>
<term name="long-ordinal-10">tenth</term>
<!-- CATEGORIES -->
<term name="anthropology">Anthropologie</term>
<term name="astronomy">Astronomie</term>
<term name="biology">Biologie</term>
<term name="botany">Botanik</term>
<term name="chemistry">Chemie</term>
<term name="engineering">Ingenieurswissenschaften</term>
<term name="generic-base">generischer Stil</term>
<term name="geography">Geographie</term>
<term name="geology">Geologie</term>
<term name="history">Geschichte</term>
<term name="humanities">Geisteswissenschaften</term>
<term name="linguistics">linguistics</term>
<term name="literature">Literatur</term>
<term name="math">Mathematik</term>
<term name="medicine">Medizin</term>
<term name="philosophy">Philosophie</term>
<term name="physics">Physik</term>
<term name="psychology">Psychologie</term>
<term name="sociology">Soziologie</term>
<term name="science">Naturwissenschaften</term>
<term name="political_science">Politikwissenschaft</term>
<term name="social_science">Sozialwissenschaften</term>
<term name="theology">Theologie</term>
<term name="zoology">Zoologie</term>
<!-- LONG LOCATOR FORMS -->
<term name="book">
<single>Buch</single>
<multiple>Bücher</multiple>
</term>
<term name="chapter">
<single>Kapitel</single>
<multiple>Kapitel</multiple>
</term>
<term name="column">
<single>Spalte</single>
<multiple>Spalten</multiple>
</term>
<term name="figure">
<single>Abbildung</single>
<multiple>Abbildungen</multiple>
</term>
<term name="folio">
<single>Blatt</single>
<multiple>Blätter</multiple>
</term>
<term name="issue">
<single>Nummer</single>
<multiple>Nummern</multiple>
</term>
<term name="line">
<single>Zeile</single>
<multiple>Zeilen</multiple>
</term>
<term name="note">
<single>Note</single>
<multiple>Noten</multiple>
</term>
<term name="opus">
<single>Opus</single>
<multiple>Opera</multiple>
</term>
<term name="page">
<single>Seite</single>
<multiple>Seiten</multiple>
</term>
<term name="paragraph">
<single>Absatz</single>
<multiple>Absätze</multiple>
</term>
<term name="part">
<single>Teil</single>
<multiple>Teile</multiple>
</term>
<term name="section">
<single>Abschnitt</single>
<multiple>Abschnitte</multiple>
</term>
<term name="volume">
<single>Band</single>
<multiple>Bände</multiple>
</term>
<term name="edition">
<single>Auflage</single>
<multiple>Auflagen</multiple>
</term>
<term name="verse">
<single>Vers</single>
<multiple>Verse</multiple>
</term>
<term name="sub verbo">
<single>sub verbo</single>
<multiple>s.vv</multiple>
</term>
<!-- SHORT LOCATOR FORMS -->
<term name="book" form="short">B</term>
<term name="chapter" form="short">Kap</term>
<term name="column" form="short">Sp</term>
<term name="figure" form="short">Abb</term>
<term name="folio" form="short">Fol</term>
<term name="issue" form="short">Nr</term>
<term name="opus" form="short">op</term>
<term name="page" form="short">
<single>S</single>
<multiple>S</multiple>
</term>
<term name="paragraph" form="short">Abs</term>
<term name="part" form="short">Teil</term>
<term name="section" form="short">Abschn</term>
<term name="sub verbo" form="short">
<single>s.v</single>
<multiple>s.vv</multiple>
</term>
<term name="verse" form="short">
<single>V</single>
<multiple>Vv</multiple>
</term>
<term name="volume" form="short">
<single>Bd</single>
<multiple>Bd</multiple>
</term>
<term name="edition" form="short">Aufl</term>
<!-- SYMBOL LOCATOR FORMS -->
<term name="paragraph" form="symbol">
<single></single>
<multiple>¶¶</multiple>
</term>
<term name="section" form="symbol">
<single>§</single>
<multiple>§§</multiple>
</term>
<!-- LONG ROLE FORMS -->
<term name="author">
<single/>
<multiple/>
</term>
<term name="editor">
<single>Herausgeber</single>
<multiple>Herausgeber</multiple>
</term>
<term name="editorial-director">
<single>editor</single>
<multiple>editors</multiple>
</term>
<term name="translator">
<single>Übersetzer</single>
<multiple>Übersetzer</multiple>
</term>
<term name="editortranslator">
<single>editor &amp; translator</single>
<multiple>editors &amp; translators</multiple>
</term>
<!-- SHORT ROLE FORMS -->
<term name="author" form="short">
<single/>
<multiple/>
</term>
<term name="editor" form="short">
<single>Hrsg</single>
<multiple>Hrsg</multiple>
</term>
<term name="editorial-director" form="short">
<single>ed.</single>
<multiple>eds.</multiple>
</term>
<term name="translator" form="short">
<single>Übers</single>
<multiple>Übers</multiple>
</term>
<term name="editortranslator" form="short">
<single>ed. &amp; tran.</single>
<multiple>eds. &amp; trans.</multiple>
</term>
<!-- VERB ROLE FORMS -->
<term name="editor" form="verb">herausgegeben von</term>
<term name="editorial-director" form="verb">edited by</term>
<term name="translator" form="verb">übersetzt von</term>
<term name="editortranslator" form="verb">edited &amp; translated by</term>
<term name="recipient" form="verb">an</term>
<term name="interviewer" form="verb">interviewt von</term>
<!-- SHORT VERB ROLE FORMS -->
<term name="editor" form="verb-short">hg. v</term>
<term name="editorial-director" form="verb-short">ed.</term>
<term name="translator" form="verb-short">übers. v</term>
<term name="editortranslator" form="verb-short">ed. &amp; trans. by</term>
<!-- LONG MONTH FORMS -->
<term name="month-01">Januar</term>
<term name="month-02">Februar</term>
<term name="month-03">März</term>
<term name="month-04">April</term>
<term name="month-05">Mai</term>
<term name="month-06">Juni</term>
<term name="month-07">Juli</term>
<term name="month-08">August</term>
<term name="month-09">September</term>
<term name="month-10">Oktober</term>
<term name="month-11">November</term>
<term name="month-12">Dezember</term>
<!-- SHORT MONTH FORMS -->
<term name="month-01" form="short">Jan</term>
<term name="month-02" form="short">Feb</term>
<term name="month-03" form="short">März</term>
<term name="month-04" form="short">Apr</term>
<term name="month-05" form="short">Mai</term>
<term name="month-06" form="short">Juni</term>
<term name="month-07" form="short">Juli</term>
<term name="month-08" form="short">Aug</term>
<term name="month-09" form="short">Sep</term>
<term name="month-10" form="short">Okt</term>
<term name="month-11" form="short">Nov</term>
<term name="month-12" form="short">Dez</term>
<!-- SEASONS -->
<term name="season-01">Spring</term>
<term name="season-02">Summer</term>
<term name="season-03">Autumn</term>
<term name="season-04">Winter</term>
</terms>
</locale>

View file

@ -1,211 +1,299 @@
<?xml version="1.0" encoding="UTF-8"?>
<terms xmlns="http://purl.org/net/xbiblio/csl">
<locale xml:lang="el">
<term name="at">at</term>
<term name="in">in</term>
<term name="ibid">ibid</term>
<term name="accessed">accessed</term>
<term name="retrieved">retrieved</term>
<term name="from">from</term>
<term name="forthcoming">forthcoming</term>
<term name="references">references</term>
<term name="reference item">
<single>source</single>
<multiple>sources</multiple>
</term>
<term name="no date">n.d.</term>
<term name="and">and</term>
<term name="et-al">et al.</term>
<term name="interview">interview</term>
<term name="letter">letter</term>
<term name="anonymous">anonymous</term>
<term name="anonymous" form="short">anon</term>
<term name="and others">and others</term>
<term name="in press">in press</term>
<term name="online">online</term>
<term name="cited">cited</term>
<term name="internet">internet</term>
<term name="presented at">presented at the</term>
<term name="anthropology">anthropology</term>
<term name="astronomy">astronomy</term>
<term name="biology">biology</term>
<term name="botany">botany</term>
<term name="chemistry">chemistry</term>
<term name="engineering">engineering</term>
<term name="generic-base">generic base</term>
<term name="geography">geography</term>
<term name="geology">geology</term>
<term name="history">history</term>
<term name="humanities">humanities</term>
<term name="literature">literature</term>
<term name="math">math</term>
<term name="medicine">medicine</term>
<term name="philosophy">philosophy</term>
<term name="physics">physics</term>
<term name="psychology">psychology</term>
<term name="sociology">sociology</term>
<term name="science">science</term>
<term name="political_science">political science</term>
<term name="social_science">social science</term>
<term name="theology">theology</term>
<term name="zoology">zoology</term>
<term name="book">
<single>book</single>
<multiple>books</multiple>
</term>
<term name="chapter">
<single>chapter</single>
<multiple>chapters</multiple>
</term>
<term name="column">
<single>column</single>
<multiple>columns</multiple>
</term>
<term name="figure">
<single>figure</single>
<multiple>figures</multiple>
</term>
<term name="folio">
<single>folio</single>
<multiple>folios</multiple>
</term>
<term name="issue">
<single>number</single>
<multiple>numbers</multiple>
</term>
<term name="line">
<single>line</single>
<multiple>lines</multiple>
</term>
<term name="note">
<single>note</single>
<multiple>notes</multiple>
</term>
<term name="opus">
<single>opus</single>
<multiple>opera</multiple>
</term>
<term name="page">
<single>page</single>
<multiple>pages</multiple>
</term>
<term name="paragraph">
<single>paragraph</single>
<multiple>paragraph</multiple>
</term>
<term name="part">
<single>part</single>
<multiple>parts</multiple>
</term>
<term name="section">
<single>section</single>
<multiple>sections</multiple>
</term>
<term name="volume">
<single>volume</single>
<multiple>volumes</multiple>
</term>
<term name="edition">
<single>edition</single>
<multiple>editions</multiple>
</term>
<term name="verse">
<single>verse</single>
<multiple>verses</multiple>
</term>
<term name="sub verbo">
<single>sub verbo</single>
<multiple>s.vv</multiple>
</term>
<term name="book" form="short">bk</term>
<term name="chapter" form="short">chap</term>
<term name="column" form="short">col</term>
<term name="figure" form="short">fig</term>
<term name="folio" form="short">f</term>
<term name="issue" form="short">no</term>
<term name="opus" form="short">op</term>
<term name="page" form="short">
<single>p</single>
<multiple>pp</multiple>
</term>
<term name="paragraph" form="short">para</term>
<term name="part" form="short">pt</term>
<term name="section" form="short">sec</term>
<term name="sub verbo" form="short">
<single>s.v</single>
<multiple>s.vv</multiple>
</term>
<term name="verse" form="short">
<single>v</single>
<multiple>vv</multiple>
</term>
<term name="volume" form="short">
<single>vol</single>
<multiple>vols</multiple>
</term>
<term name="edition">edition</term>
<term name="edition" form="short">ed</term>
<term name="paragraph" form="symbol">
<single></single>
<multiple>¶¶</multiple>
</term>
<term name="section" form="symbol">
<single>§</single>
<multiple>§§</multiple>
</term>
<term name="author">
<single/>
<multiple/>
</term>
<term name="editor">
<single>editor</single>
<multiple>editors</multiple>
</term>
<term name="translator">
<single>translator</single>
<multiple>translators</multiple>
</term>
<term name="author" form="short">
<single/>
<multiple/>
</term>
<term name="editor" form="short">
<single>ed</single>
<multiple>eds</multiple>
</term>
<term name="translator" form="short">
<single>tran</single>
<multiple>trans</multiple>
</term>
<term name="editor" form="verb">edited by</term>
<term name="translator" form="verb">translated by</term>
<term name="recipient" form="verb">to</term>
<term name="interviewer" form="verb">interview by</term>
<term name="editor" form="verb-short">ed</term>
<term name="translator" form="verb-short">trans</term>
<term name="month-01">January</term>
<term name="month-02">February</term>
<term name="month-03">March</term>
<term name="month-04">April</term>
<term name="month-05">May</term>
<term name="month-06">June</term>
<term name="month-07">July</term>
<term name="month-08">August</term>
<term name="month-09">September</term>
<term name="month-10">October</term>
<term name="month-11">November</term>
<term name="month-12">December</term>
<term name="month-01" form="short">Jan</term>
<term name="month-02" form="short">Feb</term>
<term name="month-03" form="short">Mar</term>
<term name="month-04" form="short">Apr</term>
<term name="month-05" form="short">May</term>
<term name="month-06" form="short">Jun</term>
<term name="month-07" form="short">Jul</term>
<term name="month-08" form="short">Aug</term>
<term name="month-09" form="short">Sep</term>
<term name="month-10" form="short">Oct</term>
<term name="month-11" form="short">Nov</term>
<term name="month-12" form="short">Dec</term>
</locale>
</terms>
<?xml version="1.0" encoding="utf-8"?>
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="el">
<style-options punctuation-in-quote="true"/>
<date form="text">
<date-part name="month" suffix=" "/>
<date-part name="day" suffix=", "/>
<date-part name="year"/>
</date>
<date form="numeric">
<date-part name="year"/>
<date-part name="month" form="numeric" prefix="-" range-delimiter="/"/>
<date-part name="day" prefix="-" range-delimiter="/"/>
</date>
<terms>
<term name="at">at</term>
<term name="in">in</term>
<term name="ibid">ibid</term>
<term name="accessed">accessed</term>
<term name="retrieved">retrieved</term>
<term name="from">from</term>
<term name="forthcoming">forthcoming</term>
<term name="reference">
<single>reference</single>
<multiple>references</multiple>
</term>
<term name="reference" form="short">
<single>ref.</single>
<multiple>refs.</multiple>
</term>
<term name="no date">n.d.</term>
<term name="and">and</term>
<term name="et-al">et al.</term>
<term name="circa">circa</term>
<term name="circa" form="short">c.</term>
<term name="interview">interview</term>
<term name="letter">letter</term>
<term name="anonymous">anonymous</term>
<term name="anonymous" form="short">anon</term>
<term name="and others">and others</term>
<term name="in press">in press</term>
<term name="online">online</term>
<term name="cited">cited</term>
<term name="internet">internet</term>
<term name="presented at">presented at the</term>
<term name="ad">AD</term>
<term name="bc">BC</term>
<!-- QUOTES -->
<term name="open-quote"></term>
<term name="close-quote"></term>
<term name="open-inner-quote"></term>
<term name="close-inner-quote"></term>
<!-- ORDINALS -->
<term name="ordinal-01">st</term>
<term name="ordinal-02">nd</term>
<term name="ordinal-03">rd</term>
<term name="ordinal-04">th</term>
<!-- LONG ORDINALS -->
<term name="long-ordinal-01">first</term>
<term name="long-ordinal-02">second</term>
<term name="long-ordinal-03">third</term>
<term name="long-ordinal-04">fourth</term>
<term name="long-ordinal-05">fifth</term>
<term name="long-ordinal-06">sixth</term>
<term name="long-ordinal-07">seventh</term>
<term name="long-ordinal-08">eighth</term>
<term name="long-ordinal-09">ninth</term>
<term name="long-ordinal-10">tenth</term>
<!-- CATEGORIES -->
<term name="anthropology">anthropology</term>
<term name="astronomy">astronomy</term>
<term name="biology">biology</term>
<term name="botany">botany</term>
<term name="chemistry">chemistry</term>
<term name="engineering">engineering</term>
<term name="generic-base">generic base</term>
<term name="geography">geography</term>
<term name="geology">geology</term>
<term name="history">history</term>
<term name="humanities">humanities</term>
<term name="linguistics">linguistics</term>
<term name="literature">literature</term>
<term name="math">math</term>
<term name="medicine">medicine</term>
<term name="philosophy">philosophy</term>
<term name="physics">physics</term>
<term name="psychology">psychology</term>
<term name="sociology">sociology</term>
<term name="science">science</term>
<term name="political_science">political science</term>
<term name="social_science">social science</term>
<term name="theology">theology</term>
<term name="zoology">zoology</term>
<!-- LONG LOCATOR FORMS -->
<term name="book">
<single>book</single>
<multiple>books</multiple>
</term>
<term name="chapter">
<single>chapter</single>
<multiple>chapters</multiple>
</term>
<term name="column">
<single>column</single>
<multiple>columns</multiple>
</term>
<term name="figure">
<single>figure</single>
<multiple>figures</multiple>
</term>
<term name="folio">
<single>folio</single>
<multiple>folios</multiple>
</term>
<term name="issue">
<single>number</single>
<multiple>numbers</multiple>
</term>
<term name="line">
<single>line</single>
<multiple>lines</multiple>
</term>
<term name="note">
<single>note</single>
<multiple>notes</multiple>
</term>
<term name="opus">
<single>opus</single>
<multiple>opera</multiple>
</term>
<term name="page">
<single>page</single>
<multiple>pages</multiple>
</term>
<term name="paragraph">
<single>paragraph</single>
<multiple>paragraph</multiple>
</term>
<term name="part">
<single>part</single>
<multiple>parts</multiple>
</term>
<term name="section">
<single>section</single>
<multiple>sections</multiple>
</term>
<term name="volume">
<single>volume</single>
<multiple>volumes</multiple>
</term>
<term name="edition">
<single>edition</single>
<multiple>editions</multiple>
</term>
<term name="verse">
<single>verse</single>
<multiple>verses</multiple>
</term>
<term name="sub verbo">
<single>sub verbo</single>
<multiple>s.vv</multiple>
</term>
<!-- SHORT LOCATOR FORMS -->
<term name="book" form="short">bk</term>
<term name="chapter" form="short">chap</term>
<term name="column" form="short">col</term>
<term name="figure" form="short">fig</term>
<term name="folio" form="short">f</term>
<term name="issue" form="short">no</term>
<term name="opus" form="short">op</term>
<term name="page" form="short">
<single>p</single>
<multiple>pp</multiple>
</term>
<term name="paragraph" form="short">para</term>
<term name="part" form="short">pt</term>
<term name="section" form="short">sec</term>
<term name="sub verbo" form="short">
<single>s.v</single>
<multiple>s.vv</multiple>
</term>
<term name="verse" form="short">
<single>v</single>
<multiple>vv</multiple>
</term>
<term name="volume" form="short">
<single>vol</single>
<multiple>vols</multiple>
</term>
<term name="edition" form="short">ed</term>
<!-- SYMBOL LOCATOR FORMS -->
<term name="paragraph" form="symbol">
<single></single>
<multiple>¶¶</multiple>
</term>
<term name="section" form="symbol">
<single>§</single>
<multiple>§§</multiple>
</term>
<!-- LONG ROLE FORMS -->
<term name="author">
<single/>
<multiple/>
</term>
<term name="editor">
<single>editor</single>
<multiple>editors</multiple>
</term>
<term name="editorial-director">
<single>editor</single>
<multiple>editors</multiple>
</term>
<term name="translator">
<single>translator</single>
<multiple>translators</multiple>
</term>
<term name="editortranslator">
<single>editor &amp; translator</single>
<multiple>editors &amp; translators</multiple>
</term>
<!-- SHORT ROLE FORMS -->
<term name="author" form="short">
<single/>
<multiple/>
</term>
<term name="editor" form="short">
<single>ed</single>
<multiple>eds</multiple>
</term>
<term name="editorial-director" form="short">
<single>ed.</single>
<multiple>eds.</multiple>
</term>
<term name="translator" form="short">
<single>tran</single>
<multiple>trans</multiple>
</term>
<term name="editortranslator" form="short">
<single>ed. &amp; tran.</single>
<multiple>eds. &amp; trans.</multiple>
</term>
<!-- VERB ROLE FORMS -->
<term name="editor" form="verb">edited by</term>
<term name="editorial-director" form="verb">edited by</term>
<term name="translator" form="verb">translated by</term>
<term name="editortranslator" form="verb">edited &amp; translated by</term>
<term name="recipient" form="verb">to</term>
<term name="interviewer" form="verb">interview by</term>
<!-- SHORT VERB ROLE FORMS -->
<term name="editor" form="verb-short">ed</term>
<term name="editorial-director" form="verb-short">ed.</term>
<term name="translator" form="verb-short">trans</term>
<term name="editortranslator" form="verb-short">ed. &amp; trans. by</term>
<!-- LONG MONTH FORMS -->
<term name="month-01">January</term>
<term name="month-02">February</term>
<term name="month-03">March</term>
<term name="month-04">April</term>
<term name="month-05">May</term>
<term name="month-06">June</term>
<term name="month-07">July</term>
<term name="month-08">August</term>
<term name="month-09">September</term>
<term name="month-10">October</term>
<term name="month-11">November</term>
<term name="month-12">December</term>
<!-- SHORT MONTH FORMS -->
<term name="month-01" form="short">Jan</term>
<term name="month-02" form="short">Feb</term>
<term name="month-03" form="short">Mar</term>
<term name="month-04" form="short">Apr</term>
<term name="month-05" form="short">May</term>
<term name="month-06" form="short">Jun</term>
<term name="month-07" form="short">Jul</term>
<term name="month-08" form="short">Aug</term>
<term name="month-09" form="short">Sep</term>
<term name="month-10" form="short">Oct</term>
<term name="month-11" form="short">Nov</term>
<term name="month-12" form="short">Dec</term>
<!-- SEASONS -->
<term name="season-01">Spring</term>
<term name="season-02">Summer</term>
<term name="season-03">Autumn</term>
<term name="season-04">Winter</term>
</terms>
</locale>

View file

@ -1,231 +1,299 @@
<?xml version="1.0" encoding="UTF-8"?>
<terms xmlns="http://purl.org/net/xbiblio/csl">
<locale xml:lang="en">
<term name="at">at</term>
<term name="in">in</term>
<term name="ibid">ibid</term>
<term name="accessed">accessed</term>
<term name="retrieved">retrieved</term>
<term name="from">from</term>
<term name="forthcoming">forthcoming</term>
<term name="references">references</term>
<term name="reference item">
<single>source</single>
<multiple>sources</multiple>
</term>
<term name="no date">n.d.</term>
<term name="and">and</term>
<term name="et-al">et al.</term>
<term name="interview">interview</term>
<term name="letter">letter</term>
<term name="anonymous">anonymous</term>
<term name="anonymous" form="short">anon</term>
<term name="and others">and others</term>
<term name="in press">in press</term>
<term name="online">online</term>
<term name="cited">cited</term>
<term name="internet">internet</term>
<term name="presented at">presented at the</term>
<?xml version="1.0" encoding="utf-8"?>
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="en">
<style-options punctuation-in-quote="true"/>
<date form="text">
<date-part name="month" suffix=" "/>
<date-part name="day" suffix=", "/>
<date-part name="year"/>
</date>
<date form="numeric">
<date-part name="year"/>
<date-part name="month" form="numeric" prefix="-" range-delimiter="/"/>
<date-part name="day" prefix="-" range-delimiter="/"/>
</date>
<terms>
<term name="at">at</term>
<term name="in">in</term>
<term name="ibid">ibid</term>
<term name="accessed">accessed</term>
<term name="retrieved">retrieved</term>
<term name="from">from</term>
<term name="forthcoming">forthcoming</term>
<term name="reference">
<single>reference</single>
<multiple>references</multiple>
</term>
<term name="reference" form="short">
<single>ref.</single>
<multiple>refs.</multiple>
</term>
<term name="no date">n.d.</term>
<term name="and">and</term>
<term name="et-al">et al.</term>
<term name="circa">circa</term>
<term name="circa" form="short">c.</term>
<term name="interview">interview</term>
<term name="letter">letter</term>
<term name="anonymous">anonymous</term>
<term name="anonymous" form="short">anon.</term>
<term name="and others">and others</term>
<term name="in press">in press</term>
<term name="online">online</term>
<term name="cited">cited</term>
<term name="internet">internet</term>
<term name="presented at">presented at the</term>
<term name="ad">AD</term>
<term name="bc">BC</term>
<!-- CATEGORIES -->
<term name="anthropology">anthropology</term>
<term name="astronomy">astronomy</term>
<term name="biology">biology</term>
<term name="botany">botany</term>
<term name="chemistry">chemistry</term>
<term name="engineering">engineering</term>
<term name="generic-base">generic base</term>
<term name="geography">geography</term>
<term name="geology">geology</term>
<term name="history">history</term>
<term name="humanities">humanities</term>
<term name="literature">literature</term>
<term name="math">math</term>
<term name="medicine">medicine</term>
<term name="philosophy">philosophy</term>
<term name="physics">physics</term>
<term name="psychology">psychology</term>
<term name="sociology">sociology</term>
<term name="science">science</term>
<term name="political_science">political science</term>
<term name="social_science">social science</term>
<term name="theology">theology</term>
<term name="zoology">zoology</term>
<!-- QUOTES -->
<term name="open-quote"></term>
<term name="close-quote"></term>
<term name="open-inner-quote"></term>
<term name="close-inner-quote"></term>
<!-- LONG LOCATOR FORMS -->
<term name="book">
<single>book</single>
<multiple>books</multiple>
</term>
<term name="chapter">
<single>chapter</single>
<multiple>chapters</multiple>
</term>
<term name="column">
<single>column</single>
<multiple>columns</multiple>
</term>
<term name="figure">
<single>figure</single>
<multiple>figures</multiple>
</term>
<term name="folio">
<single>folio</single>
<multiple>folios</multiple>
</term>
<term name="issue">
<single>number</single>
<multiple>numbers</multiple>
</term>
<term name="line">
<single>line</single>
<multiple>lines</multiple>
</term>
<term name="note">
<single>note</single>
<multiple>notes</multiple>
</term>
<term name="opus">
<single>opus</single>
<multiple>opera</multiple>
</term>
<term name="page">
<single>page</single>
<multiple>pages</multiple>
</term>
<term name="paragraph">
<single>paragraph</single>
<multiple>paragraph</multiple>
</term>
<term name="part">
<single>part</single>
<multiple>parts</multiple>
</term>
<term name="section">
<single>section</single>
<multiple>sections</multiple>
</term>
<term name="volume">
<single>volume</single>
<multiple>volumes</multiple>
</term>
<term name="edition">
<single>edition</single>
<multiple>editions</multiple>
</term>
<term name="verse">
<single>verse</single>
<multiple>verses</multiple>
</term>
<term name="sub verbo">
<single>sub verbo</single>
<multiple>s.vv</multiple>
</term>
<!-- ORDINALS -->
<term name="ordinal-01">st</term>
<term name="ordinal-02">nd</term>
<term name="ordinal-03">rd</term>
<term name="ordinal-04">th</term>
<!-- SHORT LOCATOR FORMS -->
<term name="book" form="short">bk</term>
<term name="chapter" form="short">chap</term>
<term name="column" form="short">col</term>
<term name="figure" form="short">fig</term>
<term name="folio" form="short">f</term>
<term name="issue" form="short">no</term>
<term name="opus" form="short">op</term>
<term name="page" form="short">
<single>p</single>
<multiple>pp</multiple>
</term>
<term name="paragraph" form="short">para</term>
<term name="part" form="short">pt</term>
<term name="section" form="short">sec</term>
<term name="sub verbo" form="short">
<single>s.v</single>
<multiple>s.vv</multiple>
</term>
<term name="verse" form="short">
<single>v</single>
<multiple>vv</multiple>
</term>
<term name="volume" form="short">
<single>vol</single>
<multiple>vols</multiple>
</term>
<term name="edition">edition</term>
<term name="edition" form="short">ed</term>
<!-- LONG ORDINALS -->
<term name="long-ordinal-01">first</term>
<term name="long-ordinal-02">second</term>
<term name="long-ordinal-03">third</term>
<term name="long-ordinal-04">fourth</term>
<term name="long-ordinal-05">fifth</term>
<term name="long-ordinal-06">sixth</term>
<term name="long-ordinal-07">seventh</term>
<term name="long-ordinal-08">eighth</term>
<term name="long-ordinal-09">ninth</term>
<term name="long-ordinal-10">tenth</term>
<!-- SYMBOL LOCATOR FORMS -->
<term name="paragraph" form="symbol">
<single></single>
<multiple>¶¶</multiple>
</term>
<term name="section" form="symbol">
<single>§</single>
<multiple>§§</multiple>
</term>
<!-- CATEGORIES -->
<term name="anthropology">anthropology</term>
<term name="astronomy">astronomy</term>
<term name="biology">biology</term>
<term name="botany">botany</term>
<term name="chemistry">chemistry</term>
<term name="engineering">engineering</term>
<term name="generic-base">generic base</term>
<term name="geography">geography</term>
<term name="geology">geology</term>
<term name="history">history</term>
<term name="humanities">humanities</term>
<term name="linguistics">linguistics</term>
<term name="literature">literature</term>
<term name="math">math</term>
<term name="medicine">medicine</term>
<term name="philosophy">philosophy</term>
<term name="physics">physics</term>
<term name="psychology">psychology</term>
<term name="sociology">sociology</term>
<term name="science">science</term>
<term name="political_science">political science</term>
<term name="social_science">social science</term>
<term name="theology">theology</term>
<term name="zoology">zoology</term>
<!-- LONG ROLE FORMS -->
<term name="author">
<single></single>
<multiple></multiple>
</term>
<term name="editor">
<single>editor</single>
<multiple>editors</multiple>
</term>
<term name="translator">
<single>translator</single>
<multiple>translators</multiple>
</term>
<!-- LONG LOCATOR FORMS -->
<term name="book">
<single>book</single>
<multiple>books</multiple>
</term>
<term name="chapter">
<single>chapter</single>
<multiple>chapters</multiple>
</term>
<term name="column">
<single>column</single>
<multiple>columns</multiple>
</term>
<term name="figure">
<single>figure</single>
<multiple>figures</multiple>
</term>
<term name="folio">
<single>folio</single>
<multiple>folios</multiple>
</term>
<term name="issue">
<single>number</single>
<multiple>numbers</multiple>
</term>
<term name="line">
<single>line</single>
<multiple>lines</multiple>
</term>
<term name="note">
<single>note</single>
<multiple>notes</multiple>
</term>
<term name="opus">
<single>opus</single>
<multiple>opera</multiple>
</term>
<term name="page">
<single>page</single>
<multiple>pages</multiple>
</term>
<term name="paragraph">
<single>paragraph</single>
<multiple>paragraph</multiple>
</term>
<term name="part">
<single>part</single>
<multiple>parts</multiple>
</term>
<term name="section">
<single>section</single>
<multiple>sections</multiple>
</term>
<term name="volume">
<single>volume</single>
<multiple>volumes</multiple>
</term>
<term name="edition">
<single>edition</single>
<multiple>editions</multiple>
</term>
<term name="verse">
<single>verse</single>
<multiple>verses</multiple>
</term>
<term name="sub verbo">
<single>sub verbo</single>
<multiple>sub verbis</multiple>
</term>
<!-- SHORT ROLE FORMS -->
<term name="author" form="short">
<single></single>
<multiple></multiple>
</term>
<term name="editor" form="short">
<single>ed</single>
<multiple>eds</multiple>
</term>
<term name="translator" form="short">
<single>tran</single>
<multiple>trans</multiple>
</term>
<!-- SHORT LOCATOR FORMS -->
<term name="book" form="short">bk.</term>
<term name="chapter" form="short">chap.</term>
<term name="column" form="short">col.</term>
<term name="figure" form="short">fig.</term>
<term name="folio" form="short">f.</term>
<term name="issue" form="short">no.</term>
<term name="opus" form="short">op.</term>
<term name="page" form="short">
<single>p.</single>
<multiple>pp.</multiple>
</term>
<term name="paragraph" form="short">para.</term>
<term name="part" form="short">pt.</term>
<term name="section" form="short">sec.</term>
<term name="sub verbo" form="short">
<single>s.v.</single>
<multiple>s.vv.</multiple>
</term>
<term name="verse" form="short">
<single>v.</single>
<multiple>vv.</multiple>
</term>
<term name="volume" form="short">
<single>vol.</single>
<multiple>vols.</multiple>
</term>
<term name="edition" form="short">ed.</term>
<!-- VERB ROLE FORMS -->
<term name="editor" form="verb">edited by</term>
<term name="translator" form="verb">translated by</term>
<term name="recipient" form="verb">to</term>
<term name="interviewer" form="verb">interview by</term>
<!-- SYMBOL LOCATOR FORMS -->
<term name="paragraph" form="symbol">
<single></single>
<multiple>¶¶</multiple>
</term>
<term name="section" form="symbol">
<single>§</single>
<multiple>§§</multiple>
</term>
<!-- SHORT VERB ROLE FORMS -->
<term name="editor" form="verb-short">ed</term>
<term name="translator" form="verb-short">trans</term>
<!-- LONG ROLE FORMS -->
<term name="author">
<single/>
<multiple/>
</term>
<term name="editor">
<single>editor</single>
<multiple>editors</multiple>
</term>
<term name="editorial-director">
<single>editor</single>
<multiple>editors</multiple>
</term>
<term name="translator">
<single>translator</single>
<multiple>translators</multiple>
</term>
<term name="editortranslator">
<single>editor &amp; translator</single>
<multiple>editors &amp; translators</multiple>
</term>
<!-- LONG MONTH FORMS -->
<term name="month-01">January</term>
<term name="month-02">February</term>
<term name="month-03">March</term>
<term name="month-04">April</term>
<term name="month-05">May</term>
<term name="month-06">June</term>
<term name="month-07">July</term>
<term name="month-08">August</term>
<term name="month-09">September</term>
<term name="month-10">October</term>
<term name="month-11">November</term>
<term name="month-12">December</term>
<!-- SHORT ROLE FORMS -->
<term name="author" form="short">
<single/>
<multiple/>
</term>
<term name="editor" form="short">
<single>ed.</single>
<multiple>eds.</multiple>
</term>
<term name="editorial-director" form="short">
<single>ed.</single>
<multiple>eds.</multiple>
</term>
<term name="translator" form="short">
<single>tran.</single>
<multiple>trans.</multiple>
</term>
<term name="editortranslator" form="short">
<single>ed. &amp; tran.</single>
<multiple>eds. &amp; trans.</multiple>
</term>
<!-- SHORT MONTH FORMS -->
<term name="month-01" form="short">Jan</term>
<term name="month-02" form="short">Feb</term>
<term name="month-03" form="short">Mar</term>
<term name="month-04" form="short">Apr</term>
<term name="month-05" form="short">May</term>
<term name="month-06" form="short">Jun</term>
<term name="month-07" form="short">Jul</term>
<term name="month-08" form="short">Aug</term>
<term name="month-09" form="short">Sep</term>
<term name="month-10" form="short">Oct</term>
<term name="month-11" form="short">Nov</term>
<term name="month-12" form="short">Dec</term>
</locale>
</terms>
<!-- VERB ROLE FORMS -->
<term name="editor" form="verb">edited by</term>
<term name="editorial-director" form="verb">edited by</term>
<term name="translator" form="verb">translated by</term>
<term name="editortranslator" form="verb">edited &amp; translated by</term>
<term name="recipient" form="verb">to</term>
<term name="interviewer" form="verb">interview by</term>
<!-- SHORT VERB ROLE FORMS -->
<term name="editor" form="verb-short">ed.</term>
<term name="editorial-director" form="verb-short">ed.</term>
<term name="translator" form="verb-short">trans.</term>
<term name="editortranslator" form="verb-short">ed. &amp; trans. by</term>
<!-- LONG MONTH FORMS -->
<term name="month-01">January</term>
<term name="month-02">February</term>
<term name="month-03">March</term>
<term name="month-04">April</term>
<term name="month-05">May</term>
<term name="month-06">June</term>
<term name="month-07">July</term>
<term name="month-08">August</term>
<term name="month-09">September</term>
<term name="month-10">October</term>
<term name="month-11">November</term>
<term name="month-12">December</term>
<!-- SHORT MONTH FORMS -->
<term name="month-01" form="short">Jan.</term>
<term name="month-02" form="short">Feb.</term>
<term name="month-03" form="short">Mar.</term>
<term name="month-04" form="short">Apr.</term>
<term name="month-05" form="short">May</term>
<term name="month-06" form="short">Jun.</term>
<term name="month-07" form="short">Jul.</term>
<term name="month-08" form="short">Aug.</term>
<term name="month-09" form="short">Sep.</term>
<term name="month-10" form="short">Oct.</term>
<term name="month-11" form="short">Nov.</term>
<term name="month-12" form="short">Dec.</term>
<!-- SEASONS -->
<term name="season-01">Spring</term>
<term name="season-02">Summer</term>
<term name="season-03">Autumn</term>
<term name="season-04">Winter</term>
</terms>
</locale>

View file

@ -1,211 +1,299 @@
<?xml version="1.0" encoding="UTF-8"?>
<terms xmlns="http://purl.org/net/xbiblio/csl">
<locale xml:lang="es">
<term name="at">en</term>
<term name="in">en</term>
<term name="ibid">ibid</term>
<term name="accessed">accedido</term>
<term name="retrieved">recuperado</term>
<term name="from">a partir de</term>
<term name="forthcoming">previsto</term>
<term name="references">Referencias</term>
<term name="reference item">
<single>source</single>
<multiple>sources</multiple>
</term>
<term name="no date">s.d.</term>
<term name="and">y</term>
<term name="et-al">et al.</term>
<term name="interview">interview</term>
<term name="letter">letter</term>
<term name="anonymous">anonymous</term>
<term name="anonymous" form="short">anon</term>
<term name="and others">and others</term>
<term name="in press">in press</term>
<term name="online">online</term>
<term name="cited">cited</term>
<term name="internet">internet</term>
<term name="presented at">presented at the</term>
<term name="anthropology">anthropology</term>
<term name="astronomy">astronomy</term>
<term name="biology">biology</term>
<term name="botany">botany</term>
<term name="chemistry">chemistry</term>
<term name="engineering">engineering</term>
<term name="generic-base">generic base</term>
<term name="geography">geography</term>
<term name="geology">geology</term>
<term name="history">history</term>
<term name="humanities">humanities</term>
<term name="literature">literature</term>
<term name="math">math</term>
<term name="medicine">medicine</term>
<term name="philosophy">philosophy</term>
<term name="physics">physics</term>
<term name="psychology">psychology</term>
<term name="sociology">sociology</term>
<term name="science">science</term>
<term name="political_science">political science</term>
<term name="social_science">social science</term>
<term name="theology">theology</term>
<term name="zoology">zoology</term>
<term name="book">
<single>libro</single>
<multiple>libros</multiple>
</term>
<term name="chapter">
<single>capítulo</single>
<multiple>capítulos</multiple>
</term>
<term name="column">
<single>columna</single>
<multiple>columnas</multiple>
</term>
<term name="figure">
<single>figura</single>
<multiple>figuras</multiple>
</term>
<term name="folio">
<single>folio</single>
<multiple>folios</multiple>
</term>
<term name="issue">
<single>número</single>
<multiple>números</multiple>
</term>
<term name="line">
<single>línea</single>
<multiple>líneas</multiple>
</term>
<term name="note">
<single>nota</single>
<multiple>notas</multiple>
</term>
<term name="opus">
<single>opus</single>
<multiple>opera</multiple>
</term>
<term name="page">
<single>página</single>
<multiple>páginas</multiple>
</term>
<term name="paragraph">
<single>párrafo</single>
<multiple>párrafos</multiple>
</term>
<term name="part">
<single>parte</single>
<multiple>partes</multiple>
</term>
<term name="section">
<single>sección</single>
<multiple>secciones</multiple>
</term>
<term name="volume">
<single>volumen</single>
<multiple>volúmenes</multiple>
</term>
<term name="edition">
<single>edition</single>
<multiple>editions</multiple>
</term>
<term name="verse">
<single>verso</single>
<multiple>versos</multiple>
</term>
<term name="sub verbo">
<single>sub verbo</single>
<multiple>s.vv</multiple>
</term>
<term name="book" form="short">lib</term>
<term name="chapter" form="short">cap</term>
<term name="column" form="short">col</term>
<term name="figure" form="short">fig</term>
<term name="folio" form="short">f</term>
<term name="issue" form="short"></term>
<term name="opus" form="short">op</term>
<term name="page" form="short">
<single>pág</single>
<multiple>págs</multiple>
</term>
<term name="paragraph" form="short">para</term>
<term name="part" form="short">pt</term>
<term name="section" form="short">sec</term>
<term name="sub verbo" form="short">
<single>s.v</single>
<multiple>s.vv</multiple>
</term>
<term name="verse" form="short">
<single>v</single>
<multiple>vv</multiple>
</term>
<term name="volume" form="short">
<single>vol</single>
<multiple>vols</multiple>
</term>
<term name="edition">edition</term>
<term name="edition" form="short">ed</term>
<term name="paragraph" form="symbol">
<single></single>
<multiple>¶¶</multiple>
</term>
<term name="section" form="symbol">
<single>§</single>
<multiple>§§</multiple>
</term>
<term name="author">
<single/>
<multiple/>
</term>
<term name="editor">
<single>editor</single>
<multiple>editores</multiple>
</term>
<term name="translator">
<single>traductor</single>
<multiple>traductores</multiple>
</term>
<term name="author" form="short">
<single/>
<multiple/>
</term>
<term name="editor" form="short">
<single>ed</single>
<multiple>eds</multiple>
</term>
<term name="translator" form="short">
<single>trad</single>
<multiple>trads</multiple>
</term>
<term name="editor" form="verb">editado por</term>
<term name="translator" form="verb">traducido por</term>
<term name="recipient" form="verb">to</term>
<term name="interviewer" form="verb">interview by</term>
<term name="editor" form="verb-short">ed</term>
<term name="translator" form="verb-short">trad</term>
<term name="month-01">Enero</term>
<term name="month-02">Febrero</term>
<term name="month-03">Marzo</term>
<term name="month-04">Abril</term>
<term name="month-05">Mayo</term>
<term name="month-06">Junio</term>
<term name="month-07">Julio</term>
<term name="month-08">Agosto</term>
<term name="month-09">Septiembre</term>
<term name="month-10">Octubre</term>
<term name="month-11">Noviembre</term>
<term name="month-12">Diciembre</term>
<term name="month-01" form="short">Ene</term>
<term name="month-02" form="short">Feb</term>
<term name="month-03" form="short">Mar</term>
<term name="month-04" form="short">Abr</term>
<term name="month-05" form="short">May</term>
<term name="month-06" form="short">Jun</term>
<term name="month-07" form="short">Jul</term>
<term name="month-08" form="short">Ago</term>
<term name="month-09" form="short">Sep</term>
<term name="month-10" form="short">Oct</term>
<term name="month-11" form="short">Nov</term>
<term name="month-12" form="short">Dic</term>
</locale>
</terms>
<?xml version="1.0" encoding="utf-8"?>
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="es">
<style-options punctuation-in-quote="true"/>
<date form="text">
<date-part name="month" suffix=" "/>
<date-part name="day" suffix=", "/>
<date-part name="year"/>
</date>
<date form="numeric">
<date-part name="year"/>
<date-part name="month" form="numeric" prefix="-" range-delimiter="/"/>
<date-part name="day" prefix="-" range-delimiter="/"/>
</date>
<terms>
<term name="at">en</term>
<term name="in">en</term>
<term name="ibid">ibid</term>
<term name="accessed">accedido</term>
<term name="retrieved">recuperado</term>
<term name="from">a partir de</term>
<term name="forthcoming">previsto</term>
<term name="reference">
<single>reference</single>
<multiple>references</multiple>
</term>
<term name="reference" form="short">
<single>ref.</single>
<multiple>refs.</multiple>
</term>
<term name="no date">s.d.</term>
<term name="and">y</term>
<term name="et-al">et al.</term>
<term name="circa">circa</term>
<term name="circa" form="short">c.</term>
<term name="interview">interview</term>
<term name="letter">letter</term>
<term name="anonymous">anonymous</term>
<term name="anonymous" form="short">anon</term>
<term name="and others">and others</term>
<term name="in press">in press</term>
<term name="online">online</term>
<term name="cited">cited</term>
<term name="internet">internet</term>
<term name="presented at">presented at the</term>
<term name="ad">AD</term>
<term name="bc">BC</term>
<!-- QUOTES -->
<term name="open-quote"></term>
<term name="close-quote"></term>
<term name="open-inner-quote"></term>
<term name="close-inner-quote"></term>
<!-- ORDINALS -->
<term name="ordinal-01">st</term>
<term name="ordinal-02">nd</term>
<term name="ordinal-03">rd</term>
<term name="ordinal-04">th</term>
<!-- LONG ORDINALS -->
<term name="long-ordinal-01">first</term>
<term name="long-ordinal-02">second</term>
<term name="long-ordinal-03">third</term>
<term name="long-ordinal-04">fourth</term>
<term name="long-ordinal-05">fifth</term>
<term name="long-ordinal-06">sixth</term>
<term name="long-ordinal-07">seventh</term>
<term name="long-ordinal-08">eighth</term>
<term name="long-ordinal-09">ninth</term>
<term name="long-ordinal-10">tenth</term>
<!-- CATEGORIES -->
<term name="anthropology">anthropology</term>
<term name="astronomy">astronomy</term>
<term name="biology">biology</term>
<term name="botany">botany</term>
<term name="chemistry">chemistry</term>
<term name="engineering">engineering</term>
<term name="generic-base">generic base</term>
<term name="geography">geography</term>
<term name="geology">geology</term>
<term name="history">history</term>
<term name="humanities">humanities</term>
<term name="linguistics">linguistics</term>
<term name="literature">literature</term>
<term name="math">math</term>
<term name="medicine">medicine</term>
<term name="philosophy">philosophy</term>
<term name="physics">physics</term>
<term name="psychology">psychology</term>
<term name="sociology">sociology</term>
<term name="science">science</term>
<term name="political_science">political science</term>
<term name="social_science">social science</term>
<term name="theology">theology</term>
<term name="zoology">zoology</term>
<!-- LONG LOCATOR FORMS -->
<term name="book">
<single>libro</single>
<multiple>libros</multiple>
</term>
<term name="chapter">
<single>capítulo</single>
<multiple>capítulos</multiple>
</term>
<term name="column">
<single>columna</single>
<multiple>columnas</multiple>
</term>
<term name="figure">
<single>figura</single>
<multiple>figuras</multiple>
</term>
<term name="folio">
<single>folio</single>
<multiple>folios</multiple>
</term>
<term name="issue">
<single>número</single>
<multiple>números</multiple>
</term>
<term name="line">
<single>línea</single>
<multiple>líneas</multiple>
</term>
<term name="note">
<single>nota</single>
<multiple>notas</multiple>
</term>
<term name="opus">
<single>opus</single>
<multiple>opera</multiple>
</term>
<term name="page">
<single>página</single>
<multiple>páginas</multiple>
</term>
<term name="paragraph">
<single>párrafo</single>
<multiple>párrafos</multiple>
</term>
<term name="part">
<single>parte</single>
<multiple>partes</multiple>
</term>
<term name="section">
<single>sección</single>
<multiple>secciones</multiple>
</term>
<term name="volume">
<single>volumen</single>
<multiple>volúmenes</multiple>
</term>
<term name="edition">
<single>edition</single>
<multiple>editions</multiple>
</term>
<term name="verse">
<single>verso</single>
<multiple>versos</multiple>
</term>
<term name="sub verbo">
<single>sub verbo</single>
<multiple>s.vv</multiple>
</term>
<!-- SHORT LOCATOR FORMS -->
<term name="book" form="short">lib</term>
<term name="chapter" form="short">cap</term>
<term name="column" form="short">col</term>
<term name="figure" form="short">fig</term>
<term name="folio" form="short">f</term>
<term name="issue" form="short"></term>
<term name="opus" form="short">op</term>
<term name="page" form="short">
<single>pág</single>
<multiple>págs</multiple>
</term>
<term name="paragraph" form="short">para</term>
<term name="part" form="short">pt</term>
<term name="section" form="short">sec</term>
<term name="sub verbo" form="short">
<single>s.v</single>
<multiple>s.vv</multiple>
</term>
<term name="verse" form="short">
<single>v</single>
<multiple>vv</multiple>
</term>
<term name="volume" form="short">
<single>vol</single>
<multiple>vols</multiple>
</term>
<term name="edition" form="short">ed</term>
<!-- SYMBOL LOCATOR FORMS -->
<term name="paragraph" form="symbol">
<single></single>
<multiple>¶¶</multiple>
</term>
<term name="section" form="symbol">
<single>§</single>
<multiple>§§</multiple>
</term>
<!-- LONG ROLE FORMS -->
<term name="author">
<single/>
<multiple/>
</term>
<term name="editor">
<single>editor</single>
<multiple>editores</multiple>
</term>
<term name="editorial-director">
<single>editor</single>
<multiple>editors</multiple>
</term>
<term name="translator">
<single>traductor</single>
<multiple>traductores</multiple>
</term>
<term name="editortranslator">
<single>editor &amp; translator</single>
<multiple>editors &amp; translators</multiple>
</term>
<!-- SHORT ROLE FORMS -->
<term name="author" form="short">
<single/>
<multiple/>
</term>
<term name="editor" form="short">
<single>ed</single>
<multiple>eds</multiple>
</term>
<term name="editorial-director" form="short">
<single>ed.</single>
<multiple>eds.</multiple>
</term>
<term name="translator" form="short">
<single>trad</single>
<multiple>trads</multiple>
</term>
<term name="editortranslator" form="short">
<single>ed. &amp; tran.</single>
<multiple>eds. &amp; trans.</multiple>
</term>
<!-- VERB ROLE FORMS -->
<term name="editor" form="verb">editado por</term>
<term name="editorial-director" form="verb">edited by</term>
<term name="translator" form="verb">traducido por</term>
<term name="editortranslator" form="verb">edited &amp; translated by</term>
<term name="recipient" form="verb">to</term>
<term name="interviewer" form="verb">interview by</term>
<!-- SHORT VERB ROLE FORMS -->
<term name="editor" form="verb-short">ed</term>
<term name="editorial-director" form="verb-short">ed.</term>
<term name="translator" form="verb-short">trad</term>
<term name="editortranslator" form="verb-short">ed. &amp; trans. by</term>
<!-- LONG MONTH FORMS -->
<term name="month-01">Enero</term>
<term name="month-02">Febrero</term>
<term name="month-03">Marzo</term>
<term name="month-04">Abril</term>
<term name="month-05">Mayo</term>
<term name="month-06">Junio</term>
<term name="month-07">Julio</term>
<term name="month-08">Agosto</term>
<term name="month-09">Septiembre</term>
<term name="month-10">Octubre</term>
<term name="month-11">Noviembre</term>
<term name="month-12">Diciembre</term>
<!-- SHORT MONTH FORMS -->
<term name="month-01" form="short">Ene</term>
<term name="month-02" form="short">Feb</term>
<term name="month-03" form="short">Mar</term>
<term name="month-04" form="short">Abr</term>
<term name="month-05" form="short">May</term>
<term name="month-06" form="short">Jun</term>
<term name="month-07" form="short">Jul</term>
<term name="month-08" form="short">Ago</term>
<term name="month-09" form="short">Sep</term>
<term name="month-10" form="short">Oct</term>
<term name="month-11" form="short">Nov</term>
<term name="month-12" form="short">Dic</term>
<!-- SEASONS -->
<term name="season-01">Spring</term>
<term name="season-02">Summer</term>
<term name="season-03">Autumn</term>
<term name="season-04">Winter</term>
</terms>
</locale>

View file

@ -1,211 +1,299 @@
<?xml version="1.0" encoding="UTF-8"?>
<terms xmlns="http://purl.org/net/xbiblio/csl">
<locale xml:lang="et">
<term name="at">at</term>
<term name="in">in</term>
<term name="ibid">ibid</term>
<term name="accessed">accessed</term>
<term name="retrieved">retrieved</term>
<term name="from">from</term>
<term name="forthcoming">forthcoming</term>
<term name="references">references</term>
<term name="reference item">
<single>source</single>
<multiple>sources</multiple>
</term>
<term name="no date">n.d.</term>
<term name="and">and</term>
<term name="et-al">et al.</term>
<term name="interview">interview</term>
<term name="letter">letter</term>
<term name="anonymous">anonymous</term>
<term name="anonymous" form="short">anon</term>
<term name="and others">and others</term>
<term name="in press">in press</term>
<term name="online">online</term>
<term name="cited">cited</term>
<term name="internet">internet</term>
<term name="presented at">presented at the</term>
<term name="anthropology">anthropology</term>
<term name="astronomy">astronomy</term>
<term name="biology">biology</term>
<term name="botany">botany</term>
<term name="chemistry">chemistry</term>
<term name="engineering">engineering</term>
<term name="generic-base">generic base</term>
<term name="geography">geography</term>
<term name="geology">geology</term>
<term name="history">history</term>
<term name="humanities">humanities</term>
<term name="literature">literature</term>
<term name="math">math</term>
<term name="medicine">medicine</term>
<term name="philosophy">philosophy</term>
<term name="physics">physics</term>
<term name="psychology">psychology</term>
<term name="sociology">sociology</term>
<term name="science">science</term>
<term name="political_science">political science</term>
<term name="social_science">social science</term>
<term name="theology">theology</term>
<term name="zoology">zoology</term>
<term name="book">
<single>book</single>
<multiple>books</multiple>
</term>
<term name="chapter">
<single>chapter</single>
<multiple>chapters</multiple>
</term>
<term name="column">
<single>column</single>
<multiple>columns</multiple>
</term>
<term name="figure">
<single>figure</single>
<multiple>figures</multiple>
</term>
<term name="folio">
<single>folio</single>
<multiple>folios</multiple>
</term>
<term name="issue">
<single>number</single>
<multiple>numbers</multiple>
</term>
<term name="line">
<single>line</single>
<multiple>lines</multiple>
</term>
<term name="note">
<single>note</single>
<multiple>notes</multiple>
</term>
<term name="opus">
<single>opus</single>
<multiple>opera</multiple>
</term>
<term name="page">
<single>page</single>
<multiple>pages</multiple>
</term>
<term name="paragraph">
<single>paragraph</single>
<multiple>paragraph</multiple>
</term>
<term name="part">
<single>part</single>
<multiple>parts</multiple>
</term>
<term name="section">
<single>section</single>
<multiple>sections</multiple>
</term>
<term name="volume">
<single>volume</single>
<multiple>volumes</multiple>
</term>
<term name="edition">
<single>edition</single>
<multiple>editions</multiple>
</term>
<term name="verse">
<single>verse</single>
<multiple>verses</multiple>
</term>
<term name="sub verbo">
<single>sub verbo</single>
<multiple>s.vv</multiple>
</term>
<term name="book" form="short">bk</term>
<term name="chapter" form="short">chap</term>
<term name="column" form="short">col</term>
<term name="figure" form="short">fig</term>
<term name="folio" form="short">f</term>
<term name="issue" form="short">no</term>
<term name="opus" form="short">op</term>
<term name="page" form="short">
<single>p</single>
<multiple>pp</multiple>
</term>
<term name="paragraph" form="short">para</term>
<term name="part" form="short">pt</term>
<term name="section" form="short">sec</term>
<term name="sub verbo" form="short">
<single>s.v</single>
<multiple>s.vv</multiple>
</term>
<term name="verse" form="short">
<single>v</single>
<multiple>vv</multiple>
</term>
<term name="volume" form="short">
<single>vol</single>
<multiple>vols</multiple>
</term>
<term name="edition">edition</term>
<term name="edition" form="short">ed</term>
<term name="paragraph" form="symbol">
<single></single>
<multiple>¶¶</multiple>
</term>
<term name="section" form="symbol">
<single>§</single>
<multiple>§§</multiple>
</term>
<term name="author">
<single/>
<multiple/>
</term>
<term name="editor">
<single>editor</single>
<multiple>editors</multiple>
</term>
<term name="translator">
<single>translator</single>
<multiple>translators</multiple>
</term>
<term name="author" form="short">
<single/>
<multiple/>
</term>
<term name="editor" form="short">
<single>ed</single>
<multiple>eds</multiple>
</term>
<term name="translator" form="short">
<single>tran</single>
<multiple>trans</multiple>
</term>
<term name="editor" form="verb">edited by</term>
<term name="translator" form="verb">translated by</term>
<term name="recipient" form="verb">to</term>
<term name="interviewer" form="verb">interview by</term>
<term name="editor" form="verb-short">ed</term>
<term name="translator" form="verb-short">trans</term>
<term name="month-01">January</term>
<term name="month-02">February</term>
<term name="month-03">March</term>
<term name="month-04">April</term>
<term name="month-05">May</term>
<term name="month-06">June</term>
<term name="month-07">July</term>
<term name="month-08">August</term>
<term name="month-09">September</term>
<term name="month-10">October</term>
<term name="month-11">November</term>
<term name="month-12">December</term>
<term name="month-01" form="short">Jan</term>
<term name="month-02" form="short">Feb</term>
<term name="month-03" form="short">Mar</term>
<term name="month-04" form="short">Apr</term>
<term name="month-05" form="short">May</term>
<term name="month-06" form="short">Jun</term>
<term name="month-07" form="short">Jul</term>
<term name="month-08" form="short">Aug</term>
<term name="month-09" form="short">Sep</term>
<term name="month-10" form="short">Oct</term>
<term name="month-11" form="short">Nov</term>
<term name="month-12" form="short">Dec</term>
</locale>
</terms>
<?xml version="1.0" encoding="utf-8"?>
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="et">
<style-options punctuation-in-quote="true"/>
<date form="text">
<date-part name="month" suffix=" "/>
<date-part name="day" suffix=", "/>
<date-part name="year"/>
</date>
<date form="numeric">
<date-part name="year"/>
<date-part name="month" form="numeric" prefix="-" range-delimiter="/"/>
<date-part name="day" prefix="-" range-delimiter="/"/>
</date>
<terms>
<term name="at">at</term>
<term name="in">in</term>
<term name="ibid">ibid</term>
<term name="accessed">accessed</term>
<term name="retrieved">retrieved</term>
<term name="from">from</term>
<term name="forthcoming">forthcoming</term>
<term name="reference">
<single>reference</single>
<multiple>references</multiple>
</term>
<term name="reference" form="short">
<single>ref.</single>
<multiple>refs.</multiple>
</term>
<term name="no date">n.d.</term>
<term name="and">and</term>
<term name="et-al">et al.</term>
<term name="circa">circa</term>
<term name="circa" form="short">c.</term>
<term name="interview">interview</term>
<term name="letter">letter</term>
<term name="anonymous">anonymous</term>
<term name="anonymous" form="short">anon</term>
<term name="and others">and others</term>
<term name="in press">in press</term>
<term name="online">online</term>
<term name="cited">cited</term>
<term name="internet">internet</term>
<term name="presented at">presented at the</term>
<term name="ad">AD</term>
<term name="bc">BC</term>
<!-- QUOTES -->
<term name="open-quote"></term>
<term name="close-quote"></term>
<term name="open-inner-quote"></term>
<term name="close-inner-quote"></term>
<!-- ORDINALS -->
<term name="ordinal-01">st</term>
<term name="ordinal-02">nd</term>
<term name="ordinal-03">rd</term>
<term name="ordinal-04">th</term>
<!-- LONG ORDINALS -->
<term name="long-ordinal-01">first</term>
<term name="long-ordinal-02">second</term>
<term name="long-ordinal-03">third</term>
<term name="long-ordinal-04">fourth</term>
<term name="long-ordinal-05">fifth</term>
<term name="long-ordinal-06">sixth</term>
<term name="long-ordinal-07">seventh</term>
<term name="long-ordinal-08">eighth</term>
<term name="long-ordinal-09">ninth</term>
<term name="long-ordinal-10">tenth</term>
<!-- CATEGORIES -->
<term name="anthropology">anthropology</term>
<term name="astronomy">astronomy</term>
<term name="biology">biology</term>
<term name="botany">botany</term>
<term name="chemistry">chemistry</term>
<term name="engineering">engineering</term>
<term name="generic-base">generic base</term>
<term name="geography">geography</term>
<term name="geology">geology</term>
<term name="history">history</term>
<term name="humanities">humanities</term>
<term name="linguistics">linguistics</term>
<term name="literature">literature</term>
<term name="math">math</term>
<term name="medicine">medicine</term>
<term name="philosophy">philosophy</term>
<term name="physics">physics</term>
<term name="psychology">psychology</term>
<term name="sociology">sociology</term>
<term name="science">science</term>
<term name="political_science">political science</term>
<term name="social_science">social science</term>
<term name="theology">theology</term>
<term name="zoology">zoology</term>
<!-- LONG LOCATOR FORMS -->
<term name="book">
<single>book</single>
<multiple>books</multiple>
</term>
<term name="chapter">
<single>chapter</single>
<multiple>chapters</multiple>
</term>
<term name="column">
<single>column</single>
<multiple>columns</multiple>
</term>
<term name="figure">
<single>figure</single>
<multiple>figures</multiple>
</term>
<term name="folio">
<single>folio</single>
<multiple>folios</multiple>
</term>
<term name="issue">
<single>number</single>
<multiple>numbers</multiple>
</term>
<term name="line">
<single>line</single>
<multiple>lines</multiple>
</term>
<term name="note">
<single>note</single>
<multiple>notes</multiple>
</term>
<term name="opus">
<single>opus</single>
<multiple>opera</multiple>
</term>
<term name="page">
<single>page</single>
<multiple>pages</multiple>
</term>
<term name="paragraph">
<single>paragraph</single>
<multiple>paragraph</multiple>
</term>
<term name="part">
<single>part</single>
<multiple>parts</multiple>
</term>
<term name="section">
<single>section</single>
<multiple>sections</multiple>
</term>
<term name="volume">
<single>volume</single>
<multiple>volumes</multiple>
</term>
<term name="edition">
<single>edition</single>
<multiple>editions</multiple>
</term>
<term name="verse">
<single>verse</single>
<multiple>verses</multiple>
</term>
<term name="sub verbo">
<single>sub verbo</single>
<multiple>s.vv</multiple>
</term>
<!-- SHORT LOCATOR FORMS -->
<term name="book" form="short">bk</term>
<term name="chapter" form="short">chap</term>
<term name="column" form="short">col</term>
<term name="figure" form="short">fig</term>
<term name="folio" form="short">f</term>
<term name="issue" form="short">no</term>
<term name="opus" form="short">op</term>
<term name="page" form="short">
<single>p</single>
<multiple>pp</multiple>
</term>
<term name="paragraph" form="short">para</term>
<term name="part" form="short">pt</term>
<term name="section" form="short">sec</term>
<term name="sub verbo" form="short">
<single>s.v</single>
<multiple>s.vv</multiple>
</term>
<term name="verse" form="short">
<single>v</single>
<multiple>vv</multiple>
</term>
<term name="volume" form="short">
<single>vol</single>
<multiple>vols</multiple>
</term>
<term name="edition" form="short">ed</term>
<!-- SYMBOL LOCATOR FORMS -->
<term name="paragraph" form="symbol">
<single></single>
<multiple>¶¶</multiple>
</term>
<term name="section" form="symbol">
<single>§</single>
<multiple>§§</multiple>
</term>
<!-- LONG ROLE FORMS -->
<term name="author">
<single/>
<multiple/>
</term>
<term name="editor">
<single>editor</single>
<multiple>editors</multiple>
</term>
<term name="editorial-director">
<single>editor</single>
<multiple>editors</multiple>
</term>
<term name="translator">
<single>translator</single>
<multiple>translators</multiple>
</term>
<term name="editortranslator">
<single>editor &amp; translator</single>
<multiple>editors &amp; translators</multiple>
</term>
<!-- SHORT ROLE FORMS -->
<term name="author" form="short">
<single/>
<multiple/>
</term>
<term name="editor" form="short">
<single>ed</single>
<multiple>eds</multiple>
</term>
<term name="editorial-director" form="short">
<single>ed.</single>
<multiple>eds.</multiple>
</term>
<term name="translator" form="short">
<single>tran</single>
<multiple>trans</multiple>
</term>
<term name="editortranslator" form="short">
<single>ed. &amp; tran.</single>
<multiple>eds. &amp; trans.</multiple>
</term>
<!-- VERB ROLE FORMS -->
<term name="editor" form="verb">edited by</term>
<term name="editorial-director" form="verb">edited by</term>
<term name="translator" form="verb">translated by</term>
<term name="editortranslator" form="verb">edited &amp; translated by</term>
<term name="recipient" form="verb">to</term>
<term name="interviewer" form="verb">interview by</term>
<!-- SHORT VERB ROLE FORMS -->
<term name="editor" form="verb-short">ed</term>
<term name="editorial-director" form="verb-short">ed.</term>
<term name="translator" form="verb-short">trans</term>
<term name="editortranslator" form="verb-short">ed. &amp; trans. by</term>
<!-- LONG MONTH FORMS -->
<term name="month-01">January</term>
<term name="month-02">February</term>
<term name="month-03">March</term>
<term name="month-04">April</term>
<term name="month-05">May</term>
<term name="month-06">June</term>
<term name="month-07">July</term>
<term name="month-08">August</term>
<term name="month-09">September</term>
<term name="month-10">October</term>
<term name="month-11">November</term>
<term name="month-12">December</term>
<!-- SHORT MONTH FORMS -->
<term name="month-01" form="short">Jan</term>
<term name="month-02" form="short">Feb</term>
<term name="month-03" form="short">Mar</term>
<term name="month-04" form="short">Apr</term>
<term name="month-05" form="short">May</term>
<term name="month-06" form="short">Jun</term>
<term name="month-07" form="short">Jul</term>
<term name="month-08" form="short">Aug</term>
<term name="month-09" form="short">Sep</term>
<term name="month-10" form="short">Oct</term>
<term name="month-11" form="short">Nov</term>
<term name="month-12" form="short">Dec</term>
<!-- SEASONS -->
<term name="season-01">Spring</term>
<term name="season-02">Summer</term>
<term name="season-03">Autumn</term>
<term name="season-04">Winter</term>
</terms>
</locale>

View file

@ -1,211 +1,299 @@
<?xml version="1.0" encoding="UTF-8"?>
<terms xmlns="http://purl.org/net/xbiblio/csl">
<locale xml:lang="fr">
<term name="at">à</term>
<term name="in">dans</term>
<term name="ibid">ibid</term>
<term name="accessed">accédé</term>
<term name="retrieved">retrouvé</term>
<term name="from">de</term>
<term name="forthcoming">à venir</term>
<term name="references">références</term>
<term name="reference item">
<single>source</single>
<multiple>sources</multiple>
</term>
<term name="no date">sans date</term>
<term name="and">et</term>
<term name="et-al">et al.</term>
<term name="interview">entrevue</term>
<term name="letter">lettre</term>
<term name="anonymous">anonyme</term>
<term name="anonymous" form="short">anon</term>
<term name="and others">et autres</term>
<term name="in press">sous presse</term>
<term name="online">en ligne</term>
<term name="cited">cité</term>
<term name="internet">Internet</term>
<term name="presented at">présenté au</term>
<term name="anthropology">anthropologie</term>
<term name="astronomy">astronomie</term>
<term name="biology">biologie</term>
<term name="botany">botanique</term>
<term name="chemistry">chimie</term>
<term name="engineering">ingénierie</term>
<term name="generic-base">base générique</term>
<term name="geography">géographie</term>
<term name="geology">géologie</term>
<term name="history">histoire</term>
<term name="humanities">lettres et sciences humaines</term>
<term name="literature">littérature</term>
<term name="math">mathématiques</term>
<term name="medicine">médecine</term>
<term name="philosophy">philosophie</term>
<term name="physics">physique</term>
<term name="psychology">psychologie</term>
<term name="sociology">sociologie</term>
<term name="science">sciences de la nature</term>
<term name="political_science">science politique</term>
<term name="social_science">sciences sociales</term>
<term name="theology">théologie</term>
<term name="zoology">zoologie</term>
<term name="book">
<single>livre</single>
<multiple>livres</multiple>
</term>
<term name="chapter">
<single>chapitre</single>
<multiple>chapitres</multiple>
</term>
<term name="column">
<single>colonne</single>
<multiple>colonnes</multiple>
</term>
<term name="figure">
<single>figure</single>
<multiple>figures</multiple>
</term>
<term name="folio">
<single>folio</single>
<multiple>folios</multiple>
</term>
<term name="issue">
<single>numéro</single>
<multiple>numéros</multiple>
</term>
<term name="line">
<single>ligne</single>
<multiple>lignes</multiple>
</term>
<term name="note">
<single>note</single>
<multiple>notes</multiple>
</term>
<term name="opus">
<single>opus</single>
<multiple>opus</multiple>
</term>
<term name="page">
<single>page</single>
<multiple>pages</multiple>
</term>
<term name="paragraph">
<single>paragraphe</single>
<multiple>paragraphes</multiple>
</term>
<term name="part">
<single>tome</single>
<multiple>tomes</multiple>
</term>
<term name="section">
<single>rubrique</single>
<multiple>rubriques</multiple>
</term>
<term name="volume">
<single>volume</single>
<multiple>volumes</multiple>
</term>
<term name="edition">
<single>édition</single>
<multiple>éditions</multiple>
</term>
<term name="verse">
<single>vers</single>
<multiple>vers</multiple>
</term>
<term name="sub verbo">
<single>sub verbo</single>
<multiple>sub verbo</multiple>
</term>
<term name="book" form="short">liv</term>
<term name="chapter" form="short">chap</term>
<term name="column" form="short">col</term>
<term name="figure" form="short">fig</term>
<term name="folio" form="short">f</term>
<term name="issue" form="short"></term>
<term name="opus" form="short">op</term>
<term name="page" form="short">
<single>p</single>
<multiple>p</multiple>
</term>
<term name="paragraph" form="short">paragr</term>
<term name="part" form="short">t</term>
<term name="section" form="short">rub</term>
<term name="sub verbo" form="short">
<single>s.v</single>
<multiple>s.v</multiple>
</term>
<term name="verse" form="short">
<single>v</single>
<multiple>v</multiple>
</term>
<term name="volume" form="short">
<single>vol</single>
<multiple>vol</multiple>
</term>
<term name="edition">edition</term>
<term name="edition" form="short">éd</term>
<term name="paragraph" form="symbol">
<single>§</single>
<multiple>§</multiple>
</term>
<term name="section" form="symbol">
<single>§</single>
<multiple>§</multiple>
</term>
<term name="author">
<single>auteur</single>
<multiple>auteurs</multiple>
</term>
<term name="editor">
<single>éditeur</single>
<multiple>éditeurs</multiple>
</term>
<term name="translator">
<single>traducteur</single>
<multiple>traducteurs</multiple>
</term>
<term name="author" form="short">
<single>aut</single>
<multiple>aut</multiple>
</term>
<term name="editor" form="short">
<single>éd</single>
<multiple>éd</multiple>
</term>
<term name="translator" form="short">
<single>trad</single>
<multiple>trad</multiple>
</term>
<term name="editor" form="verb">édité par</term>
<term name="translator" form="verb">traduit par</term>
<term name="recipient" form="verb">vers</term>
<term name="interviewer" form="verb">entrevue par</term>
<term name="editor" form="verb-short">éd</term>
<term name="translator" form="verb-short">trad</term>
<term name="month-01">janvier</term>
<term name="month-02">février</term>
<term name="month-03">mars</term>
<term name="month-04">avril</term>
<term name="month-05">mai</term>
<term name="month-06">juin</term>
<term name="month-07">juillet</term>
<term name="month-08">août</term>
<term name="month-09">septembre</term>
<term name="month-10">octobre</term>
<term name="month-11">novembre</term>
<term name="month-12">décembre</term>
<term name="month-01" form="short">jan</term>
<term name="month-02" form="short">fév</term>
<term name="month-03" form="short">mar</term>
<term name="month-04" form="short">avr</term>
<term name="month-05" form="short">mai</term>
<term name="month-06" form="short">jun</term>
<term name="month-07" form="short">jul</term>
<term name="month-08" form="short">aoû</term>
<term name="month-09" form="short">sep</term>
<term name="month-10" form="short">oct</term>
<term name="month-11" form="short">nov</term>
<term name="month-12" form="short">déc</term>
</locale>
</terms>
<?xml version="1.0" encoding="utf-8"?>
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="fr">
<style-options punctuation-in-quote="true"/>
<date form="text">
<date-part name="month" suffix=" "/>
<date-part name="day" suffix=", "/>
<date-part name="year"/>
</date>
<date form="numeric">
<date-part name="year"/>
<date-part name="month" form="numeric" prefix="-" range-delimiter="/"/>
<date-part name="day" prefix="-" range-delimiter="/"/>
</date>
<terms>
<term name="at">à</term>
<term name="in">dans</term>
<term name="ibid">ibid</term>
<term name="accessed">accédé</term>
<term name="retrieved">retrouvé</term>
<term name="from">de</term>
<term name="forthcoming">à venir</term>
<term name="reference">
<single>reference</single>
<multiple>references</multiple>
</term>
<term name="reference" form="short">
<single>ref.</single>
<multiple>refs.</multiple>
</term>
<term name="no date">pas de date</term>
<term name="and">et</term>
<term name="et-al">et al.</term>
<term name="circa">circa</term>
<term name="circa" form="short">c.</term>
<term name="interview">interview</term>
<term name="letter">lettre</term>
<term name="anonymous">anonyme</term>
<term name="anonymous" form="short">anon</term>
<term name="and others">et autres</term>
<term name="in press">sous presse</term>
<term name="online">en ligne</term>
<term name="cited">cité</term>
<term name="internet">Internet</term>
<term name="presented at">présenté au</term>
<term name="ad">AD</term>
<term name="bc">BC</term>
<!-- QUOTES -->
<term name="open-quote"></term>
<term name="close-quote"></term>
<term name="open-inner-quote"></term>
<term name="close-inner-quote"></term>
<!-- ORDINALS -->
<term name="ordinal-01">st</term>
<term name="ordinal-02">nd</term>
<term name="ordinal-03">rd</term>
<term name="ordinal-04">th</term>
<!-- LONG ORDINALS -->
<term name="long-ordinal-01">first</term>
<term name="long-ordinal-02">second</term>
<term name="long-ordinal-03">third</term>
<term name="long-ordinal-04">fourth</term>
<term name="long-ordinal-05">fifth</term>
<term name="long-ordinal-06">sixth</term>
<term name="long-ordinal-07">seventh</term>
<term name="long-ordinal-08">eighth</term>
<term name="long-ordinal-09">ninth</term>
<term name="long-ordinal-10">tenth</term>
<!-- CATEGORIES -->
<term name="anthropology">anthropologie</term>
<term name="astronomy">astronomie</term>
<term name="biology">biologie</term>
<term name="botany">botanique</term>
<term name="chemistry">chimie</term>
<term name="engineering">ingénierie</term>
<term name="generic-base">base générique</term>
<term name="geography">géographie</term>
<term name="geology">géologie</term>
<term name="history">histoire</term>
<term name="humanities">sciences humaines</term>
<term name="linguistics">linguistics</term>
<term name="literature">littérature</term>
<term name="math">mathématiques</term>
<term name="medicine">médecine</term>
<term name="philosophy">philosophie</term>
<term name="physics">physique</term>
<term name="psychology">psychologie</term>
<term name="sociology">sociologie</term>
<term name="science">science</term>
<term name="political_science">science politique</term>
<term name="social_science">science sociale</term>
<term name="theology">théologie</term>
<term name="zoology">zoologie</term>
<!-- LONG LOCATOR FORMS -->
<term name="book">
<single>livre</single>
<multiple>livres</multiple>
</term>
<term name="chapter">
<single>chapitre</single>
<multiple>chapitres</multiple>
</term>
<term name="column">
<single>colonne</single>
<multiple>colonnes</multiple>
</term>
<term name="figure">
<single>figure</single>
<multiple>figures</multiple>
</term>
<term name="folio">
<single>folio</single>
<multiple>folios</multiple>
</term>
<term name="issue">
<single>numéro</single>
<multiple>numéros</multiple>
</term>
<term name="line">
<single>ligne</single>
<multiple>lignes</multiple>
</term>
<term name="note">
<single>note</single>
<multiple>notes</multiple>
</term>
<term name="opus">
<single>opus</single>
<multiple>opus</multiple>
</term>
<term name="page">
<single>page</single>
<multiple>pages</multiple>
</term>
<term name="paragraph">
<single>paragraphe</single>
<multiple>paragraphes</multiple>
</term>
<term name="part">
<single>partie</single>
<multiple>parties</multiple>
</term>
<term name="section">
<single>section</single>
<multiple>sections</multiple>
</term>
<term name="volume">
<single>volume</single>
<multiple>volumes</multiple>
</term>
<term name="edition">
<single>edition</single>
<multiple>editions</multiple>
</term>
<term name="verse">
<single>verset</single>
<multiple>versets</multiple>
</term>
<term name="sub verbo">
<single>sub verbo</single>
<multiple>s.vv</multiple>
</term>
<!-- SHORT LOCATOR FORMS -->
<term name="book" form="short">liv</term>
<term name="chapter" form="short">chap</term>
<term name="column" form="short">col</term>
<term name="figure" form="short">fig</term>
<term name="folio" form="short">f</term>
<term name="issue" form="short"></term>
<term name="opus" form="short">op</term>
<term name="page" form="short">
<single>p</single>
<multiple>pp</multiple>
</term>
<term name="paragraph" form="short">par</term>
<term name="part" form="short">part</term>
<term name="section" form="short">sec</term>
<term name="sub verbo" form="short">
<single>s.v</single>
<multiple>s.vv</multiple>
</term>
<term name="verse" form="short">
<single>v</single>
<multiple>vv</multiple>
</term>
<term name="volume" form="short">
<single>vol</single>
<multiple>vols</multiple>
</term>
<term name="edition" form="short">éd</term>
<!-- SYMBOL LOCATOR FORMS -->
<term name="paragraph" form="symbol">
<single>§</single>
<multiple>§§</multiple>
</term>
<term name="section" form="symbol">
<single>§</single>
<multiple>§§</multiple>
</term>
<!-- LONG ROLE FORMS -->
<term name="author">
<single/>
<multiple/>
</term>
<term name="editor">
<single>éditeur</single>
<multiple>éditeurs</multiple>
</term>
<term name="editorial-director">
<single>editor</single>
<multiple>editors</multiple>
</term>
<term name="translator">
<single>traducteur</single>
<multiple>traducteurs</multiple>
</term>
<term name="editortranslator">
<single>editor &amp; translator</single>
<multiple>editors &amp; translators</multiple>
</term>
<!-- SHORT ROLE FORMS -->
<term name="author" form="short">
<single/>
<multiple/>
</term>
<term name="editor" form="short">
<single>éd</single>
<multiple>éd</multiple>
</term>
<term name="editorial-director" form="short">
<single>ed.</single>
<multiple>eds.</multiple>
</term>
<term name="translator" form="short">
<single>trad</single>
<multiple>trad</multiple>
</term>
<term name="editortranslator" form="short">
<single>ed. &amp; tran.</single>
<multiple>eds. &amp; trans.</multiple>
</term>
<!-- VERB ROLE FORMS -->
<term name="editor" form="verb">édité par</term>
<term name="editorial-director" form="verb">edited by</term>
<term name="translator" form="verb">traduit par</term>
<term name="editortranslator" form="verb">edited &amp; translated by</term>
<term name="recipient" form="verb">vers</term>
<term name="interviewer" form="verb">interview par</term>
<!-- SHORT VERB ROLE FORMS -->
<term name="editor" form="verb-short">éd</term>
<term name="editorial-director" form="verb-short">ed.</term>
<term name="translator" form="verb-short">trad</term>
<term name="editortranslator" form="verb-short">ed. &amp; trans. by</term>
<!-- LONG MONTH FORMS -->
<term name="month-01">Janvier</term>
<term name="month-02">Février</term>
<term name="month-03">Mars</term>
<term name="month-04">Avril</term>
<term name="month-05">Mai</term>
<term name="month-06">Juin</term>
<term name="month-07">Juillet</term>
<term name="month-08">Août</term>
<term name="month-09">Septembre</term>
<term name="month-10">Octobre</term>
<term name="month-11">Novembre</term>
<term name="month-12">Décembre</term>
<!-- SHORT MONTH FORMS -->
<term name="month-01" form="short">Jan</term>
<term name="month-02" form="short">Fév</term>
<term name="month-03" form="short">Mar</term>
<term name="month-04" form="short">Avr</term>
<term name="month-05" form="short">Mai</term>
<term name="month-06" form="short">Jun</term>
<term name="month-07" form="short">Jul</term>
<term name="month-08" form="short">Aoû</term>
<term name="month-09" form="short">Sep</term>
<term name="month-10" form="short">Oct</term>
<term name="month-11" form="short">Nov</term>
<term name="month-12" form="short">Déc</term>
<!-- SEASONS -->
<term name="season-01">Spring</term>
<term name="season-02">Summer</term>
<term name="season-03">Autumn</term>
<term name="season-04">Winter</term>
</terms>
</locale>

View file

@ -1,211 +1,299 @@
<?xml version="1.0" encoding="UTF-8"?>
<terms xmlns="http://purl.org/net/xbiblio/csl">
<locale xml:lang="he">
<term name="at"></term>
<term name="in">בתוך</term>
<term name="ibid">שם</term>
<term name="accessed">גישה</term>
<term name="retrieved">אוחזר</term>
<term name="from">מתוך</term>
<term name="forthcoming">forthcoming</term>
<term name="references">References</term>
<term name="reference item">
<single>source</single>
<multiple>sources</multiple>
</term>
<term name="no date">nd</term>
<term name="and">ו</term>
<term name="et-al">ואחרים</term>
<term name="interview">interview</term>
<term name="letter">letter</term>
<term name="anonymous">anonymous</term>
<term name="anonymous" form="short">anon</term>
<term name="and others">and others</term>
<term name="in press">in press</term>
<term name="online">online</term>
<term name="cited">cited</term>
<term name="internet">internet</term>
<term name="presented at">presented at the</term>
<term name="anthropology">anthropology</term>
<term name="astronomy">astronomy</term>
<term name="biology">biology</term>
<term name="botany">botany</term>
<term name="chemistry">chemistry</term>
<term name="engineering">engineering</term>
<term name="generic-base">generic base</term>
<term name="geography">geography</term>
<term name="geology">geology</term>
<term name="history">history</term>
<term name="humanities">humanities</term>
<term name="literature">literature</term>
<term name="math">math</term>
<term name="medicine">medicine</term>
<term name="philosophy">philosophy</term>
<term name="physics">physics</term>
<term name="psychology">psychology</term>
<term name="sociology">sociology</term>
<term name="science">science</term>
<term name="political_science">political science</term>
<term name="social_science">social science</term>
<term name="theology">theology</term>
<term name="zoology">zoology</term>
<term name="book">
<single>ספר</single>
<multiple>ספרים</multiple>
</term>
<term name="chapter">
<single>פרק</single>
<multiple>פרקים</multiple>
</term>
<term name="column">
<single>טור</single>
<multiple>טורים</multiple>
</term>
<term name="figure">
<single>figure</single>
<multiple>figures</multiple>
</term>
<term name="folio">
<single>folio</single>
<multiple>folios</multiple>
</term>
<term name="issue">
<single>מספר</single>
<multiple>מספרים</multiple>
</term>
<term name="line">
<single>שורה</single>
<multiple>שורות</multiple>
</term>
<term name="note">
<single>note</single>
<multiple>notes</multiple>
</term>
<term name="opus">
<single>אופוס</single>
<multiple>אופרה</multiple>
</term>
<term name="page">
<single>עמוד</single>
<multiple>עמודים</multiple>
</term>
<term name="paragraph">
<single>paragraph</single>
<multiple>פיסקה</multiple>
</term>
<term name="part">
<single>part</single>
<multiple>parts</multiple>
</term>
<term name="section">
<single>section</single>
<multiple>sections</multiple>
</term>
<term name="volume">
<single>כרך</single>
<multiple>כרכים</multiple>
</term>
<term name="edition">
<single>edition</single>
<multiple>editions</multiple>
</term>
<term name="verse">
<single>בית</single>
<multiple>בתים</multiple>
</term>
<term name="sub verbo">
<single>sub verbo</single>
<multiple>s.vv</multiple>
</term>
<term name="book" form="short">bk</term>
<term name="chapter" form="short">chap</term>
<term name="column" form="short">col</term>
<term name="figure" form="short">fig</term>
<term name="folio" form="short">f</term>
<term name="issue" form="short">no</term>
<term name="opus" form="short">op</term>
<term name="page" form="short">
<single>'עמ</single>
<multiple>'עמ</multiple>
</term>
<term name="paragraph" form="short">para</term>
<term name="part" form="short">pt</term>
<term name="section" form="short">sec</term>
<term name="sub verbo" form="short">
<single>s.v</single>
<multiple>s.vv</multiple>
</term>
<term name="verse" form="short">
<single>v</single>
<multiple>vv</multiple>
</term>
<term name="volume" form="short">
<single>vol</single>
<multiple>vols</multiple>
</term>
<term name="edition">edition</term>
<term name="edition" form="short">ed</term>
<term name="paragraph" form="symbol">
<single></single>
<multiple>¶¶</multiple>
</term>
<term name="section" form="symbol">
<single>§</single>
<multiple>§§</multiple>
</term>
<term name="author">
<single/>
<multiple/>
</term>
<term name="editor">
<single>עורך</single>
<multiple>עורכים</multiple>
</term>
<term name="translator">
<single>מתרגם</single>
<multiple>מתרגמים</multiple>
</term>
<term name="author" form="short">
<single/>
<multiple/>
</term>
<term name="editor" form="short">
<single>ed</single>
<multiple>eds</multiple>
</term>
<term name="translator" form="short">
<single>tran</single>
<multiple>trans</multiple>
</term>
<term name="editor" form="verb">נערך ע"י</term>
<term name="translator" form="verb">תורגם ע"י</term>
<term name="recipient" form="verb">to</term>
<term name="interviewer" form="verb">interview by</term>
<term name="editor" form="verb-short">ed</term>
<term name="translator" form="verb-short">trans</term>
<term name="month-01">ינואר</term>
<term name="month-02">פברואר</term>
<term name="month-03">מרץ</term>
<term name="month-04">אפריל</term>
<term name="month-05">מאי</term>
<term name="month-06">יוני</term>
<term name="month-07">יולי</term>
<term name="month-08">אוגוסט</term>
<term name="month-09">ספטמבר</term>
<term name="month-10">אוקטובר</term>
<term name="month-11">נובמבר</term>
<term name="month-12">דצמבר</term>
<term name="month-01" form="short">Jan</term>
<term name="month-02" form="short">Feb</term>
<term name="month-03" form="short">Mar</term>
<term name="month-04" form="short">Apr</term>
<term name="month-05" form="short">May</term>
<term name="month-06" form="short">Jun</term>
<term name="month-07" form="short">Jul</term>
<term name="month-08" form="short">Aug</term>
<term name="month-09" form="short">Sep</term>
<term name="month-10" form="short">Oct</term>
<term name="month-11" form="short">Nov</term>
<term name="month-12" form="short">Dec</term>
</locale>
</terms>
<?xml version="1.0" encoding="utf-8"?>
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="he">
<style-options punctuation-in-quote="true"/>
<date form="text">
<date-part name="month" suffix=" "/>
<date-part name="day" suffix=", "/>
<date-part name="year"/>
</date>
<date form="numeric">
<date-part name="year"/>
<date-part name="month" form="numeric" prefix="-" range-delimiter="/"/>
<date-part name="day" prefix="-" range-delimiter="/"/>
</date>
<terms>
<term name="at"></term>
<term name="in">בתוך</term>
<term name="ibid">שם</term>
<term name="accessed">גישה</term>
<term name="retrieved">אוחזר</term>
<term name="from">מתוך</term>
<term name="forthcoming">forthcoming</term>
<term name="reference">
<single>reference</single>
<multiple>references</multiple>
</term>
<term name="reference" form="short">
<single>ref.</single>
<multiple>refs.</multiple>
</term>
<term name="no date">nd</term>
<term name="and">ו</term>
<term name="et-al">ואחרים</term>
<term name="circa">circa</term>
<term name="circa" form="short">c.</term>
<term name="interview">interview</term>
<term name="letter">letter</term>
<term name="anonymous">anonymous</term>
<term name="anonymous" form="short">anon</term>
<term name="and others">and others</term>
<term name="in press">in press</term>
<term name="online">online</term>
<term name="cited">cited</term>
<term name="internet">internet</term>
<term name="presented at">presented at the</term>
<term name="ad">AD</term>
<term name="bc">BC</term>
<!-- QUOTES -->
<term name="open-quote"></term>
<term name="close-quote"></term>
<term name="open-inner-quote"></term>
<term name="close-inner-quote"></term>
<!-- ORDINALS -->
<term name="ordinal-01">st</term>
<term name="ordinal-02">nd</term>
<term name="ordinal-03">rd</term>
<term name="ordinal-04">th</term>
<!-- LONG ORDINALS -->
<term name="long-ordinal-01">first</term>
<term name="long-ordinal-02">second</term>
<term name="long-ordinal-03">third</term>
<term name="long-ordinal-04">fourth</term>
<term name="long-ordinal-05">fifth</term>
<term name="long-ordinal-06">sixth</term>
<term name="long-ordinal-07">seventh</term>
<term name="long-ordinal-08">eighth</term>
<term name="long-ordinal-09">ninth</term>
<term name="long-ordinal-10">tenth</term>
<!-- CATEGORIES -->
<term name="anthropology">anthropology</term>
<term name="astronomy">astronomy</term>
<term name="biology">biology</term>
<term name="botany">botany</term>
<term name="chemistry">chemistry</term>
<term name="engineering">engineering</term>
<term name="generic-base">generic base</term>
<term name="geography">geography</term>
<term name="geology">geology</term>
<term name="history">history</term>
<term name="humanities">humanities</term>
<term name="linguistics">linguistics</term>
<term name="literature">literature</term>
<term name="math">math</term>
<term name="medicine">medicine</term>
<term name="philosophy">philosophy</term>
<term name="physics">physics</term>
<term name="psychology">psychology</term>
<term name="sociology">sociology</term>
<term name="science">science</term>
<term name="political_science">political science</term>
<term name="social_science">social science</term>
<term name="theology">theology</term>
<term name="zoology">zoology</term>
<!-- LONG LOCATOR FORMS -->
<term name="book">
<single>ספר</single>
<multiple>ספרים</multiple>
</term>
<term name="chapter">
<single>פרק</single>
<multiple>פרקים</multiple>
</term>
<term name="column">
<single>טור</single>
<multiple>טורים</multiple>
</term>
<term name="figure">
<single>figure</single>
<multiple>figures</multiple>
</term>
<term name="folio">
<single>folio</single>
<multiple>folios</multiple>
</term>
<term name="issue">
<single>מספר</single>
<multiple>מספרים</multiple>
</term>
<term name="line">
<single>שורה</single>
<multiple>שורות</multiple>
</term>
<term name="note">
<single>note</single>
<multiple>notes</multiple>
</term>
<term name="opus">
<single>אופוס</single>
<multiple>אופרה</multiple>
</term>
<term name="page">
<single>עמוד</single>
<multiple>עמודים</multiple>
</term>
<term name="paragraph">
<single>paragraph</single>
<multiple>פיסקה</multiple>
</term>
<term name="part">
<single>part</single>
<multiple>parts</multiple>
</term>
<term name="section">
<single>section</single>
<multiple>sections</multiple>
</term>
<term name="volume">
<single>כרך</single>
<multiple>כרכים</multiple>
</term>
<term name="edition">
<single>edition</single>
<multiple>editions</multiple>
</term>
<term name="verse">
<single>בית</single>
<multiple>בתים</multiple>
</term>
<term name="sub verbo">
<single>sub verbo</single>
<multiple>s.vv</multiple>
</term>
<!-- SHORT LOCATOR FORMS -->
<term name="book" form="short">bk</term>
<term name="chapter" form="short">chap</term>
<term name="column" form="short">col</term>
<term name="figure" form="short">fig</term>
<term name="folio" form="short">f</term>
<term name="issue" form="short">no</term>
<term name="opus" form="short">op</term>
<term name="page" form="short">
<single>'עמ</single>
<multiple>'עמ</multiple>
</term>
<term name="paragraph" form="short">para</term>
<term name="part" form="short">pt</term>
<term name="section" form="short">sec</term>
<term name="sub verbo" form="short">
<single>s.v</single>
<multiple>s.vv</multiple>
</term>
<term name="verse" form="short">
<single>v</single>
<multiple>vv</multiple>
</term>
<term name="volume" form="short">
<single>vol</single>
<multiple>vols</multiple>
</term>
<term name="edition" form="short">ed</term>
<!-- SYMBOL LOCATOR FORMS -->
<term name="paragraph" form="symbol">
<single></single>
<multiple>¶¶</multiple>
</term>
<term name="section" form="symbol">
<single>§</single>
<multiple>§§</multiple>
</term>
<!-- LONG ROLE FORMS -->
<term name="author">
<single/>
<multiple/>
</term>
<term name="editor">
<single>עורך</single>
<multiple>עורכים</multiple>
</term>
<term name="editorial-director">
<single>editor</single>
<multiple>editors</multiple>
</term>
<term name="translator">
<single>מתרגם</single>
<multiple>מתרגמים</multiple>
</term>
<term name="editortranslator">
<single>editor &amp; translator</single>
<multiple>editors &amp; translators</multiple>
</term>
<!-- SHORT ROLE FORMS -->
<term name="author" form="short">
<single/>
<multiple/>
</term>
<term name="editor" form="short">
<single>ed</single>
<multiple>eds</multiple>
</term>
<term name="editorial-director" form="short">
<single>ed.</single>
<multiple>eds.</multiple>
</term>
<term name="translator" form="short">
<single>tran</single>
<multiple>trans</multiple>
</term>
<term name="editortranslator" form="short">
<single>ed. &amp; tran.</single>
<multiple>eds. &amp; trans.</multiple>
</term>
<!-- VERB ROLE FORMS -->
<term name="editor" form="verb">נערך ע"י</term>
<term name="editorial-director" form="verb">edited by</term>
<term name="translator" form="verb">תורגם ע"י</term>
<term name="editortranslator" form="verb">edited &amp; translated by</term>
<term name="recipient" form="verb">to</term>
<term name="interviewer" form="verb">interview by</term>
<!-- SHORT VERB ROLE FORMS -->
<term name="editor" form="verb-short">ed</term>
<term name="editorial-director" form="verb-short">ed.</term>
<term name="translator" form="verb-short">trans</term>
<term name="editortranslator" form="verb-short">ed. &amp; trans. by</term>
<!-- LONG MONTH FORMS -->
<term name="month-01">ינואר</term>
<term name="month-02">פברואר</term>
<term name="month-03">מרץ</term>
<term name="month-04">אפריל</term>
<term name="month-05">מאי</term>
<term name="month-06">יוני</term>
<term name="month-07">יולי</term>
<term name="month-08">אוגוסט</term>
<term name="month-09">ספטמבר</term>
<term name="month-10">אוקטובר</term>
<term name="month-11">נובמבר</term>
<term name="month-12">דצמבר</term>
<!-- SHORT MONTH FORMS -->
<term name="month-01" form="short">Jan</term>
<term name="month-02" form="short">Feb</term>
<term name="month-03" form="short">Mar</term>
<term name="month-04" form="short">Apr</term>
<term name="month-05" form="short">May</term>
<term name="month-06" form="short">Jun</term>
<term name="month-07" form="short">Jul</term>
<term name="month-08" form="short">Aug</term>
<term name="month-09" form="short">Sep</term>
<term name="month-10" form="short">Oct</term>
<term name="month-11" form="short">Nov</term>
<term name="month-12" form="short">Dec</term>
<!-- SEASONS -->
<term name="season-01">Spring</term>
<term name="season-02">Summer</term>
<term name="season-03">Autumn</term>
<term name="season-04">Winter</term>
</terms>
</locale>

View file

@ -1,211 +1,299 @@
<?xml version="1.0" encoding="UTF-8"?>
<terms xmlns="http://purl.org/net/xbiblio/csl">
<locale xml:lang="hu">
<term name="at"/>
<term name="in">in</term>
<term name="ibid">ibid</term>
<term name="accessed">elérés</term>
<term name="retrieved">elérés</term>
<term name="from">forrás</term>
<term name="forthcoming">megjelenés alatt</term>
<term name="references">hivatkozások</term>
<term name="reference item">
<single>source</single>
<multiple>sources</multiple>
</term>
<term name="no date">nd</term>
<term name="and">és</term>
<term name="et-al">et al.</term>
<term name="interview">interjú</term>
<term name="letter">levél</term>
<term name="anonymous">név nélkül</term>
<term name="anonymous" form="short">nn</term>
<term name="and others">és mások</term>
<term name="in press">nyomtatás alatt</term>
<term name="online">online</term>
<term name="cited">idézi</term>
<term name="internet">internet</term>
<term name="presented at">előadás</term>
<term name="anthropology">antropológia</term>
<term name="astronomy">csillagászat</term>
<term name="biology">biológia</term>
<term name="botany">botanika</term>
<term name="chemistry">kémia</term>
<term name="engineering">mérnöki tudományok</term>
<term name="generic-base">általános</term>
<term name="geography">földrajz</term>
<term name="geology">geológia</term>
<term name="history">történelem</term>
<term name="humanities">bölcsésztudományok</term>
<term name="literature">irodalom</term>
<term name="math">matematika</term>
<term name="medicine">orvostudomány</term>
<term name="philosophy">filozófia</term>
<term name="physics">fizika</term>
<term name="psychology">pszichológia</term>
<term name="sociology">szociológia</term>
<term name="science">tudomány</term>
<term name="political_science">politikatudomány</term>
<term name="social_science">társadalomtudomány</term>
<term name="theology">teológia</term>
<term name="zoology">zoológia</term>
<term name="book">
<single>könyv</single>
<multiple>könyv</multiple>
</term>
<term name="chapter">
<single>fejezet</single>
<multiple>fejezet</multiple>
</term>
<term name="column">
<single>oszlop</single>
<multiple>oszlop</multiple>
</term>
<term name="figure">
<single>ábra</single>
<multiple>ábra</multiple>
</term>
<term name="folio">
<single>fóliáns</single>
<multiple>fóliáns</multiple>
</term>
<term name="issue">
<single>szám</single>
<multiple>szám</multiple>
</term>
<term name="line">
<single>sor</single>
<multiple>sor</multiple>
</term>
<term name="note">
<single>jegyzet</single>
<multiple>jegyzet</multiple>
</term>
<term name="opus">
<single>opus</single>
<multiple>opera</multiple>
</term>
<term name="page">
<single>oldal</single>
<multiple>oldal</multiple>
</term>
<term name="paragraph">
<single>bekezdés</single>
<multiple>bekezdés</multiple>
</term>
<term name="part">
<single>rész</single>
<multiple>rész</multiple>
</term>
<term name="section">
<single>szakasz</single>
<multiple>szakasz</multiple>
</term>
<term name="volume">
<single>kötet</single>
<multiple>kötet</multiple>
</term>
<term name="edition">
<single>edition</single>
<multiple>editions</multiple>
</term>
<term name="verse">
<single>versszak</single>
<multiple>versszak</multiple>
</term>
<term name="sub verbo">
<single>sub verbo</single>
<multiple>s.vv</multiple>
</term>
<term name="book" form="short">könyv</term>
<term name="chapter" form="short">fej</term>
<term name="column" form="short">oszl</term>
<term name="figure" form="short">ábr</term>
<term name="folio" form="short">fol</term>
<term name="issue" form="short">sz</term>
<term name="opus" form="short">op</term>
<term name="page" form="short">
<single>o</single>
<multiple>o</multiple>
</term>
<term name="paragraph" form="short">bek</term>
<term name="part" form="short">rész</term>
<term name="section" form="short">szak</term>
<term name="sub verbo" form="short">
<single>s.v</single>
<multiple>s.vv</multiple>
</term>
<term name="verse" form="short">
<single>vsz</single>
<multiple>vsz</multiple>
</term>
<term name="volume" form="short">
<single>vol</single>
<multiple>vols</multiple>
</term>
<term name="edition">edition</term>
<term name="edition" form="short">ed</term>
<term name="paragraph" form="symbol">
<single></single>
<multiple>¶¶</multiple>
</term>
<term name="section" form="symbol">
<single>§</single>
<multiple>§§</multiple>
</term>
<term name="author">
<single/>
<multiple/>
</term>
<term name="editor">
<single>szerkesztő</single>
<multiple>szerkesztő</multiple>
</term>
<term name="translator">
<single>fordító</single>
<multiple>fordító</multiple>
</term>
<term name="author" form="short">
<single/>
<multiple/>
</term>
<term name="editor" form="short">
<single>szerk</single>
<multiple>szerk</multiple>
</term>
<term name="translator" form="short">
<single>ford</single>
<multiple>ford</multiple>
</term>
<term name="editor" form="verb">szerkesztette</term>
<term name="translator" form="verb">fordította</term>
<term name="recipient" form="verb">címzett</term>
<term name="interviewer" form="verb">interjúkészítő</term>
<term name="editor" form="verb-short">szerk</term>
<term name="translator" form="verb-short">ford</term>
<term name="month-01">január</term>
<term name="month-02">február</term>
<term name="month-03">március</term>
<term name="month-04">április</term>
<term name="month-05">május</term>
<term name="month-06">június</term>
<term name="month-07">július</term>
<term name="month-08">augusztus</term>
<term name="month-09">szeptember</term>
<term name="month-10">október</term>
<term name="month-11">november</term>
<term name="month-12">december</term>
<term name="month-01" form="short">jan</term>
<term name="month-02" form="short">febr</term>
<term name="month-03" form="short">márc</term>
<term name="month-04" form="short">ápr</term>
<term name="month-05" form="short">máj</term>
<term name="month-06" form="short">jún</term>
<term name="month-07" form="short">júl</term>
<term name="month-08" form="short">aug</term>
<term name="month-09" form="short">szept</term>
<term name="month-10" form="short">okt</term>
<term name="month-11" form="short">nov</term>
<term name="month-12" form="short">dec</term>
</locale>
</terms>
<?xml version="1.0" encoding="utf-8"?>
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="hu">
<style-options punctuation-in-quote="true"/>
<date form="text">
<date-part name="month" suffix=" "/>
<date-part name="day" suffix=", "/>
<date-part name="year"/>
</date>
<date form="numeric">
<date-part name="year"/>
<date-part name="month" form="numeric" prefix="-" range-delimiter="/"/>
<date-part name="day" prefix="-" range-delimiter="/"/>
</date>
<terms>
<term name="at"/>
<term name="in">in</term>
<term name="ibid">ibid</term>
<term name="accessed">elérés</term>
<term name="retrieved">elérés</term>
<term name="from">forrás</term>
<term name="forthcoming">megjelenés alatt</term>
<term name="reference">
<single>reference</single>
<multiple>references</multiple>
</term>
<term name="reference" form="short">
<single>ref.</single>
<multiple>refs.</multiple>
</term>
<term name="no date">nd</term>
<term name="and">és</term>
<term name="et-al">et al.</term>
<term name="circa">circa</term>
<term name="circa" form="short">c.</term>
<term name="interview">interjú</term>
<term name="letter">levél</term>
<term name="anonymous">név nélkül</term>
<term name="anonymous" form="short">nn</term>
<term name="and others">és mások</term>
<term name="in press">nyomtatás alatt</term>
<term name="online">online</term>
<term name="cited">idézi</term>
<term name="internet">internet</term>
<term name="presented at">előadás</term>
<term name="ad">AD</term>
<term name="bc">BC</term>
<!-- QUOTES -->
<term name="open-quote"></term>
<term name="close-quote"></term>
<term name="open-inner-quote"></term>
<term name="close-inner-quote"></term>
<!-- ORDINALS -->
<term name="ordinal-01">st</term>
<term name="ordinal-02">nd</term>
<term name="ordinal-03">rd</term>
<term name="ordinal-04">th</term>
<!-- LONG ORDINALS -->
<term name="long-ordinal-01">first</term>
<term name="long-ordinal-02">second</term>
<term name="long-ordinal-03">third</term>
<term name="long-ordinal-04">fourth</term>
<term name="long-ordinal-05">fifth</term>
<term name="long-ordinal-06">sixth</term>
<term name="long-ordinal-07">seventh</term>
<term name="long-ordinal-08">eighth</term>
<term name="long-ordinal-09">ninth</term>
<term name="long-ordinal-10">tenth</term>
<!-- CATEGORIES -->
<term name="anthropology">antropológia</term>
<term name="astronomy">csillagászat</term>
<term name="biology">biológia</term>
<term name="botany">botanika</term>
<term name="chemistry">kémia</term>
<term name="engineering">mérnöki tudományok</term>
<term name="generic-base">általános</term>
<term name="geography">földrajz</term>
<term name="geology">geológia</term>
<term name="history">történelem</term>
<term name="humanities">bölcsésztudományok</term>
<term name="linguistics">linguistics</term>
<term name="literature">irodalom</term>
<term name="math">matematika</term>
<term name="medicine">orvostudomány</term>
<term name="philosophy">filozófia</term>
<term name="physics">fizika</term>
<term name="psychology">pszichológia</term>
<term name="sociology">szociológia</term>
<term name="science">tudomány</term>
<term name="political_science">politikatudomány</term>
<term name="social_science">társadalomtudomány</term>
<term name="theology">teológia</term>
<term name="zoology">zoológia</term>
<!-- LONG LOCATOR FORMS -->
<term name="book">
<single>könyv</single>
<multiple>könyv</multiple>
</term>
<term name="chapter">
<single>fejezet</single>
<multiple>fejezet</multiple>
</term>
<term name="column">
<single>oszlop</single>
<multiple>oszlop</multiple>
</term>
<term name="figure">
<single>ábra</single>
<multiple>ábra</multiple>
</term>
<term name="folio">
<single>fóliáns</single>
<multiple>fóliáns</multiple>
</term>
<term name="issue">
<single>szám</single>
<multiple>szám</multiple>
</term>
<term name="line">
<single>sor</single>
<multiple>sor</multiple>
</term>
<term name="note">
<single>jegyzet</single>
<multiple>jegyzet</multiple>
</term>
<term name="opus">
<single>opus</single>
<multiple>opera</multiple>
</term>
<term name="page">
<single>oldal</single>
<multiple>oldal</multiple>
</term>
<term name="paragraph">
<single>bekezdés</single>
<multiple>bekezdés</multiple>
</term>
<term name="part">
<single>rész</single>
<multiple>rész</multiple>
</term>
<term name="section">
<single>szakasz</single>
<multiple>szakasz</multiple>
</term>
<term name="volume">
<single>kötet</single>
<multiple>kötet</multiple>
</term>
<term name="edition">
<single>edition</single>
<multiple>editions</multiple>
</term>
<term name="verse">
<single>versszak</single>
<multiple>versszak</multiple>
</term>
<term name="sub verbo">
<single>sub verbo</single>
<multiple>s.vv</multiple>
</term>
<!-- SHORT LOCATOR FORMS -->
<term name="book" form="short">könyv</term>
<term name="chapter" form="short">fej</term>
<term name="column" form="short">oszl</term>
<term name="figure" form="short">ábr</term>
<term name="folio" form="short">fol</term>
<term name="issue" form="short">sz</term>
<term name="opus" form="short">op</term>
<term name="page" form="short">
<single>o</single>
<multiple>o</multiple>
</term>
<term name="paragraph" form="short">bek</term>
<term name="part" form="short">rész</term>
<term name="section" form="short">szak</term>
<term name="sub verbo" form="short">
<single>s.v</single>
<multiple>s.vv</multiple>
</term>
<term name="verse" form="short">
<single>vsz</single>
<multiple>vsz</multiple>
</term>
<term name="volume" form="short">
<single>vol</single>
<multiple>vols</multiple>
</term>
<term name="edition" form="short">ed</term>
<!-- SYMBOL LOCATOR FORMS -->
<term name="paragraph" form="symbol">
<single></single>
<multiple>¶¶</multiple>
</term>
<term name="section" form="symbol">
<single>§</single>
<multiple>§§</multiple>
</term>
<!-- LONG ROLE FORMS -->
<term name="author">
<single/>
<multiple/>
</term>
<term name="editor">
<single>szerkesztő</single>
<multiple>szerkesztő</multiple>
</term>
<term name="editorial-director">
<single>editor</single>
<multiple>editors</multiple>
</term>
<term name="translator">
<single>fordító</single>
<multiple>fordító</multiple>
</term>
<term name="editortranslator">
<single>editor &amp; translator</single>
<multiple>editors &amp; translators</multiple>
</term>
<!-- SHORT ROLE FORMS -->
<term name="author" form="short">
<single/>
<multiple/>
</term>
<term name="editor" form="short">
<single>szerk</single>
<multiple>szerk</multiple>
</term>
<term name="editorial-director" form="short">
<single>ed.</single>
<multiple>eds.</multiple>
</term>
<term name="translator" form="short">
<single>ford</single>
<multiple>ford</multiple>
</term>
<term name="editortranslator" form="short">
<single>ed. &amp; tran.</single>
<multiple>eds. &amp; trans.</multiple>
</term>
<!-- VERB ROLE FORMS -->
<term name="editor" form="verb">szerkesztette</term>
<term name="editorial-director" form="verb">edited by</term>
<term name="translator" form="verb">fordította</term>
<term name="editortranslator" form="verb">edited &amp; translated by</term>
<term name="recipient" form="verb">címzett</term>
<term name="interviewer" form="verb">interjúkészítő</term>
<!-- SHORT VERB ROLE FORMS -->
<term name="editor" form="verb-short">szerk</term>
<term name="editorial-director" form="verb-short">ed.</term>
<term name="translator" form="verb-short">ford</term>
<term name="editortranslator" form="verb-short">ed. &amp; trans. by</term>
<!-- LONG MONTH FORMS -->
<term name="month-01">január</term>
<term name="month-02">február</term>
<term name="month-03">március</term>
<term name="month-04">április</term>
<term name="month-05">május</term>
<term name="month-06">június</term>
<term name="month-07">július</term>
<term name="month-08">augusztus</term>
<term name="month-09">szeptember</term>
<term name="month-10">október</term>
<term name="month-11">november</term>
<term name="month-12">december</term>
<!-- SHORT MONTH FORMS -->
<term name="month-01" form="short">jan</term>
<term name="month-02" form="short">febr</term>
<term name="month-03" form="short">márc</term>
<term name="month-04" form="short">ápr</term>
<term name="month-05" form="short">máj</term>
<term name="month-06" form="short">jún</term>
<term name="month-07" form="short">júl</term>
<term name="month-08" form="short">aug</term>
<term name="month-09" form="short">szept</term>
<term name="month-10" form="short">okt</term>
<term name="month-11" form="short">nov</term>
<term name="month-12" form="short">dec</term>
<!-- SEASONS -->
<term name="season-01">Spring</term>
<term name="season-02">Summer</term>
<term name="season-03">Autumn</term>
<term name="season-04">Winter</term>
</terms>
</locale>

View file

@ -1,211 +1,299 @@
<?xml version="1.0" encoding="UTF-8"?>
<terms xmlns="http://purl.org/net/xbiblio/csl">
<locale xml:lang="is">
<term name="at">at</term>
<term name="in">in</term>
<term name="ibid">ibid</term>
<term name="accessed">accessed</term>
<term name="retrieved">retrieved</term>
<term name="from">from</term>
<term name="forthcoming">forthcoming</term>
<term name="references">References</term>
<term name="reference item">
<single>source</single>
<multiple>sources</multiple>
</term>
<term name="no date">nd</term>
<term name="and">and</term>
<term name="et-al">et al.</term>
<term name="interview">interview</term>
<term name="letter">letter</term>
<term name="anonymous">anonymous</term>
<term name="anonymous" form="short">anon</term>
<term name="and others">and others</term>
<term name="in press">in press</term>
<term name="online">online</term>
<term name="cited">cited</term>
<term name="internet">internet</term>
<term name="presented at">presented at the</term>
<term name="anthropology">anthropology</term>
<term name="astronomy">astronomy</term>
<term name="biology">biology</term>
<term name="botany">botany</term>
<term name="chemistry">chemistry</term>
<term name="engineering">engineering</term>
<term name="generic-base">generic base</term>
<term name="geography">geography</term>
<term name="geology">geology</term>
<term name="history">history</term>
<term name="humanities">humanities</term>
<term name="literature">literature</term>
<term name="math">math</term>
<term name="medicine">medicine</term>
<term name="philosophy">philosophy</term>
<term name="physics">physics</term>
<term name="psychology">psychology</term>
<term name="sociology">sociology</term>
<term name="science">science</term>
<term name="political_science">political science</term>
<term name="social_science">social science</term>
<term name="theology">theology</term>
<term name="zoology">zoology</term>
<term name="book">
<single>book</single>
<multiple>books</multiple>
</term>
<term name="chapter">
<single>chapter</single>
<multiple>chapters</multiple>
</term>
<term name="column">
<single>column</single>
<multiple>columns</multiple>
</term>
<term name="figure">
<single>figure</single>
<multiple>figures</multiple>
</term>
<term name="folio">
<single>folio</single>
<multiple>folios</multiple>
</term>
<term name="issue">
<single>number</single>
<multiple>numbers</multiple>
</term>
<term name="line">
<single>line</single>
<multiple>line</multiple>
</term>
<term name="note">
<single>note</single>
<multiple>notes</multiple>
</term>
<term name="opus">
<single>opus</single>
<multiple>opera</multiple>
</term>
<term name="page">
<single>page</single>
<multiple>pages</multiple>
</term>
<term name="paragraph">
<single>paragraph</single>
<multiple>paragraph</multiple>
</term>
<term name="part">
<single>part</single>
<multiple>parts</multiple>
</term>
<term name="section">
<single>section</single>
<multiple>sections</multiple>
</term>
<term name="volume">
<single>volume</single>
<multiple>volumes</multiple>
</term>
<term name="edition">
<single>edition</single>
<multiple>editions</multiple>
</term>
<term name="verse">
<single>verse</single>
<multiple>verses</multiple>
</term>
<term name="sub verbo">
<single>sub verbo</single>
<multiple>s.vv</multiple>
</term>
<term name="book" form="short">bk</term>
<term name="chapter" form="short">chap</term>
<term name="column" form="short">col</term>
<term name="figure" form="short">fig</term>
<term name="folio" form="short">f</term>
<term name="issue" form="short">no</term>
<term name="opus" form="short">op</term>
<term name="page" form="short">
<single>p</single>
<multiple>pp</multiple>
</term>
<term name="paragraph" form="short">para</term>
<term name="part" form="short">pt</term>
<term name="section" form="short">sec</term>
<term name="sub verbo" form="short">
<single>s.v</single>
<multiple>s.vv</multiple>
</term>
<term name="verse" form="short">
<single>v</single>
<multiple>vv</multiple>
</term>
<term name="volume" form="short">
<single>vol</single>
<multiple>vols</multiple>
</term>
<term name="edition">edition</term>
<term name="edition" form="short">ed</term>
<term name="paragraph" form="symbol">
<single></single>
<multiple>¶¶</multiple>
</term>
<term name="section" form="symbol">
<single>§</single>
<multiple>§§</multiple>
</term>
<term name="author">
<single/>
<multiple/>
</term>
<term name="editor">
<single>editor</single>
<multiple>editors</multiple>
</term>
<term name="translator">
<single>translator</single>
<multiple>translators</multiple>
</term>
<term name="author" form="short">
<single/>
<multiple/>
</term>
<term name="editor" form="short">
<single>ed</single>
<multiple>eds</multiple>
</term>
<term name="translator" form="short">
<single>tran</single>
<multiple>trans</multiple>
</term>
<term name="editor" form="verb">edited by</term>
<term name="translator" form="verb">translated by</term>
<term name="recipient" form="verb">to</term>
<term name="interviewer" form="verb">interview by</term>
<term name="editor" form="verb-short">ed</term>
<term name="translator" form="verb-short">trans</term>
<term name="month-01">January</term>
<term name="month-02">February</term>
<term name="month-03">March</term>
<term name="month-04">April</term>
<term name="month-05">May</term>
<term name="month-06">June</term>
<term name="month-07">July</term>
<term name="month-08">August</term>
<term name="month-09">September</term>
<term name="month-10">October</term>
<term name="month-11">November</term>
<term name="month-12">December</term>
<term name="month-01" form="short">Jan</term>
<term name="month-02" form="short">Feb</term>
<term name="month-03" form="short">Mar</term>
<term name="month-04" form="short">Apr</term>
<term name="month-05" form="short">May</term>
<term name="month-06" form="short">Jun</term>
<term name="month-07" form="short">Jul</term>
<term name="month-08" form="short">Aug</term>
<term name="month-09" form="short">Sep</term>
<term name="month-10" form="short">Oct</term>
<term name="month-11" form="short">Nov</term>
<term name="month-12" form="short">Dec</term>
</locale>
</terms>
<?xml version="1.0" encoding="utf-8"?>
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="is">
<style-options punctuation-in-quote="true"/>
<date form="text">
<date-part name="month" suffix=" "/>
<date-part name="day" suffix=", "/>
<date-part name="year"/>
</date>
<date form="numeric">
<date-part name="year"/>
<date-part name="month" form="numeric" prefix="-" range-delimiter="/"/>
<date-part name="day" prefix="-" range-delimiter="/"/>
</date>
<terms>
<term name="at">at</term>
<term name="in">in</term>
<term name="ibid">ibid</term>
<term name="accessed">accessed</term>
<term name="retrieved">retrieved</term>
<term name="from">from</term>
<term name="forthcoming">forthcoming</term>
<term name="reference">
<single>reference</single>
<multiple>references</multiple>
</term>
<term name="reference" form="short">
<single>ref.</single>
<multiple>refs.</multiple>
</term>
<term name="no date">nd</term>
<term name="and">and</term>
<term name="et-al">et al.</term>
<term name="circa">circa</term>
<term name="circa" form="short">c.</term>
<term name="interview">interview</term>
<term name="letter">letter</term>
<term name="anonymous">anonymous</term>
<term name="anonymous" form="short">anon</term>
<term name="and others">and others</term>
<term name="in press">in press</term>
<term name="online">online</term>
<term name="cited">cited</term>
<term name="internet">internet</term>
<term name="presented at">presented at the</term>
<term name="ad">AD</term>
<term name="bc">BC</term>
<!-- QUOTES -->
<term name="open-quote"></term>
<term name="close-quote"></term>
<term name="open-inner-quote"></term>
<term name="close-inner-quote"></term>
<!-- ORDINALS -->
<term name="ordinal-01">st</term>
<term name="ordinal-02">nd</term>
<term name="ordinal-03">rd</term>
<term name="ordinal-04">th</term>
<!-- LONG ORDINALS -->
<term name="long-ordinal-01">first</term>
<term name="long-ordinal-02">second</term>
<term name="long-ordinal-03">third</term>
<term name="long-ordinal-04">fourth</term>
<term name="long-ordinal-05">fifth</term>
<term name="long-ordinal-06">sixth</term>
<term name="long-ordinal-07">seventh</term>
<term name="long-ordinal-08">eighth</term>
<term name="long-ordinal-09">ninth</term>
<term name="long-ordinal-10">tenth</term>
<!-- CATEGORIES -->
<term name="anthropology">anthropology</term>
<term name="astronomy">astronomy</term>
<term name="biology">biology</term>
<term name="botany">botany</term>
<term name="chemistry">chemistry</term>
<term name="engineering">engineering</term>
<term name="generic-base">generic base</term>
<term name="geography">geography</term>
<term name="geology">geology</term>
<term name="history">history</term>
<term name="humanities">humanities</term>
<term name="linguistics">linguistics</term>
<term name="literature">literature</term>
<term name="math">math</term>
<term name="medicine">medicine</term>
<term name="philosophy">philosophy</term>
<term name="physics">physics</term>
<term name="psychology">psychology</term>
<term name="sociology">sociology</term>
<term name="science">science</term>
<term name="political_science">political science</term>
<term name="social_science">social science</term>
<term name="theology">theology</term>
<term name="zoology">zoology</term>
<!-- LONG LOCATOR FORMS -->
<term name="book">
<single>book</single>
<multiple>books</multiple>
</term>
<term name="chapter">
<single>chapter</single>
<multiple>chapters</multiple>
</term>
<term name="column">
<single>column</single>
<multiple>columns</multiple>
</term>
<term name="figure">
<single>figure</single>
<multiple>figures</multiple>
</term>
<term name="folio">
<single>folio</single>
<multiple>folios</multiple>
</term>
<term name="issue">
<single>number</single>
<multiple>numbers</multiple>
</term>
<term name="line">
<single>line</single>
<multiple>line</multiple>
</term>
<term name="note">
<single>note</single>
<multiple>notes</multiple>
</term>
<term name="opus">
<single>opus</single>
<multiple>opera</multiple>
</term>
<term name="page">
<single>page</single>
<multiple>pages</multiple>
</term>
<term name="paragraph">
<single>paragraph</single>
<multiple>paragraph</multiple>
</term>
<term name="part">
<single>part</single>
<multiple>parts</multiple>
</term>
<term name="section">
<single>section</single>
<multiple>sections</multiple>
</term>
<term name="volume">
<single>volume</single>
<multiple>volumes</multiple>
</term>
<term name="edition">
<single>edition</single>
<multiple>editions</multiple>
</term>
<term name="verse">
<single>verse</single>
<multiple>verses</multiple>
</term>
<term name="sub verbo">
<single>sub verbo</single>
<multiple>s.vv</multiple>
</term>
<!-- SHORT LOCATOR FORMS -->
<term name="book" form="short">bk</term>
<term name="chapter" form="short">chap</term>
<term name="column" form="short">col</term>
<term name="figure" form="short">fig</term>
<term name="folio" form="short">f</term>
<term name="issue" form="short">no</term>
<term name="opus" form="short">op</term>
<term name="page" form="short">
<single>p</single>
<multiple>pp</multiple>
</term>
<term name="paragraph" form="short">para</term>
<term name="part" form="short">pt</term>
<term name="section" form="short">sec</term>
<term name="sub verbo" form="short">
<single>s.v</single>
<multiple>s.vv</multiple>
</term>
<term name="verse" form="short">
<single>v</single>
<multiple>vv</multiple>
</term>
<term name="volume" form="short">
<single>vol</single>
<multiple>vols</multiple>
</term>
<term name="edition" form="short">ed</term>
<!-- SYMBOL LOCATOR FORMS -->
<term name="paragraph" form="symbol">
<single></single>
<multiple>¶¶</multiple>
</term>
<term name="section" form="symbol">
<single>§</single>
<multiple>§§</multiple>
</term>
<!-- LONG ROLE FORMS -->
<term name="author">
<single/>
<multiple/>
</term>
<term name="editor">
<single>editor</single>
<multiple>editors</multiple>
</term>
<term name="editorial-director">
<single>editor</single>
<multiple>editors</multiple>
</term>
<term name="translator">
<single>translator</single>
<multiple>translators</multiple>
</term>
<term name="editortranslator">
<single>editor &amp; translator</single>
<multiple>editors &amp; translators</multiple>
</term>
<!-- SHORT ROLE FORMS -->
<term name="author" form="short">
<single/>
<multiple/>
</term>
<term name="editor" form="short">
<single>ed</single>
<multiple>eds</multiple>
</term>
<term name="editorial-director" form="short">
<single>ed.</single>
<multiple>eds.</multiple>
</term>
<term name="translator" form="short">
<single>tran</single>
<multiple>trans</multiple>
</term>
<term name="editortranslator" form="short">
<single>ed. &amp; tran.</single>
<multiple>eds. &amp; trans.</multiple>
</term>
<!-- VERB ROLE FORMS -->
<term name="editor" form="verb">edited by</term>
<term name="editorial-director" form="verb">edited by</term>
<term name="translator" form="verb">translated by</term>
<term name="editortranslator" form="verb">edited &amp; translated by</term>
<term name="recipient" form="verb">to</term>
<term name="interviewer" form="verb">interview by</term>
<!-- SHORT VERB ROLE FORMS -->
<term name="editor" form="verb-short">ed</term>
<term name="editorial-director" form="verb-short">ed.</term>
<term name="translator" form="verb-short">trans</term>
<term name="editortranslator" form="verb-short">ed. &amp; trans. by</term>
<!-- LONG MONTH FORMS -->
<term name="month-01">January</term>
<term name="month-02">February</term>
<term name="month-03">March</term>
<term name="month-04">April</term>
<term name="month-05">May</term>
<term name="month-06">June</term>
<term name="month-07">July</term>
<term name="month-08">August</term>
<term name="month-09">September</term>
<term name="month-10">October</term>
<term name="month-11">November</term>
<term name="month-12">December</term>
<!-- SHORT MONTH FORMS -->
<term name="month-01" form="short">Jan</term>
<term name="month-02" form="short">Feb</term>
<term name="month-03" form="short">Mar</term>
<term name="month-04" form="short">Apr</term>
<term name="month-05" form="short">May</term>
<term name="month-06" form="short">Jun</term>
<term name="month-07" form="short">Jul</term>
<term name="month-08" form="short">Aug</term>
<term name="month-09" form="short">Sep</term>
<term name="month-10" form="short">Oct</term>
<term name="month-11" form="short">Nov</term>
<term name="month-12" form="short">Dec</term>
<!-- SEASONS -->
<term name="season-01">Spring</term>
<term name="season-02">Summer</term>
<term name="season-03">Autumn</term>
<term name="season-04">Winter</term>
</terms>
</locale>

View file

@ -1,211 +1,299 @@
<?xml version="1.0" encoding="UTF-8"?>
<terms xmlns="http://purl.org/net/xbiblio/csl">
<locale xml:lang="it">
<term name="at">a</term>
<term name="in">in</term>
<term name="ibid">ibid</term>
<term name="accessed">consultato</term>
<term name="retrieved">recuperato</term>
<term name="from">da</term>
<term name="forthcoming">futuro</term>
<term name="references">Citazioni bibliografiche</term>
<term name="reference item">
<single>source</single>
<multiple>sources</multiple>
</term>
<term name="no date">S.d.</term>
<term name="and">e</term>
<term name="et-al">et al.</term>
<term name="interview">intervista</term>
<term name="letter">lettera</term>
<term name="anonymous">anonimo</term>
<term name="anonymous" form="short">anon</term>
<term name="and others">e altri</term>
<term name="in press">in stampa</term>
<term name="online">in linea</term>
<term name="cited">citato</term>
<term name="internet">internet</term>
<term name="presented at">presentato al</term>
<term name="anthropology">antropologia</term>
<term name="astronomy">astronomia</term>
<term name="biology">biologia</term>
<term name="botany">botanica</term>
<term name="chemistry">chimica</term>
<term name="engineering">ingegneria</term>
<term name="generic-base">generica</term>
<term name="geography">geografia</term>
<term name="geology">geologia</term>
<term name="history">storia</term>
<term name="humanities">discipline umanistiche</term>
<term name="literature">letteratura</term>
<term name="math">matematica</term>
<term name="medicine">medicina</term>
<term name="philosophy">filosofia</term>
<term name="physics">fisica</term>
<term name="psychology">psicologia</term>
<term name="sociology">sociologia</term>
<term name="science">scienze</term>
<term name="political_science">scienze politiche</term>
<term name="social_science">sociologia</term>
<term name="theology">teologia</term>
<term name="zoology">zoologia</term>
<term name="book">
<single>libro</single>
<multiple>libri</multiple>
</term>
<term name="chapter">
<single>capitolo</single>
<multiple>capitoli</multiple>
</term>
<term name="column">
<single>colonna</single>
<multiple>colonne</multiple>
</term>
<term name="figure">
<single>figura</single>
<multiple>figure</multiple>
</term>
<term name="folio">
<single>foglio</single>
<multiple>fogli</multiple>
</term>
<term name="issue">
<single>numero</single>
<multiple>numeri</multiple>
</term>
<term name="line">
<single>riga</single>
<multiple>righe</multiple>
</term>
<term name="note">
<single>nota</single>
<multiple>note</multiple>
</term>
<term name="opus">
<single>opera</single>
<multiple>opere</multiple>
</term>
<term name="page">
<single>pagina</single>
<multiple>pagine</multiple>
</term>
<term name="paragraph">
<single>capoverso</single>
<multiple>capoversi</multiple>
</term>
<term name="part">
<single>parte</single>
<multiple>parti</multiple>
</term>
<term name="section">
<single>paragrafo</single>
<multiple>paragrafi</multiple>
</term>
<term name="volume">
<single>volume</single>
<multiple>volumi</multiple>
</term>
<term name="edition">
<single>edizione</single>
<multiple>edizioni</multiple>
</term>
<term name="verse">
<single>verso</single>
<multiple>versi</multiple>
</term>
<term name="sub verbo">
<single>sub verbo</single>
<multiple>s.vv</multiple>
</term>
<term name="book" form="short">lib</term>
<term name="chapter" form="short">cap</term>
<term name="column" form="short">col</term>
<term name="figure" form="short">fig</term>
<term name="folio" form="short">fgl</term>
<term name="issue" form="short"></term>
<term name="opus" form="short">op</term>
<term name="page" form="short">
<single>pag</single>
<multiple>pagg</multiple>
</term>
<term name="paragraph" form="short">cpv</term>
<term name="part" form="short">pt</term>
<term name="section" form="short">par</term>
<term name="sub verbo" form="short">
<single>s.v</single>
<multiple>s.vv</multiple>
</term>
<term name="verse" form="short">
<single>v</single>
<multiple>vv</multiple>
</term>
<term name="volume" form="short">
<single>vol</single>
<multiple>vol</multiple>
</term>
<term name="edition">edition</term>
<term name="edition" form="short">ed</term>
<term name="paragraph" form="symbol">
<single></single>
<multiple>¶¶</multiple>
</term>
<term name="section" form="symbol">
<single>§</single>
<multiple>§§</multiple>
</term>
<term name="author">
<single/>
<multiple/>
</term>
<term name="editor">
<single>curatore</single>
<multiple>curatori</multiple>
</term>
<term name="translator">
<single>traduttore</single>
<multiple>traduttori</multiple>
</term>
<term name="author" form="short">
<single/>
<multiple/>
</term>
<term name="editor" form="short">
<single>cur</single>
<multiple>cur</multiple>
</term>
<term name="translator" form="short">
<single>trad</single>
<multiple>trad</multiple>
</term>
<term name="editor" form="verb">a cura di</term>
<term name="translator" form="verb">tradotto da</term>
<term name="recipient" form="verb">a</term>
<term name="interviewer" form="verb">intervista di</term>
<term name="editor" form="verb-short">cur. da</term>
<term name="translator" form="verb-short">trad. da</term>
<term name="month-01">Gennaio</term>
<term name="month-02">Febbraio</term>
<term name="month-03">Marzo</term>
<term name="month-04">Aprile</term>
<term name="month-05">Maggio</term>
<term name="month-06">Giugno</term>
<term name="month-07">Luglio</term>
<term name="month-08">Agosto</term>
<term name="month-09">Settembre</term>
<term name="month-10">Ottobre</term>
<term name="month-11">Novembre</term>
<term name="month-12">Dicembre</term>
<term name="month-01" form="short">Gen</term>
<term name="month-02" form="short">Feb</term>
<term name="month-03" form="short">Mar</term>
<term name="month-04" form="short">Apr</term>
<term name="month-05" form="short">Mag</term>
<term name="month-06" form="short">Giu</term>
<term name="month-07" form="short">Lug</term>
<term name="month-08" form="short">Ago</term>
<term name="month-09" form="short">Set</term>
<term name="month-10" form="short">Ott</term>
<term name="month-11" form="short">Nov</term>
<term name="month-12" form="short">Dic</term>
</locale>
</terms>
<?xml version="1.0" encoding="utf-8"?>
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="it">
<style-options punctuation-in-quote="true"/>
<date form="text">
<date-part name="month" suffix=" "/>
<date-part name="day" suffix=", "/>
<date-part name="year"/>
</date>
<date form="numeric">
<date-part name="year"/>
<date-part name="month" form="numeric" prefix="-" range-delimiter="/"/>
<date-part name="day" prefix="-" range-delimiter="/"/>
</date>
<terms>
<term name="at">a</term>
<term name="in">in</term>
<term name="ibid">ibid</term>
<term name="accessed">consultato</term>
<term name="retrieved">recuperato</term>
<term name="from">da</term>
<term name="forthcoming">futuro</term>
<term name="reference">
<single>reference</single>
<multiple>references</multiple>
</term>
<term name="reference" form="short">
<single>ref.</single>
<multiple>refs.</multiple>
</term>
<term name="no date">S.d.</term>
<term name="and">e</term>
<term name="et-al">et al.</term>
<term name="circa">circa</term>
<term name="circa" form="short">c.</term>
<term name="interview">intervista</term>
<term name="letter">lettera</term>
<term name="anonymous">anonimo</term>
<term name="anonymous" form="short">anon</term>
<term name="and others">e altri</term>
<term name="in press">in stampa</term>
<term name="online">in linea</term>
<term name="cited">citato</term>
<term name="internet">internet</term>
<term name="presented at">presentato al</term>
<term name="ad">AD</term>
<term name="bc">BC</term>
<!-- QUOTES -->
<term name="open-quote"></term>
<term name="close-quote"></term>
<term name="open-inner-quote"></term>
<term name="close-inner-quote"></term>
<!-- ORDINALS -->
<term name="ordinal-01">st</term>
<term name="ordinal-02">nd</term>
<term name="ordinal-03">rd</term>
<term name="ordinal-04">th</term>
<!-- LONG ORDINALS -->
<term name="long-ordinal-01">first</term>
<term name="long-ordinal-02">second</term>
<term name="long-ordinal-03">third</term>
<term name="long-ordinal-04">fourth</term>
<term name="long-ordinal-05">fifth</term>
<term name="long-ordinal-06">sixth</term>
<term name="long-ordinal-07">seventh</term>
<term name="long-ordinal-08">eighth</term>
<term name="long-ordinal-09">ninth</term>
<term name="long-ordinal-10">tenth</term>
<!-- CATEGORIES -->
<term name="anthropology">antropologia</term>
<term name="astronomy">astronomia</term>
<term name="biology">biologia</term>
<term name="botany">botanica</term>
<term name="chemistry">chimica</term>
<term name="engineering">ingegneria</term>
<term name="generic-base">generica</term>
<term name="geography">geografia</term>
<term name="geology">geologia</term>
<term name="history">storia</term>
<term name="humanities">discipline umanistiche</term>
<term name="linguistics">linguistics</term>
<term name="literature">letteratura</term>
<term name="math">matematica</term>
<term name="medicine">medicina</term>
<term name="philosophy">filosofia</term>
<term name="physics">fisica</term>
<term name="psychology">psicologia</term>
<term name="sociology">sociologia</term>
<term name="science">scienze</term>
<term name="political_science">scienze politiche</term>
<term name="social_science">sociologia</term>
<term name="theology">teologia</term>
<term name="zoology">zoologia</term>
<!-- LONG LOCATOR FORMS -->
<term name="book">
<single>libro</single>
<multiple>libri</multiple>
</term>
<term name="chapter">
<single>capitolo</single>
<multiple>capitoli</multiple>
</term>
<term name="column">
<single>colonna</single>
<multiple>colonne</multiple>
</term>
<term name="figure">
<single>figura</single>
<multiple>figure</multiple>
</term>
<term name="folio">
<single>foglio</single>
<multiple>fogli</multiple>
</term>
<term name="issue">
<single>numero</single>
<multiple>numeri</multiple>
</term>
<term name="line">
<single>riga</single>
<multiple>righe</multiple>
</term>
<term name="note">
<single>nota</single>
<multiple>note</multiple>
</term>
<term name="opus">
<single>opera</single>
<multiple>opere</multiple>
</term>
<term name="page">
<single>pagina</single>
<multiple>pagine</multiple>
</term>
<term name="paragraph">
<single>capoverso</single>
<multiple>capoversi</multiple>
</term>
<term name="part">
<single>parte</single>
<multiple>parti</multiple>
</term>
<term name="section">
<single>paragrafo</single>
<multiple>paragrafi</multiple>
</term>
<term name="volume">
<single>volume</single>
<multiple>volumi</multiple>
</term>
<term name="edition">
<single>edizione</single>
<multiple>edizioni</multiple>
</term>
<term name="verse">
<single>verso</single>
<multiple>versi</multiple>
</term>
<term name="sub verbo">
<single>sub verbo</single>
<multiple>s.vv</multiple>
</term>
<!-- SHORT LOCATOR FORMS -->
<term name="book" form="short">lib</term>
<term name="chapter" form="short">cap</term>
<term name="column" form="short">col</term>
<term name="figure" form="short">fig</term>
<term name="folio" form="short">fgl</term>
<term name="issue" form="short"></term>
<term name="opus" form="short">op</term>
<term name="page" form="short">
<single>pag</single>
<multiple>pagg</multiple>
</term>
<term name="paragraph" form="short">cpv</term>
<term name="part" form="short">pt</term>
<term name="section" form="short">par</term>
<term name="sub verbo" form="short">
<single>s.v</single>
<multiple>s.vv</multiple>
</term>
<term name="verse" form="short">
<single>v</single>
<multiple>vv</multiple>
</term>
<term name="volume" form="short">
<single>vol</single>
<multiple>vol</multiple>
</term>
<term name="edition" form="short">ed</term>
<!-- SYMBOL LOCATOR FORMS -->
<term name="paragraph" form="symbol">
<single></single>
<multiple>¶¶</multiple>
</term>
<term name="section" form="symbol">
<single>§</single>
<multiple>§§</multiple>
</term>
<!-- LONG ROLE FORMS -->
<term name="author">
<single/>
<multiple/>
</term>
<term name="editor">
<single>curatore</single>
<multiple>curatori</multiple>
</term>
<term name="editorial-director">
<single>editor</single>
<multiple>editors</multiple>
</term>
<term name="translator">
<single>traduttore</single>
<multiple>traduttori</multiple>
</term>
<term name="editortranslator">
<single>editor &amp; translator</single>
<multiple>editors &amp; translators</multiple>
</term>
<!-- SHORT ROLE FORMS -->
<term name="author" form="short">
<single/>
<multiple/>
</term>
<term name="editor" form="short">
<single>cur</single>
<multiple>cur</multiple>
</term>
<term name="editorial-director" form="short">
<single>ed.</single>
<multiple>eds.</multiple>
</term>
<term name="translator" form="short">
<single>trad</single>
<multiple>trad</multiple>
</term>
<term name="editortranslator" form="short">
<single>ed. &amp; tran.</single>
<multiple>eds. &amp; trans.</multiple>
</term>
<!-- VERB ROLE FORMS -->
<term name="editor" form="verb">a cura di</term>
<term name="editorial-director" form="verb">edited by</term>
<term name="translator" form="verb">tradotto da</term>
<term name="editortranslator" form="verb">edited &amp; translated by</term>
<term name="recipient" form="verb">a</term>
<term name="interviewer" form="verb">intervista di</term>
<!-- SHORT VERB ROLE FORMS -->
<term name="editor" form="verb-short">cur. da</term>
<term name="editorial-director" form="verb-short">ed.</term>
<term name="translator" form="verb-short">trad. da</term>
<term name="editortranslator" form="verb-short">ed. &amp; trans. by</term>
<!-- LONG MONTH FORMS -->
<term name="month-01">Gennaio</term>
<term name="month-02">Febbraio</term>
<term name="month-03">Marzo</term>
<term name="month-04">Aprile</term>
<term name="month-05">Maggio</term>
<term name="month-06">Giugno</term>
<term name="month-07">Luglio</term>
<term name="month-08">Agosto</term>
<term name="month-09">Settembre</term>
<term name="month-10">Ottobre</term>
<term name="month-11">Novembre</term>
<term name="month-12">Dicembre</term>
<!-- SHORT MONTH FORMS -->
<term name="month-01" form="short">Gen</term>
<term name="month-02" form="short">Feb</term>
<term name="month-03" form="short">Mar</term>
<term name="month-04" form="short">Apr</term>
<term name="month-05" form="short">Mag</term>
<term name="month-06" form="short">Giu</term>
<term name="month-07" form="short">Lug</term>
<term name="month-08" form="short">Ago</term>
<term name="month-09" form="short">Set</term>
<term name="month-10" form="short">Ott</term>
<term name="month-11" form="short">Nov</term>
<term name="month-12" form="short">Dic</term>
<!-- SEASONS -->
<term name="season-01">Spring</term>
<term name="season-02">Summer</term>
<term name="season-03">Autumn</term>
<term name="season-04">Winter</term>
</terms>
</locale>

View file

@ -1,211 +1,299 @@
<?xml version="1.0" encoding="UTF-8"?>
<terms xmlns="http://purl.org/net/xbiblio/csl">
<locale xml:lang="ja">
<term name="at">at</term>
<term name="in"> </term>
<term name="ibid">前掲</term>
<term name="accessed">アクセス</term>
<term name="retrieved">読み込み</term>
<term name="from">から</term>
<term name="forthcoming">近刊</term>
<term name="references">参考文献</term>
<term name="reference item">
<single>source</single>
<multiple>sources</multiple>
</term>
<term name="no date">日付なし</term>
<term name="and"></term>
<term name="et-al"></term>
<term name="interview">interview</term>
<term name="letter">letter</term>
<term name="anonymous">anonymous</term>
<term name="anonymous" form="short">anon</term>
<term name="and others">and others</term>
<term name="in press">in press</term>
<term name="online">online</term>
<term name="cited">cited</term>
<term name="internet">internet</term>
<term name="presented at">presented at the</term>
<term name="anthropology">anthropology</term>
<term name="astronomy">astronomy</term>
<term name="biology">biology</term>
<term name="botany">botany</term>
<term name="chemistry">chemistry</term>
<term name="engineering">engineering</term>
<term name="generic-base">generic base</term>
<term name="geography">geography</term>
<term name="geology">geology</term>
<term name="history">history</term>
<term name="humanities">humanities</term>
<term name="literature">literature</term>
<term name="math">math</term>
<term name="medicine">medicine</term>
<term name="philosophy">philosophy</term>
<term name="physics">physics</term>
<term name="psychology">psychology</term>
<term name="sociology">sociology</term>
<term name="science">science</term>
<term name="political_science">political science</term>
<term name="social_science">social science</term>
<term name="theology">theology</term>
<term name="zoology">zoology</term>
<term name="book">
<single>book</single>
<multiple>books</multiple>
</term>
<term name="chapter">
<single>chapter</single>
<multiple>chapters</multiple>
</term>
<term name="column">
<single>column</single>
<multiple>columns</multiple>
</term>
<term name="figure">
<single>figure</single>
<multiple>figures</multiple>
</term>
<term name="folio">
<single>folio</single>
<multiple>folios</multiple>
</term>
<term name="issue">
<single>number</single>
<multiple>numbers</multiple>
</term>
<term name="line">
<single></single>
<multiple></multiple>
</term>
<term name="note">
<single>note</single>
<multiple>notes</multiple>
</term>
<term name="opus">
<single>opus</single>
<multiple>opera</multiple>
</term>
<term name="page">
<single>ページ</single>
<multiple>ページ</multiple>
</term>
<term name="paragraph">
<single>段落</single>
<multiple>段落</multiple>
</term>
<term name="part">
<single>part</single>
<multiple>parts</multiple>
</term>
<term name="section">
<single>section</single>
<multiple>sections</multiple>
</term>
<term name="volume">
<single>volume</single>
<multiple>volumes</multiple>
</term>
<term name="edition">
<single>edition</single>
<multiple>editions</multiple>
</term>
<term name="verse">
<single>verse</single>
<multiple>verses</multiple>
</term>
<term name="sub verbo">
<single>sub verbo</single>
<multiple>s.vv</multiple>
</term>
<term name="book" form="short">bk</term>
<term name="chapter" form="short">chap</term>
<term name="column" form="short">col</term>
<term name="figure" form="short">fig</term>
<term name="folio" form="short">f</term>
<term name="issue" form="short"></term>
<term name="opus" form="short">op</term>
<term name="page" form="short">
<single>p</single>
<multiple>p</multiple>
</term>
<term name="paragraph" form="short">para</term>
<term name="part" form="short">pt</term>
<term name="section" form="short">sec</term>
<term name="sub verbo" form="short">
<single>s.v</single>
<multiple>s.vv</multiple>
</term>
<term name="verse" form="short">
<single>v</single>
<multiple>vv</multiple>
</term>
<term name="volume" form="short">
<single>vol</single>
<multiple>vols</multiple>
</term>
<term name="edition">edition</term>
<term name="edition" form="short">ed</term>
<term name="paragraph" form="symbol">
<single></single>
<multiple>¶¶</multiple>
</term>
<term name="section" form="symbol">
<single>§</single>
<multiple>§§</multiple>
</term>
<term name="author">
<single/>
<multiple/>
</term>
<term name="editor">
<single>編集者</single>
<multiple>編集者</multiple>
</term>
<term name="translator">
<single>翻訳者</single>
<multiple>翻訳者</multiple>
</term>
<term name="author" form="short">
<single/>
<multiple/>
</term>
<term name="editor" form="short">
<single>編集者</single>
<multiple>編集者</multiple>
</term>
<term name="translator" form="short">
<single>翻訳者</single>
<multiple>翻訳者</multiple>
</term>
<term name="editor" form="verb">編集者:</term>
<term name="translator" form="verb">翻訳者:</term>
<term name="recipient" form="verb">to</term>
<term name="interviewer" form="verb">interview by</term>
<term name="editor" form="verb-short">ed</term>
<term name="translator" form="verb-short">trans</term>
<term name="month-01">1月</term>
<term name="month-02">2月</term>
<term name="month-03">3月</term>
<term name="month-04">4月</term>
<term name="month-05">5月</term>
<term name="month-06">6月</term>
<term name="month-07">7月</term>
<term name="month-08">8月</term>
<term name="month-09">9月</term>
<term name="month-10">10月</term>
<term name="month-11">11月</term>
<term name="month-12">12月</term>
<term name="month-01" form="short">1月</term>
<term name="month-02" form="short">2月</term>
<term name="month-03" form="short">3月</term>
<term name="month-04" form="short">4月</term>
<term name="month-05" form="short">5月</term>
<term name="month-06" form="short">6月</term>
<term name="month-07" form="short">7月</term>
<term name="month-08" form="short">8月</term>
<term name="month-09" form="short">9月</term>
<term name="month-10" form="short">10月</term>
<term name="month-11" form="short">11月</term>
<term name="month-12" form="short">12月</term>
</locale>
</terms>
<?xml version="1.0" encoding="utf-8"?>
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="ja">
<style-options punctuation-in-quote="true"/>
<date form="text">
<date-part name="month" suffix=" "/>
<date-part name="day" suffix=", "/>
<date-part name="year"/>
</date>
<date form="numeric">
<date-part name="year"/>
<date-part name="month" form="numeric" prefix="-" range-delimiter="/"/>
<date-part name="day" prefix="-" range-delimiter="/"/>
</date>
<terms>
<term name="at">at</term>
<term name="in"/>
<term name="ibid">前掲</term>
<term name="accessed">アクセス</term>
<term name="retrieved">読み込み</term>
<term name="from">から</term>
<term name="forthcoming">近刊</term>
<term name="reference">
<single>reference</single>
<multiple>references</multiple>
</term>
<term name="reference" form="short">
<single>ref.</single>
<multiple>refs.</multiple>
</term>
<term name="no date">日付なし</term>
<term name="and"></term>
<term name="et-al"></term>
<term name="circa">circa</term>
<term name="circa" form="short">c.</term>
<term name="interview">interview</term>
<term name="letter">letter</term>
<term name="anonymous">anonymous</term>
<term name="anonymous" form="short">anon</term>
<term name="and others">and others</term>
<term name="in press">in press</term>
<term name="online">online</term>
<term name="cited">cited</term>
<term name="internet">internet</term>
<term name="presented at">presented at the</term>
<term name="ad">AD</term>
<term name="bc">BC</term>
<!-- QUOTES -->
<term name="open-quote"></term>
<term name="close-quote"></term>
<term name="open-inner-quote"></term>
<term name="close-inner-quote"></term>
<!-- ORDINALS -->
<term name="ordinal-01">st</term>
<term name="ordinal-02">nd</term>
<term name="ordinal-03">rd</term>
<term name="ordinal-04">th</term>
<!-- LONG ORDINALS -->
<term name="long-ordinal-01">first</term>
<term name="long-ordinal-02">second</term>
<term name="long-ordinal-03">third</term>
<term name="long-ordinal-04">fourth</term>
<term name="long-ordinal-05">fifth</term>
<term name="long-ordinal-06">sixth</term>
<term name="long-ordinal-07">seventh</term>
<term name="long-ordinal-08">eighth</term>
<term name="long-ordinal-09">ninth</term>
<term name="long-ordinal-10">tenth</term>
<!-- CATEGORIES -->
<term name="anthropology">anthropology</term>
<term name="astronomy">astronomy</term>
<term name="biology">biology</term>
<term name="botany">botany</term>
<term name="chemistry">chemistry</term>
<term name="engineering">engineering</term>
<term name="generic-base">generic base</term>
<term name="geography">geography</term>
<term name="geology">geology</term>
<term name="history">history</term>
<term name="humanities">humanities</term>
<term name="linguistics">linguistics</term>
<term name="literature">literature</term>
<term name="math">math</term>
<term name="medicine">medicine</term>
<term name="philosophy">philosophy</term>
<term name="physics">physics</term>
<term name="psychology">psychology</term>
<term name="sociology">sociology</term>
<term name="science">science</term>
<term name="political_science">political science</term>
<term name="social_science">social science</term>
<term name="theology">theology</term>
<term name="zoology">zoology</term>
<!-- LONG LOCATOR FORMS -->
<term name="book">
<single>book</single>
<multiple>books</multiple>
</term>
<term name="chapter">
<single>chapter</single>
<multiple>chapters</multiple>
</term>
<term name="column">
<single>column</single>
<multiple>columns</multiple>
</term>
<term name="figure">
<single>figure</single>
<multiple>figures</multiple>
</term>
<term name="folio">
<single>folio</single>
<multiple>folios</multiple>
</term>
<term name="issue">
<single>number</single>
<multiple>numbers</multiple>
</term>
<term name="line">
<single></single>
<multiple></multiple>
</term>
<term name="note">
<single>note</single>
<multiple>notes</multiple>
</term>
<term name="opus">
<single>opus</single>
<multiple>opera</multiple>
</term>
<term name="page">
<single>ページ</single>
<multiple>ページ</multiple>
</term>
<term name="paragraph">
<single>段落</single>
<multiple>段落</multiple>
</term>
<term name="part">
<single>part</single>
<multiple>parts</multiple>
</term>
<term name="section">
<single>section</single>
<multiple>sections</multiple>
</term>
<term name="volume">
<single>volume</single>
<multiple>volumes</multiple>
</term>
<term name="edition">
<single>edition</single>
<multiple>editions</multiple>
</term>
<term name="verse">
<single>verse</single>
<multiple>verses</multiple>
</term>
<term name="sub verbo">
<single>sub verbo</single>
<multiple>s.vv</multiple>
</term>
<!-- SHORT LOCATOR FORMS -->
<term name="book" form="short">bk</term>
<term name="chapter" form="short">chap</term>
<term name="column" form="short">col</term>
<term name="figure" form="short">fig</term>
<term name="folio" form="short">f</term>
<term name="issue" form="short"></term>
<term name="opus" form="short">op</term>
<term name="page" form="short">
<single>p</single>
<multiple>p</multiple>
</term>
<term name="paragraph" form="short">para</term>
<term name="part" form="short">pt</term>
<term name="section" form="short">sec</term>
<term name="sub verbo" form="short">
<single>s.v</single>
<multiple>s.vv</multiple>
</term>
<term name="verse" form="short">
<single>v</single>
<multiple>vv</multiple>
</term>
<term name="volume" form="short">
<single>vol</single>
<multiple>vols</multiple>
</term>
<term name="edition" form="short">ed</term>
<!-- SYMBOL LOCATOR FORMS -->
<term name="paragraph" form="symbol">
<single></single>
<multiple>¶¶</multiple>
</term>
<term name="section" form="symbol">
<single>§</single>
<multiple>§§</multiple>
</term>
<!-- LONG ROLE FORMS -->
<term name="author">
<single/>
<multiple/>
</term>
<term name="editor">
<single>編集者</single>
<multiple>編集者</multiple>
</term>
<term name="editorial-director">
<single>editor</single>
<multiple>editors</multiple>
</term>
<term name="translator">
<single>翻訳者</single>
<multiple>翻訳者</multiple>
</term>
<term name="editortranslator">
<single>editor &amp; translator</single>
<multiple>editors &amp; translators</multiple>
</term>
<!-- SHORT ROLE FORMS -->
<term name="author" form="short">
<single/>
<multiple/>
</term>
<term name="editor" form="short">
<single>編集者</single>
<multiple>編集者</multiple>
</term>
<term name="editorial-director" form="short">
<single>ed.</single>
<multiple>eds.</multiple>
</term>
<term name="translator" form="short">
<single>翻訳者</single>
<multiple>翻訳者</multiple>
</term>
<term name="editortranslator" form="short">
<single>ed. &amp; tran.</single>
<multiple>eds. &amp; trans.</multiple>
</term>
<!-- VERB ROLE FORMS -->
<term name="editor" form="verb">編集者:</term>
<term name="editorial-director" form="verb">edited by</term>
<term name="translator" form="verb">翻訳者:</term>
<term name="editortranslator" form="verb">edited &amp; translated by</term>
<term name="recipient" form="verb">to</term>
<term name="interviewer" form="verb">interview by</term>
<!-- SHORT VERB ROLE FORMS -->
<term name="editor" form="verb-short">ed</term>
<term name="editorial-director" form="verb-short">ed.</term>
<term name="translator" form="verb-short">trans</term>
<term name="editortranslator" form="verb-short">ed. &amp; trans. by</term>
<!-- LONG MONTH FORMS -->
<term name="month-01">1月</term>
<term name="month-02">2月</term>
<term name="month-03">3月</term>
<term name="month-04">4月</term>
<term name="month-05">5月</term>
<term name="month-06">6月</term>
<term name="month-07">7月</term>
<term name="month-08">8月</term>
<term name="month-09">9月</term>
<term name="month-10">10月</term>
<term name="month-11">11月</term>
<term name="month-12">12月</term>
<!-- SHORT MONTH FORMS -->
<term name="month-01" form="short">1月</term>
<term name="month-02" form="short">2月</term>
<term name="month-03" form="short">3月</term>
<term name="month-04" form="short">4月</term>
<term name="month-05" form="short">5月</term>
<term name="month-06" form="short">6月</term>
<term name="month-07" form="short">7月</term>
<term name="month-08" form="short">8月</term>
<term name="month-09" form="short">9月</term>
<term name="month-10" form="short">10月</term>
<term name="month-11" form="short">11月</term>
<term name="month-12" form="short">12月</term>
<!-- SEASONS -->
<term name="season-01">Spring</term>
<term name="season-02">Summer</term>
<term name="season-03">Autumn</term>
<term name="season-04">Winter</term>
</terms>
</locale>

View file

@ -1,211 +1,299 @@
<?xml version="1.0" encoding="UTF-8"?>
<terms xmlns="http://purl.org/net/xbiblio/csl">
<locale xml:lang="ko">
<term name="at">at</term>
<term name="in">in</term>
<term name="ibid">ibid</term>
<term name="accessed">접근된</term>
<term name="retrieved">retrieved</term>
<term name="from">(으)로부터</term>
<term name="forthcoming">근간</term>
<term name="references">참고 문헌</term>
<term name="reference item">
<single>source</single>
<multiple>sources</multiple>
</term>
<term name="no date">일자 없음</term>
<term name="and">와/과</term>
<term name="et-al">기타</term>
<term name="interview">interview</term>
<term name="letter">letter</term>
<term name="anonymous">anonymous</term>
<term name="anonymous" form="short">anon</term>
<term name="and others">and others</term>
<term name="in press">in press</term>
<term name="online">online</term>
<term name="cited">cited</term>
<term name="internet">internet</term>
<term name="presented at">presented at the</term>
<term name="anthropology">anthropology</term>
<term name="astronomy">astronomy</term>
<term name="biology">biology</term>
<term name="botany">botany</term>
<term name="chemistry">chemistry</term>
<term name="engineering">engineering</term>
<term name="generic-base">generic base</term>
<term name="geography">geography</term>
<term name="geology">geology</term>
<term name="history">history</term>
<term name="humanities">humanities</term>
<term name="literature">literature</term>
<term name="math">math</term>
<term name="medicine">medicine</term>
<term name="philosophy">philosophy</term>
<term name="physics">physics</term>
<term name="psychology">psychology</term>
<term name="sociology">sociology</term>
<term name="science">science</term>
<term name="political_science">political science</term>
<term name="social_science">social science</term>
<term name="theology">theology</term>
<term name="zoology">zoology</term>
<term name="book">
<single>book</single>
<multiple>books</multiple>
</term>
<term name="chapter">
<single>chapter</single>
<multiple>chapters</multiple>
</term>
<term name="column">
<single>column</single>
<multiple>columns</multiple>
</term>
<term name="figure">
<single>figure</single>
<multiple>figures</multiple>
</term>
<term name="folio">
<single>folio</single>
<multiple>folios</multiple>
</term>
<term name="issue">
<single>number</single>
<multiple>numbers</multiple>
</term>
<term name="line">
<single></single>
<multiple></multiple>
</term>
<term name="note">
<single>note</single>
<multiple>notes</multiple>
</term>
<term name="opus">
<single>opus</single>
<multiple>opera</multiple>
</term>
<term name="page">
<single>페이지</single>
<multiple>페이지</multiple>
</term>
<term name="paragraph">
<single>단락</single>
<multiple>단락</multiple>
</term>
<term name="part">
<single>part</single>
<multiple>parts</multiple>
</term>
<term name="section">
<single>section</single>
<multiple>sections</multiple>
</term>
<term name="volume">
<single>volume</single>
<multiple>volumes</multiple>
</term>
<term name="edition">
<single>edition</single>
<multiple>editions</multiple>
</term>
<term name="verse">
<single>verse</single>
<multiple>verses</multiple>
</term>
<term name="sub verbo">
<single>sub verbo</single>
<multiple>s.vv</multiple>
</term>
<term name="book" form="short">bk</term>
<term name="chapter" form="short">chap</term>
<term name="column" form="short">col</term>
<term name="figure" form="short">fig</term>
<term name="folio" form="short">f</term>
<term name="issue" form="short"></term>
<term name="opus" form="short">op</term>
<term name="page" form="short">
<single>p</single>
<multiple>pp</multiple>
</term>
<term name="paragraph" form="short">para</term>
<term name="part" form="short">pt</term>
<term name="section" form="short">sec</term>
<term name="sub verbo" form="short">
<single>s.v</single>
<multiple>s.vv</multiple>
</term>
<term name="verse" form="short">
<single>v</single>
<multiple>vv</multiple>
</term>
<term name="volume" form="short">
<single>vol</single>
<multiple>vols</multiple>
</term>
<term name="edition">edition</term>
<term name="edition" form="short">ed</term>
<term name="paragraph" form="symbol">
<single></single>
<multiple>¶¶</multiple>
</term>
<term name="section" form="symbol">
<single>§</single>
<multiple>§§</multiple>
</term>
<term name="author">
<single/>
<multiple/>
</term>
<term name="editor">
<single>편집자</single>
<multiple>편집자</multiple>
</term>
<term name="translator">
<single>번역자</single>
<multiple>번역자</multiple>
</term>
<term name="author" form="short">
<single/>
<multiple/>
</term>
<term name="editor" form="short">
<single>편집자</single>
<multiple>편집자</multiple>
</term>
<term name="translator" form="short">
<single>번역자</single>
<multiple>번역자</multiple>
</term>
<term name="editor" form="verb">편집자:</term>
<term name="translator" form="verb">번역자:</term>
<term name="recipient" form="verb">to</term>
<term name="interviewer" form="verb">interview by</term>
<term name="editor" form="verb-short">ed</term>
<term name="translator" form="verb-short">trans</term>
<term name="month-01">1월</term>
<term name="month-02">2월</term>
<term name="month-03">3월</term>
<term name="month-04">4월</term>
<term name="month-05">5월</term>
<term name="month-06">6월</term>
<term name="month-07">7월</term>
<term name="month-08">8월</term>
<term name="month-09">9월</term>
<term name="month-10">10월</term>
<term name="month-11">11월</term>
<term name="month-12">12월</term>
<term name="month-01" form="short">1</term>
<term name="month-02" form="short">2</term>
<term name="month-03" form="short">3</term>
<term name="month-04" form="short">4</term>
<term name="month-05" form="short">5</term>
<term name="month-06" form="short">6</term>
<term name="month-07" form="short">7</term>
<term name="month-08" form="short">8</term>
<term name="month-09" form="short">9</term>
<term name="month-10" form="short">10</term>
<term name="month-11" form="short">11</term>
<term name="month-12" form="short">12</term>
</locale>
</terms>
<?xml version="1.0" encoding="utf-8"?>
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="ko">
<style-options punctuation-in-quote="true"/>
<date form="text">
<date-part name="month" suffix=" "/>
<date-part name="day" suffix=", "/>
<date-part name="year"/>
</date>
<date form="numeric">
<date-part name="year"/>
<date-part name="month" form="numeric" prefix="-" range-delimiter="/"/>
<date-part name="day" prefix="-" range-delimiter="/"/>
</date>
<terms>
<term name="at">at</term>
<term name="in">in</term>
<term name="ibid">ibid</term>
<term name="accessed">접근된</term>
<term name="retrieved">retrieved</term>
<term name="from">(으)로부터</term>
<term name="forthcoming">근간</term>
<term name="reference">
<single>reference</single>
<multiple>references</multiple>
</term>
<term name="reference" form="short">
<single>ref.</single>
<multiple>refs.</multiple>
</term>
<term name="no date">일자 없음</term>
<term name="and">와/과</term>
<term name="et-al">기타</term>
<term name="circa">circa</term>
<term name="circa" form="short">c.</term>
<term name="interview">interview</term>
<term name="letter">letter</term>
<term name="anonymous">anonymous</term>
<term name="anonymous" form="short">anon</term>
<term name="and others">and others</term>
<term name="in press">in press</term>
<term name="online">online</term>
<term name="cited">cited</term>
<term name="internet">internet</term>
<term name="presented at">presented at the</term>
<term name="ad">AD</term>
<term name="bc">BC</term>
<!-- QUOTES -->
<term name="open-quote"></term>
<term name="close-quote"></term>
<term name="open-inner-quote"></term>
<term name="close-inner-quote"></term>
<!-- ORDINALS -->
<term name="ordinal-01">st</term>
<term name="ordinal-02">nd</term>
<term name="ordinal-03">rd</term>
<term name="ordinal-04">th</term>
<!-- LONG ORDINALS -->
<term name="long-ordinal-01">first</term>
<term name="long-ordinal-02">second</term>
<term name="long-ordinal-03">third</term>
<term name="long-ordinal-04">fourth</term>
<term name="long-ordinal-05">fifth</term>
<term name="long-ordinal-06">sixth</term>
<term name="long-ordinal-07">seventh</term>
<term name="long-ordinal-08">eighth</term>
<term name="long-ordinal-09">ninth</term>
<term name="long-ordinal-10">tenth</term>
<!-- CATEGORIES -->
<term name="anthropology">anthropology</term>
<term name="astronomy">astronomy</term>
<term name="biology">biology</term>
<term name="botany">botany</term>
<term name="chemistry">chemistry</term>
<term name="engineering">engineering</term>
<term name="generic-base">generic base</term>
<term name="geography">geography</term>
<term name="geology">geology</term>
<term name="history">history</term>
<term name="humanities">humanities</term>
<term name="linguistics">linguistics</term>
<term name="literature">literature</term>
<term name="math">math</term>
<term name="medicine">medicine</term>
<term name="philosophy">philosophy</term>
<term name="physics">physics</term>
<term name="psychology">psychology</term>
<term name="sociology">sociology</term>
<term name="science">science</term>
<term name="political_science">political science</term>
<term name="social_science">social science</term>
<term name="theology">theology</term>
<term name="zoology">zoology</term>
<!-- LONG LOCATOR FORMS -->
<term name="book">
<single>book</single>
<multiple>books</multiple>
</term>
<term name="chapter">
<single>chapter</single>
<multiple>chapters</multiple>
</term>
<term name="column">
<single>column</single>
<multiple>columns</multiple>
</term>
<term name="figure">
<single>figure</single>
<multiple>figures</multiple>
</term>
<term name="folio">
<single>folio</single>
<multiple>folios</multiple>
</term>
<term name="issue">
<single>number</single>
<multiple>numbers</multiple>
</term>
<term name="line">
<single></single>
<multiple></multiple>
</term>
<term name="note">
<single>note</single>
<multiple>notes</multiple>
</term>
<term name="opus">
<single>opus</single>
<multiple>opera</multiple>
</term>
<term name="page">
<single>페이지</single>
<multiple>페이지</multiple>
</term>
<term name="paragraph">
<single>단락</single>
<multiple>단락</multiple>
</term>
<term name="part">
<single>part</single>
<multiple>parts</multiple>
</term>
<term name="section">
<single>section</single>
<multiple>sections</multiple>
</term>
<term name="volume">
<single>volume</single>
<multiple>volumes</multiple>
</term>
<term name="edition">
<single>edition</single>
<multiple>editions</multiple>
</term>
<term name="verse">
<single>verse</single>
<multiple>verses</multiple>
</term>
<term name="sub verbo">
<single>sub verbo</single>
<multiple>s.vv</multiple>
</term>
<!-- SHORT LOCATOR FORMS -->
<term name="book" form="short">bk</term>
<term name="chapter" form="short">chap</term>
<term name="column" form="short">col</term>
<term name="figure" form="short">fig</term>
<term name="folio" form="short">f</term>
<term name="issue" form="short"></term>
<term name="opus" form="short">op</term>
<term name="page" form="short">
<single>p</single>
<multiple>pp</multiple>
</term>
<term name="paragraph" form="short">para</term>
<term name="part" form="short">pt</term>
<term name="section" form="short">sec</term>
<term name="sub verbo" form="short">
<single>s.v</single>
<multiple>s.vv</multiple>
</term>
<term name="verse" form="short">
<single>v</single>
<multiple>vv</multiple>
</term>
<term name="volume" form="short">
<single>vol</single>
<multiple>vols</multiple>
</term>
<term name="edition" form="short">ed</term>
<!-- SYMBOL LOCATOR FORMS -->
<term name="paragraph" form="symbol">
<single></single>
<multiple>¶¶</multiple>
</term>
<term name="section" form="symbol">
<single>§</single>
<multiple>§§</multiple>
</term>
<!-- LONG ROLE FORMS -->
<term name="author">
<single/>
<multiple/>
</term>
<term name="editor">
<single>편집자</single>
<multiple>편집자</multiple>
</term>
<term name="editorial-director">
<single>editor</single>
<multiple>editors</multiple>
</term>
<term name="translator">
<single>번역자</single>
<multiple>번역자</multiple>
</term>
<term name="editortranslator">
<single>editor &amp; translator</single>
<multiple>editors &amp; translators</multiple>
</term>
<!-- SHORT ROLE FORMS -->
<term name="author" form="short">
<single/>
<multiple/>
</term>
<term name="editor" form="short">
<single>편집자</single>
<multiple>편집자</multiple>
</term>
<term name="editorial-director" form="short">
<single>ed.</single>
<multiple>eds.</multiple>
</term>
<term name="translator" form="short">
<single>번역자</single>
<multiple>번역자</multiple>
</term>
<term name="editortranslator" form="short">
<single>ed. &amp; tran.</single>
<multiple>eds. &amp; trans.</multiple>
</term>
<!-- VERB ROLE FORMS -->
<term name="editor" form="verb">편집자:</term>
<term name="editorial-director" form="verb">edited by</term>
<term name="translator" form="verb">번역자:</term>
<term name="editortranslator" form="verb">edited &amp; translated by</term>
<term name="recipient" form="verb">to</term>
<term name="interviewer" form="verb">interview by</term>
<!-- SHORT VERB ROLE FORMS -->
<term name="editor" form="verb-short">ed</term>
<term name="editorial-director" form="verb-short">ed.</term>
<term name="translator" form="verb-short">trans</term>
<term name="editortranslator" form="verb-short">ed. &amp; trans. by</term>
<!-- LONG MONTH FORMS -->
<term name="month-01">1월</term>
<term name="month-02">2월</term>
<term name="month-03">3월</term>
<term name="month-04">4월</term>
<term name="month-05">5월</term>
<term name="month-06">6월</term>
<term name="month-07">7월</term>
<term name="month-08">8월</term>
<term name="month-09">9월</term>
<term name="month-10">10월</term>
<term name="month-11">11월</term>
<term name="month-12">12월</term>
<!-- SHORT MONTH FORMS -->
<term name="month-01" form="short">1</term>
<term name="month-02" form="short">2</term>
<term name="month-03" form="short">3</term>
<term name="month-04" form="short">4</term>
<term name="month-05" form="short">5</term>
<term name="month-06" form="short">6</term>
<term name="month-07" form="short">7</term>
<term name="month-08" form="short">8</term>
<term name="month-09" form="short">9</term>
<term name="month-10" form="short">10</term>
<term name="month-11" form="short">11</term>
<term name="month-12" form="short">12</term>
<!-- SEASONS -->
<term name="season-01">Spring</term>
<term name="season-02">Summer</term>
<term name="season-03">Autumn</term>
<term name="season-04">Winter</term>
</terms>
</locale>

View file

@ -1,211 +1,299 @@
<?xml version="1.0" encoding="UTF-8"?>
<terms xmlns="http://purl.org/net/xbiblio/csl">
<locale xml:lang="mn">
<term name="at">at</term>
<term name="in">in</term>
<term name="ibid">ibid</term>
<term name="accessed">accessed</term>
<term name="retrieved">retrieved</term>
<term name="from">from</term>
<term name="forthcoming">forthcoming</term>
<term name="references">references</term>
<term name="reference item">
<single>source</single>
<multiple>sources</multiple>
</term>
<term name="no date">n.d.</term>
<term name="and">and</term>
<term name="et-al">et al.</term>
<term name="interview">interview</term>
<term name="letter">letter</term>
<term name="anonymous">anonymous</term>
<term name="anonymous" form="short">anon</term>
<term name="and others">and others</term>
<term name="in press">in press</term>
<term name="online">online</term>
<term name="cited">cited</term>
<term name="internet">internet</term>
<term name="presented at">presented at the</term>
<term name="anthropology">anthropology</term>
<term name="astronomy">astronomy</term>
<term name="biology">biology</term>
<term name="botany">botany</term>
<term name="chemistry">chemistry</term>
<term name="engineering">engineering</term>
<term name="generic-base">generic base</term>
<term name="geography">geography</term>
<term name="geology">geology</term>
<term name="history">history</term>
<term name="humanities">humanities</term>
<term name="literature">literature</term>
<term name="math">math</term>
<term name="medicine">medicine</term>
<term name="philosophy">philosophy</term>
<term name="physics">physics</term>
<term name="psychology">psychology</term>
<term name="sociology">sociology</term>
<term name="science">science</term>
<term name="political_science">political science</term>
<term name="social_science">social science</term>
<term name="theology">theology</term>
<term name="zoology">zoology</term>
<term name="book">
<single>book</single>
<multiple>books</multiple>
</term>
<term name="chapter">
<single>chapter</single>
<multiple>chapters</multiple>
</term>
<term name="column">
<single>column</single>
<multiple>columns</multiple>
</term>
<term name="figure">
<single>figure</single>
<multiple>figures</multiple>
</term>
<term name="folio">
<single>folio</single>
<multiple>folios</multiple>
</term>
<term name="issue">
<single>number</single>
<multiple>numbers</multiple>
</term>
<term name="line">
<single>line</single>
<multiple>lines</multiple>
</term>
<term name="note">
<single>note</single>
<multiple>notes</multiple>
</term>
<term name="opus">
<single>opus</single>
<multiple>opera</multiple>
</term>
<term name="page">
<single>page</single>
<multiple>pages</multiple>
</term>
<term name="paragraph">
<single>paragraph</single>
<multiple>paragraph</multiple>
</term>
<term name="part">
<single>part</single>
<multiple>parts</multiple>
</term>
<term name="section">
<single>section</single>
<multiple>sections</multiple>
</term>
<term name="volume">
<single>volume</single>
<multiple>volumes</multiple>
</term>
<term name="edition">
<single>edition</single>
<multiple>editions</multiple>
</term>
<term name="verse">
<single>verse</single>
<multiple>verses</multiple>
</term>
<term name="sub verbo">
<single>sub verbo</single>
<multiple>s.vv</multiple>
</term>
<term name="book" form="short">bk</term>
<term name="chapter" form="short">chap</term>
<term name="column" form="short">col</term>
<term name="figure" form="short">fig</term>
<term name="folio" form="short">f</term>
<term name="issue" form="short">no</term>
<term name="opus" form="short">op</term>
<term name="page" form="short">
<single>p</single>
<multiple>pp</multiple>
</term>
<term name="paragraph" form="short">para</term>
<term name="part" form="short">pt</term>
<term name="section" form="short">sec</term>
<term name="sub verbo" form="short">
<single>s.v</single>
<multiple>s.vv</multiple>
</term>
<term name="verse" form="short">
<single>v</single>
<multiple>vv</multiple>
</term>
<term name="volume" form="short">
<single>vol</single>
<multiple>vols</multiple>
</term>
<term name="edition">edition</term>
<term name="edition" form="short">ed</term>
<term name="paragraph" form="symbol">
<single></single>
<multiple>¶¶</multiple>
</term>
<term name="section" form="symbol">
<single>§</single>
<multiple>§§</multiple>
</term>
<term name="author">
<single/>
<multiple/>
</term>
<term name="editor">
<single>editor</single>
<multiple>editors</multiple>
</term>
<term name="translator">
<single>translator</single>
<multiple>translators</multiple>
</term>
<term name="author" form="short">
<single/>
<multiple/>
</term>
<term name="editor" form="short">
<single>ed</single>
<multiple>eds</multiple>
</term>
<term name="translator" form="short">
<single>tran</single>
<multiple>trans</multiple>
</term>
<term name="editor" form="verb">edited by</term>
<term name="translator" form="verb">translated by</term>
<term name="recipient" form="verb">to</term>
<term name="interviewer" form="verb">interview by</term>
<term name="editor" form="verb-short">ed</term>
<term name="translator" form="verb-short">trans</term>
<term name="month-01">January</term>
<term name="month-02">February</term>
<term name="month-03">March</term>
<term name="month-04">April</term>
<term name="month-05">May</term>
<term name="month-06">June</term>
<term name="month-07">July</term>
<term name="month-08">August</term>
<term name="month-09">September</term>
<term name="month-10">October</term>
<term name="month-11">November</term>
<term name="month-12">December</term>
<term name="month-01" form="short">Jan</term>
<term name="month-02" form="short">Feb</term>
<term name="month-03" form="short">Mar</term>
<term name="month-04" form="short">Apr</term>
<term name="month-05" form="short">May</term>
<term name="month-06" form="short">Jun</term>
<term name="month-07" form="short">Jul</term>
<term name="month-08" form="short">Aug</term>
<term name="month-09" form="short">Sep</term>
<term name="month-10" form="short">Oct</term>
<term name="month-11" form="short">Nov</term>
<term name="month-12" form="short">Dec</term>
</locale>
</terms>
<?xml version="1.0" encoding="utf-8"?>
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="mn">
<style-options punctuation-in-quote="true"/>
<date form="text">
<date-part name="month" suffix=" "/>
<date-part name="day" suffix=", "/>
<date-part name="year"/>
</date>
<date form="numeric">
<date-part name="year"/>
<date-part name="month" form="numeric" prefix="-" range-delimiter="/"/>
<date-part name="day" prefix="-" range-delimiter="/"/>
</date>
<terms>
<term name="at">at</term>
<term name="in">in</term>
<term name="ibid">ibid</term>
<term name="accessed">accessed</term>
<term name="retrieved">retrieved</term>
<term name="from">from</term>
<term name="forthcoming">forthcoming</term>
<term name="reference">
<single>reference</single>
<multiple>references</multiple>
</term>
<term name="reference" form="short">
<single>ref.</single>
<multiple>refs.</multiple>
</term>
<term name="no date">n.d.</term>
<term name="and">and</term>
<term name="et-al">et al.</term>
<term name="circa">circa</term>
<term name="circa" form="short">c.</term>
<term name="interview">interview</term>
<term name="letter">letter</term>
<term name="anonymous">anonymous</term>
<term name="anonymous" form="short">anon</term>
<term name="and others">and others</term>
<term name="in press">in press</term>
<term name="online">online</term>
<term name="cited">cited</term>
<term name="internet">internet</term>
<term name="presented at">presented at the</term>
<term name="ad">AD</term>
<term name="bc">BC</term>
<!-- QUOTES -->
<term name="open-quote"></term>
<term name="close-quote"></term>
<term name="open-inner-quote"></term>
<term name="close-inner-quote"></term>
<!-- ORDINALS -->
<term name="ordinal-01">st</term>
<term name="ordinal-02">nd</term>
<term name="ordinal-03">rd</term>
<term name="ordinal-04">th</term>
<!-- LONG ORDINALS -->
<term name="long-ordinal-01">first</term>
<term name="long-ordinal-02">second</term>
<term name="long-ordinal-03">third</term>
<term name="long-ordinal-04">fourth</term>
<term name="long-ordinal-05">fifth</term>
<term name="long-ordinal-06">sixth</term>
<term name="long-ordinal-07">seventh</term>
<term name="long-ordinal-08">eighth</term>
<term name="long-ordinal-09">ninth</term>
<term name="long-ordinal-10">tenth</term>
<!-- CATEGORIES -->
<term name="anthropology">anthropology</term>
<term name="astronomy">astronomy</term>
<term name="biology">biology</term>
<term name="botany">botany</term>
<term name="chemistry">chemistry</term>
<term name="engineering">engineering</term>
<term name="generic-base">generic base</term>
<term name="geography">geography</term>
<term name="geology">geology</term>
<term name="history">history</term>
<term name="humanities">humanities</term>
<term name="linguistics">linguistics</term>
<term name="literature">literature</term>
<term name="math">math</term>
<term name="medicine">medicine</term>
<term name="philosophy">philosophy</term>
<term name="physics">physics</term>
<term name="psychology">psychology</term>
<term name="sociology">sociology</term>
<term name="science">science</term>
<term name="political_science">political science</term>
<term name="social_science">social science</term>
<term name="theology">theology</term>
<term name="zoology">zoology</term>
<!-- LONG LOCATOR FORMS -->
<term name="book">
<single>book</single>
<multiple>books</multiple>
</term>
<term name="chapter">
<single>chapter</single>
<multiple>chapters</multiple>
</term>
<term name="column">
<single>column</single>
<multiple>columns</multiple>
</term>
<term name="figure">
<single>figure</single>
<multiple>figures</multiple>
</term>
<term name="folio">
<single>folio</single>
<multiple>folios</multiple>
</term>
<term name="issue">
<single>number</single>
<multiple>numbers</multiple>
</term>
<term name="line">
<single>line</single>
<multiple>lines</multiple>
</term>
<term name="note">
<single>note</single>
<multiple>notes</multiple>
</term>
<term name="opus">
<single>opus</single>
<multiple>opera</multiple>
</term>
<term name="page">
<single>page</single>
<multiple>pages</multiple>
</term>
<term name="paragraph">
<single>paragraph</single>
<multiple>paragraph</multiple>
</term>
<term name="part">
<single>part</single>
<multiple>parts</multiple>
</term>
<term name="section">
<single>section</single>
<multiple>sections</multiple>
</term>
<term name="volume">
<single>volume</single>
<multiple>volumes</multiple>
</term>
<term name="edition">
<single>edition</single>
<multiple>editions</multiple>
</term>
<term name="verse">
<single>verse</single>
<multiple>verses</multiple>
</term>
<term name="sub verbo">
<single>sub verbo</single>
<multiple>s.vv</multiple>
</term>
<!-- SHORT LOCATOR FORMS -->
<term name="book" form="short">bk</term>
<term name="chapter" form="short">chap</term>
<term name="column" form="short">col</term>
<term name="figure" form="short">fig</term>
<term name="folio" form="short">f</term>
<term name="issue" form="short">no</term>
<term name="opus" form="short">op</term>
<term name="page" form="short">
<single>p</single>
<multiple>pp</multiple>
</term>
<term name="paragraph" form="short">para</term>
<term name="part" form="short">pt</term>
<term name="section" form="short">sec</term>
<term name="sub verbo" form="short">
<single>s.v</single>
<multiple>s.vv</multiple>
</term>
<term name="verse" form="short">
<single>v</single>
<multiple>vv</multiple>
</term>
<term name="volume" form="short">
<single>vol</single>
<multiple>vols</multiple>
</term>
<term name="edition" form="short">ed</term>
<!-- SYMBOL LOCATOR FORMS -->
<term name="paragraph" form="symbol">
<single></single>
<multiple>¶¶</multiple>
</term>
<term name="section" form="symbol">
<single>§</single>
<multiple>§§</multiple>
</term>
<!-- LONG ROLE FORMS -->
<term name="author">
<single/>
<multiple/>
</term>
<term name="editor">
<single>editor</single>
<multiple>editors</multiple>
</term>
<term name="editorial-director">
<single>editor</single>
<multiple>editors</multiple>
</term>
<term name="translator">
<single>translator</single>
<multiple>translators</multiple>
</term>
<term name="editortranslator">
<single>editor &amp; translator</single>
<multiple>editors &amp; translators</multiple>
</term>
<!-- SHORT ROLE FORMS -->
<term name="author" form="short">
<single/>
<multiple/>
</term>
<term name="editor" form="short">
<single>ed</single>
<multiple>eds</multiple>
</term>
<term name="editorial-director" form="short">
<single>ed.</single>
<multiple>eds.</multiple>
</term>
<term name="translator" form="short">
<single>tran</single>
<multiple>trans</multiple>
</term>
<term name="editortranslator" form="short">
<single>ed. &amp; tran.</single>
<multiple>eds. &amp; trans.</multiple>
</term>
<!-- VERB ROLE FORMS -->
<term name="editor" form="verb">edited by</term>
<term name="editorial-director" form="verb">edited by</term>
<term name="translator" form="verb">translated by</term>
<term name="editortranslator" form="verb">edited &amp; translated by</term>
<term name="recipient" form="verb">to</term>
<term name="interviewer" form="verb">interview by</term>
<!-- SHORT VERB ROLE FORMS -->
<term name="editor" form="verb-short">ed</term>
<term name="editorial-director" form="verb-short">ed.</term>
<term name="translator" form="verb-short">trans</term>
<term name="editortranslator" form="verb-short">ed. &amp; trans. by</term>
<!-- LONG MONTH FORMS -->
<term name="month-01">January</term>
<term name="month-02">February</term>
<term name="month-03">March</term>
<term name="month-04">April</term>
<term name="month-05">May</term>
<term name="month-06">June</term>
<term name="month-07">July</term>
<term name="month-08">August</term>
<term name="month-09">September</term>
<term name="month-10">October</term>
<term name="month-11">November</term>
<term name="month-12">December</term>
<!-- SHORT MONTH FORMS -->
<term name="month-01" form="short">Jan</term>
<term name="month-02" form="short">Feb</term>
<term name="month-03" form="short">Mar</term>
<term name="month-04" form="short">Apr</term>
<term name="month-05" form="short">May</term>
<term name="month-06" form="short">Jun</term>
<term name="month-07" form="short">Jul</term>
<term name="month-08" form="short">Aug</term>
<term name="month-09" form="short">Sep</term>
<term name="month-10" form="short">Oct</term>
<term name="month-11" form="short">Nov</term>
<term name="month-12" form="short">Dec</term>
<!-- SEASONS -->
<term name="season-01">Spring</term>
<term name="season-02">Summer</term>
<term name="season-03">Autumn</term>
<term name="season-04">Winter</term>
</terms>
</locale>

View file

@ -1,211 +1,299 @@
<?xml version="1.0" encoding="UTF-8"?>
<terms xmlns="http://purl.org/net/xbiblio/csl">
<locale xml:lang="nb">
<term name="at"></term>
<term name="in">i</term>
<term name="ibid">ibid</term>
<term name="accessed">aksessert</term>
<term name="retrieved">hentet</term>
<term name="from">fra</term>
<term name="forthcoming">kommende</term>
<term name="references">referanser</term>
<term name="reference item">
<single>source</single>
<multiple>sources</multiple>
</term>
<term name="no date">udatert</term>
<term name="and">og</term>
<term name="et-al">mfl</term>
<term name="interview">intervju</term>
<term name="letter">brev</term>
<term name="anonymous">anonym</term>
<term name="anonymous" form="short">anon</term>
<term name="and others">med flere</term>
<term name="in press">i trykk</term>
<term name="online">online</term>
<term name="cited">cited</term>
<term name="internet">Internett</term>
<term name="presented at">presentert på</term>
<term name="anthropology">antropologi</term>
<term name="astronomy">astronomi</term>
<term name="biology">biologi</term>
<term name="botany">botanikk</term>
<term name="chemistry">kjemi</term>
<term name="engineering">ingeniørvitenskap</term>
<term name="generic-base">generic base</term>
<term name="geography">geografi</term>
<term name="geology">geologi</term>
<term name="history">historie</term>
<term name="humanities">humanistiske fag</term>
<term name="literature">litteratur</term>
<term name="math">matte</term>
<term name="medicine">medisin</term>
<term name="philosophy">filosofi</term>
<term name="physics">fysikk</term>
<term name="psychology">fysiologi</term>
<term name="sociology">sosiologi</term>
<term name="science">naturvitenskap</term>
<term name="political_science">political science</term>
<term name="social_science">sosialvitenskap</term>
<term name="theology">teologi</term>
<term name="zoology">zoologi</term>
<term name="book">
<single>bok</single>
<multiple>bøker</multiple>
</term>
<term name="chapter">
<single>kapittel</single>
<multiple>kapitler</multiple>
</term>
<term name="column">
<single>kolonne</single>
<multiple>kolenner</multiple>
</term>
<term name="figure">
<single>figur</single>
<multiple>figurer</multiple>
</term>
<term name="folio">
<single>folio</single>
<multiple>folioer</multiple>
</term>
<term name="issue">
<single>nummer</single>
<multiple>numre</multiple>
</term>
<term name="line">
<single>linje</single>
<multiple>linjer</multiple>
</term>
<term name="note">
<single>note</single>
<multiple>noter</multiple>
</term>
<term name="opus">
<single>opus</single>
<multiple>opus</multiple>
</term>
<term name="page">
<single>side</single>
<multiple>sider</multiple>
</term>
<term name="paragraph">
<single>avsnitt</single>
<multiple>avsnitt</multiple>
</term>
<term name="part">
<single>del</single>
<multiple>deler</multiple>
</term>
<term name="section">
<single>seksjon</single>
<multiple>seksjoner</multiple>
</term>
<term name="volume">
<single>bind</single>
<multiple>bind</multiple>
</term>
<term name="edition">
<single>utgave</single>
<multiple>utgaver</multiple>
</term>
<term name="verse">
<single>vers</single>
<multiple>vers</multiple>
</term>
<term name="sub verbo">
<single>sub verbo</single>
<multiple>s.vv</multiple>
</term>
<term name="book" form="short">b</term>
<term name="chapter" form="short">kap</term>
<term name="column" form="short">kol</term>
<term name="figure" form="short">fig</term>
<term name="folio" form="short">fol</term>
<term name="issue" form="short">nr</term>
<term name="opus" form="short">op</term>
<term name="page" form="short">
<single>s</single>
<multiple>s</multiple>
</term>
<term name="paragraph" form="short">avsn</term>
<term name="part" form="short">d</term>
<term name="section" form="short">sek</term>
<term name="sub verbo" form="short">
<single>s.v</single>
<multiple>s.vv</multiple>
</term>
<term name="verse" form="short">
<single>v</single>
<multiple>v</multiple>
</term>
<term name="volume" form="short">
<single>bd</single>
<multiple>bd</multiple>
</term>
<term name="edition">edition</term>
<term name="edition" form="short">utg</term>
<term name="paragraph" form="symbol">
<single></single>
<multiple>¶¶</multiple>
</term>
<term name="section" form="symbol">
<single>§</single>
<multiple>§§</multiple>
</term>
<term name="author">
<single/>
<multiple/>
</term>
<term name="editor">
<single>redaktør</single>
<multiple>redaktører</multiple>
</term>
<term name="translator">
<single>oversetter</single>
<multiple>oversettere</multiple>
</term>
<term name="author" form="short">
<single/>
<multiple/>
</term>
<term name="editor" form="short">
<single>red</single>
<multiple>red</multiple>
</term>
<term name="translator" form="short">
<single>overs</single>
<multiple>overs</multiple>
</term>
<term name="editor" form="verb">redigert av</term>
<term name="translator" form="verb">oversatt av</term>
<term name="recipient" form="verb">mottatt av</term>
<term name="interviewer" form="verb">intervjuet av</term>
<term name="editor" form="verb-short">utg</term>
<term name="translator" form="verb-short">overs</term>
<term name="month-01">Januar</term>
<term name="month-02">Februar</term>
<term name="month-03">Mars</term>
<term name="month-04">April</term>
<term name="month-05">Mai</term>
<term name="month-06">Juni</term>
<term name="month-07">Juli</term>
<term name="month-08">August</term>
<term name="month-09">September</term>
<term name="month-10">Oktober</term>
<term name="month-11">November</term>
<term name="month-12">Desember</term>
<term name="month-01" form="short">Jan</term>
<term name="month-02" form="short">Feb</term>
<term name="month-03" form="short">Mar</term>
<term name="month-04" form="short">Apr</term>
<term name="month-05" form="short">Mai</term>
<term name="month-06" form="short">Jun</term>
<term name="month-07" form="short">Jul</term>
<term name="month-08" form="short">Aug</term>
<term name="month-09" form="short">Sep</term>
<term name="month-10" form="short">Okt</term>
<term name="month-11" form="short">Nov</term>
<term name="month-12" form="short">Des</term>
</locale>
</terms>
<?xml version="1.0" encoding="utf-8"?>
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="nb">
<style-options punctuation-in-quote="true"/>
<date form="text">
<date-part name="month" suffix=" "/>
<date-part name="day" suffix=", "/>
<date-part name="year"/>
</date>
<date form="numeric">
<date-part name="year"/>
<date-part name="month" form="numeric" prefix="-" range-delimiter="/"/>
<date-part name="day" prefix="-" range-delimiter="/"/>
</date>
<terms>
<term name="at"></term>
<term name="in">i</term>
<term name="ibid">ibid</term>
<term name="accessed">aksessert</term>
<term name="retrieved">hentet</term>
<term name="from">fra</term>
<term name="forthcoming">kommende</term>
<term name="reference">
<single>reference</single>
<multiple>references</multiple>
</term>
<term name="reference" form="short">
<single>ref.</single>
<multiple>refs.</multiple>
</term>
<term name="no date">udatert</term>
<term name="and">og</term>
<term name="et-al">mfl</term>
<term name="circa">circa</term>
<term name="circa" form="short">c.</term>
<term name="interview">intervju</term>
<term name="letter">brev</term>
<term name="anonymous">anonym</term>
<term name="anonymous" form="short">anon</term>
<term name="and others">med flere</term>
<term name="in press">i trykk</term>
<term name="online">online</term>
<term name="cited">cited</term>
<term name="internet">Internett</term>
<term name="presented at">presentert på</term>
<term name="ad">AD</term>
<term name="bc">BC</term>
<!-- QUOTES -->
<term name="open-quote"></term>
<term name="close-quote"></term>
<term name="open-inner-quote"></term>
<term name="close-inner-quote"></term>
<!-- ORDINALS -->
<term name="ordinal-01">st</term>
<term name="ordinal-02">nd</term>
<term name="ordinal-03">rd</term>
<term name="ordinal-04">th</term>
<!-- LONG ORDINALS -->
<term name="long-ordinal-01">first</term>
<term name="long-ordinal-02">second</term>
<term name="long-ordinal-03">third</term>
<term name="long-ordinal-04">fourth</term>
<term name="long-ordinal-05">fifth</term>
<term name="long-ordinal-06">sixth</term>
<term name="long-ordinal-07">seventh</term>
<term name="long-ordinal-08">eighth</term>
<term name="long-ordinal-09">ninth</term>
<term name="long-ordinal-10">tenth</term>
<!-- CATEGORIES -->
<term name="anthropology">antropologi</term>
<term name="astronomy">astronomi</term>
<term name="biology">biologi</term>
<term name="botany">botanikk</term>
<term name="chemistry">kjemi</term>
<term name="engineering">ingeniørvitenskap</term>
<term name="generic-base">generic base</term>
<term name="geography">geografi</term>
<term name="geology">geologi</term>
<term name="history">historie</term>
<term name="humanities">humanistiske fag</term>
<term name="linguistics">linguistics</term>
<term name="literature">litteratur</term>
<term name="math">matte</term>
<term name="medicine">medisin</term>
<term name="philosophy">filosofi</term>
<term name="physics">fysikk</term>
<term name="psychology">fysiologi</term>
<term name="sociology">sosiologi</term>
<term name="science">naturvitenskap</term>
<term name="political_science">political science</term>
<term name="social_science">sosialvitenskap</term>
<term name="theology">teologi</term>
<term name="zoology">zoologi</term>
<!-- LONG LOCATOR FORMS -->
<term name="book">
<single>bok</single>
<multiple>bøker</multiple>
</term>
<term name="chapter">
<single>kapittel</single>
<multiple>kapitler</multiple>
</term>
<term name="column">
<single>kolonne</single>
<multiple>kolenner</multiple>
</term>
<term name="figure">
<single>figur</single>
<multiple>figurer</multiple>
</term>
<term name="folio">
<single>folio</single>
<multiple>folioer</multiple>
</term>
<term name="issue">
<single>nummer</single>
<multiple>numre</multiple>
</term>
<term name="line">
<single>linje</single>
<multiple>linjer</multiple>
</term>
<term name="note">
<single>note</single>
<multiple>noter</multiple>
</term>
<term name="opus">
<single>opus</single>
<multiple>opus</multiple>
</term>
<term name="page">
<single>side</single>
<multiple>sider</multiple>
</term>
<term name="paragraph">
<single>avsnitt</single>
<multiple>avsnitt</multiple>
</term>
<term name="part">
<single>del</single>
<multiple>deler</multiple>
</term>
<term name="section">
<single>seksjon</single>
<multiple>seksjoner</multiple>
</term>
<term name="volume">
<single>bind</single>
<multiple>bind</multiple>
</term>
<term name="edition">
<single>utgave</single>
<multiple>utgaver</multiple>
</term>
<term name="verse">
<single>vers</single>
<multiple>vers</multiple>
</term>
<term name="sub verbo">
<single>sub verbo</single>
<multiple>s.vv</multiple>
</term>
<!-- SHORT LOCATOR FORMS -->
<term name="book" form="short">b</term>
<term name="chapter" form="short">kap</term>
<term name="column" form="short">kol</term>
<term name="figure" form="short">fig</term>
<term name="folio" form="short">fol</term>
<term name="issue" form="short">nr</term>
<term name="opus" form="short">op</term>
<term name="page" form="short">
<single>s</single>
<multiple>s</multiple>
</term>
<term name="paragraph" form="short">avsn</term>
<term name="part" form="short">d</term>
<term name="section" form="short">sek</term>
<term name="sub verbo" form="short">
<single>s.v</single>
<multiple>s.vv</multiple>
</term>
<term name="verse" form="short">
<single>v</single>
<multiple>v</multiple>
</term>
<term name="volume" form="short">
<single>bd</single>
<multiple>bd</multiple>
</term>
<term name="edition" form="short">utg</term>
<!-- SYMBOL LOCATOR FORMS -->
<term name="paragraph" form="symbol">
<single></single>
<multiple>¶¶</multiple>
</term>
<term name="section" form="symbol">
<single>§</single>
<multiple>§§</multiple>
</term>
<!-- LONG ROLE FORMS -->
<term name="author">
<single/>
<multiple/>
</term>
<term name="editor">
<single>redaktør</single>
<multiple>redaktører</multiple>
</term>
<term name="editorial-director">
<single>editor</single>
<multiple>editors</multiple>
</term>
<term name="translator">
<single>oversetter</single>
<multiple>oversettere</multiple>
</term>
<term name="editortranslator">
<single>editor &amp; translator</single>
<multiple>editors &amp; translators</multiple>
</term>
<!-- SHORT ROLE FORMS -->
<term name="author" form="short">
<single/>
<multiple/>
</term>
<term name="editor" form="short">
<single>red</single>
<multiple>red</multiple>
</term>
<term name="editorial-director" form="short">
<single>ed.</single>
<multiple>eds.</multiple>
</term>
<term name="translator" form="short">
<single>overs</single>
<multiple>overs</multiple>
</term>
<term name="editortranslator" form="short">
<single>ed. &amp; tran.</single>
<multiple>eds. &amp; trans.</multiple>
</term>
<!-- VERB ROLE FORMS -->
<term name="editor" form="verb">redigert av</term>
<term name="editorial-director" form="verb">edited by</term>
<term name="translator" form="verb">oversatt av</term>
<term name="editortranslator" form="verb">edited &amp; translated by</term>
<term name="recipient" form="verb">mottatt av</term>
<term name="interviewer" form="verb">intervjuet av</term>
<!-- SHORT VERB ROLE FORMS -->
<term name="editor" form="verb-short">utg</term>
<term name="editorial-director" form="verb-short">ed.</term>
<term name="translator" form="verb-short">overs</term>
<term name="editortranslator" form="verb-short">ed. &amp; trans. by</term>
<!-- LONG MONTH FORMS -->
<term name="month-01">Januar</term>
<term name="month-02">Februar</term>
<term name="month-03">Mars</term>
<term name="month-04">April</term>
<term name="month-05">Mai</term>
<term name="month-06">Juni</term>
<term name="month-07">Juli</term>
<term name="month-08">August</term>
<term name="month-09">September</term>
<term name="month-10">Oktober</term>
<term name="month-11">November</term>
<term name="month-12">Desember</term>
<!-- SHORT MONTH FORMS -->
<term name="month-01" form="short">Jan</term>
<term name="month-02" form="short">Feb</term>
<term name="month-03" form="short">Mar</term>
<term name="month-04" form="short">Apr</term>
<term name="month-05" form="short">Mai</term>
<term name="month-06" form="short">Jun</term>
<term name="month-07" form="short">Jul</term>
<term name="month-08" form="short">Aug</term>
<term name="month-09" form="short">Sep</term>
<term name="month-10" form="short">Okt</term>
<term name="month-11" form="short">Nov</term>
<term name="month-12" form="short">Des</term>
<!-- SEASONS -->
<term name="season-01">Spring</term>
<term name="season-02">Summer</term>
<term name="season-03">Autumn</term>
<term name="season-04">Winter</term>
</terms>
</locale>

View file

@ -1,211 +1,299 @@
<?xml version="1.0" encoding="UTF-8"?>
<terms xmlns="http://purl.org/net/xbiblio/csl">
<locale xml:lang="nl">
<term name="at">bij</term>
<term name="in">in</term>
<term name="ibid">ibid</term>
<term name="accessed">bezocht</term>
<term name="retrieved">verkregen</term>
<term name="from">van</term>
<term name="forthcoming">in voorbereiding</term>
<term name="references">referenties</term>
<term name="reference item">
<single>referentie</single>
<multiple>referenties</multiple>
</term>
<term name="no date">geen datum</term>
<term name="and">en</term>
<term name="et-al">e.a.</term>
<term name="interview">interview</term>
<term name="letter">brief</term>
<term name="anonymous">anoniem</term>
<term name="anonymous" form="short">anon</term>
<term name="and others">en anderen</term>
<term name="in press">in druk</term>
<term name="online">online</term>
<term name="cited">geciteerd</term>
<term name="internet">internet</term>
<term name="presented at">gepresenteerd bij</term>
<term name="anthropology">anthropologie</term>
<term name="astronomy">astronomie</term>
<term name="biology">biologie</term>
<term name="botany">botanie</term>
<term name="chemistry">scheikunde</term>
<term name="engineering">techniek</term>
<term name="generic-base">generiek</term>
<term name="geography">geografie</term>
<term name="geology">geologie</term>
<term name="history">geschiedenis</term>
<term name="humanities">geesteswetenschappen</term>
<term name="literature">literatuur</term>
<term name="math">wiskunde</term>
<term name="medicine">medicijnen</term>
<term name="philosophy">filosofie</term>
<term name="physics">natuurkunde</term>
<term name="psychology">psychologie</term>
<term name="sociology">sociologie</term>
<term name="science">wetenschap</term>
<term name="political_science">politieke wetenschappen</term>
<term name="social_science">sociale wetenschappen</term>
<term name="theology">theologie</term>
<term name="zoology">zoologie</term>
<term name="book">
<single>boek</single>
<multiple>boeken</multiple>
</term>
<term name="chapter">
<single>hoofdstuk</single>
<multiple>hoofdstukken</multiple>
</term>
<term name="column">
<single>column</single>
<multiple>columns</multiple>
</term>
<term name="figure">
<single>figuur</single>
<multiple>figuren</multiple>
</term>
<term name="folio">
<single>folio</single>
<multiple>folio's</multiple>
</term>
<term name="issue">
<single>nummer</single>
<multiple>nummers</multiple>
</term>
<term name="line">
<single>regel</single>
<multiple>regels</multiple>
</term>
<term name="note">
<single>aantekening</single>
<multiple>aantekeningen</multiple>
</term>
<term name="opus">
<single>opus</single>
<multiple>opera</multiple>
</term>
<term name="page">
<single>pagina</single>
<multiple>pagina's</multiple>
</term>
<term name="paragraph">
<single>paragraaf</single>
<multiple>paragrafen</multiple>
</term>
<term name="part">
<single>deel</single>
<multiple>delen</multiple>
</term>
<term name="section">
<single>sectie</single>
<multiple>secties</multiple>
</term>
<term name="volume">
<single>volume</single>
<multiple>volumes</multiple>
</term>
<term name="edition">
<single>editie</single>
<multiple>edities</multiple>
</term>
<term name="verse">
<single>vers</single>
<multiple>versen</multiple>
</term>
<term name="sub verbo">
<single>sub verbo</single>
<multiple>sub verbis</multiple>
</term>
<term name="book" form="short">bk</term>
<term name="chapter" form="short">hfdst</term>
<term name="column" form="short">col</term>
<term name="figure" form="short">fig</term>
<term name="folio" form="short">f</term>
<term name="issue" form="short">nr</term>
<term name="opus" form="short">op</term>
<term name="page" form="short">
<single>p</single>
<multiple>pp</multiple>
</term>
<term name="paragraph" form="short">par</term>
<term name="part" form="short">deel</term>
<term name="section" form="short">sec</term>
<term name="sub verbo" form="short">
<single>s.v</single>
<multiple>s.vv</multiple>
</term>
<term name="verse" form="short">
<single>v</single>
<multiple>vv</multiple>
</term>
<term name="volume" form="short">
<single>vol</single>
<multiple>vols</multiple>
</term>
<term name="edition">edition</term>
<term name="edition" form="short">ed</term>
<term name="paragraph" form="symbol">
<single></single>
<multiple>¶¶</multiple>
</term>
<term name="section" form="symbol">
<single>§</single>
<multiple>§§</multiple>
</term>
<term name="author">
<single/>
<multiple/>
</term>
<term name="editor">
<single>redacteur</single>
<multiple>redacteuren</multiple>
</term>
<term name="translator">
<single>vertaler</single>
<multiple>vertalers</multiple>
</term>
<term name="author" form="short">
<single/>
<multiple/>
</term>
<term name="editor" form="short">
<single>red</single>
<multiple>red</multiple>
</term>
<term name="translator" form="short">
<single>vert</single>
<multiple>vert</multiple>
</term>
<term name="editor" form="verb">bewerkt door</term>
<term name="translator" form="verb">vertaald door</term>
<term name="recipient" form="verb">ontvangen door</term>
<term name="interviewer" form="verb">geinterviewd door</term>
<term name="editor" form="verb-short">red</term>
<term name="translator" form="verb-short">vert</term>
<term name="month-01">januari</term>
<term name="month-02">februari</term>
<term name="month-03">maart</term>
<term name="month-04">april</term>
<term name="month-05">mei</term>
<term name="month-06">juni</term>
<term name="month-07">juli</term>
<term name="month-08">augustus</term>
<term name="month-09">september</term>
<term name="month-10">oktober</term>
<term name="month-11">november</term>
<term name="month-12">december</term>
<term name="month-01" form="short">jan</term>
<term name="month-02" form="short">feb</term>
<term name="month-03" form="short">mrt</term>
<term name="month-04" form="short">apr</term>
<term name="month-05" form="short">mei</term>
<term name="month-06" form="short">jun</term>
<term name="month-07" form="short">jul</term>
<term name="month-08" form="short">aug</term>
<term name="month-09" form="short">sep</term>
<term name="month-10" form="short">okt</term>
<term name="month-11" form="short">nov</term>
<term name="month-12" form="short">dec</term>
</locale>
</terms>
<?xml version="1.0" encoding="utf-8"?>
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="nl">
<style-options punctuation-in-quote="true"/>
<date form="text">
<date-part name="month" suffix=" "/>
<date-part name="day" suffix=", "/>
<date-part name="year"/>
</date>
<date form="numeric">
<date-part name="year"/>
<date-part name="month" form="numeric" prefix="-" range-delimiter="/"/>
<date-part name="day" prefix="-" range-delimiter="/"/>
</date>
<terms>
<term name="at">bij</term>
<term name="in">in</term>
<term name="ibid">ibid</term>
<term name="accessed">bezocht</term>
<term name="retrieved">verkregen</term>
<term name="from">van</term>
<term name="forthcoming">in voorbereiding</term>
<term name="reference">
<single>reference</single>
<multiple>references</multiple>
</term>
<term name="reference" form="short">
<single>ref.</single>
<multiple>refs.</multiple>
</term>
<term name="no date">geen datum</term>
<term name="and">en</term>
<term name="et-al">e.a.</term>
<term name="circa">circa</term>
<term name="circa" form="short">c.</term>
<term name="interview">interview</term>
<term name="letter">brief</term>
<term name="anonymous">anoniem</term>
<term name="anonymous" form="short">anon</term>
<term name="and others">en anderen</term>
<term name="in press">in druk</term>
<term name="online">online</term>
<term name="cited">geciteerd</term>
<term name="internet">internet</term>
<term name="presented at">gepresenteerd bij</term>
<term name="ad">AD</term>
<term name="bc">BC</term>
<!-- QUOTES -->
<term name="open-quote"></term>
<term name="close-quote"></term>
<term name="open-inner-quote"></term>
<term name="close-inner-quote"></term>
<!-- ORDINALS -->
<term name="ordinal-01">st</term>
<term name="ordinal-02">nd</term>
<term name="ordinal-03">rd</term>
<term name="ordinal-04">th</term>
<!-- LONG ORDINALS -->
<term name="long-ordinal-01">first</term>
<term name="long-ordinal-02">second</term>
<term name="long-ordinal-03">third</term>
<term name="long-ordinal-04">fourth</term>
<term name="long-ordinal-05">fifth</term>
<term name="long-ordinal-06">sixth</term>
<term name="long-ordinal-07">seventh</term>
<term name="long-ordinal-08">eighth</term>
<term name="long-ordinal-09">ninth</term>
<term name="long-ordinal-10">tenth</term>
<!-- CATEGORIES -->
<term name="anthropology">anthropologie</term>
<term name="astronomy">astronomie</term>
<term name="biology">biologie</term>
<term name="botany">botanie</term>
<term name="chemistry">scheikunde</term>
<term name="engineering">techniek</term>
<term name="generic-base">generiek</term>
<term name="geography">geografie</term>
<term name="geology">geologie</term>
<term name="history">geschiedenis</term>
<term name="humanities">geesteswetenschappen</term>
<term name="linguistics">linguistics</term>
<term name="literature">literatuur</term>
<term name="math">wiskunde</term>
<term name="medicine">medicijnen</term>
<term name="philosophy">filosofie</term>
<term name="physics">natuurkunde</term>
<term name="psychology">psychologie</term>
<term name="sociology">sociologie</term>
<term name="science">wetenschap</term>
<term name="political_science">politieke wetenschappen</term>
<term name="social_science">sociale wetenschappen</term>
<term name="theology">theologie</term>
<term name="zoology">zoologie</term>
<!-- LONG LOCATOR FORMS -->
<term name="book">
<single>boek</single>
<multiple>boeken</multiple>
</term>
<term name="chapter">
<single>hoofdstuk</single>
<multiple>hoofdstukken</multiple>
</term>
<term name="column">
<single>column</single>
<multiple>columns</multiple>
</term>
<term name="figure">
<single>figuur</single>
<multiple>figuren</multiple>
</term>
<term name="folio">
<single>folio</single>
<multiple>folio's</multiple>
</term>
<term name="issue">
<single>nummer</single>
<multiple>nummers</multiple>
</term>
<term name="line">
<single>regel</single>
<multiple>regels</multiple>
</term>
<term name="note">
<single>aantekening</single>
<multiple>aantekeningen</multiple>
</term>
<term name="opus">
<single>opus</single>
<multiple>opera</multiple>
</term>
<term name="page">
<single>pagina</single>
<multiple>pagina's</multiple>
</term>
<term name="paragraph">
<single>paragraaf</single>
<multiple>paragrafen</multiple>
</term>
<term name="part">
<single>deel</single>
<multiple>delen</multiple>
</term>
<term name="section">
<single>sectie</single>
<multiple>secties</multiple>
</term>
<term name="volume">
<single>volume</single>
<multiple>volumes</multiple>
</term>
<term name="edition">
<single>editie</single>
<multiple>edities</multiple>
</term>
<term name="verse">
<single>vers</single>
<multiple>versen</multiple>
</term>
<term name="sub verbo">
<single>sub verbo</single>
<multiple>s.vv</multiple>
</term>
<!-- SHORT LOCATOR FORMS -->
<term name="book" form="short">bk</term>
<term name="chapter" form="short">hfdst</term>
<term name="column" form="short">col</term>
<term name="figure" form="short">fig</term>
<term name="folio" form="short">f</term>
<term name="issue" form="short">nr</term>
<term name="opus" form="short">op</term>
<term name="page" form="short">
<single>p</single>
<multiple>pp</multiple>
</term>
<term name="paragraph" form="short">par</term>
<term name="part" form="short">deel</term>
<term name="section" form="short">sec</term>
<term name="sub verbo" form="short">
<single>s.v</single>
<multiple>s.vv</multiple>
</term>
<term name="verse" form="short">
<single>v</single>
<multiple>vv</multiple>
</term>
<term name="volume" form="short">
<single>vol</single>
<multiple>vols</multiple>
</term>
<term name="edition" form="short">ed</term>
<!-- SYMBOL LOCATOR FORMS -->
<term name="paragraph" form="symbol">
<single></single>
<multiple>¶¶</multiple>
</term>
<term name="section" form="symbol">
<single>§</single>
<multiple>§§</multiple>
</term>
<!-- LONG ROLE FORMS -->
<term name="author">
<single/>
<multiple/>
</term>
<term name="editor">
<single>redacteur</single>
<multiple>redacteuren</multiple>
</term>
<term name="editorial-director">
<single>editor</single>
<multiple>editors</multiple>
</term>
<term name="translator">
<single>vertaler</single>
<multiple>vertalers</multiple>
</term>
<term name="editortranslator">
<single>editor &amp; translator</single>
<multiple>editors &amp; translators</multiple>
</term>
<!-- SHORT ROLE FORMS -->
<term name="author" form="short">
<single/>
<multiple/>
</term>
<term name="editor" form="short">
<single>red</single>
<multiple>red</multiple>
</term>
<term name="editorial-director" form="short">
<single>ed.</single>
<multiple>eds.</multiple>
</term>
<term name="translator" form="short">
<single>vert</single>
<multiple>vert</multiple>
</term>
<term name="editortranslator" form="short">
<single>ed. &amp; tran.</single>
<multiple>eds. &amp; trans.</multiple>
</term>
<!-- VERB ROLE FORMS -->
<term name="editor" form="verb">bewerkt door</term>
<term name="editorial-director" form="verb">edited by</term>
<term name="translator" form="verb">vertaald door</term>
<term name="editortranslator" form="verb">edited &amp; translated by</term>
<term name="recipient" form="verb">ontvangen door</term>
<term name="interviewer" form="verb">geinterviewd door</term>
<!-- SHORT VERB ROLE FORMS -->
<term name="editor" form="verb-short">red</term>
<term name="editorial-director" form="verb-short">ed.</term>
<term name="translator" form="verb-short">vert</term>
<term name="editortranslator" form="verb-short">ed. &amp; trans. by</term>
<!-- LONG MONTH FORMS -->
<term name="month-01">januari</term>
<term name="month-02">februari</term>
<term name="month-03">maart</term>
<term name="month-04">april</term>
<term name="month-05">mei</term>
<term name="month-06">juni</term>
<term name="month-07">juli</term>
<term name="month-08">augustus</term>
<term name="month-09">september</term>
<term name="month-10">oktober</term>
<term name="month-11">november</term>
<term name="month-12">december</term>
<!-- SHORT MONTH FORMS -->
<term name="month-01" form="short">jan</term>
<term name="month-02" form="short">feb</term>
<term name="month-03" form="short">mrt</term>
<term name="month-04" form="short">apr</term>
<term name="month-05" form="short">mei</term>
<term name="month-06" form="short">jun</term>
<term name="month-07" form="short">jul</term>
<term name="month-08" form="short">aug</term>
<term name="month-09" form="short">sep</term>
<term name="month-10" form="short">okt</term>
<term name="month-11" form="short">nov</term>
<term name="month-12" form="short">dec</term>
<!-- SEASONS -->
<term name="season-01">Spring</term>
<term name="season-02">Summer</term>
<term name="season-03">Autumn</term>
<term name="season-04">Winter</term>
</terms>
</locale>

View file

@ -1,211 +1,299 @@
<?xml version="1.0" encoding="UTF-8"?>
<terms xmlns="http://purl.org/net/xbiblio/csl">
<locale xml:lang="pl">
<term name="at">at</term>
<term name="in">w</term>
<term name="ibid">ibid</term>
<term name="accessed">udostępniono</term>
<term name="retrieved">pobrano</term>
<term name="from">z</term>
<term name="forthcoming">w druku</term>
<term name="references">Referencje</term>
<term name="reference item">
<single>source</single>
<multiple>sources</multiple>
</term>
<term name="no date">bez daty</term>
<term name="and">i</term>
<term name="et-al">et al.</term>
<term name="interview">wywiad</term>
<term name="letter">list</term>
<term name="anonymous">anonim</term>
<term name="anonymous" form="short">anonim</term>
<term name="and others">i inni</term>
<term name="in press">w druku</term>
<term name="online">online</term>
<term name="cited">cytowane</term>
<term name="internet">internet</term>
<term name="presented at">zaprezentowano</term>
<term name="anthropology">antropologia</term>
<term name="astronomy">astronomia</term>
<term name="biology">biologia</term>
<term name="botany">botanika</term>
<term name="chemistry">chemia</term>
<term name="engineering">inżynieria</term>
<term name="generic-base">generic base</term>
<term name="geography">geografia</term>
<term name="geology">geologia</term>
<term name="history">historia</term>
<term name="humanities">humanistyka</term>
<term name="literature">literatura</term>
<term name="math">matematyka</term>
<term name="medicine">medycyna</term>
<term name="philosophy">filozofia</term>
<term name="physics">fizyka</term>
<term name="psychology">psychologia</term>
<term name="sociology">socjologia</term>
<term name="science">nauki ścisłe</term>
<term name="political_science">nauki polityczne</term>
<term name="social_science">nauki społeczne</term>
<term name="theology">teologia</term>
<term name="zoology">zoologia</term>
<term name="book">
<single>książka</single>
<multiple>książki</multiple>
</term>
<term name="chapter">
<single>rozdział</single>
<multiple>rozdziały</multiple>
</term>
<term name="column">
<single>kolumna</single>
<multiple>kolumny</multiple>
</term>
<term name="figure">
<single>rycina</single>
<multiple>ryciny</multiple>
</term>
<term name="folio">
<single>folio</single>
<multiple>folios</multiple>
</term>
<term name="issue">
<single>numer</single>
<multiple>numery</multiple>
</term>
<term name="line">
<single>wers</single>
<multiple>wersy</multiple>
</term>
<term name="note">
<single>notatka</single>
<multiple>notatki</multiple>
</term>
<term name="opus">
<single>opus</single>
<multiple>opera</multiple>
</term>
<term name="page">
<single>strona</single>
<multiple>strony</multiple>
</term>
<term name="paragraph">
<single>akapit</single>
<multiple>akapity</multiple>
</term>
<term name="part">
<single>część</single>
<multiple>części</multiple>
</term>
<term name="section">
<single>sekcja</single>
<multiple>sekcja</multiple>
</term>
<term name="volume">
<single>tom</single>
<multiple>tomy</multiple>
</term>
<term name="edition">
<single>wydanie</single>
<multiple>wydania</multiple>
</term>
<term name="verse">
<single>wers</single>
<multiple>wersy</multiple>
</term>
<term name="sub verbo">
<single>sub verbo</single>
<multiple>s.vv</multiple>
</term>
<term name="book" form="short">książka</term>
<term name="chapter" form="short">rozdz</term>
<term name="column" form="short">kolumna</term>
<term name="figure" form="short">ryc</term>
<term name="folio" form="short">folio</term>
<term name="issue" form="short">nr</term>
<term name="opus" form="short">op</term>
<term name="page" form="short">
<single>s</single>
<multiple>s</multiple>
</term>
<term name="paragraph" form="short">akapit</term>
<term name="part" form="short">część</term>
<term name="section" form="short">sekcja</term>
<term name="sub verbo" form="short">
<single>s.v</single>
<multiple>s.vv</multiple>
</term>
<term name="verse" form="short">
<single>wers</single>
<multiple>wersy</multiple>
</term>
<term name="volume" form="short">
<single>t</single>
<multiple>t</multiple>
</term>
<term name="edition">edition</term>
<term name="edition" form="short">wyd</term>
<term name="paragraph" form="symbol">
<single></single>
<multiple>¶¶</multiple>
</term>
<term name="section" form="symbol">
<single>§</single>
<multiple>§§</multiple>
</term>
<term name="author">
<single/>
<multiple/>
</term>
<term name="editor">
<single>redaktor</single>
<multiple>redaktorzy</multiple>
</term>
<term name="translator">
<single>tłumacz</single>
<multiple>tłumacze</multiple>
</term>
<term name="author" form="short">
<single/>
<multiple/>
</term>
<term name="editor" form="short">
<single>red</single>
<multiple>red</multiple>
</term>
<term name="translator" form="short">
<single>tłum</single>
<multiple>tłum</multiple>
</term>
<term name="editor" form="verb">zredagowane przez</term>
<term name="translator" form="verb">przetłumaczone przez</term>
<term name="recipient" form="verb">dla</term>
<term name="interviewer" form="verb">przeprowadzony przez</term>
<term name="editor" form="verb-short">red</term>
<term name="translator" form="verb-short">tłum</term>
<term name="month-01">styczeń</term>
<term name="month-02">luty</term>
<term name="month-03">marzec</term>
<term name="month-04">kwiecień</term>
<term name="month-05">maj</term>
<term name="month-06">czerwiec</term>
<term name="month-07">lipiec</term>
<term name="month-08">sierpień</term>
<term name="month-09">wrzesień</term>
<term name="month-10">październik</term>
<term name="month-11">listopad</term>
<term name="month-12">grudzień</term>
<term name="month-01" form="short">styczeń</term>
<term name="month-02" form="short">luty</term>
<term name="month-03" form="short">marzec</term>
<term name="month-04" form="short">kwiecień</term>
<term name="month-05" form="short">maj</term>
<term name="month-06" form="short">czerwiec</term>
<term name="month-07" form="short">lipiec</term>
<term name="month-08" form="short">sierpień</term>
<term name="month-09" form="short">wrzesień</term>
<term name="month-10" form="short">październik</term>
<term name="month-11" form="short">listopad</term>
<term name="month-12" form="short">grudzień</term>
</locale>
</terms>
<?xml version="1.0" encoding="utf-8"?>
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="pl">
<style-options punctuation-in-quote="true"/>
<date form="text">
<date-part name="month" suffix=" "/>
<date-part name="day" suffix=", "/>
<date-part name="year"/>
</date>
<date form="numeric">
<date-part name="year"/>
<date-part name="month" form="numeric" prefix="-" range-delimiter="/"/>
<date-part name="day" prefix="-" range-delimiter="/"/>
</date>
<terms>
<term name="at">at</term>
<term name="in">w</term>
<term name="ibid">ibid</term>
<term name="accessed">udostępniono</term>
<term name="retrieved">pobrano</term>
<term name="from">z</term>
<term name="forthcoming">w druku</term>
<term name="reference">
<single>reference</single>
<multiple>references</multiple>
</term>
<term name="reference" form="short">
<single>ref.</single>
<multiple>refs.</multiple>
</term>
<term name="no date">bez daty</term>
<term name="and">i</term>
<term name="et-al">et al.</term>
<term name="circa">circa</term>
<term name="circa" form="short">c.</term>
<term name="interview">wywiad</term>
<term name="letter">list</term>
<term name="anonymous">anonim</term>
<term name="anonymous" form="short">anonim</term>
<term name="and others">i inni</term>
<term name="in press">w druku</term>
<term name="online">online</term>
<term name="cited">cytowane</term>
<term name="internet">internet</term>
<term name="presented at">zaprezentowano</term>
<term name="ad">AD</term>
<term name="bc">BC</term>
<!-- QUOTES -->
<term name="open-quote"></term>
<term name="close-quote"></term>
<term name="open-inner-quote"></term>
<term name="close-inner-quote"></term>
<!-- ORDINALS -->
<term name="ordinal-01">st</term>
<term name="ordinal-02">nd</term>
<term name="ordinal-03">rd</term>
<term name="ordinal-04">th</term>
<!-- LONG ORDINALS -->
<term name="long-ordinal-01">first</term>
<term name="long-ordinal-02">second</term>
<term name="long-ordinal-03">third</term>
<term name="long-ordinal-04">fourth</term>
<term name="long-ordinal-05">fifth</term>
<term name="long-ordinal-06">sixth</term>
<term name="long-ordinal-07">seventh</term>
<term name="long-ordinal-08">eighth</term>
<term name="long-ordinal-09">ninth</term>
<term name="long-ordinal-10">tenth</term>
<!-- CATEGORIES -->
<term name="anthropology">antropologia</term>
<term name="astronomy">astronomia</term>
<term name="biology">biologia</term>
<term name="botany">botanika</term>
<term name="chemistry">chemia</term>
<term name="engineering">inżynieria</term>
<term name="generic-base">generic base</term>
<term name="geography">geografia</term>
<term name="geology">geologia</term>
<term name="history">historia</term>
<term name="humanities">humanistyka</term>
<term name="linguistics">linguistics</term>
<term name="literature">literatura</term>
<term name="math">matematyka</term>
<term name="medicine">medycyna</term>
<term name="philosophy">filozofia</term>
<term name="physics">fizyka</term>
<term name="psychology">psychologia</term>
<term name="sociology">socjologia</term>
<term name="science">nauki ścisłe</term>
<term name="political_science">nauki polityczne</term>
<term name="social_science">nauki społeczne</term>
<term name="theology">teologia</term>
<term name="zoology">zoologia</term>
<!-- LONG LOCATOR FORMS -->
<term name="book">
<single>książka</single>
<multiple>książki</multiple>
</term>
<term name="chapter">
<single>rozdział</single>
<multiple>rozdziały</multiple>
</term>
<term name="column">
<single>kolumna</single>
<multiple>kolumny</multiple>
</term>
<term name="figure">
<single>rycina</single>
<multiple>ryciny</multiple>
</term>
<term name="folio">
<single>folio</single>
<multiple>folios</multiple>
</term>
<term name="issue">
<single>numer</single>
<multiple>numery</multiple>
</term>
<term name="line">
<single>wers</single>
<multiple>wersy</multiple>
</term>
<term name="note">
<single>notatka</single>
<multiple>notatki</multiple>
</term>
<term name="opus">
<single>opus</single>
<multiple>opera</multiple>
</term>
<term name="page">
<single>strona</single>
<multiple>strony</multiple>
</term>
<term name="paragraph">
<single>akapit</single>
<multiple>akapity</multiple>
</term>
<term name="part">
<single>część</single>
<multiple>części</multiple>
</term>
<term name="section">
<single>sekcja</single>
<multiple>sekcja</multiple>
</term>
<term name="volume">
<single>tom</single>
<multiple>tomy</multiple>
</term>
<term name="edition">
<single>wydanie</single>
<multiple>wydania</multiple>
</term>
<term name="verse">
<single>wers</single>
<multiple>wersy</multiple>
</term>
<term name="sub verbo">
<single>sub verbo</single>
<multiple>s.vv</multiple>
</term>
<!-- SHORT LOCATOR FORMS -->
<term name="book" form="short">książka</term>
<term name="chapter" form="short">rozdz</term>
<term name="column" form="short">kolumna</term>
<term name="figure" form="short">ryc</term>
<term name="folio" form="short">folio</term>
<term name="issue" form="short">nr</term>
<term name="opus" form="short">op</term>
<term name="page" form="short">
<single>s</single>
<multiple>s</multiple>
</term>
<term name="paragraph" form="short">akapit</term>
<term name="part" form="short">część</term>
<term name="section" form="short">sekcja</term>
<term name="sub verbo" form="short">
<single>s.v</single>
<multiple>s.vv</multiple>
</term>
<term name="verse" form="short">
<single>wers</single>
<multiple>wersy</multiple>
</term>
<term name="volume" form="short">
<single>t</single>
<multiple>t</multiple>
</term>
<term name="edition" form="short">wyd</term>
<!-- SYMBOL LOCATOR FORMS -->
<term name="paragraph" form="symbol">
<single></single>
<multiple>¶¶</multiple>
</term>
<term name="section" form="symbol">
<single>§</single>
<multiple>§§</multiple>
</term>
<!-- LONG ROLE FORMS -->
<term name="author">
<single/>
<multiple/>
</term>
<term name="editor">
<single>redaktor</single>
<multiple>redaktorzy</multiple>
</term>
<term name="editorial-director">
<single>editor</single>
<multiple>editors</multiple>
</term>
<term name="translator">
<single>tłumacz</single>
<multiple>tłumacze</multiple>
</term>
<term name="editortranslator">
<single>editor &amp; translator</single>
<multiple>editors &amp; translators</multiple>
</term>
<!-- SHORT ROLE FORMS -->
<term name="author" form="short">
<single/>
<multiple/>
</term>
<term name="editor" form="short">
<single>red</single>
<multiple>red</multiple>
</term>
<term name="editorial-director" form="short">
<single>ed.</single>
<multiple>eds.</multiple>
</term>
<term name="translator" form="short">
<single>tłum</single>
<multiple>tłum</multiple>
</term>
<term name="editortranslator" form="short">
<single>ed. &amp; tran.</single>
<multiple>eds. &amp; trans.</multiple>
</term>
<!-- VERB ROLE FORMS -->
<term name="editor" form="verb">zredagowane przez</term>
<term name="editorial-director" form="verb">edited by</term>
<term name="translator" form="verb">przetłumaczone przez</term>
<term name="editortranslator" form="verb">edited &amp; translated by</term>
<term name="recipient" form="verb">dla</term>
<term name="interviewer" form="verb">przeprowadzony przez</term>
<!-- SHORT VERB ROLE FORMS -->
<term name="editor" form="verb-short">red</term>
<term name="editorial-director" form="verb-short">ed.</term>
<term name="translator" form="verb-short">tłum</term>
<term name="editortranslator" form="verb-short">ed. &amp; trans. by</term>
<!-- LONG MONTH FORMS -->
<term name="month-01">styczeń</term>
<term name="month-02">luty</term>
<term name="month-03">marzec</term>
<term name="month-04">kwiecień</term>
<term name="month-05">maj</term>
<term name="month-06">czerwiec</term>
<term name="month-07">lipiec</term>
<term name="month-08">sierpień</term>
<term name="month-09">wrzesień</term>
<term name="month-10">październik</term>
<term name="month-11">listopad</term>
<term name="month-12">grudzień</term>
<!-- SHORT MONTH FORMS -->
<term name="month-01" form="short">styczeń</term>
<term name="month-02" form="short">luty</term>
<term name="month-03" form="short">marzec</term>
<term name="month-04" form="short">kwiecień</term>
<term name="month-05" form="short">maj</term>
<term name="month-06" form="short">czerwiec</term>
<term name="month-07" form="short">lipiec</term>
<term name="month-08" form="short">sierpień</term>
<term name="month-09" form="short">wrzesień</term>
<term name="month-10" form="short">październik</term>
<term name="month-11" form="short">listopad</term>
<term name="month-12" form="short">grudzień</term>
<!-- SEASONS -->
<term name="season-01">Spring</term>
<term name="season-02">Summer</term>
<term name="season-03">Autumn</term>
<term name="season-04">Winter</term>
</terms>
</locale>

View file

@ -1,211 +1,299 @@
<?xml version="1.0" encoding="UTF-8"?>
<terms xmlns="http://purl.org/net/xbiblio/csl">
<locale xml:lang="pt">
<term name="at">em</term>
<term name="in">in</term>
<term name="ibid">ibidem</term>
<term name="accessed">acessado</term>
<term name="retrieved">recuperado</term>
<term name="from">de</term>
<term name="forthcoming">a ser publicado</term>
<term name="references">referências</term>
<term name="reference item">
<single>source</single>
<multiple>sources</multiple>
</term>
<term name="no date">[s.d.]</term>
<term name="and">e</term>
<term name="et-al">et al.</term>
<term name="interview">entrevista</term>
<term name="letter">carta</term>
<term name="anonymous">anônimo</term>
<term name="anonymous" form="short">anon</term>
<term name="and others">e outros</term>
<term name="in press">no prelo</term>
<term name="online">online</term>
<term name="cited">citado</term>
<term name="internet">internet</term>
<term name="presented at">apresentado em</term>
<term name="anthropology">antropologia</term>
<term name="astronomy">astronomia</term>
<term name="biology">biologia</term>
<term name="botany">botânica</term>
<term name="chemistry">química</term>
<term name="engineering">engenharia</term>
<term name="generic-base">base genérica</term>
<term name="geography">geografia</term>
<term name="geology">geologia</term>
<term name="history">história</term>
<term name="humanities">humanidades</term>
<term name="literature">literatura</term>
<term name="math">matemática</term>
<term name="medicine">medicina</term>
<term name="philosophy">philosofia</term>
<term name="physics">física</term>
<term name="psychology">psicologia</term>
<term name="sociology">sociologia</term>
<term name="science">ciências</term>
<term name="political_science">ciências políticas</term>
<term name="social_science">ciências sociais</term>
<term name="theology">teologia</term>
<term name="zoology">zoologia</term>
<term name="book">
<single>livro</single>
<multiple>livros</multiple>
</term>
<term name="chapter">
<single>capítulo</single>
<multiple>capítulos</multiple>
</term>
<term name="column">
<single>coluna</single>
<multiple>colunas</multiple>
</term>
<term name="figure">
<single>figura</single>
<multiple>figuras</multiple>
</term>
<term name="folio">
<single>folio</single>
<multiple>folios</multiple>
</term>
<term name="issue">
<single>número</single>
<multiple>números</multiple>
</term>
<term name="line">
<single>linha</single>
<multiple>linhas</multiple>
</term>
<term name="note">
<single>nota</single>
<multiple>notas</multiple>
</term>
<term name="opus">
<single>opus</single>
<multiple>opera</multiple>
</term>
<term name="page">
<single>página</single>
<multiple>páginas</multiple>
</term>
<term name="paragraph">
<single>parágrafo</single>
<multiple>parágrafos</multiple>
</term>
<term name="part">
<single>parte</single>
<multiple>partes</multiple>
</term>
<term name="section">
<single>seção</single>
<multiple>seções</multiple>
</term>
<term name="volume">
<single>volume</single>
<multiple>volumes</multiple>
</term>
<term name="edition">
<single>edição</single>
<multiple>edições</multiple>
</term>
<term name="verse">
<single>verso</single>
<multiple>versos</multiple>
</term>
<term name="sub verbo">
<single>sub verbo</single>
<multiple>s.vv</multiple>
</term>
<term name="book" form="short">liv</term>
<term name="chapter" form="short">cap</term>
<term name="column" form="short">col</term>
<term name="figure" form="short">fig</term>
<term name="folio" form="short">f</term>
<term name="issue" form="short">n</term>
<term name="opus" form="short">op</term>
<term name="page" form="short">
<single>p</single>
<multiple>pp</multiple>
</term>
<term name="paragraph" form="short">para</term>
<term name="part" form="short">pt</term>
<term name="section" form="short">seç</term>
<term name="sub verbo" form="short">
<single>s.v</single>
<multiple>s.vv</multiple>
</term>
<term name="verse" form="short">
<single>v</single>
<multiple>vv</multiple>
</term>
<term name="volume" form="short">
<single>vol</single>
<multiple>vols</multiple>
</term>
<term name="edition">edition</term>
<term name="edition" form="short">ed</term>
<term name="paragraph" form="symbol">
<single></single>
<multiple>¶¶</multiple>
</term>
<term name="section" form="symbol">
<single>§</single>
<multiple>§§</multiple>
</term>
<term name="author">
<single/>
<multiple/>
</term>
<term name="editor">
<single>organizador</single>
<multiple>organizadores</multiple>
</term>
<term name="translator">
<single>tradutor</single>
<multiple>tradutores</multiple>
</term>
<term name="author" form="short">
<single/>
<multiple/>
</term>
<term name="editor" form="short">
<single>org</single>
<multiple>orgs</multiple>
</term>
<term name="translator" form="short">
<single>trad</single>
<multiple>trads</multiple>
</term>
<term name="editor" form="verb">organizado por</term>
<term name="translator" form="verb">traduzido por</term>
<term name="recipient" form="verb">para</term>
<term name="interviewer" form="verb">intrevista de</term>
<term name="editor" form="verb-short">org</term>
<term name="translator" form="verb-short">trad</term>
<term name="month-01">janeiro</term>
<term name="month-02">fevereiro</term>
<term name="month-03">março</term>
<term name="month-04">abril</term>
<term name="month-05">maio</term>
<term name="month-06">junho</term>
<term name="month-07">julho</term>
<term name="month-08">agosto</term>
<term name="month-09">setembro</term>
<term name="month-10">outubro</term>
<term name="month-11">novembro</term>
<term name="month-12">dezembro</term>
<term name="month-01" form="short">jan</term>
<term name="month-02" form="short">fev</term>
<term name="month-03" form="short">mar</term>
<term name="month-04" form="short">abr</term>
<term name="month-05" form="short">maio</term>
<term name="month-06" form="short">jun</term>
<term name="month-07" form="short">jul</term>
<term name="month-08" form="short">ago</term>
<term name="month-09" form="short">set</term>
<term name="month-10" form="short">out</term>
<term name="month-11" form="short">nov</term>
<term name="month-12" form="short">dez</term>
</locale>
</terms>
<?xml version="1.0" encoding="utf-8"?>
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="pt">
<style-options punctuation-in-quote="true"/>
<date form="text">
<date-part name="month" suffix=" "/>
<date-part name="day" suffix=", "/>
<date-part name="year"/>
</date>
<date form="numeric">
<date-part name="year"/>
<date-part name="month" form="numeric" prefix="-" range-delimiter="/"/>
<date-part name="day" prefix="-" range-delimiter="/"/>
</date>
<terms>
<term name="at">em</term>
<term name="in">in</term>
<term name="ibid">ibidem</term>
<term name="accessed">acessado</term>
<term name="retrieved">recuperado</term>
<term name="from">de</term>
<term name="forthcoming">a ser publicado</term>
<term name="reference">
<single>reference</single>
<multiple>references</multiple>
</term>
<term name="reference" form="short">
<single>ref.</single>
<multiple>refs.</multiple>
</term>
<term name="no date">[s.d.]</term>
<term name="and">e</term>
<term name="et-al">et al.</term>
<term name="circa">circa</term>
<term name="circa" form="short">c.</term>
<term name="interview">entrevista</term>
<term name="letter">carta</term>
<term name="anonymous">anônimo</term>
<term name="anonymous" form="short">anon</term>
<term name="and others">e outros</term>
<term name="in press">no prelo</term>
<term name="online">online</term>
<term name="cited">citado</term>
<term name="internet">internet</term>
<term name="presented at">apresentado em</term>
<term name="ad">AD</term>
<term name="bc">BC</term>
<!-- QUOTES -->
<term name="open-quote"></term>
<term name="close-quote"></term>
<term name="open-inner-quote"></term>
<term name="close-inner-quote"></term>
<!-- ORDINALS -->
<term name="ordinal-01">st</term>
<term name="ordinal-02">nd</term>
<term name="ordinal-03">rd</term>
<term name="ordinal-04">th</term>
<!-- LONG ORDINALS -->
<term name="long-ordinal-01">first</term>
<term name="long-ordinal-02">second</term>
<term name="long-ordinal-03">third</term>
<term name="long-ordinal-04">fourth</term>
<term name="long-ordinal-05">fifth</term>
<term name="long-ordinal-06">sixth</term>
<term name="long-ordinal-07">seventh</term>
<term name="long-ordinal-08">eighth</term>
<term name="long-ordinal-09">ninth</term>
<term name="long-ordinal-10">tenth</term>
<!-- CATEGORIES -->
<term name="anthropology">antropologia</term>
<term name="astronomy">astronomia</term>
<term name="biology">biologia</term>
<term name="botany">botânica</term>
<term name="chemistry">química</term>
<term name="engineering">engenharia</term>
<term name="generic-base">base genérica</term>
<term name="geography">geografia</term>
<term name="geology">geologia</term>
<term name="history">história</term>
<term name="humanities">humanidades</term>
<term name="linguistics">linguistics</term>
<term name="literature">literatura</term>
<term name="math">matemática</term>
<term name="medicine">medicina</term>
<term name="philosophy">philosofia</term>
<term name="physics">física</term>
<term name="psychology">psicologia</term>
<term name="sociology">sociologia</term>
<term name="science">ciências</term>
<term name="political_science">ciências políticas</term>
<term name="social_science">ciências sociais</term>
<term name="theology">teologia</term>
<term name="zoology">zoologia</term>
<!-- LONG LOCATOR FORMS -->
<term name="book">
<single>livro</single>
<multiple>livros</multiple>
</term>
<term name="chapter">
<single>capítulo</single>
<multiple>capítulos</multiple>
</term>
<term name="column">
<single>coluna</single>
<multiple>colunas</multiple>
</term>
<term name="figure">
<single>figura</single>
<multiple>figuras</multiple>
</term>
<term name="folio">
<single>folio</single>
<multiple>folios</multiple>
</term>
<term name="issue">
<single>número</single>
<multiple>números</multiple>
</term>
<term name="line">
<single>linha</single>
<multiple>linhas</multiple>
</term>
<term name="note">
<single>nota</single>
<multiple>notas</multiple>
</term>
<term name="opus">
<single>opus</single>
<multiple>opera</multiple>
</term>
<term name="page">
<single>página</single>
<multiple>páginas</multiple>
</term>
<term name="paragraph">
<single>parágrafo</single>
<multiple>parágrafos</multiple>
</term>
<term name="part">
<single>parte</single>
<multiple>partes</multiple>
</term>
<term name="section">
<single>seção</single>
<multiple>seções</multiple>
</term>
<term name="volume">
<single>volume</single>
<multiple>volumes</multiple>
</term>
<term name="edition">
<single>edição</single>
<multiple>edições</multiple>
</term>
<term name="verse">
<single>verso</single>
<multiple>versos</multiple>
</term>
<term name="sub verbo">
<single>sub verbo</single>
<multiple>s.vv</multiple>
</term>
<!-- SHORT LOCATOR FORMS -->
<term name="book" form="short">liv</term>
<term name="chapter" form="short">cap</term>
<term name="column" form="short">col</term>
<term name="figure" form="short">fig</term>
<term name="folio" form="short">f</term>
<term name="issue" form="short">n</term>
<term name="opus" form="short">op</term>
<term name="page" form="short">
<single>p</single>
<multiple>pp</multiple>
</term>
<term name="paragraph" form="short">para</term>
<term name="part" form="short">pt</term>
<term name="section" form="short">seç</term>
<term name="sub verbo" form="short">
<single>s.v</single>
<multiple>s.vv</multiple>
</term>
<term name="verse" form="short">
<single>v</single>
<multiple>vv</multiple>
</term>
<term name="volume" form="short">
<single>vol</single>
<multiple>vols</multiple>
</term>
<term name="edition" form="short">ed</term>
<!-- SYMBOL LOCATOR FORMS -->
<term name="paragraph" form="symbol">
<single></single>
<multiple>¶¶</multiple>
</term>
<term name="section" form="symbol">
<single>§</single>
<multiple>§§</multiple>
</term>
<!-- LONG ROLE FORMS -->
<term name="author">
<single/>
<multiple/>
</term>
<term name="editor">
<single>organizador</single>
<multiple>organizadores</multiple>
</term>
<term name="editorial-director">
<single>editor</single>
<multiple>editors</multiple>
</term>
<term name="translator">
<single>tradutor</single>
<multiple>tradutores</multiple>
</term>
<term name="editortranslator">
<single>editor &amp; translator</single>
<multiple>editors &amp; translators</multiple>
</term>
<!-- SHORT ROLE FORMS -->
<term name="author" form="short">
<single/>
<multiple/>
</term>
<term name="editor" form="short">
<single>org</single>
<multiple>orgs</multiple>
</term>
<term name="editorial-director" form="short">
<single>ed.</single>
<multiple>eds.</multiple>
</term>
<term name="translator" form="short">
<single>trad</single>
<multiple>trads</multiple>
</term>
<term name="editortranslator" form="short">
<single>ed. &amp; tran.</single>
<multiple>eds. &amp; trans.</multiple>
</term>
<!-- VERB ROLE FORMS -->
<term name="editor" form="verb">organizado por</term>
<term name="editorial-director" form="verb">edited by</term>
<term name="translator" form="verb">traduzido por</term>
<term name="editortranslator" form="verb">edited &amp; translated by</term>
<term name="recipient" form="verb">para</term>
<term name="interviewer" form="verb">intrevista de</term>
<!-- SHORT VERB ROLE FORMS -->
<term name="editor" form="verb-short">org</term>
<term name="editorial-director" form="verb-short">ed.</term>
<term name="translator" form="verb-short">trad</term>
<term name="editortranslator" form="verb-short">ed. &amp; trans. by</term>
<!-- LONG MONTH FORMS -->
<term name="month-01">janeiro</term>
<term name="month-02">fevereiro</term>
<term name="month-03">março</term>
<term name="month-04">abril</term>
<term name="month-05">maio</term>
<term name="month-06">junho</term>
<term name="month-07">julho</term>
<term name="month-08">agosto</term>
<term name="month-09">setembro</term>
<term name="month-10">outubro</term>
<term name="month-11">novembro</term>
<term name="month-12">dezembro</term>
<!-- SHORT MONTH FORMS -->
<term name="month-01" form="short">jan</term>
<term name="month-02" form="short">fev</term>
<term name="month-03" form="short">mar</term>
<term name="month-04" form="short">abr</term>
<term name="month-05" form="short">maio</term>
<term name="month-06" form="short">jun</term>
<term name="month-07" form="short">jul</term>
<term name="month-08" form="short">ago</term>
<term name="month-09" form="short">set</term>
<term name="month-10" form="short">out</term>
<term name="month-11" form="short">nov</term>
<term name="month-12" form="short">dez</term>
<!-- SEASONS -->
<term name="season-01">Spring</term>
<term name="season-02">Summer</term>
<term name="season-03">Autumn</term>
<term name="season-04">Winter</term>
</terms>
</locale>

View file

@ -1,211 +1,299 @@
<?xml version="1.0" encoding="UTF-8"?>
<terms xmlns="http://purl.org/net/xbiblio/csl">
<locale xml:lang="pt">
<term name="at">em</term>
<term name="in">em</term>
<term name="ibid">ibid</term>
<term name="accessed">acedido</term>
<term name="retrieved">obtido</term>
<term name="from">de</term>
<term name="forthcoming">a publicar</term>
<term name="references">Referências</term>
<term name="reference item">
<single>source</single>
<multiple>sources</multiple>
</term>
<term name="no date">sem data</term>
<term name="and">e</term>
<term name="et-al">et al.</term>
<term name="interview">entrevista</term>
<term name="letter">carta</term>
<term name="anonymous">anónimo</term>
<term name="anonymous" form="short">anón</term>
<term name="and others">e outros</term>
<term name="in press">no prelo</term>
<term name="online">em linha</term>
<term name="cited">citado</term>
<term name="internet">internet</term>
<term name="presented at">apresentado na</term>
<term name="anthropology">antropologia</term>
<term name="astronomy">astronomia</term>
<term name="biology">biologia</term>
<term name="botany">botânica</term>
<term name="chemistry">química</term>
<term name="engineering">engenharia</term>
<term name="generic-base">base genérica</term>
<term name="geography">geografia</term>
<term name="geology">geologia</term>
<term name="history">história</term>
<term name="humanities">humanidades</term>
<term name="literature">literatura</term>
<term name="math">matemática</term>
<term name="medicine">medicina</term>
<term name="philosophy">filosofia</term>
<term name="physics">física</term>
<term name="psychology">psicologia</term>
<term name="sociology">sociologia</term>
<term name="science">ciência</term>
<term name="political_science">ciência política</term>
<term name="social_science">ciência social</term>
<term name="theology">teologia</term>
<term name="zoology">zoologia</term>
<term name="book">
<single>livro</single>
<multiple>livros</multiple>
</term>
<term name="chapter">
<single>capítulo</single>
<multiple>capítulos</multiple>
</term>
<term name="column">
<single>coluna</single>
<multiple>colunas</multiple>
</term>
<term name="figure">
<single>figura</single>
<multiple>figuras</multiple>
</term>
<term name="folio">
<single>fólio</single>
<multiple>fólios</multiple>
</term>
<term name="issue">
<single>número</single>
<multiple>número</multiple>
</term>
<term name="line">
<single>linha</single>
<multiple>linhas</multiple>
</term>
<term name="note">
<single>nota</single>
<multiple>notas</multiple>
</term>
<term name="opus">
<single>opus</single>
<multiple>opera</multiple>
</term>
<term name="page">
<single>página</single>
<multiple>páginas</multiple>
</term>
<term name="paragraph">
<single>parágrafo</single>
<multiple>parágrafos</multiple>
</term>
<term name="part">
<single>parte</single>
<multiple>partes</multiple>
</term>
<term name="section">
<single>secção</single>
<multiple>secções</multiple>
</term>
<term name="volume">
<single>volume</single>
<multiple>volumes</multiple>
</term>
<term name="edition">
<single>edição</single>
<multiple>edições</multiple>
</term>
<term name="verse">
<single>versículo</single>
<multiple>versículos</multiple>
</term>
<term name="sub verbo">
<single>sub verbo</single>
<multiple>s.vv</multiple>
</term>
<term name="book" form="short">liv</term>
<term name="chapter" form="short">cap</term>
<term name="column" form="short">col</term>
<term name="figure" form="short">fig</term>
<term name="folio" form="short">f</term>
<term name="issue" form="short">n</term>
<term name="opus" form="short">op</term>
<term name="page" form="short">
<single>p</single>
<multiple>pp</multiple>
</term>
<term name="paragraph" form="short">par</term>
<term name="part" form="short">pt</term>
<term name="section" form="short">sec</term>
<term name="sub verbo" form="short">
<single>s.v</single>
<multiple>s.vv</multiple>
</term>
<term name="verse" form="short">
<single>v</single>
<multiple>vv</multiple>
</term>
<term name="volume" form="short">
<single>vol</single>
<multiple>vols</multiple>
</term>
<term name="edition">edition</term>
<term name="edition" form="short">ed</term>
<term name="paragraph" form="symbol">
<single></single>
<multiple>¶¶</multiple>
</term>
<term name="section" form="symbol">
<single>§</single>
<multiple>§§</multiple>
</term>
<term name="author">
<single>autor</single>
<multiple>autores</multiple>
</term>
<term name="editor">
<single>editor</single>
<multiple>editores</multiple>
</term>
<term name="translator">
<single>tradutor</single>
<multiple>tradutores</multiple>
</term>
<term name="author" form="short">
<single>aut</single>
<multiple>auts</multiple>
</term>
<term name="editor" form="short">
<single>ed</single>
<multiple>eds</multiple>
</term>
<term name="translator" form="short">
<single>trad</single>
<multiple>trads</multiple>
</term>
<term name="editor" form="verb">editado por</term>
<term name="translator" form="verb">traduzido por</term>
<term name="recipient" form="verb">para</term>
<term name="interviewer" form="verb">entrevistado por</term>
<term name="editor" form="verb-short">ed</term>
<term name="translator" form="verb-short">trad</term>
<term name="month-01">Janeiro</term>
<term name="month-02">Fevereiro</term>
<term name="month-03">Março</term>
<term name="month-04">Abril</term>
<term name="month-05">Maio</term>
<term name="month-06">Junho</term>
<term name="month-07">Julho</term>
<term name="month-08">Agosto</term>
<term name="month-09">Setembro</term>
<term name="month-10">Outubro</term>
<term name="month-11">Novembro</term>
<term name="month-12">Dezembro</term>
<term name="month-01" form="short">Jan</term>
<term name="month-02" form="short">Fev</term>
<term name="month-03" form="short">Mar</term>
<term name="month-04" form="short">Abr</term>
<term name="month-05" form="short">Mai</term>
<term name="month-06" form="short">Jun</term>
<term name="month-07" form="short">Jul</term>
<term name="month-08" form="short">Ago</term>
<term name="month-09" form="short">Set</term>
<term name="month-10" form="short">Out</term>
<term name="month-11" form="short">Nov</term>
<term name="month-12" form="short">Dez</term>
</locale>
</terms>
<?xml version="1.0" encoding="utf-8"?>
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="pt">
<style-options punctuation-in-quote="true"/>
<date form="text">
<date-part name="month" suffix=" "/>
<date-part name="day" suffix=", "/>
<date-part name="year"/>
</date>
<date form="numeric">
<date-part name="year"/>
<date-part name="month" form="numeric" prefix="-" range-delimiter="/"/>
<date-part name="day" prefix="-" range-delimiter="/"/>
</date>
<terms>
<term name="at">em</term>
<term name="in">em</term>
<term name="ibid">ibid</term>
<term name="accessed">acedido</term>
<term name="retrieved">obtido</term>
<term name="from">de</term>
<term name="forthcoming">a publicar</term>
<term name="reference">
<single>reference</single>
<multiple>references</multiple>
</term>
<term name="reference" form="short">
<single>ref.</single>
<multiple>refs.</multiple>
</term>
<term name="no date">sem data</term>
<term name="and">e</term>
<term name="et-al">et al.</term>
<term name="circa">circa</term>
<term name="circa" form="short">c.</term>
<term name="interview">entrevista</term>
<term name="letter">carta</term>
<term name="anonymous">anónimo</term>
<term name="anonymous" form="short">anón</term>
<term name="and others">e outros</term>
<term name="in press">no prelo</term>
<term name="online">em linha</term>
<term name="cited">citado</term>
<term name="internet">internet</term>
<term name="presented at">apresentado na</term>
<term name="ad">AD</term>
<term name="bc">BC</term>
<!-- QUOTES -->
<term name="open-quote"></term>
<term name="close-quote"></term>
<term name="open-inner-quote"></term>
<term name="close-inner-quote"></term>
<!-- ORDINALS -->
<term name="ordinal-01">st</term>
<term name="ordinal-02">nd</term>
<term name="ordinal-03">rd</term>
<term name="ordinal-04">th</term>
<!-- LONG ORDINALS -->
<term name="long-ordinal-01">first</term>
<term name="long-ordinal-02">second</term>
<term name="long-ordinal-03">third</term>
<term name="long-ordinal-04">fourth</term>
<term name="long-ordinal-05">fifth</term>
<term name="long-ordinal-06">sixth</term>
<term name="long-ordinal-07">seventh</term>
<term name="long-ordinal-08">eighth</term>
<term name="long-ordinal-09">ninth</term>
<term name="long-ordinal-10">tenth</term>
<!-- CATEGORIES -->
<term name="anthropology">antropologia</term>
<term name="astronomy">astronomia</term>
<term name="biology">biologia</term>
<term name="botany">botânica</term>
<term name="chemistry">química</term>
<term name="engineering">engenharia</term>
<term name="generic-base">base genérica</term>
<term name="geography">geografia</term>
<term name="geology">geologia</term>
<term name="history">história</term>
<term name="humanities">humanidades</term>
<term name="linguistics">linguistics</term>
<term name="literature">literatura</term>
<term name="math">matemática</term>
<term name="medicine">medicina</term>
<term name="philosophy">filosofia</term>
<term name="physics">física</term>
<term name="psychology">psicologia</term>
<term name="sociology">sociologia</term>
<term name="science">ciência</term>
<term name="political_science">ciência política</term>
<term name="social_science">ciência social</term>
<term name="theology">teologia</term>
<term name="zoology">zoologia</term>
<!-- LONG LOCATOR FORMS -->
<term name="book">
<single>livro</single>
<multiple>livros</multiple>
</term>
<term name="chapter">
<single>capítulo</single>
<multiple>capítulos</multiple>
</term>
<term name="column">
<single>coluna</single>
<multiple>colunas</multiple>
</term>
<term name="figure">
<single>figura</single>
<multiple>figuras</multiple>
</term>
<term name="folio">
<single>fólio</single>
<multiple>fólios</multiple>
</term>
<term name="issue">
<single>número</single>
<multiple>número</multiple>
</term>
<term name="line">
<single>linha</single>
<multiple>linhas</multiple>
</term>
<term name="note">
<single>nota</single>
<multiple>notas</multiple>
</term>
<term name="opus">
<single>opus</single>
<multiple>opera</multiple>
</term>
<term name="page">
<single>página</single>
<multiple>páginas</multiple>
</term>
<term name="paragraph">
<single>parágrafo</single>
<multiple>parágrafos</multiple>
</term>
<term name="part">
<single>parte</single>
<multiple>partes</multiple>
</term>
<term name="section">
<single>secção</single>
<multiple>secções</multiple>
</term>
<term name="volume">
<single>volume</single>
<multiple>volumes</multiple>
</term>
<term name="edition">
<single>edição</single>
<multiple>edições</multiple>
</term>
<term name="verse">
<single>versículo</single>
<multiple>versículos</multiple>
</term>
<term name="sub verbo">
<single>sub verbo</single>
<multiple>s.vv</multiple>
</term>
<!-- SHORT LOCATOR FORMS -->
<term name="book" form="short">liv</term>
<term name="chapter" form="short">cap</term>
<term name="column" form="short">col</term>
<term name="figure" form="short">fig</term>
<term name="folio" form="short">f</term>
<term name="issue" form="short">n</term>
<term name="opus" form="short">op</term>
<term name="page" form="short">
<single>p</single>
<multiple>pp</multiple>
</term>
<term name="paragraph" form="short">par</term>
<term name="part" form="short">pt</term>
<term name="section" form="short">sec</term>
<term name="sub verbo" form="short">
<single>s.v</single>
<multiple>s.vv</multiple>
</term>
<term name="verse" form="short">
<single>v</single>
<multiple>vv</multiple>
</term>
<term name="volume" form="short">
<single>vol</single>
<multiple>vols</multiple>
</term>
<term name="edition" form="short">ed</term>
<!-- SYMBOL LOCATOR FORMS -->
<term name="paragraph" form="symbol">
<single></single>
<multiple>¶¶</multiple>
</term>
<term name="section" form="symbol">
<single>§</single>
<multiple>§§</multiple>
</term>
<!-- LONG ROLE FORMS -->
<term name="author">
<single/>
<multiple/>
</term>
<term name="editor">
<single>editor</single>
<multiple>editores</multiple>
</term>
<term name="editorial-director">
<single>editor</single>
<multiple>editors</multiple>
</term>
<term name="translator">
<single>tradutor</single>
<multiple>tradutores</multiple>
</term>
<term name="editortranslator">
<single>editor &amp; translator</single>
<multiple>editors &amp; translators</multiple>
</term>
<!-- SHORT ROLE FORMS -->
<term name="author" form="short">
<single/>
<multiple/>
</term>
<term name="editor" form="short">
<single>ed</single>
<multiple>eds</multiple>
</term>
<term name="editorial-director" form="short">
<single>ed.</single>
<multiple>eds.</multiple>
</term>
<term name="translator" form="short">
<single>trad</single>
<multiple>trads</multiple>
</term>
<term name="editortranslator" form="short">
<single>ed. &amp; tran.</single>
<multiple>eds. &amp; trans.</multiple>
</term>
<!-- VERB ROLE FORMS -->
<term name="editor" form="verb">editado por</term>
<term name="editorial-director" form="verb">edited by</term>
<term name="translator" form="verb">traduzido por</term>
<term name="editortranslator" form="verb">edited &amp; translated by</term>
<term name="recipient" form="verb">para</term>
<term name="interviewer" form="verb">entrevistado por</term>
<!-- SHORT VERB ROLE FORMS -->
<term name="editor" form="verb-short">ed</term>
<term name="editorial-director" form="verb-short">ed.</term>
<term name="translator" form="verb-short">trad</term>
<term name="editortranslator" form="verb-short">ed. &amp; trans. by</term>
<!-- LONG MONTH FORMS -->
<term name="month-01">Janeiro</term>
<term name="month-02">Fevereiro</term>
<term name="month-03">Março</term>
<term name="month-04">Abril</term>
<term name="month-05">Maio</term>
<term name="month-06">Junho</term>
<term name="month-07">Julho</term>
<term name="month-08">Agosto</term>
<term name="month-09">Setembro</term>
<term name="month-10">Outubro</term>
<term name="month-11">Novembro</term>
<term name="month-12">Dezembro</term>
<!-- SHORT MONTH FORMS -->
<term name="month-01" form="short">Jan</term>
<term name="month-02" form="short">Fev</term>
<term name="month-03" form="short">Mar</term>
<term name="month-04" form="short">Abr</term>
<term name="month-05" form="short">Mai</term>
<term name="month-06" form="short">Jun</term>
<term name="month-07" form="short">Jul</term>
<term name="month-08" form="short">Ago</term>
<term name="month-09" form="short">Set</term>
<term name="month-10" form="short">Out</term>
<term name="month-11" form="short">Nov</term>
<term name="month-12" form="short">Dez</term>
<!-- SEASONS -->
<term name="season-01">Spring</term>
<term name="season-02">Summer</term>
<term name="season-03">Autumn</term>
<term name="season-04">Winter</term>
</terms>
</locale>

View file

@ -1,211 +1,299 @@
<?xml version="1.0" encoding="UTF-8"?>
<terms xmlns="http://purl.org/net/xbiblio/csl">
<locale xml:lang="ro">
<term name="at">la</term>
<term name="in">în</term>
<term name="ibid">ibidem</term>
<term name="accessed">data de acces</term>
<term name="retrieved">data de preluare</term>
<term name="from">din</term>
<term name="forthcoming">în curs de apariție</term>
<term name="references">Bibliografie</term>
<term name="reference item">
<single>sursă</single>
<multiple>surse</multiple>
</term>
<term name="no date">f.a.</term>
<term name="and">și</term>
<term name="et-al">et al.</term>
<term name="interview">interviu</term>
<term name="letter">scrisoare</term>
<term name="anonymous">anonim</term>
<term name="anonymous" form="short">anon</term>
<term name="and others">și alții</term>
<term name="in press">sub tipar</term>
<term name="online">online</term>
<term name="cited">citat</term>
<term name="internet">internet</term>
<term name="presented at">prezentat la</term>
<term name="anthropology">antropologie</term>
<term name="astronomy">astronomie</term>
<term name="biology">biologie</term>
<term name="botany">botanică</term>
<term name="chemistry">chimie</term>
<term name="engineering">inginerie</term>
<term name="generic-base">general (de bază)</term>
<term name="geography">geografie</term>
<term name="geology">geologie</term>
<term name="history">istorie</term>
<term name="humanities">umanioare</term>
<term name="literature">literatură</term>
<term name="math">matematică</term>
<term name="medicine">medicină</term>
<term name="philosophy">filosofie</term>
<term name="physics">fizică</term>
<term name="psychology">psihologie</term>
<term name="sociology">sociologie</term>
<term name="science">știință</term>
<term name="political_science">știinţe politice</term>
<term name="social_science">științe sociale</term>
<term name="theology">teologie</term>
<term name="zoology">zoologie</term>
<term name="book">
<single>cartea</single>
<multiple>cărțile</multiple>
</term>
<term name="chapter">
<single>capitolul</single>
<multiple>capitolele</multiple>
</term>
<term name="column">
<single>coloana</single>
<multiple>coloanele</multiple>
</term>
<term name="figure">
<single>figura</single>
<multiple>figurile</multiple>
</term>
<term name="folio">
<single>folio</single>
<multiple>folio</multiple>
</term>
<term name="issue">
<single>numărul</single>
<multiple>numerele</multiple>
</term>
<term name="line">
<single>linia</single>
<multiple>liniile</multiple>
</term>
<term name="note">
<single>nota</single>
<multiple>notele</multiple>
</term>
<term name="opus">
<single>opusul</single>
<multiple>opusurile</multiple>
</term>
<term name="page">
<single>pagina</single>
<multiple>paginile</multiple>
</term>
<term name="paragraph">
<single>paragraful</single>
<multiple>paragrafele</multiple>
</term>
<term name="part">
<single>partea</single>
<multiple>părțile</multiple>
</term>
<term name="section">
<single>secțiunea</single>
<multiple>secțiunile</multiple>
</term>
<term name="volume">
<single>volumul</single>
<multiple>volumele</multiple>
</term>
<term name="edition">
<single>ediția</single>
<multiple>edițiile</multiple>
</term>
<term name="verse">
<single>versetul</single>
<multiple>versetele</multiple>
</term>
<term name="sub verbo">
<single>sub verbo</single>
<multiple>s.vv</multiple>
</term>
<term name="book" form="short">cart</term>
<term name="chapter" form="short">cap</term>
<term name="column" form="short">col</term>
<term name="figure" form="short">fig</term>
<term name="folio" form="short">fol</term>
<term name="issue" form="short">nr</term>
<term name="opus" form="short">op</term>
<term name="page" form="short">
<single>p</single>
<multiple>pp</multiple>
</term>
<term name="paragraph" form="short">par</term>
<term name="part" form="short">part</term>
<term name="section" form="short">sec</term>
<term name="sub verbo" form="short">
<single>s.v</single>
<multiple>s.vv</multiple>
</term>
<term name="verse" form="short">
<single>v</single>
<multiple>vv</multiple>
</term>
<term name="volume" form="short">
<single>vol</single>
<multiple>vol</multiple>
</term>
<term name="edition">edition</term>
<term name="edition" form="short">ed</term>
<term name="paragraph" form="symbol">
<single></single>
<multiple>¶¶</multiple>
</term>
<term name="section" form="symbol">
<single>§</single>
<multiple>§§</multiple>
</term>
<term name="author">
<single>autor</single>
<multiple>autori</multiple>
</term>
<term name="editor">
<single>editor</single>
<multiple>editori</multiple>
</term>
<term name="translator">
<single>traducător</single>
<multiple>traducători</multiple>
</term>
<term name="author" form="short">
<single>aut</single>
<multiple>aut</multiple>
</term>
<term name="editor" form="short">
<single>ed</single>
<multiple>ed</multiple>
</term>
<term name="translator" form="short">
<single>trad</single>
<multiple>trad</multiple>
</term>
<term name="editor" form="verb">ediţie de</term>
<term name="translator" form="verb">traducere de</term>
<term name="recipient" form="verb">în</term>
<term name="interviewer" form="verb">interviu de</term>
<term name="editor" form="verb-short">ed</term>
<term name="translator" form="verb-short">trad</term>
<term name="month-01">ianuarie</term>
<term name="month-02">februarie</term>
<term name="month-03">martie</term>
<term name="month-04">aprilie</term>
<term name="month-05">mai</term>
<term name="month-06">iunie</term>
<term name="month-07">iulie</term>
<term name="month-08">august</term>
<term name="month-09">septembrie</term>
<term name="month-10">octombrie</term>
<term name="month-11">noiembrie</term>
<term name="month-12">decembrie</term>
<term name="month-01" form="short">ian</term>
<term name="month-02" form="short">feb</term>
<term name="month-03" form="short">mar</term>
<term name="month-04" form="short">apr</term>
<term name="month-05" form="short">mai</term>
<term name="month-06" form="short">iun</term>
<term name="month-07" form="short">iul</term>
<term name="month-08" form="short">aug</term>
<term name="month-09" form="short">sep</term>
<term name="month-10" form="short">oct</term>
<term name="month-11" form="short">nov</term>
<term name="month-12" form="short">dec</term>
</locale>
</terms>
<?xml version="1.0" encoding="utf-8"?>
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="ro">
<style-options punctuation-in-quote="true"/>
<date form="text">
<date-part name="month" suffix=" "/>
<date-part name="day" suffix=", "/>
<date-part name="year"/>
</date>
<date form="numeric">
<date-part name="year"/>
<date-part name="month" form="numeric" prefix="-" range-delimiter="/"/>
<date-part name="day" prefix="-" range-delimiter="/"/>
</date>
<terms>
<term name="at">la</term>
<term name="in">în</term>
<term name="ibid">ibidem</term>
<term name="accessed">accesat în</term>
<term name="retrieved">preluat în</term>
<term name="from">din</term>
<term name="forthcoming">în curs de apariţie</term>
<term name="reference">
<single>reference</single>
<multiple>references</multiple>
</term>
<term name="reference" form="short">
<single>ref.</single>
<multiple>refs.</multiple>
</term>
<term name="no date">f.a.</term>
<term name="and">şi</term>
<term name="et-al">et al.</term>
<term name="circa">circa</term>
<term name="circa" form="short">c.</term>
<term name="interview">interviu</term>
<term name="letter">scrisoare</term>
<term name="anonymous">anonim</term>
<term name="anonymous" form="short">anon</term>
<term name="and others">şi alţii</term>
<term name="in press">sub tipar</term>
<term name="online">online</term>
<term name="cited">citat</term>
<term name="internet">internet</term>
<term name="presented at">prezentat la</term>
<term name="ad">AD</term>
<term name="bc">BC</term>
<!-- QUOTES -->
<term name="open-quote"></term>
<term name="close-quote"></term>
<term name="open-inner-quote"></term>
<term name="close-inner-quote"></term>
<!-- ORDINALS -->
<term name="ordinal-01">st</term>
<term name="ordinal-02">nd</term>
<term name="ordinal-03">rd</term>
<term name="ordinal-04">th</term>
<!-- LONG ORDINALS -->
<term name="long-ordinal-01">first</term>
<term name="long-ordinal-02">second</term>
<term name="long-ordinal-03">third</term>
<term name="long-ordinal-04">fourth</term>
<term name="long-ordinal-05">fifth</term>
<term name="long-ordinal-06">sixth</term>
<term name="long-ordinal-07">seventh</term>
<term name="long-ordinal-08">eighth</term>
<term name="long-ordinal-09">ninth</term>
<term name="long-ordinal-10">tenth</term>
<!-- CATEGORIES -->
<term name="anthropology">antropologie</term>
<term name="astronomy">astronomie</term>
<term name="biology">biologie</term>
<term name="botany">botanică</term>
<term name="chemistry">chimie</term>
<term name="engineering">inginerie</term>
<term name="generic-base">general (de bază)</term>
<term name="geography">geografie</term>
<term name="geology">geologie</term>
<term name="history">istorie</term>
<term name="humanities">umanioare</term>
<term name="linguistics">linguistics</term>
<term name="literature">literatură</term>
<term name="math">matematică</term>
<term name="medicine">medicină</term>
<term name="philosophy">filosofie</term>
<term name="physics">fizică</term>
<term name="psychology">psihologie</term>
<term name="sociology">sociologie</term>
<term name="science">ştiinţă</term>
<term name="political_science">ştiinţe politice</term>
<term name="social_science">ştiinţe sociale</term>
<term name="theology">teologie</term>
<term name="zoology">zoologie</term>
<!-- LONG LOCATOR FORMS -->
<term name="book">
<single>cartea</single>
<multiple>cărţile</multiple>
</term>
<term name="chapter">
<single>capitolul</single>
<multiple>capitolele</multiple>
</term>
<term name="column">
<single>coloana</single>
<multiple>coloanele</multiple>
</term>
<term name="figure">
<single>figura</single>
<multiple>figurile</multiple>
</term>
<term name="folio">
<single>folio</single>
<multiple>folio</multiple>
</term>
<term name="issue">
<single>numărul</single>
<multiple>numerele</multiple>
</term>
<term name="line">
<single>linia</single>
<multiple>liniile</multiple>
</term>
<term name="note">
<single>nota</single>
<multiple>notele</multiple>
</term>
<term name="opus">
<single>opusul</single>
<multiple>opusurile</multiple>
</term>
<term name="page">
<single>pagina</single>
<multiple>paginile</multiple>
</term>
<term name="paragraph">
<single>paragraful</single>
<multiple>paragrafele</multiple>
</term>
<term name="part">
<single>partea</single>
<multiple>părţile</multiple>
</term>
<term name="section">
<single>secţiunea</single>
<multiple>secţiunile</multiple>
</term>
<term name="volume">
<single>volumul</single>
<multiple>volumele</multiple>
</term>
<term name="edition">
<single>ediţia</single>
<multiple>ediţiile</multiple>
</term>
<term name="verse">
<single>versetul</single>
<multiple>versetele</multiple>
</term>
<term name="sub verbo">
<single>sub verbo</single>
<multiple>s.vv</multiple>
</term>
<!-- SHORT LOCATOR FORMS -->
<term name="book" form="short">cart</term>
<term name="chapter" form="short">cap</term>
<term name="column" form="short">col</term>
<term name="figure" form="short">fig</term>
<term name="folio" form="short">fol</term>
<term name="issue" form="short">nr</term>
<term name="opus" form="short">op</term>
<term name="page" form="short">
<single>p</single>
<multiple>pp</multiple>
</term>
<term name="paragraph" form="short">par</term>
<term name="part" form="short">part</term>
<term name="section" form="short">sec</term>
<term name="sub verbo" form="short">
<single>s.v</single>
<multiple>s.vv</multiple>
</term>
<term name="verse" form="short">
<single>v</single>
<multiple>vv</multiple>
</term>
<term name="volume" form="short">
<single>vol</single>
<multiple>vol</multiple>
</term>
<term name="edition" form="short">ed</term>
<!-- SYMBOL LOCATOR FORMS -->
<term name="paragraph" form="symbol">
<single></single>
<multiple>¶¶</multiple>
</term>
<term name="section" form="symbol">
<single>§</single>
<multiple>§§</multiple>
</term>
<!-- LONG ROLE FORMS -->
<term name="author">
<single>autor</single>
<multiple>autori</multiple>
</term>
<term name="editor">
<single>editor</single>
<multiple>editori</multiple>
</term>
<term name="editorial-director">
<single>editor</single>
<multiple>editors</multiple>
</term>
<term name="translator">
<single>traducător</single>
<multiple>traducători</multiple>
</term>
<term name="editortranslator">
<single>editor &amp; translator</single>
<multiple>editors &amp; translators</multiple>
</term>
<!-- SHORT ROLE FORMS -->
<term name="author" form="short">
<single>aut</single>
<multiple>aut</multiple>
</term>
<term name="editor" form="short">
<single>ed</single>
<multiple>ed</multiple>
</term>
<term name="editorial-director" form="short">
<single>ed.</single>
<multiple>eds.</multiple>
</term>
<term name="translator" form="short">
<single>trad</single>
<multiple>trad</multiple>
</term>
<term name="editortranslator" form="short">
<single>ed. &amp; tran.</single>
<multiple>eds. &amp; trans.</multiple>
</term>
<!-- VERB ROLE FORMS -->
<term name="editor" form="verb">ediţie de</term>
<term name="editorial-director" form="verb">edited by</term>
<term name="translator" form="verb">traducere de</term>
<term name="editortranslator" form="verb">edited &amp; translated by</term>
<term name="recipient" form="verb">în</term>
<term name="interviewer" form="verb">interviu de</term>
<!-- SHORT VERB ROLE FORMS -->
<term name="editor" form="verb-short">ed</term>
<term name="editorial-director" form="verb-short">ed.</term>
<term name="translator" form="verb-short">trad</term>
<term name="editortranslator" form="verb-short">ed. &amp; trans. by</term>
<!-- LONG MONTH FORMS -->
<term name="month-01">ianuarie</term>
<term name="month-02">februarie</term>
<term name="month-03">martie</term>
<term name="month-04">aprilie</term>
<term name="month-05">mai</term>
<term name="month-06">iunie</term>
<term name="month-07">iulie</term>
<term name="month-08">august</term>
<term name="month-09">septembrie</term>
<term name="month-10">octombrie</term>
<term name="month-11">noiembrie</term>
<term name="month-12">decembrie</term>
<!-- SHORT MONTH FORMS -->
<term name="month-01" form="short">ian</term>
<term name="month-02" form="short">feb</term>
<term name="month-03" form="short">mar</term>
<term name="month-04" form="short">apr</term>
<term name="month-05" form="short">mai</term>
<term name="month-06" form="short">iun</term>
<term name="month-07" form="short">iul</term>
<term name="month-08" form="short">aug</term>
<term name="month-09" form="short">sep</term>
<term name="month-10" form="short">oct</term>
<term name="month-11" form="short">nov</term>
<term name="month-12" form="short">dec</term>
<!-- SEASONS -->
<term name="season-01">Spring</term>
<term name="season-02">Summer</term>
<term name="season-03">Autumn</term>
<term name="season-04">Winter</term>
</terms>
</locale>

View file

@ -1,211 +1,299 @@
<?xml version="1.0" encoding="UTF-8"?>
<terms xmlns="http://purl.org/net/xbiblio/csl">
<locale xml:lang="ru">
<term name="at">на</term>
<term name="in">в</term>
<term name="ibid">так же</term>
<term name="accessed">вызвано</term>
<term name="retrieved">извлечено</term>
<term name="from">от</term>
<term name="forthcoming">грядущие</term>
<term name="references">ссылки</term>
<term name="reference item">
<single>источник</single>
<multiple>источники</multiple>
</term>
<term name="no date">нет даты</term>
<term name="and">и</term>
<term name="et-al">и др.</term>
<term name="interview">интервью</term>
<term name="letter">письмо</term>
<term name="anonymous">анонимно</term>
<term name="anonymous" form="short">анон</term>
<term name="and others">и другие</term>
<term name="in press">в печати</term>
<term name="online">онлайн</term>
<term name="cited">цитированно</term>
<term name="internet">Интернет</term>
<term name="presented at">представлено на</term>
<term name="anthropology">антропология</term>
<term name="astronomy">астрономия</term>
<term name="biology">биология</term>
<term name="botany">ботаника</term>
<term name="chemistry">химия</term>
<term name="engineering">инженерное дело</term>
<term name="generic-base">общая основа</term>
<term name="geography">география</term>
<term name="geology">геология</term>
<term name="history">история</term>
<term name="humanities">гуманитарные науки</term>
<term name="literature">литература</term>
<term name="math">математика</term>
<term name="medicine">медицина</term>
<term name="philosophy">философия</term>
<term name="physics">физика</term>
<term name="psychology">психология</term>
<term name="sociology">социология</term>
<term name="science">естественные науки</term>
<term name="political_science">политология</term>
<term name="social_science">общественные науки</term>
<term name="theology">теология</term>
<term name="zoology">зоология</term>
<term name="book">
<single>книга</single>
<multiple>книги</multiple>
</term>
<term name="chapter">
<single>глава</single>
<multiple>главы</multiple>
</term>
<term name="column">
<single>колонка</single>
<multiple>колонки</multiple>
</term>
<term name="figure">
<single>рисунок</single>
<multiple>рисунки</multiple>
</term>
<term name="folio">
<single>лист</single>
<multiple>листы</multiple>
</term>
<term name="issue">
<single>номер</single>
<multiple>номера</multiple>
</term>
<term name="line">
<single>линия</single>
<multiple>линии</multiple>
</term>
<term name="note">
<single>запись</single>
<multiple>записи</multiple>
</term>
<term name="opus">
<single>опус</single>
<multiple>опусы</multiple>
</term>
<term name="page">
<single>страница</single>
<multiple>страницы</multiple>
</term>
<term name="paragraph">
<single>параграф</single>
<multiple>параграфы</multiple>
</term>
<term name="part">
<single>часть</single>
<multiple>части</multiple>
</term>
<term name="section">
<single>раздел</single>
<multiple>разделы</multiple>
</term>
<term name="volume">
<single>том</single>
<multiple>тома</multiple>
</term>
<term name="edition">
<single>издание</single>
<multiple>издания</multiple>
</term>
<term name="verse">
<single>стих</single>
<multiple>стихи</multiple>
</term>
<term name="sub verbo">
<single>под рубрикой</single>
<multiple>под рубриками</multiple>
</term>
<term name="book" form="short">кн</term>
<term name="chapter" form="short">гл</term>
<term name="column" form="short">кол</term>
<term name="figure" form="short">рис</term>
<term name="folio" form="short">л</term>
<term name="issue" form="short">ном</term>
<term name="opus" form="short">оп</term>
<term name="page" form="short">
<single>p</single>
<multiple>pp</multiple>
</term>
<term name="paragraph" form="short">пар</term>
<term name="part" form="short">ч</term>
<term name="section" form="short">разд</term>
<term name="sub verbo" form="short">
<single>s.v</single>
<multiple>s.vv</multiple>
</term>
<term name="verse" form="short">
<single>v</single>
<multiple>vv</multiple>
</term>
<term name="volume" form="short">
<single>vol</single>
<multiple>vols</multiple>
</term>
<term name="edition">edition</term>
<term name="edition" form="short">изд</term>
<term name="paragraph" form="symbol">
<single></single>
<multiple>¶¶</multiple>
</term>
<term name="section" form="symbol">
<single>§</single>
<multiple>§§</multiple>
</term>
<term name="author">
<single/>
<multiple/>
</term>
<term name="editor">
<single>редактор</single>
<multiple>редакторы</multiple>
</term>
<term name="translator">
<single>переводчик</single>
<multiple>переводчики</multiple>
</term>
<term name="author" form="short">
<single/>
<multiple/>
</term>
<term name="editor" form="short">
<single>ред-р</single>
<multiple>ред-ры</multiple>
</term>
<term name="translator" form="short">
<single>перев-к</single>
<multiple>перев-и</multiple>
</term>
<term name="editor" form="verb">отредактировано</term>
<term name="translator" form="verb">переведено</term>
<term name="recipient" form="verb"/>
<term name="interviewer" form="verb">интервью взято</term>
<term name="editor" form="verb-short">ред</term>
<term name="translator" form="verb-short">перев</term>
<term name="month-01">Январь</term>
<term name="month-02">Февраль</term>
<term name="month-03">Март</term>
<term name="month-04">Апрель</term>
<term name="month-05">Май</term>
<term name="month-06">Июнь</term>
<term name="month-07">Июль</term>
<term name="month-08">Август</term>
<term name="month-09">Сентябрь</term>
<term name="month-10">Октябрь</term>
<term name="month-11">Ноябрь</term>
<term name="month-12">Декабрь</term>
<term name="month-01" form="short">Янв</term>
<term name="month-02" form="short">Фев</term>
<term name="month-03" form="short">Мар</term>
<term name="month-04" form="short">Апр</term>
<term name="month-05" form="short">Май</term>
<term name="month-06" form="short">Июн</term>
<term name="month-07" form="short">Июл</term>
<term name="month-08" form="short">Авг</term>
<term name="month-09" form="short">Сен</term>
<term name="month-10" form="short">Окт</term>
<term name="month-11" form="short">Ноя</term>
<term name="month-12" form="short">Дек</term>
</locale>
</terms>
<?xml version="1.0" encoding="utf-8"?>
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="ru">
<style-options punctuation-in-quote="true"/>
<date form="text">
<date-part name="month" suffix=" "/>
<date-part name="day" suffix=", "/>
<date-part name="year"/>
</date>
<date form="numeric">
<date-part name="year"/>
<date-part name="month" form="numeric" prefix="-" range-delimiter="/"/>
<date-part name="day" prefix="-" range-delimiter="/"/>
</date>
<terms>
<term name="at">at</term>
<term name="in">в</term>
<term name="ibid">так же</term>
<term name="accessed">вызвано</term>
<term name="retrieved">извлечено</term>
<term name="from">от</term>
<term name="forthcoming">грядущие</term>
<term name="reference">
<single>reference</single>
<multiple>references</multiple>
</term>
<term name="reference" form="short">
<single>ref.</single>
<multiple>refs.</multiple>
</term>
<term name="no date">нет даты</term>
<term name="and">и</term>
<term name="et-al">и др.</term>
<term name="circa">circa</term>
<term name="circa" form="short">c.</term>
<term name="interview">interview</term>
<term name="letter">letter</term>
<term name="anonymous">anonymous</term>
<term name="anonymous" form="short">anon</term>
<term name="and others">and others</term>
<term name="in press">in press</term>
<term name="online">online</term>
<term name="cited">cited</term>
<term name="internet">internet</term>
<term name="presented at">presented at the</term>
<term name="ad">AD</term>
<term name="bc">BC</term>
<!-- QUOTES -->
<term name="open-quote"></term>
<term name="close-quote"></term>
<term name="open-inner-quote"></term>
<term name="close-inner-quote"></term>
<!-- ORDINALS -->
<term name="ordinal-01">st</term>
<term name="ordinal-02">nd</term>
<term name="ordinal-03">rd</term>
<term name="ordinal-04">th</term>
<!-- LONG ORDINALS -->
<term name="long-ordinal-01">first</term>
<term name="long-ordinal-02">second</term>
<term name="long-ordinal-03">third</term>
<term name="long-ordinal-04">fourth</term>
<term name="long-ordinal-05">fifth</term>
<term name="long-ordinal-06">sixth</term>
<term name="long-ordinal-07">seventh</term>
<term name="long-ordinal-08">eighth</term>
<term name="long-ordinal-09">ninth</term>
<term name="long-ordinal-10">tenth</term>
<!-- CATEGORIES -->
<term name="anthropology">anthropology</term>
<term name="astronomy">astronomy</term>
<term name="biology">biology</term>
<term name="botany">botany</term>
<term name="chemistry">chemistry</term>
<term name="engineering">engineering</term>
<term name="generic-base">generic base</term>
<term name="geography">geography</term>
<term name="geology">geology</term>
<term name="history">history</term>
<term name="humanities">humanities</term>
<term name="linguistics">linguistics</term>
<term name="literature">literature</term>
<term name="math">math</term>
<term name="medicine">medicine</term>
<term name="philosophy">philosophy</term>
<term name="physics">physics</term>
<term name="psychology">psychology</term>
<term name="sociology">sociology</term>
<term name="science">science</term>
<term name="political_science">political science</term>
<term name="social_science">social science</term>
<term name="theology">theology</term>
<term name="zoology">zoology</term>
<!-- LONG LOCATOR FORMS -->
<term name="book">
<single>book</single>
<multiple>books</multiple>
</term>
<term name="chapter">
<single>chapter</single>
<multiple>chapters</multiple>
</term>
<term name="column">
<single>column</single>
<multiple>columns</multiple>
</term>
<term name="figure">
<single>figure</single>
<multiple>figures</multiple>
</term>
<term name="folio">
<single>folio</single>
<multiple>folios</multiple>
</term>
<term name="issue">
<single>number</single>
<multiple>numbers</multiple>
</term>
<term name="line">
<single>линия</single>
<multiple>линии</multiple>
</term>
<term name="note">
<single>note</single>
<multiple>notes</multiple>
</term>
<term name="opus">
<single>opus</single>
<multiple>opera</multiple>
</term>
<term name="page">
<single>страницы</single>
<multiple>страницы</multiple>
</term>
<term name="paragraph">
<single>параграф</single>
<multiple>параграфы</multiple>
</term>
<term name="part">
<single>part</single>
<multiple>parts</multiple>
</term>
<term name="section">
<single>section</single>
<multiple>sections</multiple>
</term>
<term name="volume">
<single>volume</single>
<multiple>volumes</multiple>
</term>
<term name="edition">
<single>edition</single>
<multiple>editions</multiple>
</term>
<term name="verse">
<single>verse</single>
<multiple>verses</multiple>
</term>
<term name="sub verbo">
<single>sub verbo</single>
<multiple>s.vv</multiple>
</term>
<!-- SHORT LOCATOR FORMS -->
<term name="book" form="short">bk</term>
<term name="chapter" form="short">chap</term>
<term name="column" form="short">col</term>
<term name="figure" form="short">fig</term>
<term name="folio" form="short">f</term>
<term name="issue" form="short">ном</term>
<term name="opus" form="short">op</term>
<term name="page" form="short">
<single>стр-а</single>
<multiple>стр-ы</multiple>
</term>
<term name="paragraph" form="short">para</term>
<term name="part" form="short">pt</term>
<term name="section" form="short">sec</term>
<term name="sub verbo" form="short">
<single>s.v</single>
<multiple>s.vv</multiple>
</term>
<term name="verse" form="short">
<single>v</single>
<multiple>vv</multiple>
</term>
<term name="volume" form="short">
<single>vol</single>
<multiple>vols</multiple>
</term>
<term name="edition" form="short">ed</term>
<!-- SYMBOL LOCATOR FORMS -->
<term name="paragraph" form="symbol">
<single></single>
<multiple>¶¶</multiple>
</term>
<term name="section" form="symbol">
<single>§</single>
<multiple>§§</multiple>
</term>
<!-- LONG ROLE FORMS -->
<term name="author">
<single/>
<multiple/>
</term>
<term name="editor">
<single>редактор</single>
<multiple>редакторы</multiple>
</term>
<term name="editorial-director">
<single>editor</single>
<multiple>editors</multiple>
</term>
<term name="translator">
<single>переводчик</single>
<multiple>переводчики</multiple>
</term>
<term name="editortranslator">
<single>editor &amp; translator</single>
<multiple>editors &amp; translators</multiple>
</term>
<!-- SHORT ROLE FORMS -->
<term name="author" form="short">
<single/>
<multiple/>
</term>
<term name="editor" form="short">
<single>ред-р</single>
<multiple>ред-ры</multiple>
</term>
<term name="editorial-director" form="short">
<single>ed.</single>
<multiple>eds.</multiple>
</term>
<term name="translator" form="short">
<single>перев-к</single>
<multiple>перев-и</multiple>
</term>
<term name="editortranslator" form="short">
<single>ed. &amp; tran.</single>
<multiple>eds. &amp; trans.</multiple>
</term>
<!-- VERB ROLE FORMS -->
<term name="editor" form="verb">отредактировано</term>
<term name="editorial-director" form="verb">edited by</term>
<term name="translator" form="verb">переведено</term>
<term name="editortranslator" form="verb">edited &amp; translated by</term>
<term name="recipient" form="verb">to</term>
<term name="interviewer" form="verb">interview by</term>
<!-- SHORT VERB ROLE FORMS -->
<term name="editor" form="verb-short">ред</term>
<term name="editorial-director" form="verb-short">ed.</term>
<term name="translator" form="verb-short">перев</term>
<term name="editortranslator" form="verb-short">ed. &amp; trans. by</term>
<!-- LONG MONTH FORMS -->
<term name="month-01">Январь</term>
<term name="month-02">Февраль</term>
<term name="month-03">Март</term>
<term name="month-04">Апрель</term>
<term name="month-05">Май</term>
<term name="month-06">Июнь</term>
<term name="month-07">Июль</term>
<term name="month-08">Август</term>
<term name="month-09">Сентябрь</term>
<term name="month-10">Октябрь</term>
<term name="month-11">Ноябрь</term>
<term name="month-12">Декабрь</term>
<!-- SHORT MONTH FORMS -->
<term name="month-01" form="short">Янв</term>
<term name="month-02" form="short">Фев</term>
<term name="month-03" form="short">Мар</term>
<term name="month-04" form="short">Апр</term>
<term name="month-05" form="short">Май</term>
<term name="month-06" form="short">Июн</term>
<term name="month-07" form="short">Июл</term>
<term name="month-08" form="short">Авг</term>
<term name="month-09" form="short">Сен</term>
<term name="month-10" form="short">Окт</term>
<term name="month-11" form="short">Ноя</term>
<term name="month-12" form="short">Дек</term>
<!-- SEASONS -->
<term name="season-01">Spring</term>
<term name="season-02">Summer</term>
<term name="season-03">Autumn</term>
<term name="season-04">Winter</term>
</terms>
</locale>

View file

@ -1,211 +1,299 @@
<?xml version="1.0" encoding="UTF-8"?>
<terms xmlns="http://purl.org/net/xbiblio/csl">
<locale xml:lang="sk">
<term name="at">v</term>
<term name="in">v</term>
<term name="ibid">ibid</term>
<term name="accessed">cit</term>
<term name="retrieved">cit</term>
<term name="from">z</term>
<term name="forthcoming">nadchádzajúci</term>
<term name="references">referencie</term>
<term name="reference item">
<single>source</single>
<multiple>sources</multiple>
</term>
<term name="no date">n.d.</term>
<term name="and">a</term>
<term name="et-al">et al</term>
<term name="interview">osobná komunikácia</term>
<term name="letter">list</term>
<term name="anonymous">anonym</term>
<term name="anonymous" form="short">anon</term>
<term name="and others">and ďalší</term>
<term name="in press">v tlači</term>
<term name="online">online</term>
<term name="cited">cit</term>
<term name="internet">internet</term>
<term name="presented at">prezentované na</term>
<term name="anthropology">antropológia</term>
<term name="astronomy">astronómia</term>
<term name="biology">biológia</term>
<term name="botany">botanika</term>
<term name="chemistry">chémia</term>
<term name="engineering">strojárstvo/technika</term>
<term name="generic-base">všeobecný základ</term>
<term name="geography">geografia</term>
<term name="geology">geológia</term>
<term name="history">história</term>
<term name="humanities">humanitné vedy</term>
<term name="literature">literatúra</term>
<term name="math">matematika</term>
<term name="medicine">medicína</term>
<term name="philosophy">filozofia</term>
<term name="physics">fyzika</term>
<term name="psychology">psychológia</term>
<term name="sociology">sociológia</term>
<term name="science">veda</term>
<term name="political_science">politické vedy</term>
<term name="social_science">sociálne vedy</term>
<term name="theology">teológia</term>
<term name="zoology">zoológia</term>
<term name="book">
<single>kniha</single>
<multiple>knihy</multiple>
</term>
<term name="chapter">
<single>kapitola</single>
<multiple>kapitoly</multiple>
</term>
<term name="column">
<single>stĺpec</single>
<multiple>stĺpce</multiple>
</term>
<term name="figure">
<single>obrázok</single>
<multiple>obrázky</multiple>
</term>
<term name="folio">
<single>list</single>
<multiple>listy</multiple>
</term>
<term name="issue">
<single>číslo</single>
<multiple>čísla</multiple>
</term>
<term name="line">
<single>riadok</single>
<multiple>riadky</multiple>
</term>
<term name="note">
<single>poznámka</single>
<multiple>poznámky</multiple>
</term>
<term name="opus">
<single>opus</single>
<multiple>opera</multiple>
</term>
<term name="page">
<single>strana</single>
<multiple>strany</multiple>
</term>
<term name="paragraph">
<single>odstavec</single>
<multiple>odstavce</multiple>
</term>
<term name="part">
<single>časť</single>
<multiple>časti</multiple>
</term>
<term name="section">
<single>sekcia</single>
<multiple>sekcie</multiple>
</term>
<term name="volume">
<single>ročník</single>
<multiple>ročníky</multiple>
</term>
<term name="edition">
<single>vydanie</single>
<multiple>vydania</multiple>
</term>
<term name="verse">
<single>verš</single>
<multiple>verše</multiple>
</term>
<term name="sub verbo">
<single>sub verbo</single>
<multiple>s.vv</multiple>
</term>
<term name="book" form="short">k</term>
<term name="chapter" form="short">kap</term>
<term name="column" form="short">stĺp</term>
<term name="figure" form="short">obr</term>
<term name="folio" form="short">l</term>
<term name="issue" form="short">č</term>
<term name="opus" form="short">op</term>
<term name="page" form="short">
<single>s</single>
<multiple>s</multiple>
</term>
<term name="paragraph" form="short">par</term>
<term name="part" form="short">č</term>
<term name="section" form="short">sek</term>
<term name="sub verbo" form="short">
<single>s.v</single>
<multiple>s.vv</multiple>
</term>
<term name="verse" form="short">
<single>v</single>
<multiple>v</multiple>
</term>
<term name="volume" form="short">
<single>roč</single>
<multiple>roč</multiple>
</term>
<term name="edition">edition</term>
<term name="edition" form="short">vyd</term>
<term name="paragraph" form="symbol">
<single></single>
<multiple></multiple>
</term>
<term name="section" form="symbol">
<single>§</single>
<multiple>§</multiple>
</term>
<term name="author">
<single>autor</single>
<multiple>autori</multiple>
</term>
<term name="editor">
<single>editor</single>
<multiple>editori</multiple>
</term>
<term name="translator">
<single>prekladateľ</single>
<multiple>prekladatelia</multiple>
</term>
<term name="author" form="short">
<single>aut</single>
<multiple>aut</multiple>
</term>
<term name="editor" form="short">
<single>ed</single>
<multiple>ed</multiple>
</term>
<term name="translator" form="short">
<single>prek</single>
<multiple>prek</multiple>
</term>
<term name="editor" form="verb">editoval</term>
<term name="translator" form="verb">preložil</term>
<term name="recipient" form="verb">adresát</term>
<term name="interviewer" form="verb">rozhovor urobil</term>
<term name="editor" form="verb-short">ed</term>
<term name="translator" form="verb-short">prel</term>
<term name="month-01">január</term>
<term name="month-02">február</term>
<term name="month-03">marec</term>
<term name="month-04">apríl</term>
<term name="month-05">máj</term>
<term name="month-06">jún</term>
<term name="month-07">júl</term>
<term name="month-08">august</term>
<term name="month-09">september</term>
<term name="month-10">október</term>
<term name="month-11">november</term>
<term name="month-12">december</term>
<term name="month-01" form="short">jan</term>
<term name="month-02" form="short">feb</term>
<term name="month-03" form="short">mar</term>
<term name="month-04" form="short">apr</term>
<term name="month-05" form="short">máj</term>
<term name="month-06" form="short">jún</term>
<term name="month-07" form="short">júl</term>
<term name="month-08" form="short">aug</term>
<term name="month-09" form="short">sep</term>
<term name="month-10" form="short">okt</term>
<term name="month-11" form="short">nov</term>
<term name="month-12" form="short">dec</term>
</locale>
</terms>
<?xml version="1.0" encoding="utf-8"?>
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="sk">
<style-options punctuation-in-quote="true"/>
<date form="text">
<date-part name="month" suffix=" "/>
<date-part name="day" suffix=", "/>
<date-part name="year"/>
</date>
<date form="numeric">
<date-part name="year"/>
<date-part name="month" form="numeric" prefix="-" range-delimiter="/"/>
<date-part name="day" prefix="-" range-delimiter="/"/>
</date>
<terms>
<term name="at">v</term>
<term name="in">v</term>
<term name="ibid">ibid</term>
<term name="accessed">cit</term>
<term name="retrieved">cit</term>
<term name="from">z</term>
<term name="forthcoming">nadchádzajúci</term>
<term name="reference">
<single>reference</single>
<multiple>references</multiple>
</term>
<term name="reference" form="short">
<single>ref.</single>
<multiple>refs.</multiple>
</term>
<term name="no date">n.d.</term>
<term name="and">a</term>
<term name="et-al">et al</term>
<term name="circa">circa</term>
<term name="circa" form="short">c.</term>
<term name="interview">osobná komunikácia</term>
<term name="letter">list</term>
<term name="anonymous">anonym</term>
<term name="anonymous" form="short">anon</term>
<term name="and others">and ďalší</term>
<term name="in press">v tlači</term>
<term name="online">online</term>
<term name="cited">cit</term>
<term name="internet">internet</term>
<term name="presented at">prezentované na</term>
<term name="ad">AD</term>
<term name="bc">BC</term>
<!-- QUOTES -->
<term name="open-quote"></term>
<term name="close-quote"></term>
<term name="open-inner-quote"></term>
<term name="close-inner-quote"></term>
<!-- ORDINALS -->
<term name="ordinal-01">st</term>
<term name="ordinal-02">nd</term>
<term name="ordinal-03">rd</term>
<term name="ordinal-04">th</term>
<!-- LONG ORDINALS -->
<term name="long-ordinal-01">first</term>
<term name="long-ordinal-02">second</term>
<term name="long-ordinal-03">third</term>
<term name="long-ordinal-04">fourth</term>
<term name="long-ordinal-05">fifth</term>
<term name="long-ordinal-06">sixth</term>
<term name="long-ordinal-07">seventh</term>
<term name="long-ordinal-08">eighth</term>
<term name="long-ordinal-09">ninth</term>
<term name="long-ordinal-10">tenth</term>
<!-- CATEGORIES -->
<term name="anthropology">antropológia</term>
<term name="astronomy">astronómia</term>
<term name="biology">biológia</term>
<term name="botany">botanika</term>
<term name="chemistry">chémia</term>
<term name="engineering">strojárstvo/technika</term>
<term name="generic-base">všeobecný základ</term>
<term name="geography">geografia</term>
<term name="geology">geológia</term>
<term name="history">história</term>
<term name="humanities">humanitné vedy</term>
<term name="linguistics">linguistics</term>
<term name="literature">literatúra</term>
<term name="math">matematika</term>
<term name="medicine">medicína</term>
<term name="philosophy">filozofia</term>
<term name="physics">fyzika</term>
<term name="psychology">psychológia</term>
<term name="sociology">sociológia</term>
<term name="science">veda</term>
<term name="political_science">politické vedy</term>
<term name="social_science">sociálne vedy</term>
<term name="theology">teológia</term>
<term name="zoology">zoológia</term>
<!-- LONG LOCATOR FORMS -->
<term name="book">
<single>kniha</single>
<multiple>knihy</multiple>
</term>
<term name="chapter">
<single>kapitola</single>
<multiple>kapitoly</multiple>
</term>
<term name="column">
<single>stĺpec</single>
<multiple>stĺpce</multiple>
</term>
<term name="figure">
<single>obrázok</single>
<multiple>obrázky</multiple>
</term>
<term name="folio">
<single>list</single>
<multiple>listy</multiple>
</term>
<term name="issue">
<single>číslo</single>
<multiple>čísla</multiple>
</term>
<term name="line">
<single>riadok</single>
<multiple>riadky</multiple>
</term>
<term name="note">
<single>poznámka</single>
<multiple>poznámky</multiple>
</term>
<term name="opus">
<single>opus</single>
<multiple>opera</multiple>
</term>
<term name="page">
<single>strana</single>
<multiple>strany</multiple>
</term>
<term name="paragraph">
<single>odstavec</single>
<multiple>odstavce</multiple>
</term>
<term name="part">
<single>časť</single>
<multiple>časti</multiple>
</term>
<term name="section">
<single>sekcia</single>
<multiple>sekcie</multiple>
</term>
<term name="volume">
<single>ročník</single>
<multiple>ročníky</multiple>
</term>
<term name="edition">
<single>vydanie</single>
<multiple>vydania</multiple>
</term>
<term name="verse">
<single>verš</single>
<multiple>verše</multiple>
</term>
<term name="sub verbo">
<single>sub verbo</single>
<multiple>s.vv</multiple>
</term>
<!-- SHORT LOCATOR FORMS -->
<term name="book" form="short">k</term>
<term name="chapter" form="short">kap</term>
<term name="column" form="short">stĺp</term>
<term name="figure" form="short">obr</term>
<term name="folio" form="short">l</term>
<term name="issue" form="short">č</term>
<term name="opus" form="short">op</term>
<term name="page" form="short">
<single>s</single>
<multiple>s</multiple>
</term>
<term name="paragraph" form="short">par</term>
<term name="part" form="short">č</term>
<term name="section" form="short">sek</term>
<term name="sub verbo" form="short">
<single>s.v</single>
<multiple>s.vv</multiple>
</term>
<term name="verse" form="short">
<single>v</single>
<multiple>v</multiple>
</term>
<term name="volume" form="short">
<single>roč</single>
<multiple>roč</multiple>
</term>
<term name="edition" form="short">vyd</term>
<!-- SYMBOL LOCATOR FORMS -->
<term name="paragraph" form="symbol">
<single></single>
<multiple></multiple>
</term>
<term name="section" form="symbol">
<single>§</single>
<multiple>§</multiple>
</term>
<!-- LONG ROLE FORMS -->
<term name="author">
<single/>
<multiple/>
</term>
<term name="editor">
<single>editor</single>
<multiple>editori</multiple>
</term>
<term name="editorial-director">
<single>editor</single>
<multiple>editors</multiple>
</term>
<term name="translator">
<single>prekladateľ</single>
<multiple>prekladatelia</multiple>
</term>
<term name="editortranslator">
<single>editor &amp; translator</single>
<multiple>editors &amp; translators</multiple>
</term>
<!-- SHORT ROLE FORMS -->
<term name="author" form="short">
<single/>
<multiple/>
</term>
<term name="editor" form="short">
<single>ed</single>
<multiple>ed</multiple>
</term>
<term name="editorial-director" form="short">
<single>ed.</single>
<multiple>eds.</multiple>
</term>
<term name="translator" form="short">
<single>prek</single>
<multiple>prek</multiple>
</term>
<term name="editortranslator" form="short">
<single>ed. &amp; tran.</single>
<multiple>eds. &amp; trans.</multiple>
</term>
<!-- VERB ROLE FORMS -->
<term name="editor" form="verb">editoval</term>
<term name="editorial-director" form="verb">edited by</term>
<term name="translator" form="verb">preložil</term>
<term name="editortranslator" form="verb">edited &amp; translated by</term>
<term name="recipient" form="verb">adresát</term>
<term name="interviewer" form="verb">rozhovor urobil</term>
<!-- SHORT VERB ROLE FORMS -->
<term name="editor" form="verb-short">ed</term>
<term name="editorial-director" form="verb-short">ed.</term>
<term name="translator" form="verb-short">prel</term>
<term name="editortranslator" form="verb-short">ed. &amp; trans. by</term>
<!-- LONG MONTH FORMS -->
<term name="month-01">január</term>
<term name="month-02">február</term>
<term name="month-03">marec</term>
<term name="month-04">apríl</term>
<term name="month-05">máj</term>
<term name="month-06">jún</term>
<term name="month-07">júl</term>
<term name="month-08">august</term>
<term name="month-09">september</term>
<term name="month-10">október</term>
<term name="month-11">november</term>
<term name="month-12">december</term>
<!-- SHORT MONTH FORMS -->
<term name="month-01" form="short">jan</term>
<term name="month-02" form="short">feb</term>
<term name="month-03" form="short">mar</term>
<term name="month-04" form="short">apr</term>
<term name="month-05" form="short">máj</term>
<term name="month-06" form="short">jún</term>
<term name="month-07" form="short">júl</term>
<term name="month-08" form="short">aug</term>
<term name="month-09" form="short">sep</term>
<term name="month-10" form="short">okt</term>
<term name="month-11" form="short">nov</term>
<term name="month-12" form="short">dec</term>
<!-- SEASONS -->
<term name="season-01">Spring</term>
<term name="season-02">Summer</term>
<term name="season-03">Autumn</term>
<term name="season-04">Winter</term>
</terms>
</locale>

View file

@ -1,211 +1,299 @@
<?xml version="1.0" encoding="UTF-8"?>
<terms xmlns="http://purl.org/net/xbiblio/csl">
<locale xml:lang="sl">
<term name="at">pri</term>
<term name="in">v</term>
<term name="ibid">isto</term>
<term name="accessed">dostopano</term>
<term name="retrieved">pridobljeno</term>
<term name="from">od</term>
<term name="forthcoming">pred izidom</term>
<term name="references">sklici</term>
<term name="reference item">
<single>vir</single>
<multiple>viri</multiple>
</term>
<term name="no date">b.d.</term>
<term name="and">in</term>
<term name="et-al">idr.</term>
<term name="interview">intervju</term>
<term name="letter">pismo</term>
<term name="anonymous">anonimni</term>
<term name="anonymous" form="short">anon</term>
<term name="and others">in drugi</term>
<term name="in press">v tisku</term>
<term name="online">na spletu</term>
<term name="cited">citirano</term>
<term name="internet">internet</term>
<term name="presented at">predstavljeno na</term>
<term name="anthropology">antropologija</term>
<term name="astronomy">astronomija</term>
<term name="biology">biologija</term>
<term name="botany">botanika</term>
<term name="chemistry">kemija</term>
<term name="engineering">strojništvo</term>
<term name="generic-base">splošno</term>
<term name="geography">geografija</term>
<term name="geology">geologija</term>
<term name="history">zgodovina</term>
<term name="humanities">humanistika</term>
<term name="literature">literatura</term>
<term name="math">matematika</term>
<term name="medicine">medicina</term>
<term name="philosophy">filozofija</term>
<term name="physics">fizika</term>
<term name="psychology">psihologija</term>
<term name="sociology">sociologija</term>
<term name="science">znanost</term>
<term name="political_science">politologija</term>
<term name="social_science">družbene vede</term>
<term name="theology">teologija</term>
<term name="zoology">zoologija</term>
<term name="book">
<single>knjiga</single>
<multiple>knjige</multiple>
</term>
<term name="chapter">
<single>poglavje</single>
<multiple>poglavja</multiple>
</term>
<term name="column">
<single>stolpec</single>
<multiple>stolpci</multiple>
</term>
<term name="figure">
<single>slika</single>
<multiple>slike</multiple>
</term>
<term name="folio">
<single>folio</single>
<multiple>folii</multiple>
</term>
<term name="issue">
<single>številka</single>
<multiple>številke</multiple>
</term>
<term name="line">
<single>vrstica</single>
<multiple>vrstice</multiple>
</term>
<term name="note">
<single>opomba</single>
<multiple>opombe</multiple>
</term>
<term name="opus">
<single>opus</single>
<multiple>opera</multiple>
</term>
<term name="page">
<single>stran</single>
<multiple>strani</multiple>
</term>
<term name="paragraph">
<single>odstavek</single>
<multiple>odstavki</multiple>
</term>
<term name="part">
<single>del</single>
<multiple>deli</multiple>
</term>
<term name="section">
<single>odsek</single>
<multiple>odseki</multiple>
</term>
<term name="volume">
<single>letnik</single>
<multiple>letniki</multiple>
</term>
<term name="edition">
<single>izdaja</single>
<multiple>izdaje</multiple>
</term>
<term name="verse">
<single>verz</single>
<multiple>verzi</multiple>
</term>
<term name="sub verbo">
<single>sub verbo</single>
<multiple>s.vv</multiple>
</term>
<term name="book" form="short">knj</term>
<term name="chapter" form="short">pogl</term>
<term name="column" form="short">sto</term>
<term name="figure" form="short">sl</term>
<term name="folio" form="short">f</term>
<term name="issue" form="short">št</term>
<term name="opus" form="short">op</term>
<term name="page" form="short">
<single>str</single>
<multiple>str</multiple>
</term>
<term name="paragraph" form="short">odst</term>
<term name="part" form="short">del</term>
<term name="section" form="short">odsk</term>
<term name="sub verbo" form="short">
<single>s.v</single>
<multiple>s.vv</multiple>
</term>
<term name="verse" form="short">
<single>v</single>
<multiple>v</multiple>
</term>
<term name="volume" form="short">
<single>let</single>
<multiple>let</multiple>
</term>
<term name="edition">edition</term>
<term name="edition" form="short">iz</term>
<term name="paragraph" form="symbol">
<single></single>
<multiple>¶¶</multiple>
</term>
<term name="section" form="symbol">
<single>§</single>
<multiple>§§</multiple>
</term>
<term name="author">
<single/>
<multiple/>
</term>
<term name="editor">
<single>urednik</single>
<multiple>uredniki</multiple>
</term>
<term name="translator">
<single>prevajalec</single>
<multiple>prevajalci</multiple>
</term>
<term name="author" form="short">
<single/>
<multiple/>
</term>
<term name="editor" form="short">
<single>ur</single>
<multiple>ur</multiple>
</term>
<term name="translator" form="short">
<single>prev</single>
<multiple>prev</multiple>
</term>
<term name="editor" form="verb">uredil</term>
<term name="translator" form="verb">prevedel</term>
<term name="recipient" form="verb">za</term>
<term name="interviewer" form="verb">intervjuval</term>
<term name="editor" form="verb-short">ur</term>
<term name="translator" form="verb-short">prev</term>
<term name="month-01">januar</term>
<term name="month-02">februar</term>
<term name="month-03">marec</term>
<term name="month-04">april</term>
<term name="month-05">maj</term>
<term name="month-06">junij</term>
<term name="month-07">julij</term>
<term name="month-08">avgust</term>
<term name="month-09">september</term>
<term name="month-10">oktober</term>
<term name="month-11">november</term>
<term name="month-12">december</term>
<term name="month-01" form="short">jan</term>
<term name="month-02" form="short">feb</term>
<term name="month-03" form="short">mar</term>
<term name="month-04" form="short">apr</term>
<term name="month-05" form="short">maj</term>
<term name="month-06" form="short">jun</term>
<term name="month-07" form="short">jul</term>
<term name="month-08" form="short">avg</term>
<term name="month-09" form="short">sep</term>
<term name="month-10" form="short">okt</term>
<term name="month-11" form="short">nov</term>
<term name="month-12" form="short">dec</term>
</locale>
</terms>
<?xml version="1.0" encoding="utf-8"?>
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="sl">
<style-options punctuation-in-quote="true"/>
<date form="text">
<date-part name="month" suffix=" "/>
<date-part name="day" suffix=", "/>
<date-part name="year"/>
</date>
<date form="numeric">
<date-part name="year"/>
<date-part name="month" form="numeric" prefix="-" range-delimiter="/"/>
<date-part name="day" prefix="-" range-delimiter="/"/>
</date>
<terms>
<term name="at">pri</term>
<term name="in">v</term>
<term name="ibid">isto</term>
<term name="accessed">dostopano</term>
<term name="retrieved">pridobljeno</term>
<term name="from">od</term>
<term name="forthcoming">pred izidom</term>
<term name="reference">
<single>reference</single>
<multiple>references</multiple>
</term>
<term name="reference" form="short">
<single>ref.</single>
<multiple>refs.</multiple>
</term>
<term name="no date">b.d.</term>
<term name="and">in</term>
<term name="et-al">idr.</term>
<term name="circa">circa</term>
<term name="circa" form="short">c.</term>
<term name="interview">intervju</term>
<term name="letter">pismo</term>
<term name="anonymous">anonimni</term>
<term name="anonymous" form="short">anon</term>
<term name="and others">in drugi</term>
<term name="in press">v tisku</term>
<term name="online">na spletu</term>
<term name="cited">citirano</term>
<term name="internet">internet</term>
<term name="presented at">predstavljeno na</term>
<term name="ad">AD</term>
<term name="bc">BC</term>
<!-- QUOTES -->
<term name="open-quote"></term>
<term name="close-quote"></term>
<term name="open-inner-quote"></term>
<term name="close-inner-quote"></term>
<!-- ORDINALS -->
<term name="ordinal-01">st</term>
<term name="ordinal-02">nd</term>
<term name="ordinal-03">rd</term>
<term name="ordinal-04">th</term>
<!-- LONG ORDINALS -->
<term name="long-ordinal-01">first</term>
<term name="long-ordinal-02">second</term>
<term name="long-ordinal-03">third</term>
<term name="long-ordinal-04">fourth</term>
<term name="long-ordinal-05">fifth</term>
<term name="long-ordinal-06">sixth</term>
<term name="long-ordinal-07">seventh</term>
<term name="long-ordinal-08">eighth</term>
<term name="long-ordinal-09">ninth</term>
<term name="long-ordinal-10">tenth</term>
<!-- CATEGORIES -->
<term name="anthropology">antropologija</term>
<term name="astronomy">astronomija</term>
<term name="biology">biologija</term>
<term name="botany">botanika</term>
<term name="chemistry">kemija</term>
<term name="engineering">strojništvo</term>
<term name="generic-base">splošno</term>
<term name="geography">geografija</term>
<term name="geology">geologija</term>
<term name="history">zgodovina</term>
<term name="humanities">humanistika</term>
<term name="linguistics">linguistics</term>
<term name="literature">literatura</term>
<term name="math">matematika</term>
<term name="medicine">medicina</term>
<term name="philosophy">filozofija</term>
<term name="physics">fizika</term>
<term name="psychology">psihologija</term>
<term name="sociology">sociologija</term>
<term name="science">znanost</term>
<term name="political_science">politologija</term>
<term name="social_science">družbene vede</term>
<term name="theology">teologija</term>
<term name="zoology">zoologija</term>
<!-- LONG LOCATOR FORMS -->
<term name="book">
<single>knjiga</single>
<multiple>knjige</multiple>
</term>
<term name="chapter">
<single>poglavje</single>
<multiple>poglavja</multiple>
</term>
<term name="column">
<single>stolpec</single>
<multiple>stolpci</multiple>
</term>
<term name="figure">
<single>slika</single>
<multiple>slike</multiple>
</term>
<term name="folio">
<single>folio</single>
<multiple>folii</multiple>
</term>
<term name="issue">
<single>številka</single>
<multiple>številke</multiple>
</term>
<term name="line">
<single>vrstica</single>
<multiple>vrstice</multiple>
</term>
<term name="note">
<single>opomba</single>
<multiple>opombe</multiple>
</term>
<term name="opus">
<single>opus</single>
<multiple>opera</multiple>
</term>
<term name="page">
<single>stran</single>
<multiple>strani</multiple>
</term>
<term name="paragraph">
<single>odstavek</single>
<multiple>odstavki</multiple>
</term>
<term name="part">
<single>del</single>
<multiple>deli</multiple>
</term>
<term name="section">
<single>odsek</single>
<multiple>odseki</multiple>
</term>
<term name="volume">
<single>letnik</single>
<multiple>letniki</multiple>
</term>
<term name="edition">
<single>izdaja</single>
<multiple>izdaje</multiple>
</term>
<term name="verse">
<single>verz</single>
<multiple>verzi</multiple>
</term>
<term name="sub verbo">
<single>sub verbo</single>
<multiple>s.vv</multiple>
</term>
<!-- SHORT LOCATOR FORMS -->
<term name="book" form="short">knj</term>
<term name="chapter" form="short">pogl</term>
<term name="column" form="short">sto</term>
<term name="figure" form="short">sl</term>
<term name="folio" form="short">f</term>
<term name="issue" form="short">št</term>
<term name="opus" form="short">op</term>
<term name="page" form="short">
<single>str</single>
<multiple>str</multiple>
</term>
<term name="paragraph" form="short">odst</term>
<term name="part" form="short">del</term>
<term name="section" form="short">odsk</term>
<term name="sub verbo" form="short">
<single>s.v</single>
<multiple>s.vv</multiple>
</term>
<term name="verse" form="short">
<single>v</single>
<multiple>v</multiple>
</term>
<term name="volume" form="short">
<single>let</single>
<multiple>let</multiple>
</term>
<term name="edition" form="short">iz</term>
<!-- SYMBOL LOCATOR FORMS -->
<term name="paragraph" form="symbol">
<single></single>
<multiple>¶¶</multiple>
</term>
<term name="section" form="symbol">
<single>§</single>
<multiple>§§</multiple>
</term>
<!-- LONG ROLE FORMS -->
<term name="author">
<single/>
<multiple/>
</term>
<term name="editor">
<single>urednik</single>
<multiple>uredniki</multiple>
</term>
<term name="editorial-director">
<single>editor</single>
<multiple>editors</multiple>
</term>
<term name="translator">
<single>prevajalec</single>
<multiple>prevajalci</multiple>
</term>
<term name="editortranslator">
<single>editor &amp; translator</single>
<multiple>editors &amp; translators</multiple>
</term>
<!-- SHORT ROLE FORMS -->
<term name="author" form="short">
<single/>
<multiple/>
</term>
<term name="editor" form="short">
<single>ur</single>
<multiple>ur</multiple>
</term>
<term name="editorial-director" form="short">
<single>ed.</single>
<multiple>eds.</multiple>
</term>
<term name="translator" form="short">
<single>prev</single>
<multiple>prev</multiple>
</term>
<term name="editortranslator" form="short">
<single>ed. &amp; tran.</single>
<multiple>eds. &amp; trans.</multiple>
</term>
<!-- VERB ROLE FORMS -->
<term name="editor" form="verb">uredil</term>
<term name="editorial-director" form="verb">edited by</term>
<term name="translator" form="verb">prevedel</term>
<term name="editortranslator" form="verb">edited &amp; translated by</term>
<term name="recipient" form="verb">za</term>
<term name="interviewer" form="verb">intervjuval</term>
<!-- SHORT VERB ROLE FORMS -->
<term name="editor" form="verb-short">ur</term>
<term name="editorial-director" form="verb-short">ed.</term>
<term name="translator" form="verb-short">prev</term>
<term name="editortranslator" form="verb-short">ed. &amp; trans. by</term>
<!-- LONG MONTH FORMS -->
<term name="month-01">januar</term>
<term name="month-02">februar</term>
<term name="month-03">marec</term>
<term name="month-04">april</term>
<term name="month-05">maj</term>
<term name="month-06">junij</term>
<term name="month-07">julij</term>
<term name="month-08">avgust</term>
<term name="month-09">september</term>
<term name="month-10">oktober</term>
<term name="month-11">november</term>
<term name="month-12">december</term>
<!-- SHORT MONTH FORMS -->
<term name="month-01" form="short">jan</term>
<term name="month-02" form="short">feb</term>
<term name="month-03" form="short">mar</term>
<term name="month-04" form="short">apr</term>
<term name="month-05" form="short">maj</term>
<term name="month-06" form="short">jun</term>
<term name="month-07" form="short">jul</term>
<term name="month-08" form="short">avg</term>
<term name="month-09" form="short">sep</term>
<term name="month-10" form="short">okt</term>
<term name="month-11" form="short">nov</term>
<term name="month-12" form="short">dec</term>
<!-- SEASONS -->
<term name="season-01">Spring</term>
<term name="season-02">Summer</term>
<term name="season-03">Autumn</term>
<term name="season-04">Winter</term>
</terms>
</locale>

View file

@ -1,211 +1,299 @@
<?xml version="1.0" encoding="UTF-8"?>
<terms xmlns="http://purl.org/net/xbiblio/csl">
<locale xml:lang="sr">
<term name="at">на</term>
<term name="in">у</term>
<term name="ibid">ibid</term>
<term name="accessed">приступљено</term>
<term name="retrieved">преузето</term>
<term name="from">од</term>
<term name="forthcoming">долазећи</term>
<term name="references">референце</term>
<term name="reference item">
<single>source</single>
<multiple>sources</multiple>
</term>
<term name="no date">без датума</term>
<term name="and">и</term>
<term name="et-al">и остали</term>
<term name="interview">интервју</term>
<term name="letter">писмо</term>
<term name="anonymous">анонимна</term>
<term name="anonymous" form="short">анон.</term>
<term name="and others">и остали</term>
<term name="in press">у штампи</term>
<term name="online">на Интернету</term>
<term name="cited">цитирано</term>
<term name="internet">Интернет</term>
<term name="presented at">представљено на</term>
<term name="anthropology">антропологија</term>
<term name="astronomy">астрономија</term>
<term name="biology">биологија</term>
<term name="botany">ботаника</term>
<term name="chemistry">хемија</term>
<term name="engineering">инжињерство</term>
<term name="generic-base">уопштена основа</term>
<term name="geography">географија</term>
<term name="geology">геологија</term>
<term name="history">историја</term>
<term name="humanities">култура и уметност</term>
<term name="literature">литература</term>
<term name="math">математика</term>
<term name="medicine">медицина</term>
<term name="philosophy">филозофија</term>
<term name="physics">физика</term>
<term name="psychology">психологија</term>
<term name="sociology">социологија</term>
<term name="science">наука</term>
<term name="political_science">политичка наука</term>
<term name="social_science">друштвена наука</term>
<term name="theology">теологија</term>
<term name="zoology">зоологија</term>
<term name="book">
<single>књига</single>
<multiple>књиге</multiple>
</term>
<term name="chapter">
<single>поглавље</single>
<multiple>поглавља</multiple>
</term>
<term name="column">
<single>колона</single>
<multiple>колоне</multiple>
</term>
<term name="figure">
<single>цртеж</single>
<multiple>цртежи</multiple>
</term>
<term name="folio">
<single>фолио</single>
<multiple>фолији</multiple>
</term>
<term name="issue">
<single>број</single>
<multiple>бројеви</multiple>
</term>
<term name="line">
<single>линија</single>
<multiple>линије</multiple>
</term>
<term name="note">
<single>белешка</single>
<multiple>белешке</multiple>
</term>
<term name="opus">
<single>опус</single>
<multiple>опера</multiple>
</term>
<term name="page">
<single>страница</single>
<multiple>странице</multiple>
</term>
<term name="paragraph">
<single>параграф</single>
<multiple>параграфи</multiple>
</term>
<term name="part">
<single>део</single>
<multiple>делова</multiple>
</term>
<term name="section">
<single>одељак</single>
<multiple>одељака</multiple>
</term>
<term name="volume">
<single>том</single>
<multiple>томова</multiple>
</term>
<term name="edition">
<single>издање</single>
<multiple>издања</multiple>
</term>
<term name="verse">
<single>строфа</single>
<multiple>строфе</multiple>
</term>
<term name="sub verbo">
<single>sub verbo</single>
<multiple>s.vv</multiple>
</term>
<term name="book" form="short">књига</term>
<term name="chapter" form="short">Пог.</term>
<term name="column" form="short">кол.</term>
<term name="figure" form="short">црт.</term>
<term name="folio" form="short">фолио</term>
<term name="issue" form="short">изд.</term>
<term name="opus" form="short">оп.</term>
<term name="page" form="short">
<single>стр.</single>
<multiple>стр.</multiple>
</term>
<term name="paragraph" form="short">пар.</term>
<term name="part" form="short">део</term>
<term name="section" form="short">од.</term>
<term name="sub verbo" form="short">
<single>s.v</single>
<multiple>s.vv</multiple>
</term>
<term name="verse" form="short">
<single>стр.</single>
<multiple>стр.</multiple>
</term>
<term name="volume" form="short">
<single>том</single>
<multiple>томови</multiple>
</term>
<term name="edition">edition</term>
<term name="edition" form="short">изд.</term>
<term name="paragraph" form="symbol">
<single></single>
<multiple>¶¶</multiple>
</term>
<term name="section" form="symbol">
<single>§</single>
<multiple>§§</multiple>
</term>
<term name="author">
<single/>
<multiple/>
</term>
<term name="editor">
<single>уредник</single>
<multiple>урединици</multiple>
</term>
<term name="translator">
<single>преводилац</single>
<multiple>преводиоци</multiple>
</term>
<term name="author" form="short">
<single/>
<multiple/>
</term>
<term name="editor" form="short">
<single>ур.</single>
<multiple>ур.</multiple>
</term>
<term name="translator" form="short">
<single>прев.</single>
<multiple>прев.</multiple>
</term>
<term name="editor" form="verb">уредио</term>
<term name="translator" form="verb">превео</term>
<term name="recipient" form="verb">прима</term>
<term name="interviewer" form="verb">интервјуисао</term>
<term name="editor" form="verb-short">ур.</term>
<term name="translator" form="verb-short">прев.</term>
<term name="month-01">Јануар</term>
<term name="month-02">Фебруар</term>
<term name="month-03">Март</term>
<term name="month-04">Април</term>
<term name="month-05">Мај</term>
<term name="month-06">Јуни</term>
<term name="month-07">Јули</term>
<term name="month-08">Август</term>
<term name="month-09">Септембар</term>
<term name="month-10">Октобар</term>
<term name="month-11">Новембар</term>
<term name="month-12">Децембар</term>
<term name="month-01" form="short">Јан.</term>
<term name="month-02" form="short">Феб.</term>
<term name="month-03" form="short">Март</term>
<term name="month-04" form="short">Апр.</term>
<term name="month-05" form="short">Мај</term>
<term name="month-06" form="short">Јуни</term>
<term name="month-07" form="short">Јули</term>
<term name="month-08" form="short">Авг.</term>
<term name="month-09" form="short">Сеп.</term>
<term name="month-10" form="short">Окт.</term>
<term name="month-11" form="short">Нов.</term>
<term name="month-12" form="short">Дец.</term>
</locale>
</terms>
<?xml version="1.0" encoding="utf-8"?>
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="sr">
<style-options punctuation-in-quote="true"/>
<date form="text">
<date-part name="month" suffix=" "/>
<date-part name="day" suffix=", "/>
<date-part name="year"/>
</date>
<date form="numeric">
<date-part name="year"/>
<date-part name="month" form="numeric" prefix="-" range-delimiter="/"/>
<date-part name="day" prefix="-" range-delimiter="/"/>
</date>
<terms>
<term name="at">на</term>
<term name="in">у</term>
<term name="ibid">ibid</term>
<term name="accessed">приступљено</term>
<term name="retrieved">преузето</term>
<term name="from">од</term>
<term name="forthcoming">долазећи</term>
<term name="reference">
<single>reference</single>
<multiple>references</multiple>
</term>
<term name="reference" form="short">
<single>ref.</single>
<multiple>refs.</multiple>
</term>
<term name="no date">без датума</term>
<term name="and">и</term>
<term name="et-al">и остали</term>
<term name="circa">circa</term>
<term name="circa" form="short">c.</term>
<term name="interview">интервју</term>
<term name="letter">писмо</term>
<term name="anonymous">анонимна</term>
<term name="anonymous" form="short">анон.</term>
<term name="and others">и остали</term>
<term name="in press">у штампи</term>
<term name="online">на Интернету</term>
<term name="cited">цитирано</term>
<term name="internet">Интернет</term>
<term name="presented at">представљено на</term>
<term name="ad">AD</term>
<term name="bc">BC</term>
<!-- QUOTES -->
<term name="open-quote"></term>
<term name="close-quote"></term>
<term name="open-inner-quote"></term>
<term name="close-inner-quote"></term>
<!-- ORDINALS -->
<term name="ordinal-01">st</term>
<term name="ordinal-02">nd</term>
<term name="ordinal-03">rd</term>
<term name="ordinal-04">th</term>
<!-- LONG ORDINALS -->
<term name="long-ordinal-01">first</term>
<term name="long-ordinal-02">second</term>
<term name="long-ordinal-03">third</term>
<term name="long-ordinal-04">fourth</term>
<term name="long-ordinal-05">fifth</term>
<term name="long-ordinal-06">sixth</term>
<term name="long-ordinal-07">seventh</term>
<term name="long-ordinal-08">eighth</term>
<term name="long-ordinal-09">ninth</term>
<term name="long-ordinal-10">tenth</term>
<!-- CATEGORIES -->
<term name="anthropology">антропологија</term>
<term name="astronomy">астрономија</term>
<term name="biology">биологија</term>
<term name="botany">ботаника</term>
<term name="chemistry">хемија</term>
<term name="engineering">инжињерство</term>
<term name="generic-base">уопштена основа</term>
<term name="geography">географија</term>
<term name="geology">геологија</term>
<term name="history">историја</term>
<term name="humanities">култура и уметност</term>
<term name="linguistics">linguistics</term>
<term name="literature">литература</term>
<term name="math">математика</term>
<term name="medicine">медицина</term>
<term name="philosophy">филозофија</term>
<term name="physics">физика</term>
<term name="psychology">психологија</term>
<term name="sociology">социологија</term>
<term name="science">наука</term>
<term name="political_science">политичка наука</term>
<term name="social_science">друштвена наука</term>
<term name="theology">теологија</term>
<term name="zoology">зоологија</term>
<!-- LONG LOCATOR FORMS -->
<term name="book">
<single>књига</single>
<multiple>књиге</multiple>
</term>
<term name="chapter">
<single>поглавље</single>
<multiple>поглавља</multiple>
</term>
<term name="column">
<single>колона</single>
<multiple>колоне</multiple>
</term>
<term name="figure">
<single>цртеж</single>
<multiple>цртежи</multiple>
</term>
<term name="folio">
<single>фолио</single>
<multiple>фолији</multiple>
</term>
<term name="issue">
<single>број</single>
<multiple>бројеви</multiple>
</term>
<term name="line">
<single>линија</single>
<multiple>линије</multiple>
</term>
<term name="note">
<single>белешка</single>
<multiple>белешке</multiple>
</term>
<term name="opus">
<single>опус</single>
<multiple>опера</multiple>
</term>
<term name="page">
<single>страница</single>
<multiple>странице</multiple>
</term>
<term name="paragraph">
<single>параграф</single>
<multiple>параграфи</multiple>
</term>
<term name="part">
<single>део</single>
<multiple>делова</multiple>
</term>
<term name="section">
<single>одељак</single>
<multiple>одељака</multiple>
</term>
<term name="volume">
<single>том</single>
<multiple>томова</multiple>
</term>
<term name="edition">
<single>издање</single>
<multiple>издања</multiple>
</term>
<term name="verse">
<single>строфа</single>
<multiple>строфе</multiple>
</term>
<term name="sub verbo">
<single>sub verbo</single>
<multiple>s.vv</multiple>
</term>
<!-- SHORT LOCATOR FORMS -->
<term name="book" form="short">књига</term>
<term name="chapter" form="short">Пог.</term>
<term name="column" form="short">кол.</term>
<term name="figure" form="short">црт.</term>
<term name="folio" form="short">фолио</term>
<term name="issue" form="short">изд.</term>
<term name="opus" form="short">оп.</term>
<term name="page" form="short">
<single>стр.</single>
<multiple>стр.</multiple>
</term>
<term name="paragraph" form="short">пар.</term>
<term name="part" form="short">део</term>
<term name="section" form="short">од.</term>
<term name="sub verbo" form="short">
<single>s.v</single>
<multiple>s.vv</multiple>
</term>
<term name="verse" form="short">
<single>стр.</single>
<multiple>стр.</multiple>
</term>
<term name="volume" form="short">
<single>том</single>
<multiple>томови</multiple>
</term>
<term name="edition" form="short">изд.</term>
<!-- SYMBOL LOCATOR FORMS -->
<term name="paragraph" form="symbol">
<single></single>
<multiple>¶¶</multiple>
</term>
<term name="section" form="symbol">
<single>§</single>
<multiple>§§</multiple>
</term>
<!-- LONG ROLE FORMS -->
<term name="author">
<single/>
<multiple/>
</term>
<term name="editor">
<single>уредник</single>
<multiple>урединици</multiple>
</term>
<term name="editorial-director">
<single>editor</single>
<multiple>editors</multiple>
</term>
<term name="translator">
<single>преводилац</single>
<multiple>преводиоци</multiple>
</term>
<term name="editortranslator">
<single>editor &amp; translator</single>
<multiple>editors &amp; translators</multiple>
</term>
<!-- SHORT ROLE FORMS -->
<term name="author" form="short">
<single/>
<multiple/>
</term>
<term name="editor" form="short">
<single>ур.</single>
<multiple>ур.</multiple>
</term>
<term name="editorial-director" form="short">
<single>ed.</single>
<multiple>eds.</multiple>
</term>
<term name="translator" form="short">
<single>прев.</single>
<multiple>прев.</multiple>
</term>
<term name="editortranslator" form="short">
<single>ed. &amp; tran.</single>
<multiple>eds. &amp; trans.</multiple>
</term>
<!-- VERB ROLE FORMS -->
<term name="editor" form="verb">уредио</term>
<term name="editorial-director" form="verb">edited by</term>
<term name="translator" form="verb">превео</term>
<term name="editortranslator" form="verb">edited &amp; translated by</term>
<term name="recipient" form="verb">прима</term>
<term name="interviewer" form="verb">интервјуисао</term>
<!-- SHORT VERB ROLE FORMS -->
<term name="editor" form="verb-short">ур.</term>
<term name="editorial-director" form="verb-short">ed.</term>
<term name="translator" form="verb-short">прев.</term>
<term name="editortranslator" form="verb-short">ed. &amp; trans. by</term>
<!-- LONG MONTH FORMS -->
<term name="month-01">Јануар</term>
<term name="month-02">Фебруар</term>
<term name="month-03">Март</term>
<term name="month-04">Април</term>
<term name="month-05">Мај</term>
<term name="month-06">Јуни</term>
<term name="month-07">Јули</term>
<term name="month-08">Август</term>
<term name="month-09">Септембар</term>
<term name="month-10">Октобар</term>
<term name="month-11">Новембар</term>
<term name="month-12">Децембар</term>
<!-- SHORT MONTH FORMS -->
<term name="month-01" form="short">Јан.</term>
<term name="month-02" form="short">Феб.</term>
<term name="month-03" form="short">Март</term>
<term name="month-04" form="short">Апр.</term>
<term name="month-05" form="short">Мај</term>
<term name="month-06" form="short">Јуни</term>
<term name="month-07" form="short">Јули</term>
<term name="month-08" form="short">Авг.</term>
<term name="month-09" form="short">Сеп.</term>
<term name="month-10" form="short">Окт.</term>
<term name="month-11" form="short">Нов.</term>
<term name="month-12" form="short">Дец.</term>
<!-- SEASONS -->
<term name="season-01">Spring</term>
<term name="season-02">Summer</term>
<term name="season-03">Autumn</term>
<term name="season-04">Winter</term>
</terms>
</locale>

View file

@ -1,211 +1,299 @@
<?xml version="1.0" encoding="UTF-8"?>
<terms xmlns="http://purl.org/net/xbiblio/csl">
<locale xml:lang="sv">
<term name="at">vid</term>
<term name="in">i</term>
<term name="ibid">ibid</term>
<term name="accessed">åtkomstdatum</term>
<term name="retrieved">hämtad</term>
<term name="from">från</term>
<term name="forthcoming">kommande</term>
<term name="references">Referenser</term>
<term name="reference item">
<single>source</single>
<multiple>sources</multiple>
</term>
<term name="no date">nd</term>
<term name="and">och</term>
<term name="et-al">m.fl.</term>
<term name="interview">intervju</term>
<term name="letter">brev</term>
<term name="anonymous">anonym</term>
<term name="anonymous" form="short">anon</term>
<term name="and others">och andra</term>
<term name="in press">i tryck</term>
<term name="online">online</term>
<term name="cited">citerad</term>
<term name="internet">internet</term>
<term name="presented at">presenterad vid</term>
<term name="anthropology">antropologi</term>
<term name="astronomy">astronomi</term>
<term name="biology">biologi</term>
<term name="botany">botanik</term>
<term name="chemistry">kemi</term>
<term name="engineering">teknik</term>
<term name="generic-base">generic base</term>
<term name="geography">geografi</term>
<term name="geology">geologi</term>
<term name="history">historia</term>
<term name="humanities">humaniora</term>
<term name="literature">litteraturvetenskap</term>
<term name="math">matematik</term>
<term name="medicine">medicin</term>
<term name="philosophy">filosofi</term>
<term name="physics">fysik</term>
<term name="psychology">psykologi</term>
<term name="sociology">sociologi</term>
<term name="science">vetenskap</term>
<term name="political_science">statsvetenskap</term>
<term name="social_science">samhällsvetenskap</term>
<term name="theology">teologi</term>
<term name="zoology">zoologi</term>
<term name="book">
<single>bok</single>
<multiple>böcker</multiple>
</term>
<term name="chapter">
<single>kapitel</single>
<multiple>kapitel</multiple>
</term>
<term name="column">
<single>kolumn</single>
<multiple>kolumner</multiple>
</term>
<term name="figure">
<single>figur</single>
<multiple>figurer</multiple>
</term>
<term name="folio">
<single>folio</single>
<multiple>folios</multiple>
</term>
<term name="issue">
<single>nummer</single>
<multiple>nummer</multiple>
</term>
<term name="line">
<single>rad</single>
<multiple>rader</multiple>
</term>
<term name="note">
<single>not</single>
<multiple>noter</multiple>
</term>
<term name="opus">
<single>opus</single>
<multiple>opera</multiple>
</term>
<term name="page">
<single>sida</single>
<multiple>sidor</multiple>
</term>
<term name="paragraph">
<single>stycke</single>
<multiple>stycken</multiple>
</term>
<term name="part">
<single>dek</single>
<multiple>delar</multiple>
</term>
<term name="section">
<single>avnitt</single>
<multiple>avsnitt</multiple>
</term>
<term name="volume">
<single>volym</single>
<multiple>volumer</multiple>
</term>
<term name="edition">
<single>upplaga</single>
<multiple>upplagor</multiple>
</term>
<term name="verse">
<single>vers</single>
<multiple>verser</multiple>
</term>
<term name="sub verbo">
<single>sub verbo</single>
<multiple>s.vv</multiple>
</term>
<term name="book" form="short">bok</term>
<term name="chapter" form="short">kap</term>
<term name="column" form="short">kol</term>
<term name="figure" form="short">fig</term>
<term name="folio" form="short">f</term>
<term name="issue" form="short">num</term>
<term name="opus" form="short">op</term>
<term name="page" form="short">
<single>s</single>
<multiple>ss</multiple>
</term>
<term name="paragraph" form="short">st</term>
<term name="part" form="short">del</term>
<term name="section" form="short">avs</term>
<term name="sub verbo" form="short">
<single>s.v</single>
<multiple>s.vv</multiple>
</term>
<term name="verse" form="short">
<single>vers</single>
<multiple>verser</multiple>
</term>
<term name="volume" form="short">
<single>vol</single>
<multiple>vols</multiple>
</term>
<term name="edition">edition</term>
<term name="edition" form="short">uppl</term>
<term name="paragraph" form="symbol">
<single></single>
<multiple>¶¶</multiple>
</term>
<term name="section" form="symbol">
<single>§</single>
<multiple>§§</multiple>
</term>
<term name="author">
<single/>
<multiple/>
</term>
<term name="editor">
<single>redaktör</single>
<multiple>redaktörer</multiple>
</term>
<term name="translator">
<single>översättare</single>
<multiple>översättare</multiple>
</term>
<term name="author" form="short">
<single/>
<multiple/>
</term>
<term name="editor" form="short">
<single>red</single>
<multiple>reds</multiple>
</term>
<term name="translator" form="short">
<single>övers</single>
<multiple>övers</multiple>
</term>
<term name="editor" form="verb">redigerad av</term>
<term name="translator" form="verb">översatt av</term>
<term name="recipient" form="verb">till</term>
<term name="interviewer" form="verb">intervju av</term>
<term name="editor" form="verb-short">red</term>
<term name="translator" form="verb-short">övers</term>
<term name="month-01">Januari</term>
<term name="month-02">Februari</term>
<term name="month-03">Mars</term>
<term name="month-04">April</term>
<term name="month-05">Maj</term>
<term name="month-06">Juni</term>
<term name="month-07">Juli</term>
<term name="month-08">Augusti</term>
<term name="month-09">September</term>
<term name="month-10">Oktober</term>
<term name="month-11">November</term>
<term name="month-12">December</term>
<term name="month-01" form="short">Jan</term>
<term name="month-02" form="short">Feb</term>
<term name="month-03" form="short">Mar</term>
<term name="month-04" form="short">Apr</term>
<term name="month-05" form="short">Maj</term>
<term name="month-06" form="short">Jun</term>
<term name="month-07" form="short">Jul</term>
<term name="month-08" form="short">Aug</term>
<term name="month-09" form="short">Sep</term>
<term name="month-10" form="short">Okt</term>
<term name="month-11" form="short">Nov</term>
<term name="month-12" form="short">Dec</term>
</locale>
</terms>
<?xml version="1.0" encoding="utf-8"?>
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="sv">
<style-options punctuation-in-quote="true"/>
<date form="text">
<date-part name="month" suffix=" "/>
<date-part name="day" suffix=", "/>
<date-part name="year"/>
</date>
<date form="numeric">
<date-part name="year"/>
<date-part name="month" form="numeric" prefix="-" range-delimiter="/"/>
<date-part name="day" prefix="-" range-delimiter="/"/>
</date>
<terms>
<term name="at">vid</term>
<term name="in">i</term>
<term name="ibid">ibid</term>
<term name="accessed">åtkomstdatum</term>
<term name="retrieved">hämtad</term>
<term name="from">från</term>
<term name="forthcoming">kommande</term>
<term name="reference">
<single>reference</single>
<multiple>references</multiple>
</term>
<term name="reference" form="short">
<single>ref.</single>
<multiple>refs.</multiple>
</term>
<term name="no date">nd</term>
<term name="and">och</term>
<term name="et-al">m.fl.</term>
<term name="circa">circa</term>
<term name="circa" form="short">c.</term>
<term name="interview">intervju</term>
<term name="letter">brev</term>
<term name="anonymous">anonym</term>
<term name="anonymous" form="short">anon</term>
<term name="and others">och andra</term>
<term name="in press">i tryck</term>
<term name="online">online</term>
<term name="cited">citerad</term>
<term name="internet">internet</term>
<term name="presented at">presenterad vid</term>
<term name="ad">AD</term>
<term name="bc">BC</term>
<!-- QUOTES -->
<term name="open-quote"></term>
<term name="close-quote"></term>
<term name="open-inner-quote"></term>
<term name="close-inner-quote"></term>
<!-- ORDINALS -->
<term name="ordinal-01">st</term>
<term name="ordinal-02">nd</term>
<term name="ordinal-03">rd</term>
<term name="ordinal-04">th</term>
<!-- LONG ORDINALS -->
<term name="long-ordinal-01">first</term>
<term name="long-ordinal-02">second</term>
<term name="long-ordinal-03">third</term>
<term name="long-ordinal-04">fourth</term>
<term name="long-ordinal-05">fifth</term>
<term name="long-ordinal-06">sixth</term>
<term name="long-ordinal-07">seventh</term>
<term name="long-ordinal-08">eighth</term>
<term name="long-ordinal-09">ninth</term>
<term name="long-ordinal-10">tenth</term>
<!-- CATEGORIES -->
<term name="anthropology">antropologi</term>
<term name="astronomy">astronomi</term>
<term name="biology">biologi</term>
<term name="botany">botanik</term>
<term name="chemistry">kemi</term>
<term name="engineering">teknik</term>
<term name="generic-base">generic base</term>
<term name="geography">geografi</term>
<term name="geology">geologi</term>
<term name="history">historia</term>
<term name="humanities">humaniora</term>
<term name="linguistics">linguistics</term>
<term name="literature">litteraturvetenskap</term>
<term name="math">matematik</term>
<term name="medicine">medicin</term>
<term name="philosophy">filosofi</term>
<term name="physics">fysik</term>
<term name="psychology">psykologi</term>
<term name="sociology">sociologi</term>
<term name="science">vetenskap</term>
<term name="political_science">statsvetenskap</term>
<term name="social_science">samhällsvetenskap</term>
<term name="theology">teologi</term>
<term name="zoology">zoologi</term>
<!-- LONG LOCATOR FORMS -->
<term name="book">
<single>bok</single>
<multiple>böcker</multiple>
</term>
<term name="chapter">
<single>kapitel</single>
<multiple>kapitel</multiple>
</term>
<term name="column">
<single>kolumn</single>
<multiple>kolumner</multiple>
</term>
<term name="figure">
<single>figur</single>
<multiple>figurer</multiple>
</term>
<term name="folio">
<single>folio</single>
<multiple>folios</multiple>
</term>
<term name="issue">
<single>nummer</single>
<multiple>nummer</multiple>
</term>
<term name="line">
<single>rad</single>
<multiple>rader</multiple>
</term>
<term name="note">
<single>not</single>
<multiple>noter</multiple>
</term>
<term name="opus">
<single>opus</single>
<multiple>opera</multiple>
</term>
<term name="page">
<single>sida</single>
<multiple>sidor</multiple>
</term>
<term name="paragraph">
<single>stycke</single>
<multiple>stycken</multiple>
</term>
<term name="part">
<single>dek</single>
<multiple>delar</multiple>
</term>
<term name="section">
<single>avnitt</single>
<multiple>avsnitt</multiple>
</term>
<term name="volume">
<single>volym</single>
<multiple>volumer</multiple>
</term>
<term name="edition">
<single>upplaga</single>
<multiple>upplagor</multiple>
</term>
<term name="verse">
<single>vers</single>
<multiple>verser</multiple>
</term>
<term name="sub verbo">
<single>sub verbo</single>
<multiple>s.vv</multiple>
</term>
<!-- SHORT LOCATOR FORMS -->
<term name="book" form="short">bok</term>
<term name="chapter" form="short">kap</term>
<term name="column" form="short">kol</term>
<term name="figure" form="short">fig</term>
<term name="folio" form="short">f</term>
<term name="issue" form="short">num</term>
<term name="opus" form="short">op</term>
<term name="page" form="short">
<single>s</single>
<multiple>ss</multiple>
</term>
<term name="paragraph" form="short">st</term>
<term name="part" form="short">del</term>
<term name="section" form="short">avs</term>
<term name="sub verbo" form="short">
<single>s.v</single>
<multiple>s.vv</multiple>
</term>
<term name="verse" form="short">
<single>vers</single>
<multiple>verser</multiple>
</term>
<term name="volume" form="short">
<single>vol</single>
<multiple>vols</multiple>
</term>
<term name="edition" form="short">uppl</term>
<!-- SYMBOL LOCATOR FORMS -->
<term name="paragraph" form="symbol">
<single></single>
<multiple>¶¶</multiple>
</term>
<term name="section" form="symbol">
<single>§</single>
<multiple>§§</multiple>
</term>
<!-- LONG ROLE FORMS -->
<term name="author">
<single/>
<multiple/>
</term>
<term name="editor">
<single>redaktör</single>
<multiple>redaktörer</multiple>
</term>
<term name="editorial-director">
<single>editor</single>
<multiple>editors</multiple>
</term>
<term name="translator">
<single>översättare</single>
<multiple>översättare</multiple>
</term>
<term name="editortranslator">
<single>editor &amp; translator</single>
<multiple>editors &amp; translators</multiple>
</term>
<!-- SHORT ROLE FORMS -->
<term name="author" form="short">
<single/>
<multiple/>
</term>
<term name="editor" form="short">
<single>red</single>
<multiple>reds</multiple>
</term>
<term name="editorial-director" form="short">
<single>ed.</single>
<multiple>eds.</multiple>
</term>
<term name="translator" form="short">
<single>övers</single>
<multiple>övers</multiple>
</term>
<term name="editortranslator" form="short">
<single>ed. &amp; tran.</single>
<multiple>eds. &amp; trans.</multiple>
</term>
<!-- VERB ROLE FORMS -->
<term name="editor" form="verb">redigerad av</term>
<term name="editorial-director" form="verb">edited by</term>
<term name="translator" form="verb">översatt av</term>
<term name="editortranslator" form="verb">edited &amp; translated by</term>
<term name="recipient" form="verb">till</term>
<term name="interviewer" form="verb">intervju av</term>
<!-- SHORT VERB ROLE FORMS -->
<term name="editor" form="verb-short">red</term>
<term name="editorial-director" form="verb-short">ed.</term>
<term name="translator" form="verb-short">övers</term>
<term name="editortranslator" form="verb-short">ed. &amp; trans. by</term>
<!-- LONG MONTH FORMS -->
<term name="month-01">Januari</term>
<term name="month-02">Februari</term>
<term name="month-03">Mars</term>
<term name="month-04">April</term>
<term name="month-05">Maj</term>
<term name="month-06">Juni</term>
<term name="month-07">Juli</term>
<term name="month-08">Augusti</term>
<term name="month-09">September</term>
<term name="month-10">Oktober</term>
<term name="month-11">November</term>
<term name="month-12">December</term>
<!-- SHORT MONTH FORMS -->
<term name="month-01" form="short">Jan</term>
<term name="month-02" form="short">Feb</term>
<term name="month-03" form="short">Mar</term>
<term name="month-04" form="short">Apr</term>
<term name="month-05" form="short">Maj</term>
<term name="month-06" form="short">Jun</term>
<term name="month-07" form="short">Jul</term>
<term name="month-08" form="short">Aug</term>
<term name="month-09" form="short">Sep</term>
<term name="month-10" form="short">Okt</term>
<term name="month-11" form="short">Nov</term>
<term name="month-12" form="short">Dec</term>
<!-- SEASONS -->
<term name="season-01">Spring</term>
<term name="season-02">Summer</term>
<term name="season-03">Autumn</term>
<term name="season-04">Winter</term>
</terms>
</locale>

View file

@ -1,211 +1,299 @@
<?xml version="1.0" encoding="UTF-8"?>
<terms xmlns="http://purl.org/net/xbiblio/csl">
<locale xml:lang="th">
<term name="at">at</term>
<term name="in">in</term>
<term name="ibid">ibid</term>
<term name="accessed">accessed</term>
<term name="retrieved">retrieved</term>
<term name="from">from</term>
<term name="forthcoming">forthcoming</term>
<term name="references">references</term>
<term name="reference item">
<single>source</single>
<multiple>sources</multiple>
</term>
<term name="no date">n.d.</term>
<term name="and">and</term>
<term name="et-al">et al.</term>
<term name="interview">interview</term>
<term name="letter">letter</term>
<term name="anonymous">anonymous</term>
<term name="anonymous" form="short">anon</term>
<term name="and others">and others</term>
<term name="in press">in press</term>
<term name="online">online</term>
<term name="cited">cited</term>
<term name="internet">internet</term>
<term name="presented at">presented at the</term>
<term name="anthropology">anthropology</term>
<term name="astronomy">astronomy</term>
<term name="biology">biology</term>
<term name="botany">botany</term>
<term name="chemistry">chemistry</term>
<term name="engineering">engineering</term>
<term name="generic-base">generic base</term>
<term name="geography">geography</term>
<term name="geology">geology</term>
<term name="history">history</term>
<term name="humanities">humanities</term>
<term name="literature">literature</term>
<term name="math">math</term>
<term name="medicine">medicine</term>
<term name="philosophy">philosophy</term>
<term name="physics">physics</term>
<term name="psychology">psychology</term>
<term name="sociology">sociology</term>
<term name="science">science</term>
<term name="political_science">political science</term>
<term name="social_science">social science</term>
<term name="theology">theology</term>
<term name="zoology">zoology</term>
<term name="book">
<single>book</single>
<multiple>books</multiple>
</term>
<term name="chapter">
<single>chapter</single>
<multiple>chapters</multiple>
</term>
<term name="column">
<single>column</single>
<multiple>columns</multiple>
</term>
<term name="figure">
<single>figure</single>
<multiple>figures</multiple>
</term>
<term name="folio">
<single>folio</single>
<multiple>folios</multiple>
</term>
<term name="issue">
<single>number</single>
<multiple>numbers</multiple>
</term>
<term name="line">
<single>line</single>
<multiple>lines</multiple>
</term>
<term name="note">
<single>note</single>
<multiple>notes</multiple>
</term>
<term name="opus">
<single>opus</single>
<multiple>opera</multiple>
</term>
<term name="page">
<single>page</single>
<multiple>pages</multiple>
</term>
<term name="paragraph">
<single>paragraph</single>
<multiple>paragraph</multiple>
</term>
<term name="part">
<single>part</single>
<multiple>parts</multiple>
</term>
<term name="section">
<single>section</single>
<multiple>sections</multiple>
</term>
<term name="volume">
<single>volume</single>
<multiple>volumes</multiple>
</term>
<term name="edition">
<single>edition</single>
<multiple>editions</multiple>
</term>
<term name="verse">
<single>verse</single>
<multiple>verses</multiple>
</term>
<term name="sub verbo">
<single>sub verbo</single>
<multiple>s.vv</multiple>
</term>
<term name="book" form="short">bk</term>
<term name="chapter" form="short">chap</term>
<term name="column" form="short">col</term>
<term name="figure" form="short">fig</term>
<term name="folio" form="short">f</term>
<term name="issue" form="short">no</term>
<term name="opus" form="short">op</term>
<term name="page" form="short">
<single>p</single>
<multiple>pp</multiple>
</term>
<term name="paragraph" form="short">para</term>
<term name="part" form="short">pt</term>
<term name="section" form="short">sec</term>
<term name="sub verbo" form="short">
<single>s.v</single>
<multiple>s.vv</multiple>
</term>
<term name="verse" form="short">
<single>v</single>
<multiple>vv</multiple>
</term>
<term name="volume" form="short">
<single>vol</single>
<multiple>vols</multiple>
</term>
<term name="edition">edition</term>
<term name="edition" form="short">ed</term>
<term name="paragraph" form="symbol">
<single></single>
<multiple>¶¶</multiple>
</term>
<term name="section" form="symbol">
<single>§</single>
<multiple>§§</multiple>
</term>
<term name="author">
<single/>
<multiple/>
</term>
<term name="editor">
<single>editor</single>
<multiple>editors</multiple>
</term>
<term name="translator">
<single>translator</single>
<multiple>translators</multiple>
</term>
<term name="author" form="short">
<single/>
<multiple/>
</term>
<term name="editor" form="short">
<single>ed</single>
<multiple>eds</multiple>
</term>
<term name="translator" form="short">
<single>tran</single>
<multiple>trans</multiple>
</term>
<term name="editor" form="verb">edited by</term>
<term name="translator" form="verb">translated by</term>
<term name="recipient" form="verb">to</term>
<term name="interviewer" form="verb">interview by</term>
<term name="editor" form="verb-short">ed</term>
<term name="translator" form="verb-short">trans</term>
<term name="month-01">January</term>
<term name="month-02">February</term>
<term name="month-03">March</term>
<term name="month-04">April</term>
<term name="month-05">May</term>
<term name="month-06">June</term>
<term name="month-07">July</term>
<term name="month-08">August</term>
<term name="month-09">September</term>
<term name="month-10">October</term>
<term name="month-11">November</term>
<term name="month-12">December</term>
<term name="month-01" form="short">Jan</term>
<term name="month-02" form="short">Feb</term>
<term name="month-03" form="short">Mar</term>
<term name="month-04" form="short">Apr</term>
<term name="month-05" form="short">May</term>
<term name="month-06" form="short">Jun</term>
<term name="month-07" form="short">Jul</term>
<term name="month-08" form="short">Aug</term>
<term name="month-09" form="short">Sep</term>
<term name="month-10" form="short">Oct</term>
<term name="month-11" form="short">Nov</term>
<term name="month-12" form="short">Dec</term>
</locale>
</terms>
<?xml version="1.0" encoding="utf-8"?>
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="th">
<style-options punctuation-in-quote="true"/>
<date form="text">
<date-part name="month" suffix=" "/>
<date-part name="day" suffix=", "/>
<date-part name="year"/>
</date>
<date form="numeric">
<date-part name="year"/>
<date-part name="month" form="numeric" prefix="-" range-delimiter="/"/>
<date-part name="day" prefix="-" range-delimiter="/"/>
</date>
<terms>
<term name="at">at</term>
<term name="in">in</term>
<term name="ibid">ibid</term>
<term name="accessed">accessed</term>
<term name="retrieved">retrieved</term>
<term name="from">from</term>
<term name="forthcoming">forthcoming</term>
<term name="reference">
<single>reference</single>
<multiple>references</multiple>
</term>
<term name="reference" form="short">
<single>ref.</single>
<multiple>refs.</multiple>
</term>
<term name="no date">n.d.</term>
<term name="and">and</term>
<term name="et-al">et al.</term>
<term name="circa">circa</term>
<term name="circa" form="short">c.</term>
<term name="interview">interview</term>
<term name="letter">letter</term>
<term name="anonymous">anonymous</term>
<term name="anonymous" form="short">anon</term>
<term name="and others">and others</term>
<term name="in press">in press</term>
<term name="online">online</term>
<term name="cited">cited</term>
<term name="internet">internet</term>
<term name="presented at">presented at the</term>
<term name="ad">AD</term>
<term name="bc">BC</term>
<!-- QUOTES -->
<term name="open-quote"></term>
<term name="close-quote"></term>
<term name="open-inner-quote"></term>
<term name="close-inner-quote"></term>
<!-- ORDINALS -->
<term name="ordinal-01">st</term>
<term name="ordinal-02">nd</term>
<term name="ordinal-03">rd</term>
<term name="ordinal-04">th</term>
<!-- LONG ORDINALS -->
<term name="long-ordinal-01">first</term>
<term name="long-ordinal-02">second</term>
<term name="long-ordinal-03">third</term>
<term name="long-ordinal-04">fourth</term>
<term name="long-ordinal-05">fifth</term>
<term name="long-ordinal-06">sixth</term>
<term name="long-ordinal-07">seventh</term>
<term name="long-ordinal-08">eighth</term>
<term name="long-ordinal-09">ninth</term>
<term name="long-ordinal-10">tenth</term>
<!-- CATEGORIES -->
<term name="anthropology">anthropology</term>
<term name="astronomy">astronomy</term>
<term name="biology">biology</term>
<term name="botany">botany</term>
<term name="chemistry">chemistry</term>
<term name="engineering">engineering</term>
<term name="generic-base">generic base</term>
<term name="geography">geography</term>
<term name="geology">geology</term>
<term name="history">history</term>
<term name="humanities">humanities</term>
<term name="linguistics">linguistics</term>
<term name="literature">literature</term>
<term name="math">math</term>
<term name="medicine">medicine</term>
<term name="philosophy">philosophy</term>
<term name="physics">physics</term>
<term name="psychology">psychology</term>
<term name="sociology">sociology</term>
<term name="science">science</term>
<term name="political_science">political science</term>
<term name="social_science">social science</term>
<term name="theology">theology</term>
<term name="zoology">zoology</term>
<!-- LONG LOCATOR FORMS -->
<term name="book">
<single>book</single>
<multiple>books</multiple>
</term>
<term name="chapter">
<single>chapter</single>
<multiple>chapters</multiple>
</term>
<term name="column">
<single>column</single>
<multiple>columns</multiple>
</term>
<term name="figure">
<single>figure</single>
<multiple>figures</multiple>
</term>
<term name="folio">
<single>folio</single>
<multiple>folios</multiple>
</term>
<term name="issue">
<single>number</single>
<multiple>numbers</multiple>
</term>
<term name="line">
<single>line</single>
<multiple>lines</multiple>
</term>
<term name="note">
<single>note</single>
<multiple>notes</multiple>
</term>
<term name="opus">
<single>opus</single>
<multiple>opera</multiple>
</term>
<term name="page">
<single>page</single>
<multiple>pages</multiple>
</term>
<term name="paragraph">
<single>paragraph</single>
<multiple>paragraph</multiple>
</term>
<term name="part">
<single>part</single>
<multiple>parts</multiple>
</term>
<term name="section">
<single>section</single>
<multiple>sections</multiple>
</term>
<term name="volume">
<single>volume</single>
<multiple>volumes</multiple>
</term>
<term name="edition">
<single>edition</single>
<multiple>editions</multiple>
</term>
<term name="verse">
<single>verse</single>
<multiple>verses</multiple>
</term>
<term name="sub verbo">
<single>sub verbo</single>
<multiple>s.vv</multiple>
</term>
<!-- SHORT LOCATOR FORMS -->
<term name="book" form="short">bk</term>
<term name="chapter" form="short">chap</term>
<term name="column" form="short">col</term>
<term name="figure" form="short">fig</term>
<term name="folio" form="short">f</term>
<term name="issue" form="short">no</term>
<term name="opus" form="short">op</term>
<term name="page" form="short">
<single>p</single>
<multiple>pp</multiple>
</term>
<term name="paragraph" form="short">para</term>
<term name="part" form="short">pt</term>
<term name="section" form="short">sec</term>
<term name="sub verbo" form="short">
<single>s.v</single>
<multiple>s.vv</multiple>
</term>
<term name="verse" form="short">
<single>v</single>
<multiple>vv</multiple>
</term>
<term name="volume" form="short">
<single>vol</single>
<multiple>vols</multiple>
</term>
<term name="edition" form="short">ed</term>
<!-- SYMBOL LOCATOR FORMS -->
<term name="paragraph" form="symbol">
<single></single>
<multiple>¶¶</multiple>
</term>
<term name="section" form="symbol">
<single>§</single>
<multiple>§§</multiple>
</term>
<!-- LONG ROLE FORMS -->
<term name="author">
<single/>
<multiple/>
</term>
<term name="editor">
<single>editor</single>
<multiple>editors</multiple>
</term>
<term name="editorial-director">
<single>editor</single>
<multiple>editors</multiple>
</term>
<term name="translator">
<single>translator</single>
<multiple>translators</multiple>
</term>
<term name="editortranslator">
<single>editor &amp; translator</single>
<multiple>editors &amp; translators</multiple>
</term>
<!-- SHORT ROLE FORMS -->
<term name="author" form="short">
<single/>
<multiple/>
</term>
<term name="editor" form="short">
<single>ed</single>
<multiple>eds</multiple>
</term>
<term name="editorial-director" form="short">
<single>ed.</single>
<multiple>eds.</multiple>
</term>
<term name="translator" form="short">
<single>tran</single>
<multiple>trans</multiple>
</term>
<term name="editortranslator" form="short">
<single>ed. &amp; tran.</single>
<multiple>eds. &amp; trans.</multiple>
</term>
<!-- VERB ROLE FORMS -->
<term name="editor" form="verb">edited by</term>
<term name="editorial-director" form="verb">edited by</term>
<term name="translator" form="verb">translated by</term>
<term name="editortranslator" form="verb">edited &amp; translated by</term>
<term name="recipient" form="verb">to</term>
<term name="interviewer" form="verb">interview by</term>
<!-- SHORT VERB ROLE FORMS -->
<term name="editor" form="verb-short">ed</term>
<term name="editorial-director" form="verb-short">ed.</term>
<term name="translator" form="verb-short">trans</term>
<term name="editortranslator" form="verb-short">ed. &amp; trans. by</term>
<!-- LONG MONTH FORMS -->
<term name="month-01">January</term>
<term name="month-02">February</term>
<term name="month-03">March</term>
<term name="month-04">April</term>
<term name="month-05">May</term>
<term name="month-06">June</term>
<term name="month-07">July</term>
<term name="month-08">August</term>
<term name="month-09">September</term>
<term name="month-10">October</term>
<term name="month-11">November</term>
<term name="month-12">December</term>
<!-- SHORT MONTH FORMS -->
<term name="month-01" form="short">Jan</term>
<term name="month-02" form="short">Feb</term>
<term name="month-03" form="short">Mar</term>
<term name="month-04" form="short">Apr</term>
<term name="month-05" form="short">May</term>
<term name="month-06" form="short">Jun</term>
<term name="month-07" form="short">Jul</term>
<term name="month-08" form="short">Aug</term>
<term name="month-09" form="short">Sep</term>
<term name="month-10" form="short">Oct</term>
<term name="month-11" form="short">Nov</term>
<term name="month-12" form="short">Dec</term>
<!-- SEASONS -->
<term name="season-01">Spring</term>
<term name="season-02">Summer</term>
<term name="season-03">Autumn</term>
<term name="season-04">Winter</term>
</terms>
</locale>

View file

@ -1,211 +1,299 @@
<?xml version="1.0" encoding="UTF-8"?>
<terms xmlns="http://purl.org/net/xbiblio/csl">
<locale xml:lang="tr">
<term name="at">de</term>
<term name="in">içinde</term>
<term name="ibid">ibid</term>
<term name="accessed">erişildi</term>
<term name="retrieved">erişildi</term>
<term name="from">den</term>
<term name="forthcoming">gelecek</term>
<term name="references">referans</term>
<term name="reference item">
<single>source</single>
<multiple>sources</multiple>
</term>
<term name="no date">tarih yok</term>
<term name="and">ve</term>
<term name="et-al">ve diğ.</term>
<term name="interview">interview</term>
<term name="letter">letter</term>
<term name="anonymous">isimsiz</term>
<term name="anonymous" form="short">isimsiz</term>
<term name="and others">ve diğ.</term>
<term name="in press">basımda</term>
<term name="online">çevrimiçi</term>
<term name="cited">kaynak</term>
<term name="internet">internet</term>
<term name="presented at">sunulan</term>
<term name="anthropology">antropoloji</term>
<term name="astronomy">astronomi</term>
<term name="biology">biyoloji</term>
<term name="botany">botanik</term>
<term name="chemistry">kimya</term>
<term name="engineering">mühendislik</term>
<term name="generic-base">generic-base</term>
<term name="geography">coğrafya</term>
<term name="geology">jeoloji</term>
<term name="history">tarih</term>
<term name="humanities">humanities</term>
<term name="literature">edebiyat</term>
<term name="math">matematik</term>
<term name="medicine">tıp</term>
<term name="philosophy">felsefe</term>
<term name="physics">fizik</term>
<term name="psychology">pisikoloji</term>
<term name="sociology">sosyoloji</term>
<term name="science">bilim</term>
<term name="political_science">siyaset bilimi</term>
<term name="social_science">sosyal bilimler</term>
<term name="theology">din bilimi</term>
<term name="zoology">hayvanbilimi</term>
<term name="book">
<single>kitap</single>
<multiple>kitaplar</multiple>
</term>
<term name="chapter">
<single>bölüm</single>
<multiple>bölümler</multiple>
</term>
<term name="column">
<single>sütun</single>
<multiple>sütunlar</multiple>
</term>
<term name="figure">
<single>şekil</single>
<multiple>şekiller</multiple>
</term>
<term name="folio">
<single>folyo</single>
<multiple>folyo</multiple>
</term>
<term name="issue">
<single>sayı</single>
<multiple>sayılar</multiple>
</term>
<term name="line">
<single>satır</single>
<multiple>satırlar</multiple>
</term>
<term name="note">
<single>not</single>
<multiple>notlar</multiple>
</term>
<term name="opus">
<single>opus</single>
<multiple>opera</multiple>
</term>
<term name="page">
<single>sayfa</single>
<multiple>sayfalar</multiple>
</term>
<term name="paragraph">
<single>paragraf</single>
<multiple>paragraflar</multiple>
</term>
<term name="part">
<single>kısım</single>
<multiple>kısımlar</multiple>
</term>
<term name="section">
<single>bölüm</single>
<multiple>bölümler</multiple>
</term>
<term name="volume">
<single>cilt</single>
<multiple>ciltler</multiple>
</term>
<term name="edition">
<single>edition</single>
<multiple>editions</multiple>
</term>
<term name="verse">
<single>dize</single>
<multiple>dizeler</multiple>
</term>
<term name="sub verbo">
<single>sub verbo</single>
<multiple>s.vv</multiple>
</term>
<term name="book" form="short">kit</term>
<term name="chapter" form="short">böl</term>
<term name="column" form="short">süt</term>
<term name="figure" form="short">şek</term>
<term name="folio" form="short">f</term>
<term name="issue" form="short">sayı</term>
<term name="opus" form="short">op</term>
<term name="page" form="short">
<single>s</single>
<multiple>ss</multiple>
</term>
<term name="paragraph" form="short">para</term>
<term name="part" form="short">kıs</term>
<term name="section" form="short">böl</term>
<term name="sub verbo" form="short">
<single>s.v</single>
<multiple>s.vv</multiple>
</term>
<term name="verse" form="short">
<single>v</single>
<multiple>vv</multiple>
</term>
<term name="volume" form="short">
<single>vol</single>
<multiple>vols</multiple>
</term>
<term name="edition">edition</term>
<term name="edition" form="short">ed</term>
<term name="paragraph" form="symbol">
<single></single>
<multiple>¶¶</multiple>
</term>
<term name="section" form="symbol">
<single>§</single>
<multiple>§§</multiple>
</term>
<term name="author">
<single/>
<multiple/>
</term>
<term name="editor">
<single>editör</single>
<multiple>editörler</multiple>
</term>
<term name="translator">
<single>çevirmen</single>
<multiple>çevirmenler</multiple>
</term>
<term name="author" form="short">
<single/>
<multiple/>
</term>
<term name="editor" form="short">
<single>ed</single>
<multiple>ed</multiple>
</term>
<term name="translator" form="short">
<single>çev</single>
<multiple>çev</multiple>
</term>
<term name="editor" form="verb">editör</term>
<term name="translator" form="verb">çeviren</term>
<term name="recipient" form="verb">to</term>
<term name="interviewer" form="verb">Röportaj yapan</term>
<term name="editor" form="verb-short">ed</term>
<term name="translator" form="verb-short">çev</term>
<term name="month-01">Ocak</term>
<term name="month-02">Şubat</term>
<term name="month-03">Mart</term>
<term name="month-04">Nisan</term>
<term name="month-05">Mayıs</term>
<term name="month-06">Haziran</term>
<term name="month-07">Temmuz</term>
<term name="month-08">Ağustos</term>
<term name="month-09">Eylül</term>
<term name="month-10">Ekim</term>
<term name="month-11">Kasım</term>
<term name="month-12">Aralık</term>
<term name="month-01" form="short">Oca</term>
<term name="month-02" form="short">Şub</term>
<term name="month-03" form="short">Mar</term>
<term name="month-04" form="short">Nis</term>
<term name="month-05" form="short">May</term>
<term name="month-06" form="short">Haz</term>
<term name="month-07" form="short">Tem</term>
<term name="month-08" form="short">Ağu</term>
<term name="month-09" form="short">Eyl</term>
<term name="month-10" form="short">Eki</term>
<term name="month-11" form="short">Kas</term>
<term name="month-12" form="short">Ara</term>
</locale>
</terms>
<?xml version="1.0" encoding="utf-8"?>
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="tr">
<style-options punctuation-in-quote="true"/>
<date form="text">
<date-part name="month" suffix=" "/>
<date-part name="day" suffix=", "/>
<date-part name="year"/>
</date>
<date form="numeric">
<date-part name="year"/>
<date-part name="month" form="numeric" prefix="-" range-delimiter="/"/>
<date-part name="day" prefix="-" range-delimiter="/"/>
</date>
<terms>
<term name="at">de</term>
<term name="in">içinde</term>
<term name="ibid">ibid</term>
<term name="accessed">erişildi</term>
<term name="retrieved">erişildi</term>
<term name="from">den</term>
<term name="forthcoming">gelecek</term>
<term name="reference">
<single>reference</single>
<multiple>references</multiple>
</term>
<term name="reference" form="short">
<single>ref.</single>
<multiple>refs.</multiple>
</term>
<term name="no date">tarih yok</term>
<term name="and">ve</term>
<term name="et-al">ve diğ.</term>
<term name="circa">circa</term>
<term name="circa" form="short">c.</term>
<term name="interview">interview</term>
<term name="letter">letter</term>
<term name="anonymous">isimsiz</term>
<term name="anonymous" form="short">isimsiz</term>
<term name="and others">ve diğ.</term>
<term name="in press">basımda</term>
<term name="online">çevrimiçi</term>
<term name="cited">kaynak</term>
<term name="internet">internet</term>
<term name="presented at">sunulan</term>
<term name="ad">AD</term>
<term name="bc">BC</term>
<!-- QUOTES -->
<term name="open-quote"></term>
<term name="close-quote"></term>
<term name="open-inner-quote"></term>
<term name="close-inner-quote"></term>
<!-- ORDINALS -->
<term name="ordinal-01">st</term>
<term name="ordinal-02">nd</term>
<term name="ordinal-03">rd</term>
<term name="ordinal-04">th</term>
<!-- LONG ORDINALS -->
<term name="long-ordinal-01">first</term>
<term name="long-ordinal-02">second</term>
<term name="long-ordinal-03">third</term>
<term name="long-ordinal-04">fourth</term>
<term name="long-ordinal-05">fifth</term>
<term name="long-ordinal-06">sixth</term>
<term name="long-ordinal-07">seventh</term>
<term name="long-ordinal-08">eighth</term>
<term name="long-ordinal-09">ninth</term>
<term name="long-ordinal-10">tenth</term>
<!-- CATEGORIES -->
<term name="anthropology">antropoloji</term>
<term name="astronomy">astronomi</term>
<term name="biology">biyoloji</term>
<term name="botany">botanik</term>
<term name="chemistry">kimya</term>
<term name="engineering">mühendislik</term>
<term name="generic-base">generic-base</term>
<term name="geography">coğrafya</term>
<term name="geology">jeoloji</term>
<term name="history">tarih</term>
<term name="humanities">humanities</term>
<term name="linguistics">linguistics</term>
<term name="literature">edebiyat</term>
<term name="math">matematik</term>
<term name="medicine">tıp</term>
<term name="philosophy">felsefe</term>
<term name="physics">fizik</term>
<term name="psychology">pisikoloji</term>
<term name="sociology">sosyoloji</term>
<term name="science">bilim</term>
<term name="political_science">siyaset bilimi</term>
<term name="social_science">sosyal bilimler</term>
<term name="theology">din bilimi</term>
<term name="zoology">hayvanbilimi</term>
<!-- LONG LOCATOR FORMS -->
<term name="book">
<single>kitap</single>
<multiple>kitaplar</multiple>
</term>
<term name="chapter">
<single>bölüm</single>
<multiple>bölümler</multiple>
</term>
<term name="column">
<single>sütun</single>
<multiple>sütunlar</multiple>
</term>
<term name="figure">
<single>şekil</single>
<multiple>şekiller</multiple>
</term>
<term name="folio">
<single>folyo</single>
<multiple>folyo</multiple>
</term>
<term name="issue">
<single>sayı</single>
<multiple>sayılar</multiple>
</term>
<term name="line">
<single>satır</single>
<multiple>satırlar</multiple>
</term>
<term name="note">
<single>not</single>
<multiple>notlar</multiple>
</term>
<term name="opus">
<single>opus</single>
<multiple>opera</multiple>
</term>
<term name="page">
<single>sayfa</single>
<multiple>sayfalar</multiple>
</term>
<term name="paragraph">
<single>paragraf</single>
<multiple>paragraflar</multiple>
</term>
<term name="part">
<single>kısım</single>
<multiple>kısımlar</multiple>
</term>
<term name="section">
<single>bölüm</single>
<multiple>bölümler</multiple>
</term>
<term name="volume">
<single>cilt</single>
<multiple>ciltler</multiple>
</term>
<term name="edition">
<single>edition</single>
<multiple>editions</multiple>
</term>
<term name="verse">
<single>dize</single>
<multiple>dizeler</multiple>
</term>
<term name="sub verbo">
<single>sub verbo</single>
<multiple>s.vv</multiple>
</term>
<!-- SHORT LOCATOR FORMS -->
<term name="book" form="short">kit</term>
<term name="chapter" form="short">böl</term>
<term name="column" form="short">süt</term>
<term name="figure" form="short">şek</term>
<term name="folio" form="short">f</term>
<term name="issue" form="short">sayı</term>
<term name="opus" form="short">op</term>
<term name="page" form="short">
<single>s</single>
<multiple>ss</multiple>
</term>
<term name="paragraph" form="short">para</term>
<term name="part" form="short">kıs</term>
<term name="section" form="short">böl</term>
<term name="sub verbo" form="short">
<single>s.v</single>
<multiple>s.vv</multiple>
</term>
<term name="verse" form="short">
<single>v</single>
<multiple>vv</multiple>
</term>
<term name="volume" form="short">
<single>vol</single>
<multiple>vols</multiple>
</term>
<term name="edition" form="short">ed</term>
<!-- SYMBOL LOCATOR FORMS -->
<term name="paragraph" form="symbol">
<single></single>
<multiple>¶¶</multiple>
</term>
<term name="section" form="symbol">
<single>§</single>
<multiple>§§</multiple>
</term>
<!-- LONG ROLE FORMS -->
<term name="author">
<single/>
<multiple/>
</term>
<term name="editor">
<single>editör</single>
<multiple>editörler</multiple>
</term>
<term name="editorial-director">
<single>editor</single>
<multiple>editors</multiple>
</term>
<term name="translator">
<single>çevirmen</single>
<multiple>çevirmenler</multiple>
</term>
<term name="editortranslator">
<single>editor &amp; translator</single>
<multiple>editors &amp; translators</multiple>
</term>
<!-- SHORT ROLE FORMS -->
<term name="author" form="short">
<single/>
<multiple/>
</term>
<term name="editor" form="short">
<single>ed</single>
<multiple>ed</multiple>
</term>
<term name="editorial-director" form="short">
<single>ed.</single>
<multiple>eds.</multiple>
</term>
<term name="translator" form="short">
<single>çev</single>
<multiple>çev</multiple>
</term>
<term name="editortranslator" form="short">
<single>ed. &amp; tran.</single>
<multiple>eds. &amp; trans.</multiple>
</term>
<!-- VERB ROLE FORMS -->
<term name="editor" form="verb">editör</term>
<term name="editorial-director" form="verb">edited by</term>
<term name="translator" form="verb">çeviren</term>
<term name="editortranslator" form="verb">edited &amp; translated by</term>
<term name="recipient" form="verb">to</term>
<term name="interviewer" form="verb">Röportaj yapan</term>
<!-- SHORT VERB ROLE FORMS -->
<term name="editor" form="verb-short">ed</term>
<term name="editorial-director" form="verb-short">ed.</term>
<term name="translator" form="verb-short">çev</term>
<term name="editortranslator" form="verb-short">ed. &amp; trans. by</term>
<!-- LONG MONTH FORMS -->
<term name="month-01">Ocak</term>
<term name="month-02">Şubat</term>
<term name="month-03">Mart</term>
<term name="month-04">Nisan</term>
<term name="month-05">Mayıs</term>
<term name="month-06">Haziran</term>
<term name="month-07">Temmuz</term>
<term name="month-08">Ağustos</term>
<term name="month-09">Eylül</term>
<term name="month-10">Ekim</term>
<term name="month-11">Kasım</term>
<term name="month-12">Aralık</term>
<!-- SHORT MONTH FORMS -->
<term name="month-01" form="short">Oca</term>
<term name="month-02" form="short">Şub</term>
<term name="month-03" form="short">Mar</term>
<term name="month-04" form="short">Nis</term>
<term name="month-05" form="short">May</term>
<term name="month-06" form="short">Haz</term>
<term name="month-07" form="short">Tem</term>
<term name="month-08" form="short">Ağu</term>
<term name="month-09" form="short">Eyl</term>
<term name="month-10" form="short">Eki</term>
<term name="month-11" form="short">Kas</term>
<term name="month-12" form="short">Ara</term>
<!-- SEASONS -->
<term name="season-01">Spring</term>
<term name="season-02">Summer</term>
<term name="season-03">Autumn</term>
<term name="season-04">Winter</term>
</terms>
</locale>

View file

@ -1,211 +1,299 @@
<?xml version="1.0" encoding="UTF-8"?>
<terms xmlns="http://purl.org/net/xbiblio/csl">
<locale xml:lang="uk">
<term name="at">на</term>
<term name="in">в</term>
<term name="ibid">ibid</term>
<term name="accessed">accessed</term>
<term name="retrieved">retrieved</term>
<term name="from">із</term>
<term name="forthcoming">forthcoming</term>
<term name="references">посилання</term>
<term name="reference item">
<single>source</single>
<multiple>sources</multiple>
</term>
<term name="no date">n.d.</term>
<term name="and">і</term>
<term name="et-al">et al.</term>
<term name="interview">інтервю</term>
<term name="letter">лист</term>
<term name="anonymous">анонімний</term>
<term name="anonymous" form="short">анон.</term>
<term name="and others">та інші</term>
<term name="in press">у пресі</term>
<term name="online">online</term>
<term name="cited">cited</term>
<term name="internet">інтернет</term>
<term name="presented at">presented at the</term>
<term name="anthropology">антропологія</term>
<term name="astronomy">астрономія</term>
<term name="biology">біологія</term>
<term name="botany">ботаніка</term>
<term name="chemistry">хімія</term>
<term name="engineering">інженерія</term>
<term name="generic-base">generic base</term>
<term name="geography">географія</term>
<term name="geology">геологія</term>
<term name="history">історія</term>
<term name="humanities">гуманітарні</term>
<term name="literature">література</term>
<term name="math">математика</term>
<term name="medicine">медицина</term>
<term name="philosophy">філософія</term>
<term name="physics">фізика</term>
<term name="psychology">психологія</term>
<term name="sociology">соціологія</term>
<term name="science">наука</term>
<term name="political_science">політичні науки</term>
<term name="social_science">соціальні науки</term>
<term name="theology">теологія</term>
<term name="zoology">зоологія</term>
<term name="book">
<single>book</single>
<multiple>books</multiple>
</term>
<term name="chapter">
<single>chapter</single>
<multiple>chapters</multiple>
</term>
<term name="column">
<single>column</single>
<multiple>columns</multiple>
</term>
<term name="figure">
<single>figure</single>
<multiple>figures</multiple>
</term>
<term name="folio">
<single>folio</single>
<multiple>folios</multiple>
</term>
<term name="issue">
<single>number</single>
<multiple>numbers</multiple>
</term>
<term name="line">
<single>line</single>
<multiple>lines</multiple>
</term>
<term name="note">
<single>note</single>
<multiple>notes</multiple>
</term>
<term name="opus">
<single>opus</single>
<multiple>opera</multiple>
</term>
<term name="page">
<single>page</single>
<multiple>pages</multiple>
</term>
<term name="paragraph">
<single>paragraph</single>
<multiple>paragraph</multiple>
</term>
<term name="part">
<single>part</single>
<multiple>parts</multiple>
</term>
<term name="section">
<single>section</single>
<multiple>sections</multiple>
</term>
<term name="volume">
<single>volume</single>
<multiple>volumes</multiple>
</term>
<term name="edition">
<single>edition</single>
<multiple>editions</multiple>
</term>
<term name="verse">
<single>verse</single>
<multiple>verses</multiple>
</term>
<term name="sub verbo">
<single>sub verbo</single>
<multiple>s.vv</multiple>
</term>
<term name="book" form="short">bk</term>
<term name="chapter" form="short">chap</term>
<term name="column" form="short">col</term>
<term name="figure" form="short">fig</term>
<term name="folio" form="short">f</term>
<term name="issue" form="short">no</term>
<term name="opus" form="short">op</term>
<term name="page" form="short">
<single>p</single>
<multiple>pp</multiple>
</term>
<term name="paragraph" form="short">para</term>
<term name="part" form="short">pt</term>
<term name="section" form="short">sec</term>
<term name="sub verbo" form="short">
<single>s.v</single>
<multiple>s.vv</multiple>
</term>
<term name="verse" form="short">
<single>v</single>
<multiple>vv</multiple>
</term>
<term name="volume" form="short">
<single>vol</single>
<multiple>vols</multiple>
</term>
<term name="edition">edition</term>
<term name="edition" form="short">ed</term>
<term name="paragraph" form="symbol">
<single></single>
<multiple>¶¶</multiple>
</term>
<term name="section" form="symbol">
<single>§</single>
<multiple>§§</multiple>
</term>
<term name="author">
<single/>
<multiple/>
</term>
<term name="editor">
<single>editor</single>
<multiple>editors</multiple>
</term>
<term name="translator">
<single>translator</single>
<multiple>translators</multiple>
</term>
<term name="author" form="short">
<single/>
<multiple/>
</term>
<term name="editor" form="short">
<single>ed</single>
<multiple>eds</multiple>
</term>
<term name="translator" form="short">
<single>tran</single>
<multiple>trans</multiple>
</term>
<term name="editor" form="verb">edited by</term>
<term name="translator" form="verb">translated by</term>
<term name="recipient" form="verb">to</term>
<term name="interviewer" form="verb">interview by</term>
<term name="editor" form="verb-short">ed</term>
<term name="translator" form="verb-short">trans</term>
<term name="month-01">Січень</term>
<term name="month-02">Лютий</term>
<term name="month-03">Березень</term>
<term name="month-04">Квітень</term>
<term name="month-05">Травень</term>
<term name="month-06">Червень</term>
<term name="month-07">Липень</term>
<term name="month-08">Серпень</term>
<term name="month-09">Вересень</term>
<term name="month-10">Жовтень</term>
<term name="month-11">Листопад</term>
<term name="month-12">Грудень</term>
<term name="month-01" form="short">Січ</term>
<term name="month-02" form="short">Лют</term>
<term name="month-03" form="short">Бер</term>
<term name="month-04" form="short">Квіт</term>
<term name="month-05" form="short">Трав</term>
<term name="month-06" form="short">Чер</term>
<term name="month-07" form="short">Лип</term>
<term name="month-08" form="short">Сер</term>
<term name="month-09" form="short">Вер</term>
<term name="month-10" form="short">Жов</term>
<term name="month-11" form="short">Лис</term>
<term name="month-12" form="short">Груд</term>
</locale>
</terms>
<?xml version="1.0" encoding="utf-8"?>
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="uk">
<style-options punctuation-in-quote="true"/>
<date form="text">
<date-part name="month" suffix=" "/>
<date-part name="day" suffix=", "/>
<date-part name="year"/>
</date>
<date form="numeric">
<date-part name="year"/>
<date-part name="month" form="numeric" prefix="-" range-delimiter="/"/>
<date-part name="day" prefix="-" range-delimiter="/"/>
</date>
<terms>
<term name="at">на</term>
<term name="in">в</term>
<term name="ibid">ibid</term>
<term name="accessed">accessed</term>
<term name="retrieved">retrieved</term>
<term name="from">із</term>
<term name="forthcoming">forthcoming</term>
<term name="reference">
<single>reference</single>
<multiple>references</multiple>
</term>
<term name="reference" form="short">
<single>ref.</single>
<multiple>refs.</multiple>
</term>
<term name="no date">n.d.</term>
<term name="and">і</term>
<term name="et-al">et al.</term>
<term name="circa">circa</term>
<term name="circa" form="short">c.</term>
<term name="interview">інтервю</term>
<term name="letter">лист</term>
<term name="anonymous">анонімний</term>
<term name="anonymous" form="short">анон.</term>
<term name="and others">та інші</term>
<term name="in press">у пресі</term>
<term name="online">online</term>
<term name="cited">cited</term>
<term name="internet">інтернет</term>
<term name="presented at">presented at the</term>
<term name="ad">AD</term>
<term name="bc">BC</term>
<!-- QUOTES -->
<term name="open-quote"></term>
<term name="close-quote"></term>
<term name="open-inner-quote"></term>
<term name="close-inner-quote"></term>
<!-- ORDINALS -->
<term name="ordinal-01">st</term>
<term name="ordinal-02">nd</term>
<term name="ordinal-03">rd</term>
<term name="ordinal-04">th</term>
<!-- LONG ORDINALS -->
<term name="long-ordinal-01">first</term>
<term name="long-ordinal-02">second</term>
<term name="long-ordinal-03">third</term>
<term name="long-ordinal-04">fourth</term>
<term name="long-ordinal-05">fifth</term>
<term name="long-ordinal-06">sixth</term>
<term name="long-ordinal-07">seventh</term>
<term name="long-ordinal-08">eighth</term>
<term name="long-ordinal-09">ninth</term>
<term name="long-ordinal-10">tenth</term>
<!-- CATEGORIES -->
<term name="anthropology">антропологія</term>
<term name="astronomy">астрономія</term>
<term name="biology">біологія</term>
<term name="botany">ботаніка</term>
<term name="chemistry">хімія</term>
<term name="engineering">інженерія</term>
<term name="generic-base">generic base</term>
<term name="geography">географія</term>
<term name="geology">геологія</term>
<term name="history">історія</term>
<term name="humanities">гуманітарні</term>
<term name="linguistics">linguistics</term>
<term name="literature">література</term>
<term name="math">математика</term>
<term name="medicine">медицина</term>
<term name="philosophy">філософія</term>
<term name="physics">фізика</term>
<term name="psychology">психологія</term>
<term name="sociology">соціологія</term>
<term name="science">наука</term>
<term name="political_science">політичні науки</term>
<term name="social_science">соціальні науки</term>
<term name="theology">теологія</term>
<term name="zoology">зоологія</term>
<!-- LONG LOCATOR FORMS -->
<term name="book">
<single>book</single>
<multiple>books</multiple>
</term>
<term name="chapter">
<single>chapter</single>
<multiple>chapters</multiple>
</term>
<term name="column">
<single>column</single>
<multiple>columns</multiple>
</term>
<term name="figure">
<single>figure</single>
<multiple>figures</multiple>
</term>
<term name="folio">
<single>folio</single>
<multiple>folios</multiple>
</term>
<term name="issue">
<single>number</single>
<multiple>numbers</multiple>
</term>
<term name="line">
<single>line</single>
<multiple>lines</multiple>
</term>
<term name="note">
<single>note</single>
<multiple>notes</multiple>
</term>
<term name="opus">
<single>opus</single>
<multiple>opera</multiple>
</term>
<term name="page">
<single>page</single>
<multiple>pages</multiple>
</term>
<term name="paragraph">
<single>paragraph</single>
<multiple>paragraph</multiple>
</term>
<term name="part">
<single>part</single>
<multiple>parts</multiple>
</term>
<term name="section">
<single>section</single>
<multiple>sections</multiple>
</term>
<term name="volume">
<single>volume</single>
<multiple>volumes</multiple>
</term>
<term name="edition">
<single>edition</single>
<multiple>editions</multiple>
</term>
<term name="verse">
<single>verse</single>
<multiple>verses</multiple>
</term>
<term name="sub verbo">
<single>sub verbo</single>
<multiple>s.vv</multiple>
</term>
<!-- SHORT LOCATOR FORMS -->
<term name="book" form="short">bk</term>
<term name="chapter" form="short">chap</term>
<term name="column" form="short">col</term>
<term name="figure" form="short">fig</term>
<term name="folio" form="short">f</term>
<term name="issue" form="short">no</term>
<term name="opus" form="short">op</term>
<term name="page" form="short">
<single>p</single>
<multiple>pp</multiple>
</term>
<term name="paragraph" form="short">para</term>
<term name="part" form="short">pt</term>
<term name="section" form="short">sec</term>
<term name="sub verbo" form="short">
<single>s.v</single>
<multiple>s.vv</multiple>
</term>
<term name="verse" form="short">
<single>v</single>
<multiple>vv</multiple>
</term>
<term name="volume" form="short">
<single>vol</single>
<multiple>vols</multiple>
</term>
<term name="edition" form="short">ed</term>
<!-- SYMBOL LOCATOR FORMS -->
<term name="paragraph" form="symbol">
<single></single>
<multiple>¶¶</multiple>
</term>
<term name="section" form="symbol">
<single>§</single>
<multiple>§§</multiple>
</term>
<!-- LONG ROLE FORMS -->
<term name="author">
<single/>
<multiple/>
</term>
<term name="editor">
<single>editor</single>
<multiple>editors</multiple>
</term>
<term name="editorial-director">
<single>editor</single>
<multiple>editors</multiple>
</term>
<term name="translator">
<single>translator</single>
<multiple>translators</multiple>
</term>
<term name="editortranslator">
<single>editor &amp; translator</single>
<multiple>editors &amp; translators</multiple>
</term>
<!-- SHORT ROLE FORMS -->
<term name="author" form="short">
<single/>
<multiple/>
</term>
<term name="editor" form="short">
<single>ed</single>
<multiple>eds</multiple>
</term>
<term name="editorial-director" form="short">
<single>ed.</single>
<multiple>eds.</multiple>
</term>
<term name="translator" form="short">
<single>tran</single>
<multiple>trans</multiple>
</term>
<term name="editortranslator" form="short">
<single>ed. &amp; tran.</single>
<multiple>eds. &amp; trans.</multiple>
</term>
<!-- VERB ROLE FORMS -->
<term name="editor" form="verb">edited by</term>
<term name="editorial-director" form="verb">edited by</term>
<term name="translator" form="verb">translated by</term>
<term name="editortranslator" form="verb">edited &amp; translated by</term>
<term name="recipient" form="verb">to</term>
<term name="interviewer" form="verb">interview by</term>
<!-- SHORT VERB ROLE FORMS -->
<term name="editor" form="verb-short">ed</term>
<term name="editorial-director" form="verb-short">ed.</term>
<term name="translator" form="verb-short">trans</term>
<term name="editortranslator" form="verb-short">ed. &amp; trans. by</term>
<!-- LONG MONTH FORMS -->
<term name="month-01">Січень</term>
<term name="month-02">Лютий</term>
<term name="month-03">Березень</term>
<term name="month-04">Квітень</term>
<term name="month-05">Травень</term>
<term name="month-06">Червень</term>
<term name="month-07">Липень</term>
<term name="month-08">Серпень</term>
<term name="month-09">Вересень</term>
<term name="month-10">Жовтень</term>
<term name="month-11">Листопад</term>
<term name="month-12">Грудень</term>
<!-- SHORT MONTH FORMS -->
<term name="month-01" form="short">Січ</term>
<term name="month-02" form="short">Лют</term>
<term name="month-03" form="short">Бер</term>
<term name="month-04" form="short">Квіт</term>
<term name="month-05" form="short">Трав</term>
<term name="month-06" form="short">Чер</term>
<term name="month-07" form="short">Лип</term>
<term name="month-08" form="short">Сер</term>
<term name="month-09" form="short">Вер</term>
<term name="month-10" form="short">Жов</term>
<term name="month-11" form="short">Лис</term>
<term name="month-12" form="short">Груд</term>
<!-- SEASONS -->
<term name="season-01">Spring</term>
<term name="season-02">Summer</term>
<term name="season-03">Autumn</term>
<term name="season-04">Winter</term>
</terms>
</locale>

View file

@ -1,211 +1,299 @@
<?xml version="1.0" encoding="UTF-8"?>
<terms xmlns="http://purl.org/net/xbiblio/csl">
<locale xml:lang="vi">
<term name="at">at</term>
<term name="in">trong</term>
<term name="ibid">n.t.</term>
<term name="accessed">truy cập</term>
<term name="retrieved">truy vấn</term>
<term name="from">từ</term>
<term name="forthcoming">sắp tới</term>
<term name="references">tham khảo</term>
<term name="reference item">
<single>source</single>
<multiple>sources</multiple>
</term>
<term name="no date">không ngày</term>
<term name="and"></term>
<term name="et-al">và c.s.</term>
<term name="interview">interview</term>
<term name="letter">letter</term>
<term name="anonymous">anonymous</term>
<term name="anonymous" form="short">anon</term>
<term name="and others">and others</term>
<term name="in press">in press</term>
<term name="online">online</term>
<term name="cited">cited</term>
<term name="internet">internet</term>
<term name="presented at">presented at the</term>
<term name="anthropology">anthropology</term>
<term name="astronomy">astronomy</term>
<term name="biology">biology</term>
<term name="botany">botany</term>
<term name="chemistry">chemistry</term>
<term name="engineering">engineering</term>
<term name="generic-base">generic base</term>
<term name="geography">geography</term>
<term name="geology">geology</term>
<term name="history">history</term>
<term name="humanities">humanities</term>
<term name="literature">literature</term>
<term name="math">math</term>
<term name="medicine">medicine</term>
<term name="philosophy">philosophy</term>
<term name="physics">physics</term>
<term name="psychology">psychology</term>
<term name="sociology">sociology</term>
<term name="science">science</term>
<term name="political_science">political science</term>
<term name="social_science">social science</term>
<term name="theology">theology</term>
<term name="zoology">zoology</term>
<term name="book">
<single>book</single>
<multiple>books</multiple>
</term>
<term name="chapter">
<single>chapter</single>
<multiple>chapters</multiple>
</term>
<term name="column">
<single>column</single>
<multiple>columns</multiple>
</term>
<term name="figure">
<single>figure</single>
<multiple>figures</multiple>
</term>
<term name="folio">
<single>folio</single>
<multiple>folios</multiple>
</term>
<term name="issue">
<single>number</single>
<multiple>numbers</multiple>
</term>
<term name="line">
<single>dòng</single>
<multiple>dòng</multiple>
</term>
<term name="note">
<single>note</single>
<multiple>notes</multiple>
</term>
<term name="opus">
<single>opus</single>
<multiple>opera</multiple>
</term>
<term name="page">
<single>trang</single>
<multiple>trang</multiple>
</term>
<term name="paragraph">
<single>đoạn văn</single>
<multiple>đoạn văn</multiple>
</term>
<term name="part">
<single>part</single>
<multiple>parts</multiple>
</term>
<term name="section">
<single>section</single>
<multiple>sections</multiple>
</term>
<term name="volume">
<single>volume</single>
<multiple>volumes</multiple>
</term>
<term name="edition">
<single>edition</single>
<multiple>editions</multiple>
</term>
<term name="verse">
<single>verse</single>
<multiple>verses</multiple>
</term>
<term name="sub verbo">
<single>sub verbo</single>
<multiple>s.vv</multiple>
</term>
<term name="book" form="short">bk</term>
<term name="chapter" form="short">chap</term>
<term name="column" form="short">col</term>
<term name="figure" form="short">fig</term>
<term name="folio" form="short">f</term>
<term name="issue" form="short">số p.h</term>
<term name="opus" form="short">op</term>
<term name="page" form="short">
<single>tr</single>
<multiple>tr</multiple>
</term>
<term name="paragraph" form="short">para</term>
<term name="part" form="short">pt</term>
<term name="section" form="short">sec</term>
<term name="sub verbo" form="short">
<single>s.v</single>
<multiple>s.vv</multiple>
</term>
<term name="verse" form="short">
<single>v</single>
<multiple>vv</multiple>
</term>
<term name="volume" form="short">
<single>vol</single>
<multiple>vols</multiple>
</term>
<term name="edition">edition</term>
<term name="edition" form="short">ed</term>
<term name="paragraph" form="symbol">
<single></single>
<multiple>¶¶</multiple>
</term>
<term name="section" form="symbol">
<single>§</single>
<multiple>§§</multiple>
</term>
<term name="author">
<single/>
<multiple/>
</term>
<term name="editor">
<single>biên tập viên</single>
<multiple>biên tập viên</multiple>
</term>
<term name="translator">
<single>biên dịch viên</single>
<multiple>biên dịch viên</multiple>
</term>
<term name="author" form="short">
<single/>
<multiple/>
</term>
<term name="editor" form="short">
<single>b.t.v</single>
<multiple>b.t.v</multiple>
</term>
<term name="translator" form="short">
<single>b.d.v</single>
<multiple>b.d.v</multiple>
</term>
<term name="editor" form="verb">biên tập bởi</term>
<term name="translator" form="verb">biên dịch bởi</term>
<term name="recipient" form="verb">to</term>
<term name="interviewer" form="verb">interview by</term>
<term name="editor" form="verb-short">b.t</term>
<term name="translator" form="verb-short">b.d</term>
<term name="month-01">Tháng Giêng</term>
<term name="month-02">Tháng Hai</term>
<term name="month-03">Tháng Ba</term>
<term name="month-04">Tháng Tư</term>
<term name="month-05">Tháng Năm</term>
<term name="month-06">Tháng Sáu</term>
<term name="month-07">Tháng Bảy</term>
<term name="month-08">Tháng Tám</term>
<term name="month-09">Tháng Chín</term>
<term name="month-10">Tháng Mười</term>
<term name="month-11">Tháng Mười-Một</term>
<term name="month-12">Tháng Chạp</term>
<term name="month-01" form="short">tháng 1</term>
<term name="month-02" form="short">tháng 2</term>
<term name="month-03" form="short">tháng 3</term>
<term name="month-04" form="short">tháng 4</term>
<term name="month-05" form="short">tháng 5</term>
<term name="month-06" form="short">tháng 6</term>
<term name="month-07" form="short">tháng 7</term>
<term name="month-08" form="short">tháng 8</term>
<term name="month-09" form="short">tháng 9</term>
<term name="month-10" form="short">tháng 10</term>
<term name="month-11" form="short">tháng 11</term>
<term name="month-12" form="short">tháng 12</term>
</locale>
</terms>
<?xml version="1.0" encoding="utf-8"?>
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="vi">
<style-options punctuation-in-quote="true"/>
<date form="text">
<date-part name="month" suffix=" "/>
<date-part name="day" suffix=", "/>
<date-part name="year"/>
</date>
<date form="numeric">
<date-part name="year"/>
<date-part name="month" form="numeric" prefix="-" range-delimiter="/"/>
<date-part name="day" prefix="-" range-delimiter="/"/>
</date>
<terms>
<term name="at">at</term>
<term name="in">trong</term>
<term name="ibid">n.t.</term>
<term name="accessed">truy cập</term>
<term name="retrieved">truy vấn</term>
<term name="from">từ</term>
<term name="forthcoming">sắp tới</term>
<term name="reference">
<single>reference</single>
<multiple>references</multiple>
</term>
<term name="reference" form="short">
<single>ref.</single>
<multiple>refs.</multiple>
</term>
<term name="no date">không ngày</term>
<term name="and"></term>
<term name="et-al">và c.s.</term>
<term name="circa">circa</term>
<term name="circa" form="short">c.</term>
<term name="interview">interview</term>
<term name="letter">letter</term>
<term name="anonymous">anonymous</term>
<term name="anonymous" form="short">anon</term>
<term name="and others">and others</term>
<term name="in press">in press</term>
<term name="online">online</term>
<term name="cited">cited</term>
<term name="internet">internet</term>
<term name="presented at">presented at the</term>
<term name="ad">AD</term>
<term name="bc">BC</term>
<!-- QUOTES -->
<term name="open-quote"></term>
<term name="close-quote"></term>
<term name="open-inner-quote"></term>
<term name="close-inner-quote"></term>
<!-- ORDINALS -->
<term name="ordinal-01">st</term>
<term name="ordinal-02">nd</term>
<term name="ordinal-03">rd</term>
<term name="ordinal-04">th</term>
<!-- LONG ORDINALS -->
<term name="long-ordinal-01">first</term>
<term name="long-ordinal-02">second</term>
<term name="long-ordinal-03">third</term>
<term name="long-ordinal-04">fourth</term>
<term name="long-ordinal-05">fifth</term>
<term name="long-ordinal-06">sixth</term>
<term name="long-ordinal-07">seventh</term>
<term name="long-ordinal-08">eighth</term>
<term name="long-ordinal-09">ninth</term>
<term name="long-ordinal-10">tenth</term>
<!-- CATEGORIES -->
<term name="anthropology">anthropology</term>
<term name="astronomy">astronomy</term>
<term name="biology">biology</term>
<term name="botany">botany</term>
<term name="chemistry">chemistry</term>
<term name="engineering">engineering</term>
<term name="generic-base">generic base</term>
<term name="geography">geography</term>
<term name="geology">geology</term>
<term name="history">history</term>
<term name="humanities">humanities</term>
<term name="linguistics">linguistics</term>
<term name="literature">literature</term>
<term name="math">math</term>
<term name="medicine">medicine</term>
<term name="philosophy">philosophy</term>
<term name="physics">physics</term>
<term name="psychology">psychology</term>
<term name="sociology">sociology</term>
<term name="science">science</term>
<term name="political_science">political science</term>
<term name="social_science">social science</term>
<term name="theology">theology</term>
<term name="zoology">zoology</term>
<!-- LONG LOCATOR FORMS -->
<term name="book">
<single>book</single>
<multiple>books</multiple>
</term>
<term name="chapter">
<single>chapter</single>
<multiple>chapters</multiple>
</term>
<term name="column">
<single>column</single>
<multiple>columns</multiple>
</term>
<term name="figure">
<single>figure</single>
<multiple>figures</multiple>
</term>
<term name="folio">
<single>folio</single>
<multiple>folios</multiple>
</term>
<term name="issue">
<single>number</single>
<multiple>numbers</multiple>
</term>
<term name="line">
<single>dòng</single>
<multiple>dòng</multiple>
</term>
<term name="note">
<single>note</single>
<multiple>notes</multiple>
</term>
<term name="opus">
<single>opus</single>
<multiple>opera</multiple>
</term>
<term name="page">
<single>trang</single>
<multiple>trang</multiple>
</term>
<term name="paragraph">
<single>đoạn văn</single>
<multiple>đoạn văn</multiple>
</term>
<term name="part">
<single>part</single>
<multiple>parts</multiple>
</term>
<term name="section">
<single>section</single>
<multiple>sections</multiple>
</term>
<term name="volume">
<single>volume</single>
<multiple>volumes</multiple>
</term>
<term name="edition">
<single>edition</single>
<multiple>editions</multiple>
</term>
<term name="verse">
<single>verse</single>
<multiple>verses</multiple>
</term>
<term name="sub verbo">
<single>sub verbo</single>
<multiple>s.vv</multiple>
</term>
<!-- SHORT LOCATOR FORMS -->
<term name="book" form="short">bk</term>
<term name="chapter" form="short">chap</term>
<term name="column" form="short">col</term>
<term name="figure" form="short">fig</term>
<term name="folio" form="short">f</term>
<term name="issue" form="short">số p.h</term>
<term name="opus" form="short">op</term>
<term name="page" form="short">
<single>tr</single>
<multiple>tr</multiple>
</term>
<term name="paragraph" form="short">para</term>
<term name="part" form="short">pt</term>
<term name="section" form="short">sec</term>
<term name="sub verbo" form="short">
<single>s.v</single>
<multiple>s.vv</multiple>
</term>
<term name="verse" form="short">
<single>v</single>
<multiple>vv</multiple>
</term>
<term name="volume" form="short">
<single>vol</single>
<multiple>vols</multiple>
</term>
<term name="edition" form="short">ed</term>
<!-- SYMBOL LOCATOR FORMS -->
<term name="paragraph" form="symbol">
<single></single>
<multiple>¶¶</multiple>
</term>
<term name="section" form="symbol">
<single>§</single>
<multiple>§§</multiple>
</term>
<!-- LONG ROLE FORMS -->
<term name="author">
<single/>
<multiple/>
</term>
<term name="editor">
<single>biên tập viên</single>
<multiple>biên tập viên</multiple>
</term>
<term name="editorial-director">
<single>editor</single>
<multiple>editors</multiple>
</term>
<term name="translator">
<single>biên dịch viên</single>
<multiple>biên dịch viên</multiple>
</term>
<term name="editortranslator">
<single>editor &amp; translator</single>
<multiple>editors &amp; translators</multiple>
</term>
<!-- SHORT ROLE FORMS -->
<term name="author" form="short">
<single/>
<multiple/>
</term>
<term name="editor" form="short">
<single>b.t.v</single>
<multiple>b.t.v</multiple>
</term>
<term name="editorial-director" form="short">
<single>ed.</single>
<multiple>eds.</multiple>
</term>
<term name="translator" form="short">
<single>b.d.v</single>
<multiple>b.d.v</multiple>
</term>
<term name="editortranslator" form="short">
<single>ed. &amp; tran.</single>
<multiple>eds. &amp; trans.</multiple>
</term>
<!-- VERB ROLE FORMS -->
<term name="editor" form="verb">biên tập bởi</term>
<term name="editorial-director" form="verb">edited by</term>
<term name="translator" form="verb">biên dịch bởi</term>
<term name="editortranslator" form="verb">edited &amp; translated by</term>
<term name="recipient" form="verb">to</term>
<term name="interviewer" form="verb">interview by</term>
<!-- SHORT VERB ROLE FORMS -->
<term name="editor" form="verb-short">b.t</term>
<term name="editorial-director" form="verb-short">ed.</term>
<term name="translator" form="verb-short">b.d</term>
<term name="editortranslator" form="verb-short">ed. &amp; trans. by</term>
<!-- LONG MONTH FORMS -->
<term name="month-01">Tháng Giêng</term>
<term name="month-02">Tháng Hai</term>
<term name="month-03">Tháng Ba</term>
<term name="month-04">Tháng Tư</term>
<term name="month-05">Tháng Năm</term>
<term name="month-06">Tháng Sáu</term>
<term name="month-07">Tháng Bảy</term>
<term name="month-08">Tháng Tám</term>
<term name="month-09">Tháng Chín</term>
<term name="month-10">Tháng Mười</term>
<term name="month-11">Tháng Mười-Một</term>
<term name="month-12">Tháng Chạp</term>
<!-- SHORT MONTH FORMS -->
<term name="month-01" form="short">tháng 1</term>
<term name="month-02" form="short">tháng 2</term>
<term name="month-03" form="short">tháng 3</term>
<term name="month-04" form="short">tháng 4</term>
<term name="month-05" form="short">tháng 5</term>
<term name="month-06" form="short">tháng 6</term>
<term name="month-07" form="short">tháng 7</term>
<term name="month-08" form="short">tháng 8</term>
<term name="month-09" form="short">tháng 9</term>
<term name="month-10" form="short">tháng 10</term>
<term name="month-11" form="short">tháng 11</term>
<term name="month-12" form="short">tháng 12</term>
<!-- SEASONS -->
<term name="season-01">Spring</term>
<term name="season-02">Summer</term>
<term name="season-03">Autumn</term>
<term name="season-04">Winter</term>
</terms>
</locale>

View file

@ -1,211 +1,299 @@
<?xml version="1.0" encoding="UTF-8"?>
<terms xmlns="http://purl.org/net/xbiblio/csl">
<locale xml:lang="zh">
<term name="at">at</term>
<term name="in">in</term>
<term name="ibid">ibid</term>
<term name="accessed">accessed</term>
<term name="retrieved">retrieved</term>
<term name="from">from</term>
<term name="forthcoming">forthcoming</term>
<term name="references">References</term>
<term name="reference item">
<single>source</single>
<multiple>sources</multiple>
</term>
<term name="no date">nd</term>
<term name="and">and</term>
<term name="et-al">et al.</term>
<term name="interview">interview</term>
<term name="letter">letter</term>
<term name="anonymous">anonymous</term>
<term name="anonymous" form="short">anon</term>
<term name="and others">and others</term>
<term name="in press">in press</term>
<term name="online">online</term>
<term name="cited">cited</term>
<term name="internet">internet</term>
<term name="presented at">presented at the</term>
<term name="anthropology">anthropology</term>
<term name="astronomy">astronomy</term>
<term name="biology">biology</term>
<term name="botany">botany</term>
<term name="chemistry">chemistry</term>
<term name="engineering">engineering</term>
<term name="generic-base">generic base</term>
<term name="geography">geography</term>
<term name="geology">geology</term>
<term name="history">history</term>
<term name="humanities">humanities</term>
<term name="literature">literature</term>
<term name="math">math</term>
<term name="medicine">medicine</term>
<term name="philosophy">philosophy</term>
<term name="physics">physics</term>
<term name="psychology">psychology</term>
<term name="sociology">sociology</term>
<term name="science">science</term>
<term name="political_science">political science</term>
<term name="social_science">social science</term>
<term name="theology">theology</term>
<term name="zoology">zoology</term>
<term name="book">
<single>book</single>
<multiple>books</multiple>
</term>
<term name="chapter">
<single>chapter</single>
<multiple>chapters</multiple>
</term>
<term name="column">
<single>column</single>
<multiple>columns</multiple>
</term>
<term name="figure">
<single>figure</single>
<multiple>figures</multiple>
</term>
<term name="folio">
<single>folio</single>
<multiple>folios</multiple>
</term>
<term name="issue">
<single>number</single>
<multiple>numbers</multiple>
</term>
<term name="line">
<single>line</single>
<multiple>line</multiple>
</term>
<term name="note">
<single>note</single>
<multiple>notes</multiple>
</term>
<term name="opus">
<single>opus</single>
<multiple>opera</multiple>
</term>
<term name="page">
<single>page</single>
<multiple>pages</multiple>
</term>
<term name="paragraph">
<single>paragraph</single>
<multiple>paragraph</multiple>
</term>
<term name="part">
<single>part</single>
<multiple>parts</multiple>
</term>
<term name="section">
<single>section</single>
<multiple>sections</multiple>
</term>
<term name="volume">
<single>volume</single>
<multiple>volumes</multiple>
</term>
<term name="edition">
<single>edition</single>
<multiple>editions</multiple>
</term>
<term name="verse">
<single>verse</single>
<multiple>verses</multiple>
</term>
<term name="sub verbo">
<single>sub verbo</single>
<multiple>s.vv</multiple>
</term>
<term name="book" form="short">bk</term>
<term name="chapter" form="short">chap</term>
<term name="column" form="short">col</term>
<term name="figure" form="short">fig</term>
<term name="folio" form="short">f</term>
<term name="issue" form="short">no</term>
<term name="opus" form="short">op</term>
<term name="page" form="short">
<single>p</single>
<multiple>pp</multiple>
</term>
<term name="paragraph" form="short">para</term>
<term name="part" form="short">pt</term>
<term name="section" form="short">sec</term>
<term name="sub verbo" form="short">
<single>s.v</single>
<multiple>s.vv</multiple>
</term>
<term name="verse" form="short">
<single>v</single>
<multiple>vv</multiple>
</term>
<term name="volume" form="short">
<single>vol</single>
<multiple>vols</multiple>
</term>
<term name="edition">edition</term>
<term name="edition" form="short">ed</term>
<term name="paragraph" form="symbol">
<single></single>
<multiple>¶¶</multiple>
</term>
<term name="section" form="symbol">
<single>§</single>
<multiple>§§</multiple>
</term>
<term name="author">
<single/>
<multiple/>
</term>
<term name="editor">
<single>editor</single>
<multiple>editors</multiple>
</term>
<term name="translator">
<single>translator</single>
<multiple>translators</multiple>
</term>
<term name="author" form="short">
<single/>
<multiple/>
</term>
<term name="editor" form="short">
<single>ed</single>
<multiple>eds</multiple>
</term>
<term name="translator" form="short">
<single>tran</single>
<multiple>trans</multiple>
</term>
<term name="editor" form="verb">edited by</term>
<term name="translator" form="verb">translated by</term>
<term name="recipient" form="verb">to</term>
<term name="interviewer" form="verb">interview by</term>
<term name="editor" form="verb-short">ed</term>
<term name="translator" form="verb-short">trans</term>
<term name="month-01">January</term>
<term name="month-02">February</term>
<term name="month-03">March</term>
<term name="month-04">April</term>
<term name="month-05">May</term>
<term name="month-06">June</term>
<term name="month-07">July</term>
<term name="month-08">August</term>
<term name="month-09">September</term>
<term name="month-10">October</term>
<term name="month-11">November</term>
<term name="month-12">December</term>
<term name="month-01" form="short">Jan</term>
<term name="month-02" form="short">Feb</term>
<term name="month-03" form="short">Mar</term>
<term name="month-04" form="short">Apr</term>
<term name="month-05" form="short">May</term>
<term name="month-06" form="short">Jun</term>
<term name="month-07" form="short">Jul</term>
<term name="month-08" form="short">Aug</term>
<term name="month-09" form="short">Sep</term>
<term name="month-10" form="short">Oct</term>
<term name="month-11" form="short">Nov</term>
<term name="month-12" form="short">Dec</term>
</locale>
</terms>
<?xml version="1.0" encoding="utf-8"?>
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="zh">
<style-options punctuation-in-quote="true"/>
<date form="text">
<date-part name="month" suffix=" "/>
<date-part name="day" suffix=", "/>
<date-part name="year"/>
</date>
<date form="numeric">
<date-part name="year"/>
<date-part name="month" form="numeric" prefix="-" range-delimiter="/"/>
<date-part name="day" prefix="-" range-delimiter="/"/>
</date>
<terms>
<term name="at">at</term>
<term name="in">in</term>
<term name="ibid">ibid</term>
<term name="accessed">accessed</term>
<term name="retrieved">retrieved</term>
<term name="from">from</term>
<term name="forthcoming">forthcoming</term>
<term name="reference">
<single>reference</single>
<multiple>references</multiple>
</term>
<term name="reference" form="short">
<single>ref.</single>
<multiple>refs.</multiple>
</term>
<term name="no date">nd</term>
<term name="and">and</term>
<term name="et-al">et al.</term>
<term name="circa">circa</term>
<term name="circa" form="short">c.</term>
<term name="interview">interview</term>
<term name="letter">letter</term>
<term name="anonymous">anonymous</term>
<term name="anonymous" form="short">anon</term>
<term name="and others">and others</term>
<term name="in press">in press</term>
<term name="online">online</term>
<term name="cited">cited</term>
<term name="internet">internet</term>
<term name="presented at">presented at the</term>
<term name="ad">AD</term>
<term name="bc">BC</term>
<!-- QUOTES -->
<term name="open-quote"></term>
<term name="close-quote"></term>
<term name="open-inner-quote"></term>
<term name="close-inner-quote"></term>
<!-- ORDINALS -->
<term name="ordinal-01">st</term>
<term name="ordinal-02">nd</term>
<term name="ordinal-03">rd</term>
<term name="ordinal-04">th</term>
<!-- LONG ORDINALS -->
<term name="long-ordinal-01">first</term>
<term name="long-ordinal-02">second</term>
<term name="long-ordinal-03">third</term>
<term name="long-ordinal-04">fourth</term>
<term name="long-ordinal-05">fifth</term>
<term name="long-ordinal-06">sixth</term>
<term name="long-ordinal-07">seventh</term>
<term name="long-ordinal-08">eighth</term>
<term name="long-ordinal-09">ninth</term>
<term name="long-ordinal-10">tenth</term>
<!-- CATEGORIES -->
<term name="anthropology">anthropology</term>
<term name="astronomy">astronomy</term>
<term name="biology">biology</term>
<term name="botany">botany</term>
<term name="chemistry">chemistry</term>
<term name="engineering">engineering</term>
<term name="generic-base">generic base</term>
<term name="geography">geography</term>
<term name="geology">geology</term>
<term name="history">history</term>
<term name="humanities">humanities</term>
<term name="linguistics">linguistics</term>
<term name="literature">literature</term>
<term name="math">math</term>
<term name="medicine">medicine</term>
<term name="philosophy">philosophy</term>
<term name="physics">physics</term>
<term name="psychology">psychology</term>
<term name="sociology">sociology</term>
<term name="science">science</term>
<term name="political_science">political science</term>
<term name="social_science">social science</term>
<term name="theology">theology</term>
<term name="zoology">zoology</term>
<!-- LONG LOCATOR FORMS -->
<term name="book">
<single>book</single>
<multiple>books</multiple>
</term>
<term name="chapter">
<single>chapter</single>
<multiple>chapters</multiple>
</term>
<term name="column">
<single>column</single>
<multiple>columns</multiple>
</term>
<term name="figure">
<single>figure</single>
<multiple>figures</multiple>
</term>
<term name="folio">
<single>folio</single>
<multiple>folios</multiple>
</term>
<term name="issue">
<single>number</single>
<multiple>numbers</multiple>
</term>
<term name="line">
<single>line</single>
<multiple>line</multiple>
</term>
<term name="note">
<single>note</single>
<multiple>notes</multiple>
</term>
<term name="opus">
<single>opus</single>
<multiple>opera</multiple>
</term>
<term name="page">
<single>page</single>
<multiple>pages</multiple>
</term>
<term name="paragraph">
<single>paragraph</single>
<multiple>paragraph</multiple>
</term>
<term name="part">
<single>part</single>
<multiple>parts</multiple>
</term>
<term name="section">
<single>section</single>
<multiple>sections</multiple>
</term>
<term name="volume">
<single>volume</single>
<multiple>volumes</multiple>
</term>
<term name="edition">
<single>edition</single>
<multiple>editions</multiple>
</term>
<term name="verse">
<single>verse</single>
<multiple>verses</multiple>
</term>
<term name="sub verbo">
<single>sub verbo</single>
<multiple>s.vv</multiple>
</term>
<!-- SHORT LOCATOR FORMS -->
<term name="book" form="short">bk</term>
<term name="chapter" form="short">chap</term>
<term name="column" form="short">col</term>
<term name="figure" form="short">fig</term>
<term name="folio" form="short">f</term>
<term name="issue" form="short">no</term>
<term name="opus" form="short">op</term>
<term name="page" form="short">
<single>p</single>
<multiple>pp</multiple>
</term>
<term name="paragraph" form="short">para</term>
<term name="part" form="short">pt</term>
<term name="section" form="short">sec</term>
<term name="sub verbo" form="short">
<single>s.v</single>
<multiple>s.vv</multiple>
</term>
<term name="verse" form="short">
<single>v</single>
<multiple>vv</multiple>
</term>
<term name="volume" form="short">
<single>vol</single>
<multiple>vols</multiple>
</term>
<term name="edition" form="short">ed</term>
<!-- SYMBOL LOCATOR FORMS -->
<term name="paragraph" form="symbol">
<single></single>
<multiple>¶¶</multiple>
</term>
<term name="section" form="symbol">
<single>§</single>
<multiple>§§</multiple>
</term>
<!-- LONG ROLE FORMS -->
<term name="author">
<single/>
<multiple/>
</term>
<term name="editor">
<single>editor</single>
<multiple>editors</multiple>
</term>
<term name="editorial-director">
<single>editor</single>
<multiple>editors</multiple>
</term>
<term name="translator">
<single>translator</single>
<multiple>translators</multiple>
</term>
<term name="editortranslator">
<single>editor &amp; translator</single>
<multiple>editors &amp; translators</multiple>
</term>
<!-- SHORT ROLE FORMS -->
<term name="author" form="short">
<single/>
<multiple/>
</term>
<term name="editor" form="short">
<single>ed</single>
<multiple>eds</multiple>
</term>
<term name="editorial-director" form="short">
<single>ed.</single>
<multiple>eds.</multiple>
</term>
<term name="translator" form="short">
<single>tran</single>
<multiple>trans</multiple>
</term>
<term name="editortranslator" form="short">
<single>ed. &amp; tran.</single>
<multiple>eds. &amp; trans.</multiple>
</term>
<!-- VERB ROLE FORMS -->
<term name="editor" form="verb">edited by</term>
<term name="editorial-director" form="verb">edited by</term>
<term name="translator" form="verb">translated by</term>
<term name="editortranslator" form="verb">edited &amp; translated by</term>
<term name="recipient" form="verb">to</term>
<term name="interviewer" form="verb">interview by</term>
<!-- SHORT VERB ROLE FORMS -->
<term name="editor" form="verb-short">ed</term>
<term name="editorial-director" form="verb-short">ed.</term>
<term name="translator" form="verb-short">trans</term>
<term name="editortranslator" form="verb-short">ed. &amp; trans. by</term>
<!-- LONG MONTH FORMS -->
<term name="month-01">January</term>
<term name="month-02">February</term>
<term name="month-03">March</term>
<term name="month-04">April</term>
<term name="month-05">May</term>
<term name="month-06">June</term>
<term name="month-07">July</term>
<term name="month-08">August</term>
<term name="month-09">September</term>
<term name="month-10">October</term>
<term name="month-11">November</term>
<term name="month-12">December</term>
<!-- SHORT MONTH FORMS -->
<term name="month-01" form="short">Jan</term>
<term name="month-02" form="short">Feb</term>
<term name="month-03" form="short">Mar</term>
<term name="month-04" form="short">Apr</term>
<term name="month-05" form="short">May</term>
<term name="month-06" form="short">Jun</term>
<term name="month-07" form="short">Jul</term>
<term name="month-08" form="short">Aug</term>
<term name="month-09" form="short">Sep</term>
<term name="month-10" form="short">Oct</term>
<term name="month-11" form="short">Nov</term>
<term name="month-12" form="short">Dec</term>
<!-- SEASONS -->
<term name="season-01">Spring</term>
<term name="season-02">Summer</term>
<term name="season-03">Autumn</term>
<term name="season-04">Winter</term>
</terms>
</locale>

View file

@ -1,211 +1,299 @@
<?xml version="1.0" encoding="UTF-8"?>
<terms xmlns="http://purl.org/net/xbiblio/csl">
<locale xml:lang="zh">
<term name="at"></term>
<term name="in"></term>
<term name="ibid">同上出處</term>
<term name="accessed">被取用</term>
<term name="retrieved">被取回</term>
<term name="from"></term>
<term name="forthcoming">將來的</term>
<term name="references">參考資料</term>
<term name="reference item">
<single>來源</single>
<multiple>來源</multiple>
</term>
<term name="no date">無日期</term>
<term name="and"></term>
<term name="et-al">等人</term>
<term name="interview">訪問</term>
<term name="letter">信件</term>
<term name="anonymous">不具名的</term>
<term name="anonymous" form="short">無名</term>
<term name="and others">及其他</term>
<term name="in press">印行中</term>
<term name="online">在線上</term>
<term name="cited">被引用</term>
<term name="internet">網際網路</term>
<term name="presented at">簡報於</term>
<term name="anthropology">人類學</term>
<term name="astronomy">天文學</term>
<term name="biology">生物學</term>
<term name="botany">植物學</term>
<term name="chemistry">化學</term>
<term name="engineering">工程學</term>
<term name="generic-base">一般基礎</term>
<term name="geography">地理學</term>
<term name="geology">地質學</term>
<term name="history">歷史學</term>
<term name="humanities">人文學科</term>
<term name="literature">文學</term>
<term name="math">數學</term>
<term name="medicine">醫學</term>
<term name="philosophy">哲學</term>
<term name="physics">物理學</term>
<term name="psychology">心理學</term>
<term name="sociology">社會學</term>
<term name="science">自然科學</term>
<term name="political_science">政治科學</term>
<term name="social_science">社會科學</term>
<term name="theology">神學</term>
<term name="zoology">動物學</term>
<term name="book">
<single></single>
<multiple></multiple>
</term>
<term name="chapter">
<single></single>
<multiple></multiple>
</term>
<term name="column">
<single></single>
<multiple></multiple>
</term>
<term name="figure">
<single></single>
<multiple></multiple>
</term>
<term name="folio">
<single>對開紙</single>
<multiple>對開紙</multiple>
</term>
<term name="issue">
<single>期數</single>
<multiple>期數</multiple>
</term>
<term name="line">
<single></single>
<multiple></multiple>
</term>
<term name="note">
<single>筆記</single>
<multiple>筆記</multiple>
</term>
<term name="opus">
<single>作品</single>
<multiple>作品</multiple>
</term>
<term name="page">
<single></single>
<multiple></multiple>
</term>
<term name="paragraph">
<single>段落</single>
<multiple>段落</multiple>
</term>
<term name="part">
<single></single>
<multiple></multiple>
</term>
<term name="section">
<single></single>
<multiple></multiple>
</term>
<term name="volume">
<single></single>
<multiple></multiple>
</term>
<term name="edition">
<single>版本</single>
<multiple>版本</multiple>
</term>
<term name="verse">
<single>詩句</single>
<multiple>詩句</multiple>
</term>
<term name="sub verbo">
<single>詞下</single>
<multiple>詞下</multiple>
</term>
<term name="book" form="short"></term>
<term name="chapter" form="short"></term>
<term name="column" form="short"></term>
<term name="figure" form="short"></term>
<term name="folio" form="short"></term>
<term name="issue" form="short"></term>
<term name="opus" form="short"></term>
<term name="page" form="short">
<single></single>
<multiple></multiple>
</term>
<term name="paragraph" form="short"></term>
<term name="part" form="short"></term>
<term name="section" form="short"></term>
<term name="sub verbo" form="short">
<single>詞下</single>
<multiple>詞下</multiple>
</term>
<term name="verse" form="short">
<single></single>
<multiple></multiple>
</term>
<term name="volume" form="short">
<single></single>
<multiple></multiple>
</term>
<term name="edition">edition</term>
<term name="edition" form="short"></term>
<term name="paragraph" form="symbol">
<single></single>
<multiple>¶¶</multiple>
</term>
<term name="section" form="symbol">
<single>§</single>
<multiple>§§</multiple>
</term>
<term name="author">
<single>作者</single>
<multiple>作者</multiple>
</term>
<term name="editor">
<single>編輯</single>
<multiple>編輯</multiple>
</term>
<term name="translator">
<single>翻譯</single>
<multiple>翻譯</multiple>
</term>
<term name="author" form="short">
<single></single>
<multiple></multiple>
</term>
<term name="editor" form="short">
<single></single>
<multiple></multiple>
</term>
<term name="translator" form="short">
<single></single>
<multiple></multiple>
</term>
<term name="editor" form="verb">編者是</term>
<term name="translator" form="verb">譯者是</term>
<term name="recipient" form="verb">授與</term>
<term name="interviewer" form="verb">訪問者是</term>
<term name="editor" form="verb-short"></term>
<term name="translator" form="verb-short"></term>
<term name="month-01">一月</term>
<term name="month-02">二月</term>
<term name="month-03">三月</term>
<term name="month-04">四月</term>
<term name="month-05">五月</term>
<term name="month-06">六月</term>
<term name="month-07">七月</term>
<term name="month-08">八月</term>
<term name="month-09">九月</term>
<term name="month-10">十月</term>
<term name="month-11">十一月</term>
<term name="month-12">十二月</term>
<term name="month-01" form="short">1月</term>
<term name="month-02" form="short">2月</term>
<term name="month-03" form="short">3月</term>
<term name="month-04" form="short">4月</term>
<term name="month-05" form="short">5月</term>
<term name="month-06" form="short">6月</term>
<term name="month-07" form="short">7月</term>
<term name="month-08" form="short">8月</term>
<term name="month-09" form="short">9月</term>
<term name="month-10" form="short">10月</term>
<term name="month-11" form="short">11月</term>
<term name="month-12" form="short">12月</term>
</locale>
</terms>
<?xml version="1.0" encoding="utf-8"?>
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="zh">
<style-options punctuation-in-quote="true"/>
<date form="text">
<date-part name="month" suffix=" "/>
<date-part name="day" suffix=", "/>
<date-part name="year"/>
</date>
<date form="numeric">
<date-part name="year"/>
<date-part name="month" form="numeric" prefix="-" range-delimiter="/"/>
<date-part name="day" prefix="-" range-delimiter="/"/>
</date>
<terms>
<term name="at"></term>
<term name="in"></term>
<term name="ibid">同上出處</term>
<term name="accessed">被取用</term>
<term name="retrieved">被取回</term>
<term name="from"></term>
<term name="forthcoming">將來的</term>
<term name="reference">
<single>reference</single>
<multiple>references</multiple>
</term>
<term name="reference" form="short">
<single>ref.</single>
<multiple>refs.</multiple>
</term>
<term name="no date">無日期</term>
<term name="and"></term>
<term name="et-al">等人</term>
<term name="circa">circa</term>
<term name="circa" form="short">c.</term>
<term name="interview">訪問</term>
<term name="letter">信件</term>
<term name="anonymous">不具名的</term>
<term name="anonymous" form="short">無名</term>
<term name="and others">及其他</term>
<term name="in press">印行中</term>
<term name="online">在線上</term>
<term name="cited">被引用</term>
<term name="internet">網際網路</term>
<term name="presented at">簡報於</term>
<term name="ad">AD</term>
<term name="bc">BC</term>
<!-- QUOTES -->
<term name="open-quote"></term>
<term name="close-quote"></term>
<term name="open-inner-quote"></term>
<term name="close-inner-quote"></term>
<!-- ORDINALS -->
<term name="ordinal-01">st</term>
<term name="ordinal-02">nd</term>
<term name="ordinal-03">rd</term>
<term name="ordinal-04">th</term>
<!-- LONG ORDINALS -->
<term name="long-ordinal-01">first</term>
<term name="long-ordinal-02">second</term>
<term name="long-ordinal-03">third</term>
<term name="long-ordinal-04">fourth</term>
<term name="long-ordinal-05">fifth</term>
<term name="long-ordinal-06">sixth</term>
<term name="long-ordinal-07">seventh</term>
<term name="long-ordinal-08">eighth</term>
<term name="long-ordinal-09">ninth</term>
<term name="long-ordinal-10">tenth</term>
<!-- CATEGORIES -->
<term name="anthropology">人類學</term>
<term name="astronomy">天文學</term>
<term name="biology">生物學</term>
<term name="botany">植物學</term>
<term name="chemistry">化學</term>
<term name="engineering">工程學</term>
<term name="generic-base">一般基礎</term>
<term name="geography">地理學</term>
<term name="geology">地質學</term>
<term name="history">歷史學</term>
<term name="humanities">人文學科</term>
<term name="linguistics">linguistics</term>
<term name="literature">文學</term>
<term name="math">數學</term>
<term name="medicine">醫學</term>
<term name="philosophy">哲學</term>
<term name="physics">物理學</term>
<term name="psychology">心理學</term>
<term name="sociology">社會學</term>
<term name="science">自然科學</term>
<term name="political_science">政治科學</term>
<term name="social_science">社會科學</term>
<term name="theology">神學</term>
<term name="zoology">動物學</term>
<!-- LONG LOCATOR FORMS -->
<term name="book">
<single></single>
<multiple></multiple>
</term>
<term name="chapter">
<single></single>
<multiple></multiple>
</term>
<term name="column">
<single></single>
<multiple></multiple>
</term>
<term name="figure">
<single></single>
<multiple></multiple>
</term>
<term name="folio">
<single>對開紙</single>
<multiple>對開紙</multiple>
</term>
<term name="issue">
<single>期數</single>
<multiple>期數</multiple>
</term>
<term name="line">
<single></single>
<multiple></multiple>
</term>
<term name="note">
<single>筆記</single>
<multiple>筆記</multiple>
</term>
<term name="opus">
<single>作品</single>
<multiple>作品</multiple>
</term>
<term name="page">
<single></single>
<multiple></multiple>
</term>
<term name="paragraph">
<single>段落</single>
<multiple>段落</multiple>
</term>
<term name="part">
<single></single>
<multiple></multiple>
</term>
<term name="section">
<single></single>
<multiple></multiple>
</term>
<term name="volume">
<single></single>
<multiple></multiple>
</term>
<term name="edition">
<single>版本</single>
<multiple>版本</multiple>
</term>
<term name="verse">
<single>詩句</single>
<multiple>詩句</multiple>
</term>
<term name="sub verbo">
<single>sub verbo</single>
<multiple>s.vv</multiple>
</term>
<!-- SHORT LOCATOR FORMS -->
<term name="book" form="short"></term>
<term name="chapter" form="short"></term>
<term name="column" form="short"></term>
<term name="figure" form="short"></term>
<term name="folio" form="short"></term>
<term name="issue" form="short"></term>
<term name="opus" form="short"></term>
<term name="page" form="short">
<single></single>
<multiple></multiple>
</term>
<term name="paragraph" form="short"></term>
<term name="part" form="short"></term>
<term name="section" form="short"></term>
<term name="sub verbo" form="short">
<single>s.v</single>
<multiple>s.vv</multiple>
</term>
<term name="verse" form="short">
<single></single>
<multiple></multiple>
</term>
<term name="volume" form="short">
<single></single>
<multiple></multiple>
</term>
<term name="edition" form="short"></term>
<!-- SYMBOL LOCATOR FORMS -->
<term name="paragraph" form="symbol">
<single></single>
<multiple>¶¶</multiple>
</term>
<term name="section" form="symbol">
<single>§</single>
<multiple>§§</multiple>
</term>
<!-- LONG ROLE FORMS -->
<term name="author">
<single>作者</single>
<multiple>作者</multiple>
</term>
<term name="editor">
<single>編輯</single>
<multiple>編輯</multiple>
</term>
<term name="editorial-director">
<single>editor</single>
<multiple>editors</multiple>
</term>
<term name="translator">
<single>翻譯</single>
<multiple>翻譯</multiple>
</term>
<term name="editortranslator">
<single>editor &amp; translator</single>
<multiple>editors &amp; translators</multiple>
</term>
<!-- SHORT ROLE FORMS -->
<term name="author" form="short">
<single></single>
<multiple></multiple>
</term>
<term name="editor" form="short">
<single></single>
<multiple></multiple>
</term>
<term name="editorial-director" form="short">
<single>ed.</single>
<multiple>eds.</multiple>
</term>
<term name="translator" form="short">
<single></single>
<multiple></multiple>
</term>
<term name="editortranslator" form="short">
<single>ed. &amp; tran.</single>
<multiple>eds. &amp; trans.</multiple>
</term>
<!-- VERB ROLE FORMS -->
<term name="editor" form="verb">編者是</term>
<term name="editorial-director" form="verb">edited by</term>
<term name="translator" form="verb">譯者是</term>
<term name="editortranslator" form="verb">edited &amp; translated by</term>
<term name="recipient" form="verb">授與</term>
<term name="interviewer" form="verb">訪問者是</term>
<!-- SHORT VERB ROLE FORMS -->
<term name="editor" form="verb-short"></term>
<term name="editorial-director" form="verb-short">ed.</term>
<term name="translator" form="verb-short"></term>
<term name="editortranslator" form="verb-short">ed. &amp; trans. by</term>
<!-- LONG MONTH FORMS -->
<term name="month-01">一月</term>
<term name="month-02">二月</term>
<term name="month-03">三月</term>
<term name="month-04">四月</term>
<term name="month-05">五月</term>
<term name="month-06">六月</term>
<term name="month-07">七月</term>
<term name="month-08">八月</term>
<term name="month-09">九月</term>
<term name="month-10">十月</term>
<term name="month-11">十一月</term>
<term name="month-12">十二月</term>
<!-- SHORT MONTH FORMS -->
<term name="month-01" form="short">1月</term>
<term name="month-02" form="short">2月</term>
<term name="month-03" form="short">3月</term>
<term name="month-04" form="short">4月</term>
<term name="month-05" form="short">5月</term>
<term name="month-06" form="short">6月</term>
<term name="month-07" form="short">7月</term>
<term name="month-08" form="short">8月</term>
<term name="month-09" form="short">9月</term>
<term name="month-10" form="short">10月</term>
<term name="month-11" form="short">11月</term>
<term name="month-12" form="short">12月</term>
<!-- SEASONS -->
<term name="season-01">Spring</term>
<term name="season-02">Summer</term>
<term name="season-03">Autumn</term>
<term name="season-04">Winter</term>
</terms>
</locale>

View file

@ -495,58 +495,47 @@ var Zotero_RTFScan = new function() {
function _formatRTF() {
// load style and create ItemSet with all items
var style = Zotero.Styles.get(document.getElementById("style-listbox").selectedItem.value).csl;
var zStyle = Zotero.Styles.get(document.getElementById("style-listbox").selectedItem.value)
var style = zStyle.csl;
style.setOutputFormat("rtf");
var isNote = style.class == "note";
var itemSet = style.createItemSet();
// create citations
var k = 0;
var cslCitations = [];
var itemIDs = {};
var shouldBeSubsequent = {};
for(var i=0; i<citations.length; i++) {
var citation = citations[i];
var cslCitation = style.createCitation();
cslCitations.push(cslCitation);
var cslCitation = {"citationItems":[], "properties":{}};
if(isNote) {
cslCitation.properties.noteIndex = i;
}
// create citation items
for(var j=0; j<citation.citationStrings.length; j++) {
var itemID = citationItemIDs[citation.citationStrings[j]];
var cslItem = itemSet.getItemsByIds(itemID)[0];
// determine position
var position = Zotero.CSL.POSITION_SUBSEQUENT;
if(!cslItem) { // if item is not yet in item set, add it and mark as first citation
var position = Zotero.CSL.POSITION_FIRST;
var cslItem = itemSet.add(itemID)[0];
} else if(// this citation and previous citation only cite one item
citation.citationStrings.length == citations[i-1].citationStrings.length == 1
// this citation and previous citation cite the same item
&& citation.citationStrings[0] == citations[i-1].citationStrings[0]
// either previous item had no locator, or this item has a locator
&& (!citations[i-1].pages[0] || citation.pages[0])) {
if(citation.pages[0] == citations[i-1].pages[0]) {
var position = Zotero.CSL.POSITION_IBID;
} else {
var position = Zotero.CSL.POSITION_IBID_WITH_LOCATOR;
}
}
var cslCitationItem = new Zotero.CSL.CitationItem(cslItem);
cslCitation.add([cslCitationItem]);
cslCitationItem.position = position;
cslCitationItem.locator = citation.pages[j];
cslCitationItem.suppressAuthor = citation.suppressAuthor && !isNote;
var citationItem = {};
citationItem.id = citationItemIDs[citation.citationStrings[j]][0];
itemIDs[citationItem.id] = true;
citationItem.locator = citation.pages[j];
citationItem.label = "page";
citationItem["suppress-author"] = citation.suppressAuthor && !isNote;
cslCitation.citationItems.push(citationItem);
}
}
// sort item set, now that we have the indices
itemSet.resort();
cslCitations.push(cslCitation);
}
Zotero.debug(cslCitations);
itemIDs = [itemID for(itemID in itemIDs)];
Zotero.debug(itemIDs);
style.updateItems(itemIDs);
// format citations
var contentArray = [];
var lastEnd = 0;
for(var i=0; i<citations.length; i++) {
var citation = style.formatCitation(cslCitations[i], "RTF");
var citation = style.appendCitationCluster(cslCitations[i], true)[0][1];
Zotero.debug("Formatted "+citation);
// if using notes, we might have to move the note after the punctuation
@ -576,10 +565,9 @@ var Zotero_RTFScan = new function() {
contents = contentArray.join("");
// add bibliography
if(style.hasBibliography) {
var bibliography = style.formatBibliography(itemSet, "RTF");
// cut off initial font formatting
bibliography = bibliography.substr(bibliography.indexOf("\r\n"));
if(zStyle.hasBibliography) {
var bibliography = Zotero.Cite.makeFormattedBibliography(style, "rtf");
bibliography = bibliography.substring(5, bibliography.length-1);
// fix line breaks
var linebreak = "\r\n";
if(contents.indexOf("\r\n") == -1) {
@ -591,14 +579,14 @@ var Zotero_RTFScan = new function() {
contents = contents.replace(BIBLIOGRAPHY_PLACEHOLDER, bibliography);
} else {
// add two newlines before bibliography
bibliography = linebreak+"\\"+linebreak+"\\"+bibliography;
bibliography = linebreak+"\\"+linebreak+"\\"+linebreak+bibliography;
// add bibliography automatically inside last set of brackets closed
const bracketRe = /^\{+/;
var m = bracketRe.exec(contents);
if(m) {
var closeBracketRe = new RegExp("(\\}{"+m[0].length+"}\\s*)$");
contents = contents.replace(closeBracketRe, bibliography+"\\1");
contents = contents.replace(closeBracketRe, bibliography+"$1");
} else {
contents += bibliography;
}

View file

@ -0,0 +1,318 @@
Zotero.Cite = function(){}
Zotero.Cite.System = function(){};
/**
* Mappings for names
* Note that this is the reverse of the text variable map, since all mappings should be one to one
* and it makes the code cleaner
*/
Zotero.Cite.System._zoteroNameMap = {
"author":"author",
"editor":"editor",
"translator":"translator",
"seriesEditor":"collection-editor",
"bookAuthor":"container-author"
}
/**
* Mappings for text variables
*/
Zotero.Cite.System._zoteroFieldMap = {
"long":{
"title":["title"],
"container-title":["publicationTitle", "reporter", "code"], /* reporter and code should move to SQL mapping tables */
"collection-title":["seriesTitle", "series"],
"collection-number":["seriesNumber"],
"publisher":["publisher", "distributor"], /* distributor should move to SQL mapping tables */
"publisher-place":["place"],
"authority":["court"],
"page":["pages"],
"volume":["volume"],
"issue":["issue"],
"number-of-volumes":["numberOfVolumes"],
"edition":["edition"],
"version":["version"],
"section":["section"],
"genre":["type", "artworkSize"], /* artworkSize should move to SQL mapping tables, or added as a CSL variable */
"medium":["medium"],
"archive":["archive"],
"archive_location":["archiveLocation"],
"event":["meetingName", "conferenceName"], /* these should be mapped to the same base field in SQL mapping tables */
"event-place":["place"],
"abstract":["abstractNote"],
"URL":["url"],
"DOI":["DOI"],
"ISBN":["ISBN"],
"call-number":["callNumber"],
"note":["extra"],
"number":["number"],
"references":["history"]
},
"short":{
"title":["shortTitle", "title"],
"container-title":["journalAbbreviation"],
"genre":["shortTitle", "type"] /* needed for subsequent citations of items with no title */
}
}
Zotero.Cite.System._zoteroDateMap = {
"issued":"date",
"accessed":"accessDate"
}
Zotero.Cite.System._zoteroTypeMap = {
'book':"book",
'bookSection':'chapter',
'journalArticle':"article-journal",
'magazineArticle':"article-magazine",
'newspaperArticle':"article-newspaper",
'thesis':"thesis",
'encyclopediaArticle':"chapter",
'dictionaryEntry':"chapter",
'conferencePaper':"paper-conference",
'letter':"personal_communication",
'manuscript':"manuscript",
'interview':"interview",
'film':"motion_picture",
'artwork':"graphic",
'webpage':"webpage",
'report':"report",
'bill':"bill",
'case':"legal_case",
'hearing':"bill", // ??
'patent':"patent",
'statute':"bill", // ??
'email':"personal_communication",
'map':"map",
'blogPost':"webpage",
'instantMessage':"personal_communication",
'forumPost':"webpage",
'audioRecording':"song", // ??
'presentation':"speech",
'videoRecording':"motion_picture",
'tvBroadcast':"broadcast",
'radioBroadcast':"broadcast",
'podcast':"song", // ??
'computerProgram':"book" // ??
};
Zotero.Cite.System._quotedRegexp = /^".+"$/;
// TODO: Clear this cache from time to time
Zotero.Cite.System._cache = new Object();
Zotero.Cite.System.retrieveItem = function(item){
if(item instanceof Zotero.Item) {
if(this._cache[item.id]) return this._cache[item.id];
var zoteroItem = item;
} else {
// is an item ID
if(this._cache[item]) return this._cache[item];
var zoteroItem = Zotero.Items.get(item);
}
if(!zoteroItem) {
throw "Zotero.Cite.getCSLItem called to wrap a non-item";
}
// don't return URL or accessed information for journal articles if a
// pages field exists
var itemType = Zotero.ItemTypes.getName(zoteroItem.itemTypeID);
var cslType = Zotero.Cite.System._zoteroTypeMap[itemType];
if(!cslType) cslType = "article";
var ignoreURL = ((zoteroItem.getField("accessDate", true, true) || zoteroItem.getField("url", true, true)) &&
["journalArticle", "newspaperArticle", "magazineArticle"].indexOf(itemType) !== -1
&& zoteroItem.getField("pages")
&& !Zotero.Prefs.get("export.citePaperJournalArticleURL"));
var cslItem = {
'id':zoteroItem.id,
'type':cslType
};
// get all text variables (there must be a better way)
// TODO: does citeproc-js permit short forms?
for(var variable in Zotero.Cite.System._zoteroFieldMap["long"]) {
var fields = Zotero.Cite.System._zoteroFieldMap["long"][variable];
if(variable == "URL" && ignoreURL) continue;
for each(var field in fields) {
var value = zoteroItem.getField(field, false, true).toString();
if(value != "") {
// Strip enclosing quotes
if(value.match(Zotero.Cite.System._quotedRegexp)) {
value = value.substr(1, value.length-2);
}
cslItem[variable] = value;
break;
}
}
}
// separate name variables
var authorID = Zotero.CreatorTypes.getPrimaryIDForType(zoteroItem.itemTypeID);
var creators = zoteroItem.getCreators();
for each(var creator in creators) {
if(creator.creatorTypeID == authorID) {
var creatorType = "author";
} else {
var creatorType = Zotero.CreatorTypes.getName(creator.creatorTypeID);
}
var creatorVariable = Zotero.Cite.System._zoteroNameMap[creatorType];
if(!creatorVariable) continue;
var nameObj = {'family':creator.ref.lastName, 'given':creator.ref.firstName};
if(cslItem[creatorType]) {
cslItem[creatorType].push(nameObj);
} else {
cslItem[creatorType] = [nameObj];
}
}
// get date variables
for(var variable in Zotero.Cite.System._zoteroDateMap) {
var date = zoteroItem.getField(Zotero.Cite.System._zoteroDateMap[variable], false, true);
if(date) {
date = Zotero.Date.strToDate(date);
if(date.part && !date.month) {
// if there's a part but no month, interpret literally
cslItem[variable] = {"literal": date};
} else {
// otherwise, use date-parts
var dateParts = [];
if(date.year) {
dateParts.push(date.year);
if(date.month) {
dateParts.push(date.month+1);
if(date.day) {
dateParts.push(date.day);
}
}
}
cslItem[variable] = {"date-parts":[dateParts]};
}
}
}
this._cache[zoteroItem.id] = cslItem;
return cslItem;
};
Zotero.Cite.System.retrieveLocale = function(lang){
var localesDir = Zotero.getInstallDirectory();
[localesDir.append(dir) for each(dir in ["chrome", "content", "zotero", "locale", "csl"])];
var base = "locales-"+lang;
var localesFile = localesDir.clone();
localesFile.append(base+".xml");
if(!localesFile.exists()) {
var contents = localesDir.directoryEntries;
while(contents.hasMoreElements()) {
var file = contents.getNext().QueryInterface(Components.interfaces.nsIFile);
if(file.leafName.substr(0, base.length) == base && file.leafName.substr(-4) == ".xml") {
localesFile = file;
break;
}
}
}
return Zotero.File.getContents(localesFile);
};
Zotero.Cite.System.getAbbreviations = function() {
return {};
}
Zotero.Cite.makeFormattedBibliography = function(cslEngine, format, customBibliographyText) {
if(format) cslEngine.setOutputFormat(format);
var bib = cslEngine.makeBibliography();
if(format == "html") {
// TODO CSS
return bib[0].bibstart+bib[1].join("")+bib[0].bibend;
} else if(format == "text") {
return bib[0].bibstart+bib[1].join("")+bib[0].bibend;
} else if(format == "rtf") {
var tabStop = null;
var indent = 0;
var firstLineIndent = 0;
if(bib[0].hangingindent) {
indent = 720; // 720 twips = 0.5 in
firstLineIndent = -720; // -720 twips = -0.5 in
} else if(bib[0]["second-field-align"]) {
// this is a really sticky issue. the below works for first fields that look like "[1]"
// and "1." otherwise, i have no idea. luckily, this will be good enough 99% of the time.
var alignAt = 24+bib[0].maxoffset*120;
firstLineIndent = -alignAt;
if(bib[0]["second-field-align"] == "margin") {
tabStop = 0;
} else {
indent = alignAt;
tabStop = alignAt;
}
}
var preamble = "";
if(tabStop !== null) preamble += "\\tx"+tabStop+" ";
preamble += "\\li"+indent+" \\fi"+firstLineIndent+" ";
preamble += "\\sl"+(240*bib[0].linespacing)+" \\slmult1 ";
if(customBibliographyText) {
// customBibliographyText is an optional map of strings to replace specific citations
// in the bibliography (values) to item IDs (keys)
for(var i in bib[0].entry_ids) {
if(customBibliographyText[bib[0].entry_ids[i]]) {
bib[1][i] = customBibliographyText[bib[0].entry_ids[i]];
}
}
}
return bib[0].bibstart+preamble+bib[1].join("\\\r\n")+"\\\r\n"+bib[0].bibend;
} else {
throw "Unimplemented bibliography format "+format;
}
}
Zotero.Cite.labels = ["page", "book", "chapter", "column", "figure", "folio",
"issue", "line", "note", "opus", "paragraph", "part", "section", "sub verbo",
"volume", "verse"];
Zotero.Cite._monthStrings = false;
Zotero.Cite.getMonthStrings = function(form, locale) {
if(Zotero.Cite._monthStrings){
return Zotero.Cite._monthStrings[form];
} else {
Zotero.Cite._monthStrings = {"long":[], "short":[]};
var sys = {'xml':new Zotero.CiteProc.CSL.System.Xml.Parsing()};
if(!locale) locale = Zotero.locale;
var cslLocale = Zotero.CiteProc.CSL.localeResolve(Zotero.locale);
if(!Zotero.CiteProc.CSL.locale[cslLocale.best]) {
let localexml = sys.xml.makeXml(Zotero.Cite.System.retrieveLocale(cslLocale.best));
if(!localexml) {
Zotero.log("No locale "+cslLocale.best+"; using en-US", "warning");
return Zotero.Cite.getMonthStrings(form, "en-US");
}
Zotero.CiteProc.CSL.localeSet.call(Zotero.CiteProc.CSL, sys, localexml, cslLocale.best, cslLocale.best);
}
var locale = Zotero.CiteProc.CSL.locale[cslLocale.best];
if(!locale) {
Zotero.log("No locale "+cslLocale.best+"; using en-US", "warning");
return Zotero.Cite.getMonthStrings(form, "en-US");
}
for(let i=1; i<=12; i++) {
let term = locale.terms["month-"+(i<10 ? "0" : "")+i];
if(term) {
Zotero.Cite._monthStrings["long"][i-1] = term["long"];
Zotero.Cite._monthStrings["short"][i-1] = (term["short"] ? term["short"].replace(".", "", "g") : term["long"]);
} else {
Zotero.log("No month "+i+" specified for locale "+cslLocale.best, "warning");
}
}
return Zotero.Cite._monthStrings[form];
}
}

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -391,28 +391,21 @@ Zotero.QuickCopy = new function() {
}
var csl = Zotero.Styles.get(format).csl;
var itemSet = csl.createItemSet(items);
csl.updateItems([item.id for each(item in items)]);
// Copy citations if shift key pressed
if (modified) {
var itemIDs = [];
for (var i=0; i<items.length; i++) {
itemIDs.push(items[i].id);
}
var citation = csl.createCitation(itemSet.getItemsByIds(itemIDs));
var bibliography = {
text: csl.formatCitation(citation, contentType == "html" ? 'HTML' : 'Text'),
html: csl.formatCitation(citation, "HTML")
}
}
else {
var bibliography = {
text: csl.formatBibliography(itemSet, contentType == "html" ? "HTML" : "Text"),
html: csl.formatBibliography(itemSet, "HTML")
};
var citation = {citationItems:[{id:item.id} for each(item in items)], properties:{}};
this.session.style.setOutputFormat("html");
var html = csl.appendCitationCluster(citation, true)[0][1];
this.session.style.setOutputFormat("text");
var text = csl.appendCitationCluster(citation, true)[0][1];
} else {
var html = Zotero.Cite.makeFormattedBibliography(csl, "html");
var text = Zotero.Cite.makeFormattedBibliography(csl, "text");
}
return bibliography;
return {text:(contentType == "html" ? html : text), html:html};
}
throw ("Invalid mode '" + mode + "' in Zotero.QuickCopy.getContentFromItems()");

View file

@ -61,7 +61,7 @@ Zotero.Styles = new function() {
/**
* Reads all styles from a given directory and caches their metadata
* @privates
* @private
*/
function _readStylesFromDirectory(dir, hidden) {
var i = 0;
@ -156,7 +156,7 @@ Zotero.Styles = new function() {
var xml = enConverter.parse();
} else {
// CSL
var xml = new XML(Zotero.CSL.Global.cleanXML(style));
var xml = new XML(this.cleanXML(xml));
}
} catch(e) {
error = e;
@ -281,6 +281,13 @@ Zotero.Styles = new function() {
return false;
}
this.cleanXML = function(str) {
// this is where this should happen
str = str.replace(/\s*<\?[^>]*\?>\s*\n/g, "");
var ret = new XML(str);
return ret;
}
/**
* Finishes installing a style, copying the file, reloading the style cache, and refreshing the
* styles list in any open windows
@ -346,20 +353,13 @@ Zotero.Style = function(file) {
this.type = "csl";
var xml = Zotero.CSL.Global.cleanXML(Zotero.File.getContents(file));
try {
xml = new XML(xml);
} catch(e) {
Zotero.log(e.toString(), "error",
Zotero.Styles.ios.newFileURI(this.file).spec, xml.split(/\r?\n/)[e.lineNumber-1],
e.lineNumber);
return;
}
var xml = Zotero.Styles.cleanXML(Zotero.File.getContents(file));
this.styleID = xml.info.id.toString();
this.title = xml.info.title.toString();
this.updated = xml.info.updated.toString().replace(/(.+)T([^\+]+)\+?.*/, "$1 $2");
this._class = xml.@class.toString();
this._hasBibliography = !!xml.bibliography.length();
this.source = null;
for each(var link in xml.info.link) {
@ -381,22 +381,57 @@ Zotero.Style.prototype.__defineGetter__("csl",
* @type Zotero.CSL
*/
function() {
// cache last style
if(Zotero.Styles.cacheTranslatorData && Zotero.Styles.lastCSL &&
Zotero.Styles.lastCSL.styleID == this.styleID) {
return Zotero.Styles.lastCSL;
var locale = Zotero.Prefs.get('export.bibliographyLocale');
if(!locale) {
var locale = Zotero.locale;
if(!locale) {
var locale = 'en-US';
}
}
return new Zotero.CiteProc.CSL.Engine(Zotero.Cite.System, this.getXML(), Zotero.locale);
});
Zotero.Style.prototype.__defineGetter__("class",
/**
* Retrieves the style class, either from the metadata that's already loaded or by loading the file
* @type String
*/
function() {
if(!this._class) this.getXML();
return this._class;
});
Zotero.Style.prototype.__defineGetter__("hasBibliography",
/**
* Determines whether or not this style has a bibliography, either from the metadata that's already\
* loaded or by loading the file
* @type String
*/
function() {
if(!this._hasBibliography) this.getXML();
return this._hasBibliography;
});
/**
* Retrieves the XML corresponding to this style
* @type String
*/
Zotero.Style.prototype.getXML = function() {
// "with ({});" needed to fix default namespace scope issue
// See https://bugzilla.mozilla.org/show_bug.cgi?id=330572
default xml namespace = "http://purl.org/net/xbiblio/csl"; with ({});
if(this.type == "ens") {
// EN style
var string = Zotero.File.getBinaryContents(this.file);
var enConverter = new Zotero.ENConverter(string, null, this.title);
var xml = enConverter.parse();
} else {
// "with ({});" needed to fix default namespace scope issue
// See https://bugzilla.mozilla.org/show_bug.cgi?id=330572
default xml namespace = "http://purl.org/net/xbiblio/csl"; with ({});
this._class = xml.@class.toString();
this._hasBibliography = !!xml.bibliography.length();
return XML.toXMLString();
} else {
if(this.source) {
// parent/child
var formatCSL = Zotero.Styles.get(this.source);
@ -409,22 +444,9 @@ function() {
var file = this.file;
}
var cslString = Zotero.File.getContents(file);
var xml = new XML(Zotero.CSL.Global.cleanXML(cslString));
return Zotero.File.getContents(file);
}
return (Zotero.Styles.lastCSL = new Zotero.CSL(xml));
});
Zotero.Style.prototype.__defineGetter__("class",
/**
* Retrieves the style class, either from the metadata that's already loaded or by loading the file
* @type String
*/
function() {
if(this._class) return this._class;
return (this._class = this.csl.class);
});
};
/**
* Deletes a style

View file

@ -1943,8 +1943,8 @@ Zotero.Date = new function(){
var months = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul',
'Aug', 'Sep', 'Oct', 'Nov', 'Dec'];
// If using a non-English bibliography locale, try those too
if (Zotero.CSL.Global.locale != 'en-US') {
months = months.concat(Zotero.CSL.Global.getMonthStrings("short"));
if (Zotero.locale != 'en-US') {
months = months.concat(Zotero.Cite.getMonthStrings("short"));
}
if(!_monthRe) {
_monthRe = new RegExp("^(.*)\\b("+months.join("|")+")[^ ]*(?: (.*)$|$)", "i");
@ -2020,7 +2020,7 @@ Zotero.Date = new function(){
string += date.part+" ";
}
var months = Zotero.CSL.Global.getMonthStrings("long");
var months = Zotero.Cite.getMonthStrings("long");
if(date.month != undefined && months[date.month]) {
// get short month strings from CSL interpreter
string += months[date.month];

View file

@ -575,7 +575,8 @@ integration.missingItem.single = This item no longer exists in your Zotero dat
integration.missingItem.multiple = Item %1$S in this citation no longer exists in your Zotero database. Do you want to select a substitute item?
integration.missingItem.description = Clicking "No" will delete the field codes for citations containing this item, preserving the citation text but deleting it from your bibliography.
integration.removeCodesWarning = Removing field codes will prevent Zotero from updating citations and bibliographies in this document. Are you sure you want to continue?
integration.upgradeWarning = Your document must be permanently upgraded in order to work with Zotero 2.0b7 or later. It is recommended that you make a backup before proceeding. Are you sure you want to continue?
integration.upgradeWarning = Your document must be permanently upgraded in order to work with Zotero 2.1 or later. It is recommended that you make a backup before proceeding. Are you sure you want to continue?
integration.error.newerDocumentVersion = Your document was created with a newer version of Zotero (%1$S) than the currently installed version (%1$S). Please upgrade Zotero before editing this document.
integration.corruptField = The Zotero field code corresponding to this citation, which tells Zotero which item in your library this citation represents, has been corrupted. Would you like to reselect the item?
integration.corruptField.description = Clicking "No" will delete the field codes for citations containing this item, preserving the citation text but potentially deleting it from your bibliography.
integration.corruptBibliography = The Zotero field code for your bibliography is corrupted. Should Zotero clear this field code and generate a new bibliography?

View file

@ -233,7 +233,7 @@ Timeline.GregorianDateLabeller=function(locale,timeZone){this._locale=locale;thi
Modified by Ben for Zotero
*/
Timeline.GregorianDateLabeller.monthNames = Zotero.CSL.Global.getMonthStrings("short");
Timeline.GregorianDateLabeller.monthNames = Zotero.Cite.getMonthStrings("short");
Timeline.GregorianDateLabeller.getMonthName=function(month,locale) {
return Timeline.GregorianDateLabeller.monthNames[month];
};

View file

@ -18,9 +18,9 @@ var xpcomFiles = [
'zotero',
'annotate',
'attachments',
'cite',
'collectionTreeView',
'commons',
'csl',
'dataServer',
'data_access',
'data/dataObjects',
@ -74,7 +74,17 @@ var xpcomFiles = [
'zeroconf'
];
for (var i=0; i<xpcomFiles.length; i++) {
Cc["@mozilla.org/moz/jssubscript-loader;1"]
.getService(Ci.mozIJSSubScriptLoader)
.loadSubScript("chrome://zotero/content/xpcom/" + xpcomFiles[0] + ".js");
// Load CiteProc into Zotero.CiteProc namespace
Zotero.CiteProc = {};
Cc["@mozilla.org/moz/jssubscript-loader;1"]
.getService(Ci.mozIJSSubScriptLoader)
.loadSubScript("chrome://zotero/content/xpcom/citeproc.js", Zotero.CiteProc);
for (var i=1; i<xpcomFiles.length; i++) {
try {
Cc["@mozilla.org/moz/jssubscript-loader;1"]
.getService(Ci.mozIJSSubScriptLoader)
@ -107,7 +117,6 @@ for (var i=0; i<rdfXpcomFiles.length; i++) {
.loadSubScript("chrome://zotero/content/xpcom/" + rdfXpcomFiles[i] + ".js", Zotero.RDF.AJAW);
}
Cc["@mozilla.org/moz/jssubscript-loader;1"]
.getService(Ci.mozIJSSubScriptLoader)
.loadSubScript("chrome://global/content/nsTransferable.js");