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:
parent
79d3122f58
commit
bd0a4a3b96
54 changed files with 20131 additions and 11613 deletions
|
@ -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"> </span>':"\t"
|
||||
'<span class="tab"> </span>':"\\tab "
|
||||
};
|
||||
|
||||
this._rtfToHtmlMap = [
|
||||
[/\\uc0\{?\\u([0-9]+)\}? ?/g, function(wholeStr, aCode) { return String.fromCharCode(aCode) }],
|
||||
["\\t ", '<span class="tab"> </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(" ", " ", "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);
|
||||
|
|
|
@ -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"));
|
||||
|
|
|
@ -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];
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
|
@ -1,6 +1,17 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<terms xmlns="http://purl.org/net/xbiblio/csl">
|
||||
<locale xml:lang="af">
|
||||
<?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>
|
||||
|
@ -8,14 +19,19 @@
|
|||
<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 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>
|
||||
|
@ -26,6 +42,34 @@
|
|||
<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>
|
||||
|
@ -37,6 +81,7 @@
|
|||
<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>
|
||||
|
@ -49,6 +94,8 @@
|
|||
<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>
|
||||
|
@ -117,6 +164,8 @@
|
|||
<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>
|
||||
|
@ -143,8 +192,9 @@
|
|||
<single>vol</single>
|
||||
<multiple>vols</multiple>
|
||||
</term>
|
||||
<term name="edition">edition</term>
|
||||
<term name="edition" form="short">ed</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶¶</multiple>
|
||||
|
@ -153,6 +203,8 @@
|
|||
<single>§</single>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="author">
|
||||
<single/>
|
||||
<multiple/>
|
||||
|
@ -161,10 +213,20 @@
|
|||
<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 & translator</single>
|
||||
<multiple>editors & translators</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="author" form="short">
|
||||
<single/>
|
||||
<multiple/>
|
||||
|
@ -173,16 +235,34 @@
|
|||
<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. & tran.</single>
|
||||
<multiple>eds. & 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 & 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. & trans. by</term>
|
||||
|
||||
<!-- LONG MONTH FORMS -->
|
||||
<term name="month-01">Januarie</term>
|
||||
<term name="month-02">Februarie</term>
|
||||
<term name="month-03">Maart</term>
|
||||
|
@ -195,6 +275,8 @@
|
|||
<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>
|
||||
|
@ -207,5 +289,11 @@
|
|||
<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>
|
||||
|
||||
<!-- 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>
|
|
@ -1,6 +1,17 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<terms xmlns="http://purl.org/net/xbiblio/csl">
|
||||
<locale xml:lang="ar">
|
||||
<?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>
|
||||
|
@ -8,14 +19,19 @@
|
|||
<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 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>
|
||||
|
@ -26,6 +42,34 @@
|
|||
<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>
|
||||
|
@ -37,6 +81,7 @@
|
|||
<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>
|
||||
|
@ -49,6 +94,8 @@
|
|||
<term name="social_science">العلوم الإجتماعية</term>
|
||||
<term name="theology">العلوم الإلهية</term>
|
||||
<term name="zoology">علم الحيوان</term>
|
||||
|
||||
<!-- LONG LOCATOR FORMS -->
|
||||
<term name="book">
|
||||
<single>كتاب</single>
|
||||
<multiple>كُتُب</multiple>
|
||||
|
@ -117,6 +164,8 @@
|
|||
<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>
|
||||
|
@ -143,8 +192,9 @@
|
|||
<single>مج</single>
|
||||
<multiple>مجج</multiple>
|
||||
</term>
|
||||
<term name="edition">edition</term>
|
||||
<term name="edition" form="short">ط</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶¶</multiple>
|
||||
|
@ -153,6 +203,8 @@
|
|||
<single>§</single>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="author">
|
||||
<single/>
|
||||
<multiple/>
|
||||
|
@ -161,10 +213,20 @@
|
|||
<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 & translator</single>
|
||||
<multiple>editors & translators</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="author" form="short">
|
||||
<single/>
|
||||
<multiple/>
|
||||
|
@ -173,16 +235,34 @@
|
|||
<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. & tran.</single>
|
||||
<multiple>eds. & 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 & 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. & trans. by</term>
|
||||
|
||||
<!-- LONG MONTH FORMS -->
|
||||
<term name="month-01">يناير</term>
|
||||
<term name="month-02">فبراير</term>
|
||||
<term name="month-03">مارس</term>
|
||||
|
@ -195,6 +275,8 @@
|
|||
<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>
|
||||
|
@ -207,5 +289,11 @@
|
|||
<term name="month-10" form="short">اكتوبر</term>
|
||||
<term name="month-11" form="short">نوفمبر</term>
|
||||
<term name="month-12" form="short">ديسمبر</term>
|
||||
</locale>
|
||||
</terms>
|
||||
|
||||
<!-- 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>
|
|
@ -1,6 +1,17 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<terms xmlns="http://purl.org/net/xbiblio/csl">
|
||||
<locale xml:lang="bg">
|
||||
<?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>
|
||||
|
@ -8,14 +19,19 @@
|
|||
<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 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>
|
||||
|
@ -26,6 +42,34 @@
|
|||
<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>
|
||||
|
@ -37,6 +81,7 @@
|
|||
<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>
|
||||
|
@ -49,6 +94,8 @@
|
|||
<term name="social_science">обществени науки</term>
|
||||
<term name="theology">теология</term>
|
||||
<term name="zoology">зоология</term>
|
||||
|
||||
<!-- LONG LOCATOR FORMS -->
|
||||
<term name="book">
|
||||
<single>книга</single>
|
||||
<multiple>книги</multiple>
|
||||
|
@ -117,6 +164,8 @@
|
|||
<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>
|
||||
|
@ -143,8 +192,9 @@
|
|||
<single>том</single>
|
||||
<multiple>т-ове</multiple>
|
||||
</term>
|
||||
<term name="edition">edition</term>
|
||||
<term name="edition" form="short">изд</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶¶</multiple>
|
||||
|
@ -153,6 +203,8 @@
|
|||
<single>§</single>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="author">
|
||||
<single>автор</single>
|
||||
<multiple>автори</multiple>
|
||||
|
@ -161,10 +213,20 @@
|
|||
<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 & translator</single>
|
||||
<multiple>editors & translators</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="author" form="short">
|
||||
<single>авт</single>
|
||||
<multiple>авт-ри</multiple>
|
||||
|
@ -173,16 +235,34 @@
|
|||
<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. & tran.</single>
|
||||
<multiple>eds. & 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 & 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. & trans. by</term>
|
||||
|
||||
<!-- LONG MONTH FORMS -->
|
||||
<term name="month-01">Януари</term>
|
||||
<term name="month-02">Февруари</term>
|
||||
<term name="month-03">Март</term>
|
||||
|
@ -195,6 +275,8 @@
|
|||
<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>
|
||||
|
@ -207,5 +289,11 @@
|
|||
<term name="month-10" form="short">Окт</term>
|
||||
<term name="month-11" form="short">Ное</term>
|
||||
<term name="month-12" form="short">Дек</term>
|
||||
</locale>
|
||||
</terms>
|
||||
|
||||
<!-- 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>
|
|
@ -1,6 +1,17 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<terms xmlns="http://purl.org/net/xbiblio/csl">
|
||||
<locale xml:lang="ca">
|
||||
<?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>
|
||||
|
@ -8,14 +19,19 @@
|
|||
<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 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>
|
||||
|
@ -26,6 +42,34 @@
|
|||
<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>
|
||||
|
@ -37,6 +81,7 @@
|
|||
<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>
|
||||
|
@ -49,6 +94,8 @@
|
|||
<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>
|
||||
|
@ -117,6 +164,8 @@
|
|||
<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>
|
||||
|
@ -143,8 +192,9 @@
|
|||
<single>vol</single>
|
||||
<multiple>vols</multiple>
|
||||
</term>
|
||||
<term name="edition">edition</term>
|
||||
<term name="edition" form="short">ed</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶¶</multiple>
|
||||
|
@ -153,6 +203,8 @@
|
|||
<single>§</single>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="author">
|
||||
<single/>
|
||||
<multiple/>
|
||||
|
@ -161,10 +213,20 @@
|
|||
<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 & translator</single>
|
||||
<multiple>editors & translators</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="author" form="short">
|
||||
<single/>
|
||||
<multiple/>
|
||||
|
@ -173,16 +235,34 @@
|
|||
<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. & tran.</single>
|
||||
<multiple>eds. & 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 & 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. & trans. by</term>
|
||||
|
||||
<!-- LONG MONTH FORMS -->
|
||||
<term name="month-01">January</term>
|
||||
<term name="month-02">February</term>
|
||||
<term name="month-03">March</term>
|
||||
|
@ -195,6 +275,8 @@
|
|||
<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>
|
||||
|
@ -207,5 +289,11 @@
|
|||
<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>
|
||||
|
||||
<!-- 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>
|
|
@ -1,21 +1,37 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<terms xmlns="http://purl.org/net/xbiblio/csl">
|
||||
<locale xml:lang="cs">
|
||||
<?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řistoupeno</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="references">reference</term>
|
||||
<term name="reference item">
|
||||
<single>zdroj</single>
|
||||
<multiple>zdroje</multiple>
|
||||
<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>
|
||||
|
@ -26,6 +42,34 @@
|
|||
<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>
|
||||
|
@ -37,6 +81,7 @@
|
|||
<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>
|
||||
|
@ -46,9 +91,11 @@
|
|||
<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="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>
|
||||
|
@ -117,6 +164,8 @@
|
|||
<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>
|
||||
|
@ -143,8 +192,9 @@
|
|||
<single>roč</single>
|
||||
<multiple>roč</multiple>
|
||||
</term>
|
||||
<term name="edition">edition</term>
|
||||
<term name="edition" form="short">ed</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶¶</multiple>
|
||||
|
@ -153,6 +203,8 @@
|
|||
<single>§</single>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="author">
|
||||
<single>autor</single>
|
||||
<multiple>autoři</multiple>
|
||||
|
@ -161,10 +213,20 @@
|
|||
<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 & translator</single>
|
||||
<multiple>editors & translators</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="author" form="short">
|
||||
<single/>
|
||||
<multiple/>
|
||||
|
@ -173,16 +235,34 @@
|
|||
<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. & tran.</single>
|
||||
<multiple>eds. & 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 & 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. & 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>
|
||||
|
@ -195,6 +275,8 @@
|
|||
<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>
|
||||
|
@ -207,5 +289,11 @@
|
|||
<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>
|
||||
|
||||
<!-- 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>
|
|
@ -1,6 +1,17 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<terms xmlns="http://purl.org/net/xbiblio/csl">
|
||||
<locale xml:lang="da">
|
||||
<?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>
|
||||
|
@ -8,14 +19,19 @@
|
|||
<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 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>
|
||||
|
@ -26,6 +42,34 @@
|
|||
<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>
|
||||
|
@ -37,6 +81,7 @@
|
|||
<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>
|
||||
|
@ -49,6 +94,8 @@
|
|||
<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>
|
||||
|
@ -117,6 +164,8 @@
|
|||
<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>
|
||||
|
@ -143,8 +192,9 @@
|
|||
<single>vol</single>
|
||||
<multiple>vols</multiple>
|
||||
</term>
|
||||
<term name="edition">edition</term>
|
||||
<term name="edition" form="short">ed</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶¶</multiple>
|
||||
|
@ -153,6 +203,8 @@
|
|||
<single>§</single>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="author">
|
||||
<single/>
|
||||
<multiple/>
|
||||
|
@ -161,10 +213,20 @@
|
|||
<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 & translator</single>
|
||||
<multiple>editors & translators</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="author" form="short">
|
||||
<single/>
|
||||
<multiple/>
|
||||
|
@ -173,16 +235,34 @@
|
|||
<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. & tran.</single>
|
||||
<multiple>eds. & 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 & 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. & trans. by</term>
|
||||
|
||||
<!-- LONG MONTH FORMS -->
|
||||
<term name="month-01">January</term>
|
||||
<term name="month-02">February</term>
|
||||
<term name="month-03">March</term>
|
||||
|
@ -195,6 +275,8 @@
|
|||
<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>
|
||||
|
@ -207,5 +289,11 @@
|
|||
<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>
|
||||
|
||||
<!-- 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>
|
|
@ -1,6 +1,17 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<terms xmlns="http://purl.org/net/xbiblio/csl">
|
||||
<locale xml:lang="de">
|
||||
<?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>
|
||||
|
@ -8,14 +19,19 @@
|
|||
<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 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>
|
||||
|
@ -26,6 +42,34 @@
|
|||
<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>
|
||||
|
@ -37,6 +81,7 @@
|
|||
<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>
|
||||
|
@ -49,6 +94,8 @@
|
|||
<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>
|
||||
|
@ -117,6 +164,8 @@
|
|||
<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>
|
||||
|
@ -143,8 +192,9 @@
|
|||
<single>vol</single>
|
||||
<multiple>vols</multiple>
|
||||
</term>
|
||||
<term name="edition">edition</term>
|
||||
<term name="edition" form="short">ed</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶¶</multiple>
|
||||
|
@ -153,6 +203,8 @@
|
|||
<single>§</single>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="author">
|
||||
<single/>
|
||||
<multiple/>
|
||||
|
@ -161,10 +213,20 @@
|
|||
<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 & translator</single>
|
||||
<multiple>editors & translators</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="author" form="short">
|
||||
<single/>
|
||||
<multiple/>
|
||||
|
@ -173,16 +235,34 @@
|
|||
<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. & tran.</single>
|
||||
<multiple>eds. & 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 & 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. & 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>
|
||||
|
@ -195,6 +275,8 @@
|
|||
<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>
|
||||
|
@ -207,5 +289,11 @@
|
|||
<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>
|
||||
|
||||
<!-- 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>
|
|
@ -1,6 +1,17 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<terms xmlns="http://purl.org/net/xbiblio/csl">
|
||||
<locale xml:lang="de">
|
||||
<?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>
|
||||
|
@ -8,14 +19,19 @@
|
|||
<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 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>
|
||||
|
@ -26,6 +42,34 @@
|
|||
<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>
|
||||
|
@ -37,6 +81,7 @@
|
|||
<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>
|
||||
|
@ -49,6 +94,8 @@
|
|||
<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>
|
||||
|
@ -117,6 +164,8 @@
|
|||
<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>
|
||||
|
@ -143,8 +192,9 @@
|
|||
<single>vol</single>
|
||||
<multiple>vols</multiple>
|
||||
</term>
|
||||
<term name="edition">edition</term>
|
||||
<term name="edition" form="short">ed</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶¶</multiple>
|
||||
|
@ -153,6 +203,8 @@
|
|||
<single>§</single>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="author">
|
||||
<single/>
|
||||
<multiple/>
|
||||
|
@ -161,10 +213,20 @@
|
|||
<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 & translator</single>
|
||||
<multiple>editors & translators</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="author" form="short">
|
||||
<single/>
|
||||
<multiple/>
|
||||
|
@ -173,16 +235,34 @@
|
|||
<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. & tran.</single>
|
||||
<multiple>eds. & 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 & 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. & 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>
|
||||
|
@ -195,6 +275,8 @@
|
|||
<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>
|
||||
|
@ -207,5 +289,11 @@
|
|||
<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>
|
||||
|
||||
<!-- 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>
|
|
@ -1,6 +1,17 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<terms xmlns="http://purl.org/net/xbiblio/csl">
|
||||
<locale xml:lang="de">
|
||||
<?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>
|
||||
|
@ -8,14 +19,19 @@
|
|||
<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 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>
|
||||
|
@ -26,6 +42,34 @@
|
|||
<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>
|
||||
|
@ -37,6 +81,7 @@
|
|||
<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>
|
||||
|
@ -49,6 +94,8 @@
|
|||
<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>
|
||||
|
@ -117,6 +164,8 @@
|
|||
<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>
|
||||
|
@ -143,8 +192,9 @@
|
|||
<single>Bd</single>
|
||||
<multiple>Bd</multiple>
|
||||
</term>
|
||||
<term name="edition">edition</term>
|
||||
<term name="edition" form="short">Aufl</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶¶</multiple>
|
||||
|
@ -153,6 +203,8 @@
|
|||
<single>§</single>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="author">
|
||||
<single/>
|
||||
<multiple/>
|
||||
|
@ -161,10 +213,20 @@
|
|||
<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 & translator</single>
|
||||
<multiple>editors & translators</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="author" form="short">
|
||||
<single/>
|
||||
<multiple/>
|
||||
|
@ -173,16 +235,34 @@
|
|||
<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. & tran.</single>
|
||||
<multiple>eds. & 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 & 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. & 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>
|
||||
|
@ -195,6 +275,8 @@
|
|||
<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>
|
||||
|
@ -207,5 +289,11 @@
|
|||
<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>
|
||||
|
||||
<!-- 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>
|
|
@ -1,6 +1,17 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<terms xmlns="http://purl.org/net/xbiblio/csl">
|
||||
<locale xml:lang="el">
|
||||
<?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>
|
||||
|
@ -8,14 +19,19 @@
|
|||
<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 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>
|
||||
|
@ -26,6 +42,34 @@
|
|||
<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>
|
||||
|
@ -37,6 +81,7 @@
|
|||
<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>
|
||||
|
@ -49,6 +94,8 @@
|
|||
<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>
|
||||
|
@ -117,6 +164,8 @@
|
|||
<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>
|
||||
|
@ -143,8 +192,9 @@
|
|||
<single>vol</single>
|
||||
<multiple>vols</multiple>
|
||||
</term>
|
||||
<term name="edition">edition</term>
|
||||
<term name="edition" form="short">ed</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶¶</multiple>
|
||||
|
@ -153,6 +203,8 @@
|
|||
<single>§</single>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="author">
|
||||
<single/>
|
||||
<multiple/>
|
||||
|
@ -161,10 +213,20 @@
|
|||
<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 & translator</single>
|
||||
<multiple>editors & translators</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="author" form="short">
|
||||
<single/>
|
||||
<multiple/>
|
||||
|
@ -173,16 +235,34 @@
|
|||
<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. & tran.</single>
|
||||
<multiple>eds. & 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 & 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. & trans. by</term>
|
||||
|
||||
<!-- LONG MONTH FORMS -->
|
||||
<term name="month-01">January</term>
|
||||
<term name="month-02">February</term>
|
||||
<term name="month-03">March</term>
|
||||
|
@ -195,6 +275,8 @@
|
|||
<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>
|
||||
|
@ -207,5 +289,11 @@
|
|||
<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>
|
||||
|
||||
<!-- 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>
|
|
@ -1,6 +1,17 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<terms xmlns="http://purl.org/net/xbiblio/csl">
|
||||
<locale xml:lang="en">
|
||||
<?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>
|
||||
|
@ -8,24 +19,55 @@
|
|||
<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 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="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>
|
||||
|
@ -39,6 +81,7 @@
|
|||
<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>
|
||||
|
@ -119,38 +162,37 @@
|
|||
</term>
|
||||
<term name="sub verbo">
|
||||
<single>sub verbo</single>
|
||||
<multiple>s.vv</multiple>
|
||||
<multiple>sub verbis</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="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>
|
||||
<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="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>
|
||||
<single>s.v.</single>
|
||||
<multiple>s.vv.</multiple>
|
||||
</term>
|
||||
<term name="verse" form="short">
|
||||
<single>v</single>
|
||||
<multiple>vv</multiple>
|
||||
<single>v.</single>
|
||||
<multiple>vv.</multiple>
|
||||
</term>
|
||||
<term name="volume" form="short">
|
||||
<single>vol</single>
|
||||
<multiple>vols</multiple>
|
||||
<single>vol.</single>
|
||||
<multiple>vols.</multiple>
|
||||
</term>
|
||||
<term name="edition">edition</term>
|
||||
<term name="edition" form="short">ed</term>
|
||||
<term name="edition" form="short">ed.</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
|
@ -164,41 +206,61 @@
|
|||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="author">
|
||||
<single></single>
|
||||
<multiple></multiple>
|
||||
<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 & translator</single>
|
||||
<multiple>editors & translators</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="author" form="short">
|
||||
<single></single>
|
||||
<multiple></multiple>
|
||||
<single/>
|
||||
<multiple/>
|
||||
</term>
|
||||
<term name="editor" form="short">
|
||||
<single>ed</single>
|
||||
<multiple>eds</multiple>
|
||||
<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>
|
||||
<single>tran.</single>
|
||||
<multiple>trans.</multiple>
|
||||
</term>
|
||||
<term name="editortranslator" form="short">
|
||||
<single>ed. & tran.</single>
|
||||
<multiple>eds. & 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 & 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="translator" form="verb-short">trans</term>
|
||||
<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. & trans. by</term>
|
||||
|
||||
<!-- LONG MONTH FORMS -->
|
||||
<term name="month-01">January</term>
|
||||
|
@ -215,17 +277,23 @@
|
|||
<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-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>
|
||||
<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>
|
|
@ -1,6 +1,17 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<terms xmlns="http://purl.org/net/xbiblio/csl">
|
||||
<locale xml:lang="es">
|
||||
<?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>
|
||||
|
@ -8,14 +19,19 @@
|
|||
<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 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>
|
||||
|
@ -26,6 +42,34 @@
|
|||
<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>
|
||||
|
@ -37,6 +81,7 @@
|
|||
<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>
|
||||
|
@ -49,6 +94,8 @@
|
|||
<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>
|
||||
|
@ -117,6 +164,8 @@
|
|||
<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>
|
||||
|
@ -143,8 +192,9 @@
|
|||
<single>vol</single>
|
||||
<multiple>vols</multiple>
|
||||
</term>
|
||||
<term name="edition">edition</term>
|
||||
<term name="edition" form="short">ed</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶¶</multiple>
|
||||
|
@ -153,6 +203,8 @@
|
|||
<single>§</single>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="author">
|
||||
<single/>
|
||||
<multiple/>
|
||||
|
@ -161,10 +213,20 @@
|
|||
<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 & translator</single>
|
||||
<multiple>editors & translators</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="author" form="short">
|
||||
<single/>
|
||||
<multiple/>
|
||||
|
@ -173,16 +235,34 @@
|
|||
<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. & tran.</single>
|
||||
<multiple>eds. & 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 & 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. & trans. by</term>
|
||||
|
||||
<!-- LONG MONTH FORMS -->
|
||||
<term name="month-01">Enero</term>
|
||||
<term name="month-02">Febrero</term>
|
||||
<term name="month-03">Marzo</term>
|
||||
|
@ -195,6 +275,8 @@
|
|||
<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>
|
||||
|
@ -207,5 +289,11 @@
|
|||
<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>
|
||||
|
||||
<!-- 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>
|
|
@ -1,6 +1,17 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<terms xmlns="http://purl.org/net/xbiblio/csl">
|
||||
<locale xml:lang="et">
|
||||
<?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>
|
||||
|
@ -8,14 +19,19 @@
|
|||
<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 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>
|
||||
|
@ -26,6 +42,34 @@
|
|||
<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>
|
||||
|
@ -37,6 +81,7 @@
|
|||
<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>
|
||||
|
@ -49,6 +94,8 @@
|
|||
<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>
|
||||
|
@ -117,6 +164,8 @@
|
|||
<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>
|
||||
|
@ -143,8 +192,9 @@
|
|||
<single>vol</single>
|
||||
<multiple>vols</multiple>
|
||||
</term>
|
||||
<term name="edition">edition</term>
|
||||
<term name="edition" form="short">ed</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶¶</multiple>
|
||||
|
@ -153,6 +203,8 @@
|
|||
<single>§</single>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="author">
|
||||
<single/>
|
||||
<multiple/>
|
||||
|
@ -161,10 +213,20 @@
|
|||
<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 & translator</single>
|
||||
<multiple>editors & translators</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="author" form="short">
|
||||
<single/>
|
||||
<multiple/>
|
||||
|
@ -173,16 +235,34 @@
|
|||
<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. & tran.</single>
|
||||
<multiple>eds. & 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 & 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. & trans. by</term>
|
||||
|
||||
<!-- LONG MONTH FORMS -->
|
||||
<term name="month-01">January</term>
|
||||
<term name="month-02">February</term>
|
||||
<term name="month-03">March</term>
|
||||
|
@ -195,6 +275,8 @@
|
|||
<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>
|
||||
|
@ -207,5 +289,11 @@
|
|||
<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>
|
||||
|
||||
<!-- 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>
|
|
@ -1,6 +1,17 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<terms xmlns="http://purl.org/net/xbiblio/csl">
|
||||
<locale xml:lang="fr">
|
||||
<?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>
|
||||
|
@ -8,15 +19,20 @@
|
|||
<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 name="reference">
|
||||
<single>reference</single>
|
||||
<multiple>references</multiple>
|
||||
</term>
|
||||
<term name="no date">sans date</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="interview">entrevue</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>
|
||||
|
@ -26,6 +42,34 @@
|
|||
<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>
|
||||
|
@ -36,7 +80,8 @@
|
|||
<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="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>
|
||||
|
@ -44,11 +89,13 @@
|
|||
<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="science">science</term>
|
||||
<term name="political_science">science politique</term>
|
||||
<term name="social_science">sciences sociales</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>
|
||||
|
@ -94,29 +141,31 @@
|
|||
<multiple>paragraphes</multiple>
|
||||
</term>
|
||||
<term name="part">
|
||||
<single>tome</single>
|
||||
<multiple>tomes</multiple>
|
||||
<single>partie</single>
|
||||
<multiple>parties</multiple>
|
||||
</term>
|
||||
<term name="section">
|
||||
<single>rubrique</single>
|
||||
<multiple>rubriques</multiple>
|
||||
<single>section</single>
|
||||
<multiple>sections</multiple>
|
||||
</term>
|
||||
<term name="volume">
|
||||
<single>volume</single>
|
||||
<multiple>volumes</multiple>
|
||||
</term>
|
||||
<term name="edition">
|
||||
<single>édition</single>
|
||||
<multiple>éditions</multiple>
|
||||
<single>edition</single>
|
||||
<multiple>editions</multiple>
|
||||
</term>
|
||||
<term name="verse">
|
||||
<single>vers</single>
|
||||
<multiple>vers</multiple>
|
||||
<single>verset</single>
|
||||
<multiple>versets</multiple>
|
||||
</term>
|
||||
<term name="sub verbo">
|
||||
<single>sub verbo</single>
|
||||
<multiple>sub verbo</multiple>
|
||||
<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>
|
||||
|
@ -126,86 +175,125 @@
|
|||
<term name="opus" form="short">op</term>
|
||||
<term name="page" form="short">
|
||||
<single>p</single>
|
||||
<multiple>p</multiple>
|
||||
<multiple>pp</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="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.v</multiple>
|
||||
<multiple>s.vv</multiple>
|
||||
</term>
|
||||
<term name="verse" form="short">
|
||||
<single>v</single>
|
||||
<multiple>v</multiple>
|
||||
<multiple>vv</multiple>
|
||||
</term>
|
||||
<term name="volume" form="short">
|
||||
<single>vol</single>
|
||||
<multiple>vol</multiple>
|
||||
<multiple>vols</multiple>
|
||||
</term>
|
||||
<term name="edition">edition</term>
|
||||
<term name="edition" form="short">éd</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>§</single>
|
||||
<multiple>§</multiple>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
<term name="section" form="symbol">
|
||||
<single>§</single>
|
||||
<multiple>§</multiple>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="author">
|
||||
<single>auteur</single>
|
||||
<multiple>auteurs</multiple>
|
||||
<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 & translator</single>
|
||||
<multiple>editors & translators</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="author" form="short">
|
||||
<single>aut</single>
|
||||
<multiple>aut</multiple>
|
||||
<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. & tran.</single>
|
||||
<multiple>eds. & 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 & translated by</term>
|
||||
<term name="recipient" form="verb">vers</term>
|
||||
<term name="interviewer" form="verb">entrevue par</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="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>
|
||||
<term name="editortranslator" form="verb-short">ed. & 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>
|
|
@ -1,6 +1,17 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<terms xmlns="http://purl.org/net/xbiblio/csl">
|
||||
<locale xml:lang="he">
|
||||
<?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>
|
||||
|
@ -8,14 +19,19 @@
|
|||
<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 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>
|
||||
|
@ -26,6 +42,34 @@
|
|||
<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>
|
||||
|
@ -37,6 +81,7 @@
|
|||
<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>
|
||||
|
@ -49,6 +94,8 @@
|
|||
<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>
|
||||
|
@ -117,6 +164,8 @@
|
|||
<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>
|
||||
|
@ -143,8 +192,9 @@
|
|||
<single>vol</single>
|
||||
<multiple>vols</multiple>
|
||||
</term>
|
||||
<term name="edition">edition</term>
|
||||
<term name="edition" form="short">ed</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶¶</multiple>
|
||||
|
@ -153,6 +203,8 @@
|
|||
<single>§</single>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="author">
|
||||
<single/>
|
||||
<multiple/>
|
||||
|
@ -161,10 +213,20 @@
|
|||
<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 & translator</single>
|
||||
<multiple>editors & translators</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="author" form="short">
|
||||
<single/>
|
||||
<multiple/>
|
||||
|
@ -173,16 +235,34 @@
|
|||
<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. & tran.</single>
|
||||
<multiple>eds. & 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 & 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. & trans. by</term>
|
||||
|
||||
<!-- LONG MONTH FORMS -->
|
||||
<term name="month-01">ינואר</term>
|
||||
<term name="month-02">פברואר</term>
|
||||
<term name="month-03">מרץ</term>
|
||||
|
@ -195,6 +275,8 @@
|
|||
<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>
|
||||
|
@ -207,5 +289,11 @@
|
|||
<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>
|
||||
|
||||
<!-- 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>
|
|
@ -1,6 +1,17 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<terms xmlns="http://purl.org/net/xbiblio/csl">
|
||||
<locale xml:lang="hu">
|
||||
<?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>
|
||||
|
@ -8,14 +19,19 @@
|
|||
<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 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>
|
||||
|
@ -26,6 +42,34 @@
|
|||
<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>
|
||||
|
@ -37,6 +81,7 @@
|
|||
<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>
|
||||
|
@ -49,6 +94,8 @@
|
|||
<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>
|
||||
|
@ -117,6 +164,8 @@
|
|||
<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>
|
||||
|
@ -143,8 +192,9 @@
|
|||
<single>vol</single>
|
||||
<multiple>vols</multiple>
|
||||
</term>
|
||||
<term name="edition">edition</term>
|
||||
<term name="edition" form="short">ed</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶¶</multiple>
|
||||
|
@ -153,6 +203,8 @@
|
|||
<single>§</single>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="author">
|
||||
<single/>
|
||||
<multiple/>
|
||||
|
@ -161,10 +213,20 @@
|
|||
<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 & translator</single>
|
||||
<multiple>editors & translators</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="author" form="short">
|
||||
<single/>
|
||||
<multiple/>
|
||||
|
@ -173,16 +235,34 @@
|
|||
<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. & tran.</single>
|
||||
<multiple>eds. & 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 & 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. & 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>
|
||||
|
@ -195,6 +275,8 @@
|
|||
<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>
|
||||
|
@ -207,5 +289,11 @@
|
|||
<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>
|
||||
|
||||
<!-- 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>
|
|
@ -1,6 +1,17 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<terms xmlns="http://purl.org/net/xbiblio/csl">
|
||||
<locale xml:lang="is">
|
||||
<?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>
|
||||
|
@ -8,14 +19,19 @@
|
|||
<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 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>
|
||||
|
@ -26,6 +42,34 @@
|
|||
<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>
|
||||
|
@ -37,6 +81,7 @@
|
|||
<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>
|
||||
|
@ -49,6 +94,8 @@
|
|||
<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>
|
||||
|
@ -117,6 +164,8 @@
|
|||
<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>
|
||||
|
@ -143,8 +192,9 @@
|
|||
<single>vol</single>
|
||||
<multiple>vols</multiple>
|
||||
</term>
|
||||
<term name="edition">edition</term>
|
||||
<term name="edition" form="short">ed</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶¶</multiple>
|
||||
|
@ -153,6 +203,8 @@
|
|||
<single>§</single>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="author">
|
||||
<single/>
|
||||
<multiple/>
|
||||
|
@ -161,10 +213,20 @@
|
|||
<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 & translator</single>
|
||||
<multiple>editors & translators</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="author" form="short">
|
||||
<single/>
|
||||
<multiple/>
|
||||
|
@ -173,16 +235,34 @@
|
|||
<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. & tran.</single>
|
||||
<multiple>eds. & 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 & 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. & trans. by</term>
|
||||
|
||||
<!-- LONG MONTH FORMS -->
|
||||
<term name="month-01">January</term>
|
||||
<term name="month-02">February</term>
|
||||
<term name="month-03">March</term>
|
||||
|
@ -195,6 +275,8 @@
|
|||
<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>
|
||||
|
@ -207,5 +289,11 @@
|
|||
<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>
|
||||
|
||||
<!-- 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>
|
|
@ -1,6 +1,17 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<terms xmlns="http://purl.org/net/xbiblio/csl">
|
||||
<locale xml:lang="it">
|
||||
<?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>
|
||||
|
@ -8,14 +19,19 @@
|
|||
<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 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>
|
||||
|
@ -26,6 +42,34 @@
|
|||
<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>
|
||||
|
@ -37,6 +81,7 @@
|
|||
<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>
|
||||
|
@ -49,6 +94,8 @@
|
|||
<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>
|
||||
|
@ -117,6 +164,8 @@
|
|||
<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>
|
||||
|
@ -143,8 +192,9 @@
|
|||
<single>vol</single>
|
||||
<multiple>vol</multiple>
|
||||
</term>
|
||||
<term name="edition">edition</term>
|
||||
<term name="edition" form="short">ed</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶¶</multiple>
|
||||
|
@ -153,6 +203,8 @@
|
|||
<single>§</single>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="author">
|
||||
<single/>
|
||||
<multiple/>
|
||||
|
@ -161,10 +213,20 @@
|
|||
<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 & translator</single>
|
||||
<multiple>editors & translators</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="author" form="short">
|
||||
<single/>
|
||||
<multiple/>
|
||||
|
@ -173,16 +235,34 @@
|
|||
<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. & tran.</single>
|
||||
<multiple>eds. & 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 & 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. & trans. by</term>
|
||||
|
||||
<!-- LONG MONTH FORMS -->
|
||||
<term name="month-01">Gennaio</term>
|
||||
<term name="month-02">Febbraio</term>
|
||||
<term name="month-03">Marzo</term>
|
||||
|
@ -195,6 +275,8 @@
|
|||
<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>
|
||||
|
@ -207,5 +289,11 @@
|
|||
<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>
|
||||
|
||||
<!-- 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>
|
|
@ -1,21 +1,37 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<terms xmlns="http://purl.org/net/xbiblio/csl">
|
||||
<locale xml:lang="ja">
|
||||
<?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>
|
||||
<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="references">参考文献</term>
|
||||
<term name="reference item">
|
||||
<single>source</single>
|
||||
<multiple>sources</multiple>
|
||||
<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>
|
||||
|
@ -26,6 +42,34 @@
|
|||
<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>
|
||||
|
@ -37,6 +81,7 @@
|
|||
<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>
|
||||
|
@ -49,6 +94,8 @@
|
|||
<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>
|
||||
|
@ -117,6 +164,8 @@
|
|||
<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>
|
||||
|
@ -143,8 +192,9 @@
|
|||
<single>vol</single>
|
||||
<multiple>vols</multiple>
|
||||
</term>
|
||||
<term name="edition">edition</term>
|
||||
<term name="edition" form="short">ed</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶¶</multiple>
|
||||
|
@ -153,6 +203,8 @@
|
|||
<single>§</single>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="author">
|
||||
<single/>
|
||||
<multiple/>
|
||||
|
@ -161,10 +213,20 @@
|
|||
<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 & translator</single>
|
||||
<multiple>editors & translators</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="author" form="short">
|
||||
<single/>
|
||||
<multiple/>
|
||||
|
@ -173,16 +235,34 @@
|
|||
<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. & tran.</single>
|
||||
<multiple>eds. & 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 & 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. & trans. by</term>
|
||||
|
||||
<!-- LONG MONTH FORMS -->
|
||||
<term name="month-01">1月</term>
|
||||
<term name="month-02">2月</term>
|
||||
<term name="month-03">3月</term>
|
||||
|
@ -195,6 +275,8 @@
|
|||
<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>
|
||||
|
@ -207,5 +289,11 @@
|
|||
<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>
|
||||
|
||||
<!-- 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>
|
|
@ -1,6 +1,17 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<terms xmlns="http://purl.org/net/xbiblio/csl">
|
||||
<locale xml:lang="ko">
|
||||
<?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>
|
||||
|
@ -8,14 +19,19 @@
|
|||
<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 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>
|
||||
|
@ -26,6 +42,34 @@
|
|||
<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>
|
||||
|
@ -37,6 +81,7 @@
|
|||
<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>
|
||||
|
@ -49,6 +94,8 @@
|
|||
<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>
|
||||
|
@ -117,6 +164,8 @@
|
|||
<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>
|
||||
|
@ -143,8 +192,9 @@
|
|||
<single>vol</single>
|
||||
<multiple>vols</multiple>
|
||||
</term>
|
||||
<term name="edition">edition</term>
|
||||
<term name="edition" form="short">ed</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶¶</multiple>
|
||||
|
@ -153,6 +203,8 @@
|
|||
<single>§</single>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="author">
|
||||
<single/>
|
||||
<multiple/>
|
||||
|
@ -161,10 +213,20 @@
|
|||
<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 & translator</single>
|
||||
<multiple>editors & translators</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="author" form="short">
|
||||
<single/>
|
||||
<multiple/>
|
||||
|
@ -173,16 +235,34 @@
|
|||
<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. & tran.</single>
|
||||
<multiple>eds. & 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 & 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. & trans. by</term>
|
||||
|
||||
<!-- LONG MONTH FORMS -->
|
||||
<term name="month-01">1월</term>
|
||||
<term name="month-02">2월</term>
|
||||
<term name="month-03">3월</term>
|
||||
|
@ -195,6 +275,8 @@
|
|||
<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>
|
||||
|
@ -207,5 +289,11 @@
|
|||
<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>
|
||||
|
||||
<!-- 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>
|
|
@ -1,6 +1,17 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<terms xmlns="http://purl.org/net/xbiblio/csl">
|
||||
<locale xml:lang="mn">
|
||||
<?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>
|
||||
|
@ -8,14 +19,19 @@
|
|||
<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 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>
|
||||
|
@ -26,6 +42,34 @@
|
|||
<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>
|
||||
|
@ -37,6 +81,7 @@
|
|||
<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>
|
||||
|
@ -49,6 +94,8 @@
|
|||
<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>
|
||||
|
@ -117,6 +164,8 @@
|
|||
<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>
|
||||
|
@ -143,8 +192,9 @@
|
|||
<single>vol</single>
|
||||
<multiple>vols</multiple>
|
||||
</term>
|
||||
<term name="edition">edition</term>
|
||||
<term name="edition" form="short">ed</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶¶</multiple>
|
||||
|
@ -153,6 +203,8 @@
|
|||
<single>§</single>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="author">
|
||||
<single/>
|
||||
<multiple/>
|
||||
|
@ -161,10 +213,20 @@
|
|||
<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 & translator</single>
|
||||
<multiple>editors & translators</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="author" form="short">
|
||||
<single/>
|
||||
<multiple/>
|
||||
|
@ -173,16 +235,34 @@
|
|||
<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. & tran.</single>
|
||||
<multiple>eds. & 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 & 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. & trans. by</term>
|
||||
|
||||
<!-- LONG MONTH FORMS -->
|
||||
<term name="month-01">January</term>
|
||||
<term name="month-02">February</term>
|
||||
<term name="month-03">March</term>
|
||||
|
@ -195,6 +275,8 @@
|
|||
<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>
|
||||
|
@ -207,5 +289,11 @@
|
|||
<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>
|
||||
|
||||
<!-- 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>
|
|
@ -1,6 +1,17 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<terms xmlns="http://purl.org/net/xbiblio/csl">
|
||||
<locale xml:lang="nb">
|
||||
<?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">på</term>
|
||||
<term name="in">i</term>
|
||||
<term name="ibid">ibid</term>
|
||||
|
@ -8,14 +19,19 @@
|
|||
<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 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>
|
||||
|
@ -26,6 +42,34 @@
|
|||
<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>
|
||||
|
@ -37,6 +81,7 @@
|
|||
<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>
|
||||
|
@ -49,6 +94,8 @@
|
|||
<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>
|
||||
|
@ -117,6 +164,8 @@
|
|||
<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>
|
||||
|
@ -143,8 +192,9 @@
|
|||
<single>bd</single>
|
||||
<multiple>bd</multiple>
|
||||
</term>
|
||||
<term name="edition">edition</term>
|
||||
<term name="edition" form="short">utg</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶¶</multiple>
|
||||
|
@ -153,6 +203,8 @@
|
|||
<single>§</single>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="author">
|
||||
<single/>
|
||||
<multiple/>
|
||||
|
@ -161,10 +213,20 @@
|
|||
<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 & translator</single>
|
||||
<multiple>editors & translators</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="author" form="short">
|
||||
<single/>
|
||||
<multiple/>
|
||||
|
@ -173,16 +235,34 @@
|
|||
<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. & tran.</single>
|
||||
<multiple>eds. & 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 & 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. & trans. by</term>
|
||||
|
||||
<!-- LONG MONTH FORMS -->
|
||||
<term name="month-01">Januar</term>
|
||||
<term name="month-02">Februar</term>
|
||||
<term name="month-03">Mars</term>
|
||||
|
@ -195,6 +275,8 @@
|
|||
<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>
|
||||
|
@ -207,5 +289,11 @@
|
|||
<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>
|
||||
|
||||
<!-- 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>
|
|
@ -1,6 +1,17 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<terms xmlns="http://purl.org/net/xbiblio/csl">
|
||||
<locale xml:lang="nl">
|
||||
<?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>
|
||||
|
@ -8,14 +19,19 @@
|
|||
<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 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>
|
||||
|
@ -26,6 +42,34 @@
|
|||
<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>
|
||||
|
@ -37,6 +81,7 @@
|
|||
<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>
|
||||
|
@ -49,6 +94,8 @@
|
|||
<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>
|
||||
|
@ -115,8 +162,10 @@
|
|||
</term>
|
||||
<term name="sub verbo">
|
||||
<single>sub verbo</single>
|
||||
<multiple>sub verbis</multiple>
|
||||
<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>
|
||||
|
@ -143,8 +192,9 @@
|
|||
<single>vol</single>
|
||||
<multiple>vols</multiple>
|
||||
</term>
|
||||
<term name="edition">edition</term>
|
||||
<term name="edition" form="short">ed</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶¶</multiple>
|
||||
|
@ -153,6 +203,8 @@
|
|||
<single>§</single>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="author">
|
||||
<single/>
|
||||
<multiple/>
|
||||
|
@ -161,10 +213,20 @@
|
|||
<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 & translator</single>
|
||||
<multiple>editors & translators</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="author" form="short">
|
||||
<single/>
|
||||
<multiple/>
|
||||
|
@ -173,16 +235,34 @@
|
|||
<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. & tran.</single>
|
||||
<multiple>eds. & 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 & 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. & trans. by</term>
|
||||
|
||||
<!-- LONG MONTH FORMS -->
|
||||
<term name="month-01">januari</term>
|
||||
<term name="month-02">februari</term>
|
||||
<term name="month-03">maart</term>
|
||||
|
@ -195,6 +275,8 @@
|
|||
<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>
|
||||
|
@ -207,5 +289,11 @@
|
|||
<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>
|
||||
|
||||
<!-- 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>
|
|
@ -1,6 +1,17 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<terms xmlns="http://purl.org/net/xbiblio/csl">
|
||||
<locale xml:lang="pl">
|
||||
<?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>
|
||||
|
@ -8,14 +19,19 @@
|
|||
<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 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>
|
||||
|
@ -26,6 +42,34 @@
|
|||
<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>
|
||||
|
@ -37,6 +81,7 @@
|
|||
<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>
|
||||
|
@ -49,6 +94,8 @@
|
|||
<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>
|
||||
|
@ -117,6 +164,8 @@
|
|||
<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>
|
||||
|
@ -143,8 +192,9 @@
|
|||
<single>t</single>
|
||||
<multiple>t</multiple>
|
||||
</term>
|
||||
<term name="edition">edition</term>
|
||||
<term name="edition" form="short">wyd</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶¶</multiple>
|
||||
|
@ -153,6 +203,8 @@
|
|||
<single>§</single>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="author">
|
||||
<single/>
|
||||
<multiple/>
|
||||
|
@ -161,10 +213,20 @@
|
|||
<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 & translator</single>
|
||||
<multiple>editors & translators</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="author" form="short">
|
||||
<single/>
|
||||
<multiple/>
|
||||
|
@ -173,16 +235,34 @@
|
|||
<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. & tran.</single>
|
||||
<multiple>eds. & 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 & 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. & trans. by</term>
|
||||
|
||||
<!-- LONG MONTH FORMS -->
|
||||
<term name="month-01">styczeń</term>
|
||||
<term name="month-02">luty</term>
|
||||
<term name="month-03">marzec</term>
|
||||
|
@ -195,6 +275,8 @@
|
|||
<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>
|
||||
|
@ -207,5 +289,11 @@
|
|||
<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>
|
||||
|
||||
<!-- 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>
|
|
@ -1,6 +1,17 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<terms xmlns="http://purl.org/net/xbiblio/csl">
|
||||
<locale xml:lang="pt">
|
||||
<?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>
|
||||
|
@ -8,14 +19,19 @@
|
|||
<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 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>
|
||||
|
@ -26,6 +42,34 @@
|
|||
<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>
|
||||
|
@ -37,6 +81,7 @@
|
|||
<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>
|
||||
|
@ -49,6 +94,8 @@
|
|||
<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>
|
||||
|
@ -117,6 +164,8 @@
|
|||
<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>
|
||||
|
@ -143,8 +192,9 @@
|
|||
<single>vol</single>
|
||||
<multiple>vols</multiple>
|
||||
</term>
|
||||
<term name="edition">edition</term>
|
||||
<term name="edition" form="short">ed</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶¶</multiple>
|
||||
|
@ -153,6 +203,8 @@
|
|||
<single>§</single>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="author">
|
||||
<single/>
|
||||
<multiple/>
|
||||
|
@ -161,10 +213,20 @@
|
|||
<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 & translator</single>
|
||||
<multiple>editors & translators</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="author" form="short">
|
||||
<single/>
|
||||
<multiple/>
|
||||
|
@ -173,16 +235,34 @@
|
|||
<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. & tran.</single>
|
||||
<multiple>eds. & 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 & 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. & 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>
|
||||
|
@ -195,6 +275,8 @@
|
|||
<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>
|
||||
|
@ -207,5 +289,11 @@
|
|||
<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>
|
||||
|
||||
<!-- 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>
|
|
@ -1,6 +1,17 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<terms xmlns="http://purl.org/net/xbiblio/csl">
|
||||
<locale xml:lang="pt">
|
||||
<?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>
|
||||
|
@ -8,14 +19,19 @@
|
|||
<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 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>
|
||||
|
@ -26,6 +42,34 @@
|
|||
<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>
|
||||
|
@ -37,6 +81,7 @@
|
|||
<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>
|
||||
|
@ -49,6 +94,8 @@
|
|||
<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>
|
||||
|
@ -117,6 +164,8 @@
|
|||
<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>
|
||||
|
@ -143,8 +192,9 @@
|
|||
<single>vol</single>
|
||||
<multiple>vols</multiple>
|
||||
</term>
|
||||
<term name="edition">edition</term>
|
||||
<term name="edition" form="short">ed</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶¶</multiple>
|
||||
|
@ -153,36 +203,66 @@
|
|||
<single>§</single>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="author">
|
||||
<single>autor</single>
|
||||
<multiple>autores</multiple>
|
||||
<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 & translator</single>
|
||||
<multiple>editors & translators</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="author" form="short">
|
||||
<single>aut</single>
|
||||
<multiple>auts</multiple>
|
||||
<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. & tran.</single>
|
||||
<multiple>eds. & 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 & 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. & 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>
|
||||
|
@ -195,6 +275,8 @@
|
|||
<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>
|
||||
|
@ -207,5 +289,11 @@
|
|||
<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>
|
||||
|
||||
<!-- 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>
|
|
@ -1,31 +1,75 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<terms xmlns="http://purl.org/net/xbiblio/csl">
|
||||
<locale xml:lang="ro">
|
||||
<?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">data de acces</term>
|
||||
<term name="retrieved">data de preluare</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="references">Bibliografie</term>
|
||||
<term name="reference item">
|
||||
<single>sursă</single>
|
||||
<multiple>surse</multiple>
|
||||
<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="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="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>
|
||||
|
@ -37,6 +81,7 @@
|
|||
<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>
|
||||
|
@ -44,14 +89,16 @@
|
|||
<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="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>
|
||||
<multiple>cărţile</multiple>
|
||||
</term>
|
||||
<term name="chapter">
|
||||
<single>capitolul</single>
|
||||
|
@ -95,19 +142,19 @@
|
|||
</term>
|
||||
<term name="part">
|
||||
<single>partea</single>
|
||||
<multiple>părțile</multiple>
|
||||
<multiple>părţile</multiple>
|
||||
</term>
|
||||
<term name="section">
|
||||
<single>secțiunea</single>
|
||||
<multiple>secțiunile</multiple>
|
||||
<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>
|
||||
<single>ediţia</single>
|
||||
<multiple>ediţiile</multiple>
|
||||
</term>
|
||||
<term name="verse">
|
||||
<single>versetul</single>
|
||||
|
@ -117,6 +164,8 @@
|
|||
<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>
|
||||
|
@ -143,8 +192,9 @@
|
|||
<single>vol</single>
|
||||
<multiple>vol</multiple>
|
||||
</term>
|
||||
<term name="edition">edition</term>
|
||||
<term name="edition" form="short">ed</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶¶</multiple>
|
||||
|
@ -153,6 +203,8 @@
|
|||
<single>§</single>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="author">
|
||||
<single>autor</single>
|
||||
<multiple>autori</multiple>
|
||||
|
@ -161,10 +213,20 @@
|
|||
<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 & translator</single>
|
||||
<multiple>editors & translators</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="author" form="short">
|
||||
<single>aut</single>
|
||||
<multiple>aut</multiple>
|
||||
|
@ -173,16 +235,34 @@
|
|||
<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. & tran.</single>
|
||||
<multiple>eds. & 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 & 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. & trans. by</term>
|
||||
|
||||
<!-- LONG MONTH FORMS -->
|
||||
<term name="month-01">ianuarie</term>
|
||||
<term name="month-02">februarie</term>
|
||||
<term name="month-03">martie</term>
|
||||
|
@ -195,6 +275,8 @@
|
|||
<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>
|
||||
|
@ -207,5 +289,11 @@
|
|||
<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>
|
||||
|
||||
<!-- 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>
|
|
@ -1,92 +1,139 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<terms xmlns="http://purl.org/net/xbiblio/csl">
|
||||
<locale xml:lang="ru">
|
||||
<term name="at">на</term>
|
||||
<?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="references">ссылки</term>
|
||||
<term name="reference item">
|
||||
<single>источник</single>
|
||||
<multiple>источники</multiple>
|
||||
<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="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="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>
|
||||
<single>book</single>
|
||||
<multiple>books</multiple>
|
||||
</term>
|
||||
<term name="chapter">
|
||||
<single>глава</single>
|
||||
<multiple>главы</multiple>
|
||||
<single>chapter</single>
|
||||
<multiple>chapters</multiple>
|
||||
</term>
|
||||
<term name="column">
|
||||
<single>колонка</single>
|
||||
<multiple>колонки</multiple>
|
||||
<single>column</single>
|
||||
<multiple>columns</multiple>
|
||||
</term>
|
||||
<term name="figure">
|
||||
<single>рисунок</single>
|
||||
<multiple>рисунки</multiple>
|
||||
<single>figure</single>
|
||||
<multiple>figures</multiple>
|
||||
</term>
|
||||
<term name="folio">
|
||||
<single>лист</single>
|
||||
<multiple>листы</multiple>
|
||||
<single>folio</single>
|
||||
<multiple>folios</multiple>
|
||||
</term>
|
||||
<term name="issue">
|
||||
<single>номер</single>
|
||||
<multiple>номера</multiple>
|
||||
<single>number</single>
|
||||
<multiple>numbers</multiple>
|
||||
</term>
|
||||
<term name="line">
|
||||
<single>линия</single>
|
||||
<multiple>линии</multiple>
|
||||
</term>
|
||||
<term name="note">
|
||||
<single>запись</single>
|
||||
<multiple>записи</multiple>
|
||||
<single>note</single>
|
||||
<multiple>notes</multiple>
|
||||
</term>
|
||||
<term name="opus">
|
||||
<single>опус</single>
|
||||
<multiple>опусы</multiple>
|
||||
<single>opus</single>
|
||||
<multiple>opera</multiple>
|
||||
</term>
|
||||
<term name="page">
|
||||
<single>страница</single>
|
||||
<single>страницы</single>
|
||||
<multiple>страницы</multiple>
|
||||
</term>
|
||||
<term name="paragraph">
|
||||
|
@ -94,43 +141,45 @@
|
|||
<multiple>параграфы</multiple>
|
||||
</term>
|
||||
<term name="part">
|
||||
<single>часть</single>
|
||||
<multiple>части</multiple>
|
||||
<single>part</single>
|
||||
<multiple>parts</multiple>
|
||||
</term>
|
||||
<term name="section">
|
||||
<single>раздел</single>
|
||||
<multiple>разделы</multiple>
|
||||
<single>section</single>
|
||||
<multiple>sections</multiple>
|
||||
</term>
|
||||
<term name="volume">
|
||||
<single>том</single>
|
||||
<multiple>тома</multiple>
|
||||
<single>volume</single>
|
||||
<multiple>volumes</multiple>
|
||||
</term>
|
||||
<term name="edition">
|
||||
<single>издание</single>
|
||||
<multiple>издания</multiple>
|
||||
<single>edition</single>
|
||||
<multiple>editions</multiple>
|
||||
</term>
|
||||
<term name="verse">
|
||||
<single>стих</single>
|
||||
<multiple>стихи</multiple>
|
||||
<single>verse</single>
|
||||
<multiple>verses</multiple>
|
||||
</term>
|
||||
<term name="sub verbo">
|
||||
<single>под рубрикой</single>
|
||||
<multiple>под рубриками</multiple>
|
||||
<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>
|
||||
|
||||
<!-- 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">оп</term>
|
||||
<term name="opus" form="short">op</term>
|
||||
<term name="page" form="short">
|
||||
<single>p</single>
|
||||
<multiple>pp</multiple>
|
||||
<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="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>
|
||||
|
@ -143,8 +192,9 @@
|
|||
<single>vol</single>
|
||||
<multiple>vols</multiple>
|
||||
</term>
|
||||
<term name="edition">edition</term>
|
||||
<term name="edition" form="short">изд</term>
|
||||
<term name="edition" form="short">ed</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶¶</multiple>
|
||||
|
@ -153,6 +203,8 @@
|
|||
<single>§</single>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="author">
|
||||
<single/>
|
||||
<multiple/>
|
||||
|
@ -161,10 +213,20 @@
|
|||
<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 & translator</single>
|
||||
<multiple>editors & translators</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="author" form="short">
|
||||
<single/>
|
||||
<multiple/>
|
||||
|
@ -173,16 +235,34 @@
|
|||
<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. & tran.</single>
|
||||
<multiple>eds. & 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="recipient" form="verb"/>
|
||||
<term name="interviewer" form="verb">интервью взято</term>
|
||||
<term name="editortranslator" form="verb">edited & 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. & trans. by</term>
|
||||
|
||||
<!-- LONG MONTH FORMS -->
|
||||
<term name="month-01">Январь</term>
|
||||
<term name="month-02">Февраль</term>
|
||||
<term name="month-03">Март</term>
|
||||
|
@ -195,6 +275,8 @@
|
|||
<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>
|
||||
|
@ -207,5 +289,11 @@
|
|||
<term name="month-10" form="short">Окт</term>
|
||||
<term name="month-11" form="short">Ноя</term>
|
||||
<term name="month-12" form="short">Дек</term>
|
||||
</locale>
|
||||
</terms>
|
||||
|
||||
<!-- 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>
|
|
@ -1,6 +1,17 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<terms xmlns="http://purl.org/net/xbiblio/csl">
|
||||
<locale xml:lang="sk">
|
||||
<?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>
|
||||
|
@ -8,14 +19,19 @@
|
|||
<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 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>
|
||||
|
@ -26,6 +42,34 @@
|
|||
<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>
|
||||
|
@ -37,6 +81,7 @@
|
|||
<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>
|
||||
|
@ -49,6 +94,8 @@
|
|||
<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>
|
||||
|
@ -117,6 +164,8 @@
|
|||
<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>
|
||||
|
@ -143,8 +192,9 @@
|
|||
<single>roč</single>
|
||||
<multiple>roč</multiple>
|
||||
</term>
|
||||
<term name="edition">edition</term>
|
||||
<term name="edition" form="short">vyd</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶</multiple>
|
||||
|
@ -153,36 +203,66 @@
|
|||
<single>§</single>
|
||||
<multiple>§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="author">
|
||||
<single>autor</single>
|
||||
<multiple>autori</multiple>
|
||||
<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 & translator</single>
|
||||
<multiple>editors & translators</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="author" form="short">
|
||||
<single>aut</single>
|
||||
<multiple>aut</multiple>
|
||||
<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. & tran.</single>
|
||||
<multiple>eds. & 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 & 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. & 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>
|
||||
|
@ -195,6 +275,8 @@
|
|||
<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>
|
||||
|
@ -207,5 +289,11 @@
|
|||
<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>
|
||||
|
||||
<!-- 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>
|
|
@ -1,6 +1,17 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<terms xmlns="http://purl.org/net/xbiblio/csl">
|
||||
<locale xml:lang="sl">
|
||||
<?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>
|
||||
|
@ -8,14 +19,19 @@
|
|||
<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 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>
|
||||
|
@ -26,6 +42,34 @@
|
|||
<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>
|
||||
|
@ -37,6 +81,7 @@
|
|||
<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>
|
||||
|
@ -49,6 +94,8 @@
|
|||
<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>
|
||||
|
@ -117,6 +164,8 @@
|
|||
<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>
|
||||
|
@ -143,8 +192,9 @@
|
|||
<single>let</single>
|
||||
<multiple>let</multiple>
|
||||
</term>
|
||||
<term name="edition">edition</term>
|
||||
<term name="edition" form="short">iz</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶¶</multiple>
|
||||
|
@ -153,6 +203,8 @@
|
|||
<single>§</single>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="author">
|
||||
<single/>
|
||||
<multiple/>
|
||||
|
@ -161,10 +213,20 @@
|
|||
<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 & translator</single>
|
||||
<multiple>editors & translators</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="author" form="short">
|
||||
<single/>
|
||||
<multiple/>
|
||||
|
@ -173,16 +235,34 @@
|
|||
<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. & tran.</single>
|
||||
<multiple>eds. & 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 & 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. & trans. by</term>
|
||||
|
||||
<!-- LONG MONTH FORMS -->
|
||||
<term name="month-01">januar</term>
|
||||
<term name="month-02">februar</term>
|
||||
<term name="month-03">marec</term>
|
||||
|
@ -195,6 +275,8 @@
|
|||
<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>
|
||||
|
@ -207,5 +289,11 @@
|
|||
<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>
|
||||
|
||||
<!-- 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>
|
|
@ -1,6 +1,17 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<terms xmlns="http://purl.org/net/xbiblio/csl">
|
||||
<locale xml:lang="sr">
|
||||
<?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>
|
||||
|
@ -8,14 +19,19 @@
|
|||
<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 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>
|
||||
|
@ -26,6 +42,34 @@
|
|||
<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>
|
||||
|
@ -37,6 +81,7 @@
|
|||
<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>
|
||||
|
@ -49,6 +94,8 @@
|
|||
<term name="social_science">друштвена наука</term>
|
||||
<term name="theology">теологија</term>
|
||||
<term name="zoology">зоологија</term>
|
||||
|
||||
<!-- LONG LOCATOR FORMS -->
|
||||
<term name="book">
|
||||
<single>књига</single>
|
||||
<multiple>књиге</multiple>
|
||||
|
@ -117,6 +164,8 @@
|
|||
<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>
|
||||
|
@ -143,8 +192,9 @@
|
|||
<single>том</single>
|
||||
<multiple>томови</multiple>
|
||||
</term>
|
||||
<term name="edition">edition</term>
|
||||
<term name="edition" form="short">изд.</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶¶</multiple>
|
||||
|
@ -153,6 +203,8 @@
|
|||
<single>§</single>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="author">
|
||||
<single/>
|
||||
<multiple/>
|
||||
|
@ -161,10 +213,20 @@
|
|||
<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 & translator</single>
|
||||
<multiple>editors & translators</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="author" form="short">
|
||||
<single/>
|
||||
<multiple/>
|
||||
|
@ -173,16 +235,34 @@
|
|||
<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. & tran.</single>
|
||||
<multiple>eds. & 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 & 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. & trans. by</term>
|
||||
|
||||
<!-- LONG MONTH FORMS -->
|
||||
<term name="month-01">Јануар</term>
|
||||
<term name="month-02">Фебруар</term>
|
||||
<term name="month-03">Март</term>
|
||||
|
@ -195,6 +275,8 @@
|
|||
<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>
|
||||
|
@ -207,5 +289,11 @@
|
|||
<term name="month-10" form="short">Окт.</term>
|
||||
<term name="month-11" form="short">Нов.</term>
|
||||
<term name="month-12" form="short">Дец.</term>
|
||||
</locale>
|
||||
</terms>
|
||||
|
||||
<!-- 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>
|
|
@ -1,6 +1,17 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<terms xmlns="http://purl.org/net/xbiblio/csl">
|
||||
<locale xml:lang="sv">
|
||||
<?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>
|
||||
|
@ -8,14 +19,19 @@
|
|||
<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 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>
|
||||
|
@ -26,6 +42,34 @@
|
|||
<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>
|
||||
|
@ -37,6 +81,7 @@
|
|||
<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>
|
||||
|
@ -49,6 +94,8 @@
|
|||
<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>
|
||||
|
@ -117,6 +164,8 @@
|
|||
<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>
|
||||
|
@ -143,8 +192,9 @@
|
|||
<single>vol</single>
|
||||
<multiple>vols</multiple>
|
||||
</term>
|
||||
<term name="edition">edition</term>
|
||||
<term name="edition" form="short">uppl</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶¶</multiple>
|
||||
|
@ -153,6 +203,8 @@
|
|||
<single>§</single>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="author">
|
||||
<single/>
|
||||
<multiple/>
|
||||
|
@ -161,10 +213,20 @@
|
|||
<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 & translator</single>
|
||||
<multiple>editors & translators</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="author" form="short">
|
||||
<single/>
|
||||
<multiple/>
|
||||
|
@ -173,16 +235,34 @@
|
|||
<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. & tran.</single>
|
||||
<multiple>eds. & 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 & 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. & trans. by</term>
|
||||
|
||||
<!-- LONG MONTH FORMS -->
|
||||
<term name="month-01">Januari</term>
|
||||
<term name="month-02">Februari</term>
|
||||
<term name="month-03">Mars</term>
|
||||
|
@ -195,6 +275,8 @@
|
|||
<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>
|
||||
|
@ -207,5 +289,11 @@
|
|||
<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>
|
||||
|
||||
<!-- 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>
|
|
@ -1,6 +1,17 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<terms xmlns="http://purl.org/net/xbiblio/csl">
|
||||
<locale xml:lang="th">
|
||||
<?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>
|
||||
|
@ -8,14 +19,19 @@
|
|||
<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 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>
|
||||
|
@ -26,6 +42,34 @@
|
|||
<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>
|
||||
|
@ -37,6 +81,7 @@
|
|||
<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>
|
||||
|
@ -49,6 +94,8 @@
|
|||
<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>
|
||||
|
@ -117,6 +164,8 @@
|
|||
<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>
|
||||
|
@ -143,8 +192,9 @@
|
|||
<single>vol</single>
|
||||
<multiple>vols</multiple>
|
||||
</term>
|
||||
<term name="edition">edition</term>
|
||||
<term name="edition" form="short">ed</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶¶</multiple>
|
||||
|
@ -153,6 +203,8 @@
|
|||
<single>§</single>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="author">
|
||||
<single/>
|
||||
<multiple/>
|
||||
|
@ -161,10 +213,20 @@
|
|||
<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 & translator</single>
|
||||
<multiple>editors & translators</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="author" form="short">
|
||||
<single/>
|
||||
<multiple/>
|
||||
|
@ -173,16 +235,34 @@
|
|||
<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. & tran.</single>
|
||||
<multiple>eds. & 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 & 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. & trans. by</term>
|
||||
|
||||
<!-- LONG MONTH FORMS -->
|
||||
<term name="month-01">January</term>
|
||||
<term name="month-02">February</term>
|
||||
<term name="month-03">March</term>
|
||||
|
@ -195,6 +275,8 @@
|
|||
<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>
|
||||
|
@ -207,5 +289,11 @@
|
|||
<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>
|
||||
|
||||
<!-- 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>
|
|
@ -1,6 +1,17 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<terms xmlns="http://purl.org/net/xbiblio/csl">
|
||||
<locale xml:lang="tr">
|
||||
<?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>
|
||||
|
@ -8,14 +19,19 @@
|
|||
<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 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>
|
||||
|
@ -26,6 +42,34 @@
|
|||
<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>
|
||||
|
@ -37,6 +81,7 @@
|
|||
<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>
|
||||
|
@ -49,6 +94,8 @@
|
|||
<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>
|
||||
|
@ -117,6 +164,8 @@
|
|||
<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>
|
||||
|
@ -143,8 +192,9 @@
|
|||
<single>vol</single>
|
||||
<multiple>vols</multiple>
|
||||
</term>
|
||||
<term name="edition">edition</term>
|
||||
<term name="edition" form="short">ed</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶¶</multiple>
|
||||
|
@ -153,6 +203,8 @@
|
|||
<single>§</single>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="author">
|
||||
<single/>
|
||||
<multiple/>
|
||||
|
@ -161,10 +213,20 @@
|
|||
<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 & translator</single>
|
||||
<multiple>editors & translators</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="author" form="short">
|
||||
<single/>
|
||||
<multiple/>
|
||||
|
@ -173,16 +235,34 @@
|
|||
<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. & tran.</single>
|
||||
<multiple>eds. & 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 & 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. & trans. by</term>
|
||||
|
||||
<!-- LONG MONTH FORMS -->
|
||||
<term name="month-01">Ocak</term>
|
||||
<term name="month-02">Şubat</term>
|
||||
<term name="month-03">Mart</term>
|
||||
|
@ -195,6 +275,8 @@
|
|||
<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>
|
||||
|
@ -207,5 +289,11 @@
|
|||
<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>
|
||||
|
||||
<!-- 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>
|
|
@ -1,6 +1,17 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<terms xmlns="http://purl.org/net/xbiblio/csl">
|
||||
<locale xml:lang="uk">
|
||||
<?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>
|
||||
|
@ -8,14 +19,19 @@
|
|||
<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 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>
|
||||
|
@ -26,6 +42,34 @@
|
|||
<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>
|
||||
|
@ -37,6 +81,7 @@
|
|||
<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>
|
||||
|
@ -49,6 +94,8 @@
|
|||
<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>
|
||||
|
@ -117,6 +164,8 @@
|
|||
<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>
|
||||
|
@ -143,8 +192,9 @@
|
|||
<single>vol</single>
|
||||
<multiple>vols</multiple>
|
||||
</term>
|
||||
<term name="edition">edition</term>
|
||||
<term name="edition" form="short">ed</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶¶</multiple>
|
||||
|
@ -153,6 +203,8 @@
|
|||
<single>§</single>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="author">
|
||||
<single/>
|
||||
<multiple/>
|
||||
|
@ -161,10 +213,20 @@
|
|||
<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 & translator</single>
|
||||
<multiple>editors & translators</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="author" form="short">
|
||||
<single/>
|
||||
<multiple/>
|
||||
|
@ -173,16 +235,34 @@
|
|||
<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. & tran.</single>
|
||||
<multiple>eds. & 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 & 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. & trans. by</term>
|
||||
|
||||
<!-- LONG MONTH FORMS -->
|
||||
<term name="month-01">Січень</term>
|
||||
<term name="month-02">Лютий</term>
|
||||
<term name="month-03">Березень</term>
|
||||
|
@ -195,6 +275,8 @@
|
|||
<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>
|
||||
|
@ -207,5 +289,11 @@
|
|||
<term name="month-10" form="short">Жов</term>
|
||||
<term name="month-11" form="short">Лис</term>
|
||||
<term name="month-12" form="short">Груд</term>
|
||||
</locale>
|
||||
</terms>
|
||||
|
||||
<!-- 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>
|
|
@ -1,6 +1,17 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<terms xmlns="http://purl.org/net/xbiblio/csl">
|
||||
<locale xml:lang="vi">
|
||||
<?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>
|
||||
|
@ -8,14 +19,19 @@
|
|||
<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 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">và</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>
|
||||
|
@ -26,6 +42,34 @@
|
|||
<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>
|
||||
|
@ -37,6 +81,7 @@
|
|||
<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>
|
||||
|
@ -49,6 +94,8 @@
|
|||
<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>
|
||||
|
@ -117,6 +164,8 @@
|
|||
<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>
|
||||
|
@ -143,8 +192,9 @@
|
|||
<single>vol</single>
|
||||
<multiple>vols</multiple>
|
||||
</term>
|
||||
<term name="edition">edition</term>
|
||||
<term name="edition" form="short">ed</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶¶</multiple>
|
||||
|
@ -153,6 +203,8 @@
|
|||
<single>§</single>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="author">
|
||||
<single/>
|
||||
<multiple/>
|
||||
|
@ -161,10 +213,20 @@
|
|||
<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 & translator</single>
|
||||
<multiple>editors & translators</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="author" form="short">
|
||||
<single/>
|
||||
<multiple/>
|
||||
|
@ -173,16 +235,34 @@
|
|||
<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. & tran.</single>
|
||||
<multiple>eds. & 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 & 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. & 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>
|
||||
|
@ -195,6 +275,8 @@
|
|||
<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>
|
||||
|
@ -207,5 +289,11 @@
|
|||
<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>
|
||||
|
||||
<!-- 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>
|
|
@ -1,6 +1,17 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<terms xmlns="http://purl.org/net/xbiblio/csl">
|
||||
<locale xml:lang="zh">
|
||||
<?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>
|
||||
|
@ -8,14 +19,19 @@
|
|||
<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 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>
|
||||
|
@ -26,6 +42,34 @@
|
|||
<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>
|
||||
|
@ -37,6 +81,7 @@
|
|||
<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>
|
||||
|
@ -49,6 +94,8 @@
|
|||
<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>
|
||||
|
@ -117,6 +164,8 @@
|
|||
<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>
|
||||
|
@ -143,8 +192,9 @@
|
|||
<single>vol</single>
|
||||
<multiple>vols</multiple>
|
||||
</term>
|
||||
<term name="edition">edition</term>
|
||||
<term name="edition" form="short">ed</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶¶</multiple>
|
||||
|
@ -153,6 +203,8 @@
|
|||
<single>§</single>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="author">
|
||||
<single/>
|
||||
<multiple/>
|
||||
|
@ -161,10 +213,20 @@
|
|||
<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 & translator</single>
|
||||
<multiple>editors & translators</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="author" form="short">
|
||||
<single/>
|
||||
<multiple/>
|
||||
|
@ -173,16 +235,34 @@
|
|||
<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. & tran.</single>
|
||||
<multiple>eds. & 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 & 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. & trans. by</term>
|
||||
|
||||
<!-- LONG MONTH FORMS -->
|
||||
<term name="month-01">January</term>
|
||||
<term name="month-02">February</term>
|
||||
<term name="month-03">March</term>
|
||||
|
@ -195,6 +275,8 @@
|
|||
<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>
|
||||
|
@ -207,5 +289,11 @@
|
|||
<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>
|
||||
|
||||
<!-- 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>
|
|
@ -1,6 +1,17 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<terms xmlns="http://purl.org/net/xbiblio/csl">
|
||||
<locale xml:lang="zh">
|
||||
<?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>
|
||||
|
@ -8,14 +19,19 @@
|
|||
<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 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>
|
||||
|
@ -26,6 +42,34 @@
|
|||
<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>
|
||||
|
@ -37,6 +81,7 @@
|
|||
<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>
|
||||
|
@ -49,6 +94,8 @@
|
|||
<term name="social_science">社會科學</term>
|
||||
<term name="theology">神學</term>
|
||||
<term name="zoology">動物學</term>
|
||||
|
||||
<!-- LONG LOCATOR FORMS -->
|
||||
<term name="book">
|
||||
<single>書</single>
|
||||
<multiple>書</multiple>
|
||||
|
@ -114,9 +161,11 @@
|
|||
<multiple>詩句</multiple>
|
||||
</term>
|
||||
<term name="sub verbo">
|
||||
<single>詞下</single>
|
||||
<multiple>詞下</multiple>
|
||||
<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>
|
||||
|
@ -132,8 +181,8 @@
|
|||
<term name="part" form="short">部</term>
|
||||
<term name="section" form="short">節</term>
|
||||
<term name="sub verbo" form="short">
|
||||
<single>詞下</single>
|
||||
<multiple>詞下</multiple>
|
||||
<single>s.v</single>
|
||||
<multiple>s.vv</multiple>
|
||||
</term>
|
||||
<term name="verse" form="short">
|
||||
<single>句</single>
|
||||
|
@ -143,8 +192,9 @@
|
|||
<single>冊</single>
|
||||
<multiple>冊</multiple>
|
||||
</term>
|
||||
<term name="edition">edition</term>
|
||||
<term name="edition" form="short">版</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶¶</multiple>
|
||||
|
@ -153,6 +203,8 @@
|
|||
<single>§</single>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="author">
|
||||
<single>作者</single>
|
||||
<multiple>作者</multiple>
|
||||
|
@ -161,10 +213,20 @@
|
|||
<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 & translator</single>
|
||||
<multiple>editors & translators</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="author" form="short">
|
||||
<single>作</single>
|
||||
<multiple>作</multiple>
|
||||
|
@ -173,16 +235,34 @@
|
|||
<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. & tran.</single>
|
||||
<multiple>eds. & 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 & 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. & trans. by</term>
|
||||
|
||||
<!-- LONG MONTH FORMS -->
|
||||
<term name="month-01">一月</term>
|
||||
<term name="month-02">二月</term>
|
||||
<term name="month-03">三月</term>
|
||||
|
@ -195,6 +275,8 @@
|
|||
<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>
|
||||
|
@ -207,5 +289,11 @@
|
|||
<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>
|
||||
|
||||
<!-- 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>
|
|
@ -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 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);
|
||||
}
|
||||
|
||||
var cslCitationItem = new Zotero.CSL.CitationItem(cslItem);
|
||||
cslCitation.add([cslCitationItem]);
|
||||
cslCitationItem.position = position;
|
||||
cslCitationItem.locator = citation.pages[j];
|
||||
cslCitationItem.suppressAuthor = citation.suppressAuthor && !isNote;
|
||||
}
|
||||
cslCitations.push(cslCitation);
|
||||
}
|
||||
Zotero.debug(cslCitations);
|
||||
|
||||
// sort item set, now that we have the indices
|
||||
itemSet.resort();
|
||||
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;
|
||||
}
|
||||
|
|
318
chrome/content/zotero/xpcom/cite.js
Normal file
318
chrome/content/zotero/xpcom/cite.js
Normal 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];
|
||||
}
|
||||
}
|
7832
chrome/content/zotero/xpcom/citeproc.js
Normal file
7832
chrome/content/zotero/xpcom/citeproc.js
Normal file
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
|
@ -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()");
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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];
|
||||
|
|
|
@ -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?
|
||||
|
|
|
@ -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];
|
||||
};
|
||||
|
|
|
@ -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");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue