first commit
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,163 @@
|
||||
<?php
|
||||
/**
|
||||
* @file CitationStyleLanguageSettingsForm.php
|
||||
*
|
||||
* Copyright (c) 2017-2020 Simon Fraser University
|
||||
* Copyright (c) 2017-2020 John Willinsky
|
||||
* Distributed under the GNU GPL v3. For full terms see the file docs/COPYING.
|
||||
*
|
||||
* @class CitationStyleLanguageSettingsForm.inc
|
||||
*
|
||||
* @ingroup plugins_generic_citationStyleLanguage
|
||||
*
|
||||
* @brief Form for site admins to modify Citation Style Language settings.
|
||||
*/
|
||||
|
||||
namespace APP\plugins\generic\citationStyleLanguage;
|
||||
|
||||
use APP\core\Application;
|
||||
use APP\facades\Repo;
|
||||
use APP\notification\NotificationManager;
|
||||
use APP\template\TemplateManager;
|
||||
use PKP\form\Form;
|
||||
use PKP\form\validation\FormValidatorCSRF;
|
||||
use PKP\form\validation\FormValidatorPost;
|
||||
use PKP\notification\PKPNotification;
|
||||
use PKP\security\Role;
|
||||
|
||||
class CitationStyleLanguageSettingsForm extends Form
|
||||
{
|
||||
public CitationStyleLanguagePlugin $plugin;
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*
|
||||
* @param CitationStyleLanguagePlugin $plugin object
|
||||
*/
|
||||
public function __construct(CitationStyleLanguagePlugin $plugin)
|
||||
{
|
||||
parent::__construct($plugin->getTemplateResource('settings.tpl'));
|
||||
$this->plugin = $plugin;
|
||||
$this->addCheck(new FormValidatorPost($this));
|
||||
$this->addCheck(new FormValidatorCSRF($this));
|
||||
}
|
||||
|
||||
/**
|
||||
* @copydoc Form::init
|
||||
*/
|
||||
public function initData(): void
|
||||
{
|
||||
$request = Application::get()->getRequest();
|
||||
$context = $request->getContext();
|
||||
$contextId = $context->getId();
|
||||
$this->setData('primaryCitationStyle', $this->plugin->getSetting($contextId, 'primaryCitationStyle'));
|
||||
$this->setData('enabledCitationStyles', array_keys($this->plugin->getEnabledCitationStyles($contextId)));
|
||||
$this->setData('enabledCitationDownloads', $this->plugin->getEnabledCitationDownloads($contextId));
|
||||
$this->setData('publisherLocation', $this->plugin->getSetting($contextId, 'publisherLocation'));
|
||||
$this->setData('groupAuthor', $this->plugin->getAuthorGroups($contextId));
|
||||
$this->setData('groupTranslator', $this->plugin->getTranslatorGroups($contextId));
|
||||
if ($this->plugin->application === 'omp') {
|
||||
$this->setData('groupEditor', $this->plugin->getEditorGroups($contextId));
|
||||
$this->setData('groupChapterAuthor', $this->plugin->getChapterAuthorGroups($contextId));
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Assign form data to user-submitted data.
|
||||
*/
|
||||
public function readInputData(): void
|
||||
{
|
||||
$this->readUserVars([
|
||||
'primaryCitationStyle',
|
||||
'enabledCitationStyles',
|
||||
'enabledCitationDownloads',
|
||||
'publisherLocation',
|
||||
'groupAuthor',
|
||||
'groupTranslator'
|
||||
]);
|
||||
if ($this->plugin->application === 'omp') {
|
||||
$this->readUserVars(['groupEditor']);
|
||||
$this->readUserVars(['groupChapterAuthor']);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @copydoc Form::fetch()
|
||||
*
|
||||
* @param null|mixed $template
|
||||
*/
|
||||
public function fetch($request, $template = null, $display = false): ?string
|
||||
{
|
||||
$context = $request->getContext();
|
||||
$contextId = $context->getId();
|
||||
|
||||
$allStyles = [];
|
||||
foreach ($this->plugin->getCitationStyles() as $style) {
|
||||
$allStyles[$style['id']] = $style['title'];
|
||||
}
|
||||
|
||||
$allDownloads = [];
|
||||
foreach ($this->plugin->getCitationDownloads() as $style) {
|
||||
$allDownloads[$style['id']] = $style['title'];
|
||||
}
|
||||
|
||||
$allUserGroups = [];
|
||||
$userGroups = Repo::userGroup()->getByRoleIds([Role::ROLE_ID_AUTHOR], $contextId);
|
||||
$userGroups = $userGroups->toArray();
|
||||
foreach ($userGroups as $userGroup) {
|
||||
$allUserGroups[(int) $userGroup->getId()] = $userGroup->getLocalizedName();
|
||||
}
|
||||
asort($allUserGroups);
|
||||
|
||||
$templateMgr = TemplateManager::getManager($request);
|
||||
$templateMgr->assign([
|
||||
'pluginName' => $this->plugin->getName(),
|
||||
'allDownloads' => $allDownloads,
|
||||
'allStyles' => $allStyles,
|
||||
'primaryCitationStyle' => $this->getData('primaryCitationStyle'),
|
||||
'enabledStyles' => $this->plugin->mapCitationIds($this->plugin->getEnabledCitationStyles($contextId)),
|
||||
'enabledDownloads' => $this->plugin->mapCitationIds($this->plugin->getEnabledCitationDownloads($contextId)),
|
||||
'application' => $this->plugin->application,
|
||||
'groupAuthor' => $this->getData('groupAuthor'),
|
||||
'groupTranslator' => $this->getData('groupTranslator'),
|
||||
'allUserGroups' => $allUserGroups,
|
||||
]);
|
||||
|
||||
if ($this->plugin->application === 'omp') {
|
||||
$templateMgr->assign([
|
||||
'groupEditor' => $this->getData('groupEditor'),
|
||||
'groupChapterAuthor' => $this->getData('groupChapterAuthor'),
|
||||
]);
|
||||
}
|
||||
|
||||
return parent::fetch($request, $template, $display);
|
||||
}
|
||||
|
||||
/**
|
||||
* @copydoc Form::execute()
|
||||
*/
|
||||
public function execute(...$functionArgs)
|
||||
{
|
||||
$request = Application::get()->getRequest();
|
||||
$context = $request->getContext();
|
||||
$contextId = $context->getId();
|
||||
$this->plugin->updateSetting($contextId, 'primaryCitationStyle', $this->getData('primaryCitationStyle'));
|
||||
$enabledCitationStyles = $this->getData('enabledCitationStyles') ?: [];
|
||||
$this->plugin->updateSetting($contextId, 'enabledCitationStyles', $enabledCitationStyles);
|
||||
$enabledCitationDownloads = $this->getData('enabledCitationDownloads') ?: [];
|
||||
$this->plugin->updateSetting($contextId, 'enabledCitationDownloads', $enabledCitationDownloads);
|
||||
$this->plugin->updateSetting($contextId, 'publisherLocation', $this->getData('publisherLocation'));
|
||||
$this->plugin->updateSetting($contextId, 'groupAuthor', $this->getData('groupAuthor'));
|
||||
$this->plugin->updateSetting($contextId, 'groupTranslator', $this->getData('groupTranslator'));
|
||||
if ($this->plugin->application === 'omp') {
|
||||
$this->plugin->updateSetting($contextId, 'groupEditor', $this->getData('groupEditor'));
|
||||
$this->plugin->updateSetting($contextId, 'groupChapterAuthor', $this->getData('groupChapterAuthor'));
|
||||
}
|
||||
|
||||
$notificationMgr = new NotificationManager();
|
||||
$user = $request->getUser();
|
||||
$notificationMgr->createTrivialNotification($user->getId(), PKPNotification::NOTIFICATION_TYPE_SUCCESS, ['contents' => __('common.changesSaved')]);
|
||||
|
||||
return parent::execute(...$functionArgs);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,172 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<style xmlns="http://purl.org/net/xbiblio/csl" class="in-text" version="1.0" demote-non-dropping-particle="sort-only" default-locale="en-US">
|
||||
<info>
|
||||
<title>ACM SIG Proceedings ("et al." for 3+ authors)</title>
|
||||
<id>http://www.zotero.org/styles/acm-sig-proceedings</id>
|
||||
<link href="http://www.zotero.org/styles/acm-sig-proceedings" rel="self"/>
|
||||
<link href="http://www.acm.org/sigs/publications/proceedings-templates" rel="documentation"/>
|
||||
<author>
|
||||
<name>Naeem Esfahani</name>
|
||||
<email>nesfaha2@gmu.edu</email>
|
||||
<uri>http://mason.gmu.edu/~nesfaha2/</uri>
|
||||
</author>
|
||||
<contributor>
|
||||
<name>Chris Horn</name>
|
||||
<email>chris.horn@securedecisions.com</email>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Patrick O'Brien</name>
|
||||
</contributor>
|
||||
<category citation-format="numeric"/>
|
||||
<category field="science"/>
|
||||
<category field="engineering"/>
|
||||
<updated>2017-07-15T11:28:14+00:00</updated>
|
||||
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
|
||||
</info>
|
||||
<macro name="author">
|
||||
<choose>
|
||||
<if type="webpage">
|
||||
<text variable="title" suffix=":"/>
|
||||
</if>
|
||||
<else>
|
||||
<names variable="author">
|
||||
<name name-as-sort-order="all" and="text" sort-separator=", " initialize-with="." delimiter-precedes-last="never" delimiter=", "/>
|
||||
<label form="short" prefix=" "/>
|
||||
<substitute>
|
||||
<names variable="editor"/>
|
||||
<names variable="translator"/>
|
||||
</substitute>
|
||||
</names>
|
||||
</else>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="editor">
|
||||
<names variable="editor">
|
||||
<name initialize-with="." delimiter=", " and="text"/>
|
||||
<label form="short" prefix=", "/>
|
||||
</names>
|
||||
</macro>
|
||||
<macro name="access">
|
||||
<choose>
|
||||
<if type="article-journal" match="any">
|
||||
<text variable="DOI" prefix=". DOI:https://doi.org/"/>
|
||||
</if>
|
||||
</choose>
|
||||
</macro>
|
||||
<citation collapse="citation-number">
|
||||
<sort>
|
||||
<key variable="citation-number"/>
|
||||
</sort>
|
||||
<layout prefix="[" suffix="]" delimiter=", ">
|
||||
<text variable="citation-number"/>
|
||||
</layout>
|
||||
</citation>
|
||||
<bibliography entry-spacing="0" second-field-align="flush" et-al-min="3" et-al-use-first="1">
|
||||
<sort>
|
||||
<key macro="author"/>
|
||||
<key variable="title"/>
|
||||
</sort>
|
||||
<layout suffix=".">
|
||||
<text variable="citation-number" prefix="[" suffix="]"/>
|
||||
<text macro="author" suffix=" "/>
|
||||
<date variable="issued" suffix=". ">
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<choose>
|
||||
<if type="paper-conference">
|
||||
<group delimiter=". ">
|
||||
<text variable="title"/>
|
||||
<group delimiter=" ">
|
||||
<text variable="container-title" font-style="italic"/>
|
||||
<group delimiter=", ">
|
||||
<group delimiter=", " prefix="(" suffix=")">
|
||||
<text variable="publisher-place"/>
|
||||
<date variable="issued">
|
||||
<date-part name="month" form="short" suffix=" "/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
</group>
|
||||
<text variable="page"/>
|
||||
</group>
|
||||
</group>
|
||||
</group>
|
||||
</if>
|
||||
<else-if type="article-journal">
|
||||
<group delimiter=". ">
|
||||
<text variable="title"/>
|
||||
<text variable="container-title" font-style="italic"/>
|
||||
<group delimiter=", ">
|
||||
<text variable="volume"/>
|
||||
<group delimiter=" ">
|
||||
<text variable="issue"/>
|
||||
<date variable="issued" prefix="(" suffix=")">
|
||||
<date-part name="month" form="short" suffix=" "/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
</group>
|
||||
<text variable="page"/>
|
||||
</group>
|
||||
</group>
|
||||
</else-if>
|
||||
<else-if type="patent">
|
||||
<group delimiter=". ">
|
||||
<text variable="title"/>
|
||||
<text variable="number"/>
|
||||
<date variable="issued">
|
||||
<date-part name="month" form="short" suffix=" "/>
|
||||
<date-part name="day" suffix=", "/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
</group>
|
||||
</else-if>
|
||||
<else-if type="thesis">
|
||||
<group delimiter=". ">
|
||||
<text variable="title" font-style="italic"/>
|
||||
<text variable="archive_location" prefix="Doctoral Thesis #"/>
|
||||
<text variable="publisher"/>
|
||||
</group>
|
||||
</else-if>
|
||||
<else-if type="report">
|
||||
<group delimiter=". ">
|
||||
<text variable="title" font-style="italic"/>
|
||||
<text variable="number" prefix="Technical Report #"/>
|
||||
<text variable="publisher"/>
|
||||
</group>
|
||||
</else-if>
|
||||
<else-if type="webpage">
|
||||
<group delimiter=". ">
|
||||
<text variable="URL" font-style="italic"/>
|
||||
<date variable="accessed" prefix="Accessed: ">
|
||||
<date-part name="year" suffix="-"/>
|
||||
<date-part name="month" form="numeric-leading-zeros" suffix="-"/>
|
||||
<date-part name="day" form="numeric-leading-zeros"/>
|
||||
</date>
|
||||
</group>
|
||||
</else-if>
|
||||
<else-if type="chapter paper-conference" match="any">
|
||||
<group delimiter=". ">
|
||||
<text variable="title"/>
|
||||
<text variable="container-title" font-style="italic"/>
|
||||
<text macro="editor"/>
|
||||
<text variable="publisher"/>
|
||||
<text variable="page"/>
|
||||
</group>
|
||||
</else-if>
|
||||
<else-if type="bill book graphic legal_case legislation motion_picture report song" match="any">
|
||||
<group delimiter=". ">
|
||||
<text variable="title" font-style="italic"/>
|
||||
<text variable="publisher"/>
|
||||
</group>
|
||||
</else-if>
|
||||
<else>
|
||||
<group delimiter=". ">
|
||||
<text variable="title"/>
|
||||
<text variable="container-title" font-style="italic"/>
|
||||
<text variable="publisher"/>
|
||||
</group>
|
||||
</else>
|
||||
</choose>
|
||||
<text macro="access"/>
|
||||
</layout>
|
||||
</bibliography>
|
||||
</style>
|
||||
@@ -0,0 +1,302 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<style xmlns="http://purl.org/net/xbiblio/csl" class="in-text" version="1.0" demote-non-dropping-particle="sort-only" page-range-format="expanded" default-locale="en-US">
|
||||
<info>
|
||||
<title>American Chemical Society</title>
|
||||
<title-short>ACS</title-short>
|
||||
<id>http://www.zotero.org/styles/american-chemical-society</id>
|
||||
<link href="http://www.zotero.org/styles/american-chemical-society" rel="self"/>
|
||||
<link href="https://pubs.acs.org/doi/full/10.1021/acsguide.40303" rel="documentation"/>
|
||||
<link href="https://pubs.acs.org/doi/book/10.1021/acsguide" rel="documentation"/>
|
||||
<author>
|
||||
<name>Julian Onions</name>
|
||||
<email>julian.onions@gmail.com</email>
|
||||
</author>
|
||||
<contributor>
|
||||
<name>Ivan Bushmarinov</name>
|
||||
<email>ib@ineos.ac.ru</email>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Sebastian Karcher</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Patrick O'Brien</name>
|
||||
</contributor>
|
||||
<category citation-format="numeric"/>
|
||||
<category field="chemistry"/>
|
||||
<summary>The American Chemical Society style</summary>
|
||||
<updated>2022-09-19T18:32:56+00:00</updated>
|
||||
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
|
||||
</info>
|
||||
<locale xml:lang="en">
|
||||
<terms>
|
||||
<term name="editortranslator" form="short">
|
||||
<single>ed. and translator</single>
|
||||
<multiple>eds. and translators</multiple>
|
||||
</term>
|
||||
<term name="translator" form="short">
|
||||
<single>translator</single>
|
||||
<multiple>translators</multiple>
|
||||
</term>
|
||||
<term name="collection-editor" form="short">
|
||||
<single>series ed.</single>
|
||||
<multiple>series eds.</multiple>
|
||||
</term>
|
||||
</terms>
|
||||
</locale>
|
||||
<macro name="editor">
|
||||
<group delimiter="; ">
|
||||
<names variable="editor translator" delimiter="; ">
|
||||
<name sort-separator=", " initialize-with=". " name-as-sort-order="all" delimiter=", " delimiter-precedes-last="always"/>
|
||||
<label form="short" prefix=", " text-case="title"/>
|
||||
</names>
|
||||
<names variable="collection-editor">
|
||||
<name sort-separator=", " initialize-with=". " name-as-sort-order="all" delimiter=", " delimiter-precedes-last="always"/>
|
||||
<label form="short" prefix=", " text-case="title"/>
|
||||
</names>
|
||||
</group>
|
||||
</macro>
|
||||
<macro name="author">
|
||||
<names variable="author" suffix=".">
|
||||
<name sort-separator=", " initialize-with=". " name-as-sort-order="all" delimiter="; " delimiter-precedes-last="always"/>
|
||||
<label form="short" prefix=", " text-case="capitalize-first"/>
|
||||
</names>
|
||||
</macro>
|
||||
<macro name="publisher">
|
||||
<choose>
|
||||
<if type="thesis" match="any">
|
||||
<group delimiter=", ">
|
||||
<text variable="publisher"/>
|
||||
<text variable="publisher-place"/>
|
||||
</group>
|
||||
</if>
|
||||
<else>
|
||||
<group delimiter=": ">
|
||||
<text variable="publisher"/>
|
||||
<text variable="publisher-place"/>
|
||||
</group>
|
||||
</else>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="title">
|
||||
<choose>
|
||||
<if type="bill book graphic legal_case legislation motion_picture report song" match="any">
|
||||
<text variable="title" text-case="title" font-style="italic"/>
|
||||
</if>
|
||||
<else>
|
||||
<text variable="title" text-case="title"/>
|
||||
</else>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="volume">
|
||||
<group delimiter=" ">
|
||||
<text term="volume" form="short" text-case="capitalize-first"/>
|
||||
<text variable="volume"/>
|
||||
</group>
|
||||
</macro>
|
||||
<macro name="series">
|
||||
<text variable="collection-title"/>
|
||||
</macro>
|
||||
<macro name="pages">
|
||||
<label variable="page" form="short" suffix=" " strip-periods="true"/>
|
||||
<text variable="page"/>
|
||||
</macro>
|
||||
<macro name="book-container">
|
||||
<group delimiter=". ">
|
||||
<text macro="title"/>
|
||||
<choose>
|
||||
<if type="entry-dictionary entry-encyclopedia" match="none">
|
||||
<group delimiter=" ">
|
||||
<text term="in" text-case="capitalize-first"/>
|
||||
<text variable="container-title" font-style="italic"/>
|
||||
</group>
|
||||
</if>
|
||||
<else>
|
||||
<text variable="container-title" font-style="italic"/>
|
||||
</else>
|
||||
</choose>
|
||||
</group>
|
||||
</macro>
|
||||
<macro name="issued">
|
||||
<date variable="issued" delimiter=" ">
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
</macro>
|
||||
<macro name="full-issued">
|
||||
<date variable="issued" delimiter=" ">
|
||||
<date-part name="month" form="long" suffix=" "/>
|
||||
<date-part name="day" suffix=", "/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
</macro>
|
||||
<macro name="edition">
|
||||
<choose>
|
||||
<if is-numeric="edition">
|
||||
<group delimiter=" ">
|
||||
<number variable="edition" form="ordinal"/>
|
||||
<text term="edition" form="short"/>
|
||||
</group>
|
||||
</if>
|
||||
<else>
|
||||
<text variable="edition" suffix="."/>
|
||||
</else>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="access">
|
||||
<choose>
|
||||
<if variable="DOI" match="any">
|
||||
<text variable="DOI" prefix="https://doi.org/"/>
|
||||
</if>
|
||||
<else-if type="article-journal book chapter entry-encyclopedia entry-dictionary paper-conference" match="none">
|
||||
<choose>
|
||||
<if variable="URL">
|
||||
<group delimiter=" ">
|
||||
<text variable="URL"/>
|
||||
<group delimiter=" " prefix="(" suffix=")">
|
||||
<text term="accessed"/>
|
||||
<date variable="accessed">
|
||||
<date-part name="year"/>
|
||||
<date-part name="month" prefix="-" form="numeric-leading-zeros"/>
|
||||
<date-part name="day" prefix="-" form="numeric-leading-zeros"/>
|
||||
</date>
|
||||
</group>
|
||||
</group>
|
||||
</if>
|
||||
</choose>
|
||||
</else-if>
|
||||
</choose>
|
||||
</macro>
|
||||
<citation collapse="citation-number">
|
||||
<sort>
|
||||
<key variable="citation-number"/>
|
||||
</sort>
|
||||
<layout delimiter="," vertical-align="sup">
|
||||
<text variable="citation-number"/>
|
||||
</layout>
|
||||
</citation>
|
||||
<bibliography second-field-align="flush" entry-spacing="0">
|
||||
<layout suffix=".">
|
||||
<text variable="citation-number" prefix="(" suffix=")"/>
|
||||
<text macro="author" suffix=" "/>
|
||||
<choose>
|
||||
<if type="article-journal review" match="any">
|
||||
<group delimiter=" ">
|
||||
<text macro="title" suffix="."/>
|
||||
<text variable="container-title" font-style="italic" form="short"/>
|
||||
<group delimiter=", ">
|
||||
<text macro="issued" font-weight="bold"/>
|
||||
<choose>
|
||||
<if variable="volume">
|
||||
<group delimiter=" ">
|
||||
<text variable="volume" font-style="italic"/>
|
||||
<text variable="issue" prefix="(" suffix=")"/>
|
||||
</group>
|
||||
</if>
|
||||
<else>
|
||||
<group delimiter=" ">
|
||||
<text term="issue" form="short" text-case="capitalize-first"/>
|
||||
<text variable="issue"/>
|
||||
</group>
|
||||
</else>
|
||||
</choose>
|
||||
<text variable="page"/>
|
||||
</group>
|
||||
</group>
|
||||
</if>
|
||||
<else-if type="article-magazine article-newspaper article" match="any">
|
||||
<group delimiter=" ">
|
||||
<text macro="title" suffix="."/>
|
||||
<text variable="container-title" font-style="italic" suffix="."/>
|
||||
<text macro="edition"/>
|
||||
<text macro="publisher"/>
|
||||
<group delimiter=", ">
|
||||
<text macro="full-issued"/>
|
||||
<text macro="pages"/>
|
||||
</group>
|
||||
</group>
|
||||
</else-if>
|
||||
<else-if type="thesis">
|
||||
<group delimiter=", ">
|
||||
<group delimiter=". ">
|
||||
<text macro="title"/>
|
||||
<text variable="genre"/>
|
||||
</group>
|
||||
<text macro="publisher"/>
|
||||
<text macro="issued"/>
|
||||
<text macro="volume"/>
|
||||
<text macro="pages"/>
|
||||
</group>
|
||||
</else-if>
|
||||
<else-if type="bill book graphic legal_case legislation motion_picture report song" match="any">
|
||||
<group delimiter="; ">
|
||||
<group delimiter=", ">
|
||||
<text macro="title"/>
|
||||
<text macro="edition"/>
|
||||
</group>
|
||||
<text macro="editor" prefix=" "/>
|
||||
<text macro="series"/>
|
||||
<choose>
|
||||
<if type="report">
|
||||
<group delimiter=" ">
|
||||
<text variable="genre"/>
|
||||
<text variable="number"/>
|
||||
</group>
|
||||
</if>
|
||||
</choose>
|
||||
<group delimiter=", ">
|
||||
<text macro="publisher"/>
|
||||
<text macro="issued"/>
|
||||
</group>
|
||||
<group delimiter=", ">
|
||||
<text macro="volume"/>
|
||||
<text macro="pages"/>
|
||||
</group>
|
||||
</group>
|
||||
</else-if>
|
||||
<else-if type="patent">
|
||||
<group delimiter=", ">
|
||||
<group delimiter=". ">
|
||||
<text macro="title"/>
|
||||
<text variable="number"/>
|
||||
</group>
|
||||
<date variable="issued" form="text"/>
|
||||
</group>
|
||||
</else-if>
|
||||
<else-if type="chapter paper-conference entry-dictionary entry-encyclopedia" match="any">
|
||||
<group delimiter="; ">
|
||||
<text macro="book-container"/>
|
||||
<text macro="editor"/>
|
||||
<text macro="series"/>
|
||||
<group delimiter=", ">
|
||||
<text macro="publisher"/>
|
||||
<text macro="issued"/>
|
||||
</group>
|
||||
<group delimiter=", ">
|
||||
<text macro="volume"/>
|
||||
<text macro="pages"/>
|
||||
</group>
|
||||
</group>
|
||||
</else-if>
|
||||
<else-if type="webpage post post-weblog" match="any">
|
||||
<group delimiter=". ">
|
||||
<text variable="title" font-style="italic"/>
|
||||
<text variable="container-title"/>
|
||||
</group>
|
||||
</else-if>
|
||||
<else>
|
||||
<group delimiter=", ">
|
||||
<group delimiter=". ">
|
||||
<text macro="title"/>
|
||||
<text variable="container-title" font-style="italic"/>
|
||||
</group>
|
||||
<group delimiter=", ">
|
||||
<text macro="issued"/>
|
||||
<text variable="volume" font-style="italic"/>
|
||||
<text variable="page"/>
|
||||
</group>
|
||||
</group>
|
||||
</else>
|
||||
</choose>
|
||||
<text macro="access" prefix=". "/>
|
||||
</layout>
|
||||
</bibliography>
|
||||
</style>
|
||||
@@ -0,0 +1,280 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<style xmlns="http://purl.org/net/xbiblio/csl" class="in-text" version="1.0" demote-non-dropping-particle="sort-only" page-range-format="expanded" initialize-with-hyphen="false" default-locale="en-US">
|
||||
<info>
|
||||
<title>American Medical Association 11th edition</title>
|
||||
<title-short>AMA (11th ed.)</title-short>
|
||||
<id>http://www.zotero.org/styles/american-medical-association</id>
|
||||
<link href="http://www.zotero.org/styles/american-medical-association" rel="self"/>
|
||||
<link href="http://www.zotero.org/styles/american-medical-association-10th-edition" rel="template"/>
|
||||
<link href="https://westlibrary.txwes.edu/sites/default/files/pdf/AMACitationStyle.pdf" rel="documentation"/>
|
||||
<link href="https://www.amamanualofstyle.com/fileasset/AMAMOS/aaaAMWA%20presentation%20Nov%202019%20FULL.pdf" rel="documentation"/>
|
||||
<author>
|
||||
<name>Julian Onions</name>
|
||||
<email>julian.onions@gmail.com</email>
|
||||
</author>
|
||||
<contributor>
|
||||
<name>Christian Pietsch</name>
|
||||
<uri>http://purl.org/net/pietsch</uri>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Daniel W Chan</name>
|
||||
<email>danwchan@protonmail.com</email>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Patrick O'Brien</name>
|
||||
<email>obrienpat86@gmail.com</email>
|
||||
</contributor>
|
||||
<category citation-format="numeric"/>
|
||||
<category field="medicine"/>
|
||||
<summary>The American Medical Association style as used in JAMA. Version 11 as per November-2019.</summary>
|
||||
<updated>2021-10-28T13:38:04+00:00</updated>
|
||||
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
|
||||
</info>
|
||||
<locale xml:lang="en">
|
||||
<terms>
|
||||
<term name="page-range-delimiter">-</term>
|
||||
<term name="presented at">presented at</term>
|
||||
</terms>
|
||||
</locale>
|
||||
<macro name="editor">
|
||||
<names variable="editor">
|
||||
<name name-as-sort-order="all" sort-separator=" " initialize-with="" delimiter=", " delimiter-precedes-last="always"/>
|
||||
<label form="short" prefix=", "/>
|
||||
</names>
|
||||
</macro>
|
||||
<macro name="author">
|
||||
<group suffix=".">
|
||||
<names variable="author">
|
||||
<name name-as-sort-order="all" sort-separator=" " initialize-with="" delimiter=", " delimiter-precedes-last="always"/>
|
||||
<label form="short" prefix=", "/>
|
||||
<substitute>
|
||||
<names variable="editor"/>
|
||||
<text macro="title"/>
|
||||
</substitute>
|
||||
</names>
|
||||
</group>
|
||||
</macro>
|
||||
<macro name="access">
|
||||
<choose>
|
||||
<if type="article-newspaper" match="none">
|
||||
<choose>
|
||||
<if variable="DOI">
|
||||
<text value="doi:"/>
|
||||
<text variable="DOI"/>
|
||||
</if>
|
||||
<else-if variable="URL">
|
||||
<group delimiter=". ">
|
||||
<choose>
|
||||
<if type="webpage post post-weblog" match="any">
|
||||
<date variable="issued" prefix="Published " form="text"/>
|
||||
</if>
|
||||
</choose>
|
||||
<group>
|
||||
<text term="accessed" text-case="capitalize-first" suffix=" "/>
|
||||
<date variable="accessed">
|
||||
<date-part name="month" suffix=" "/>
|
||||
<date-part name="day" suffix=", "/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
</group>
|
||||
<text variable="URL"/>
|
||||
</group>
|
||||
</else-if>
|
||||
</choose>
|
||||
</if>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="title">
|
||||
<choose>
|
||||
<if type="bill book graphic legal_case legislation motion_picture report song" match="any">
|
||||
<text variable="title" font-style="italic" text-case="title"/>
|
||||
</if>
|
||||
<else>
|
||||
<text variable="title"/>
|
||||
</else>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="publisher">
|
||||
<text variable="publisher"/>
|
||||
</macro>
|
||||
<macro name="edition">
|
||||
<choose>
|
||||
<if is-numeric="edition">
|
||||
<group delimiter=" ">
|
||||
<number variable="edition" form="ordinal"/>
|
||||
<text term="edition" form="short"/>
|
||||
</group>
|
||||
</if>
|
||||
<else>
|
||||
<text variable="edition" suffix="."/>
|
||||
</else>
|
||||
</choose>
|
||||
</macro>
|
||||
<citation collapse="citation-number">
|
||||
<sort>
|
||||
<key variable="citation-number"/>
|
||||
</sort>
|
||||
<layout delimiter="," vertical-align="sup">
|
||||
<text variable="citation-number"/>
|
||||
<group prefix="(" suffix=")">
|
||||
<label variable="locator" form="short" strip-periods="true"/>
|
||||
<text variable="locator"/>
|
||||
</group>
|
||||
</layout>
|
||||
</citation>
|
||||
<bibliography hanging-indent="false" et-al-min="7" et-al-use-first="3" second-field-align="flush">
|
||||
<layout>
|
||||
<text variable="citation-number" suffix=". "/>
|
||||
<text macro="author"/>
|
||||
<text macro="title" prefix=" " suffix="."/>
|
||||
<choose>
|
||||
<if type="bill book graphic legislation motion_picture report song" match="any">
|
||||
<group suffix="." prefix=" " delimiter=" ">
|
||||
<group delimiter=" ">
|
||||
<text term="volume" form="short" text-case="capitalize-first" strip-periods="true"/>
|
||||
<text variable="volume" suffix="."/>
|
||||
</group>
|
||||
<text macro="edition"/>
|
||||
<text macro="editor" prefix="(" suffix=")"/>
|
||||
</group>
|
||||
<text macro="publisher" prefix=" "/>
|
||||
<group suffix="." prefix="; ">
|
||||
<date variable="issued">
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<text variable="page" prefix=":"/>
|
||||
</group>
|
||||
</if>
|
||||
<else-if type="chapter paper-conference entry-dictionary entry-encyclopedia" match="any">
|
||||
<group prefix=" " delimiter=" ">
|
||||
<text term="in" text-case="capitalize-first" suffix=":"/>
|
||||
<text macro="editor"/>
|
||||
<text variable="container-title" font-style="italic" suffix="." text-case="title"/>
|
||||
<group delimiter=" ">
|
||||
<text term="volume" form="short" text-case="capitalize-first" strip-periods="true"/>
|
||||
<text variable="volume" suffix="."/>
|
||||
</group>
|
||||
<text macro="edition"/>
|
||||
<text variable="collection-title" suffix="."/>
|
||||
<group suffix=".">
|
||||
<text macro="publisher"/>
|
||||
<group suffix="." prefix="; ">
|
||||
<date variable="issued">
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<text variable="page" prefix=":"/>
|
||||
</group>
|
||||
</group>
|
||||
</group>
|
||||
</else-if>
|
||||
<else-if type="article-newspaper">
|
||||
<text variable="container-title" font-style="italic" prefix=" " suffix=". "/>
|
||||
<choose>
|
||||
<if variable="URL">
|
||||
<group delimiter=". " suffix=".">
|
||||
<text variable="URL"/>
|
||||
<group prefix="Published ">
|
||||
<date variable="issued">
|
||||
<date-part name="month" suffix=" "/>
|
||||
<date-part name="day" suffix=", "/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
</group>
|
||||
<group>
|
||||
<text term="accessed" text-case="capitalize-first" suffix=" "/>
|
||||
<date variable="accessed">
|
||||
<date-part name="month" suffix=" "/>
|
||||
<date-part name="day" suffix=", "/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
</group>
|
||||
</group>
|
||||
</if>
|
||||
<else>
|
||||
<group delimiter=":" suffix=".">
|
||||
<group>
|
||||
<date variable="issued">
|
||||
<date-part name="month" suffix=" "/>
|
||||
<date-part name="day" suffix=", "/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
</group>
|
||||
<text variable="page"/>
|
||||
</group>
|
||||
</else>
|
||||
</choose>
|
||||
</else-if>
|
||||
<else-if type="legal_case">
|
||||
<group suffix="," prefix=" " delimiter=" ">
|
||||
<text macro="editor" prefix="(" suffix=")"/>
|
||||
</group>
|
||||
<group prefix=" " delimiter=" ">
|
||||
<text variable="container-title"/>
|
||||
<text variable="volume"/>
|
||||
</group>
|
||||
<text variable="page" prefix=", " suffix=" "/>
|
||||
<group prefix="(" suffix=")." delimiter=" ">
|
||||
<text variable="authority"/>
|
||||
<date variable="issued">
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
</group>
|
||||
</else-if>
|
||||
<else-if type="webpage post post-weblog" match="any">
|
||||
<text variable="container-title" prefix=" " suffix="."/>
|
||||
</else-if>
|
||||
<else-if type="speech">
|
||||
<group prefix=" " suffix=":">
|
||||
<choose>
|
||||
<if variable="genre">
|
||||
<text variable="genre" suffix=" "/>
|
||||
<text term="presented at"/>
|
||||
</if>
|
||||
<else>
|
||||
<text term="presented at" text-case="capitalize-first"/>
|
||||
</else>
|
||||
</choose>
|
||||
</group>
|
||||
<group delimiter="; " prefix=" " suffix=".">
|
||||
<text variable="event"/>
|
||||
<group>
|
||||
<date delimiter=" " variable="issued">
|
||||
<date-part name="month"/>
|
||||
<date-part name="day" suffix=","/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
</group>
|
||||
<text variable="event-place"/>
|
||||
</group>
|
||||
</else-if>
|
||||
<else>
|
||||
<text macro="editor" prefix=" " suffix="."/>
|
||||
<group prefix=" " suffix=".">
|
||||
<text variable="container-title" font-style="italic" form="short" strip-periods="true" suffix="."/>
|
||||
<group delimiter=";" prefix=" ">
|
||||
<choose>
|
||||
<if variable="issue volume" match="any">
|
||||
<date variable="issued">
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
</if>
|
||||
<else>
|
||||
<group delimiter=" ">
|
||||
<text value="Published online"/>
|
||||
<date form="text" date-parts="year-month-day" variable="issued"/>
|
||||
</group>
|
||||
</else>
|
||||
</choose>
|
||||
<group>
|
||||
<text variable="volume"/>
|
||||
<text variable="issue" prefix="(" suffix=")"/>
|
||||
</group>
|
||||
</group>
|
||||
<text variable="page" prefix=":"/>
|
||||
</group>
|
||||
</else>
|
||||
</choose>
|
||||
<text prefix=" " macro="access"/>
|
||||
</layout>
|
||||
</bibliography>
|
||||
</style>
|
||||
File diff suppressed because it is too large
Load Diff
+573
@@ -0,0 +1,573 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<style xmlns="http://purl.org/net/xbiblio/csl" version="1.0" class="in-text" initialize="false" demote-non-dropping-particle="never" default-locale="pt-BR">
|
||||
<info>
|
||||
<title>Universidade de São Paulo - Escola de Comunicações e Artes - ABNT (Português - Brasil)</title>
|
||||
<title-short>USP-ECA</title-short>
|
||||
<id>http://www.zotero.org/styles/universidade-de-sao-paulo-escola-de-comunicacoes-e-artes-abnt</id>
|
||||
<link href="http://www.zotero.org/styles/universidade-de-sao-paulo-escola-de-comunicacoes-e-artes-abnt" rel="self"/>
|
||||
<link href="http://www.zotero.org/styles/associacao-brasileira-de-normas-tecnicas" rel="template"/>
|
||||
<link href="https://www.abntcatalogo.com.br/norma.aspx?ID=408006" rel="documentation"/>
|
||||
<author>
|
||||
<name>Tiago Rodrigo Marçal Murakami</name>
|
||||
<email>trmurakami@usp.br</email>
|
||||
<uri>https://www3.eca.usp.br/biblioteca</uri>
|
||||
</author>
|
||||
<category citation-format="author-date"/>
|
||||
<category field="generic-base"/>
|
||||
<summary>De acordo com ABNT-NBR 10520.2002 and ABNT-NBR 6023.2018</summary>
|
||||
<updated>2019-11-21T16:57:15+00:00</updated>
|
||||
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
|
||||
</info>
|
||||
<locale xml:lang="pt-BR">
|
||||
<terms>
|
||||
<term name="month-01" form="short">jan.</term>
|
||||
<term name="month-02" form="short">fev.</term>
|
||||
<term name="month-03" form="short">mar.</term>
|
||||
<term name="month-04" form="short">abr.</term>
|
||||
<term name="month-05" form="short">maio</term>
|
||||
<term name="month-06" form="short">jun.</term>
|
||||
<term name="month-07" form="short">jul.</term>
|
||||
<term name="month-08" form="short">ago.</term>
|
||||
<term name="month-09" form="short">set.</term>
|
||||
<term name="month-10" form="short">out.</term>
|
||||
<term name="month-11" form="short">nov.</term>
|
||||
<term name="month-12" form="short">dez.</term>
|
||||
<term name="and">e</term>
|
||||
<term name="editor" form="short">
|
||||
<single>ed</single>
|
||||
<multiple>eds</multiple>
|
||||
</term>
|
||||
<term name="editor" form="short">
|
||||
<single>org</single>
|
||||
<multiple>org</multiple>
|
||||
</term>
|
||||
<term name="container-author" form="short">
|
||||
<single>ed</single>
|
||||
<multiple>eds</multiple>
|
||||
</term>
|
||||
<term name="collection-editor" form="short">
|
||||
<single>org</single>
|
||||
<multiple>org</multiple>
|
||||
</term>
|
||||
</terms>
|
||||
</locale>
|
||||
<macro name="container-contributors">
|
||||
<choose>
|
||||
<if type="chapter">
|
||||
<names variable="container-author" delimiter=", ">
|
||||
<name name-as-sort-order="all" sort-separator=", " initialize-with=". " delimiter="; " delimiter-precedes-last="always">
|
||||
<name-part name="family" text-case="uppercase"/>
|
||||
<name-part name="given" text-case="capitalize-first"/>
|
||||
</name>
|
||||
<label form="short" prefix=" (" suffix=".)"/>
|
||||
<substitute>
|
||||
<names variable="editor"/>
|
||||
<names variable="collection-editor"/>
|
||||
</substitute>
|
||||
</names>
|
||||
</if>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="secondary-contributors">
|
||||
<choose>
|
||||
<if type="chapter" match="none">
|
||||
<names variable="editor" delimiter="; " prefix=" (" suffix=")">
|
||||
<name initialize-with=". " delimiter=", "/>
|
||||
<label form="short" prefix=", " text-case="capitalize-first" suffix="."/>
|
||||
</names>
|
||||
</if>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="author">
|
||||
<names variable="author">
|
||||
<name name-as-sort-order="all" sort-separator=", " initialize-with=". " delimiter="; " delimiter-precedes-last="always">
|
||||
<name-part name="family" text-case="uppercase"/>
|
||||
<name-part name="given" text-case="capitalize-first"/>
|
||||
</name>
|
||||
<label form="short" prefix=" (" suffix=".)" text-case="uppercase"/>
|
||||
<substitute>
|
||||
<names variable="editor"/>
|
||||
<text macro="title"/>
|
||||
</substitute>
|
||||
</names>
|
||||
</macro>
|
||||
<macro name="author-short">
|
||||
<names variable="author">
|
||||
<name form="short" name-as-sort-order="all" sort-separator=", " initialize-with=". " delimiter="; " delimiter-precedes-last="never">
|
||||
<name-part name="family" text-case="uppercase"/>
|
||||
<name-part name="given" text-case="uppercase"/>
|
||||
</name>
|
||||
<substitute>
|
||||
<names variable="editor"/>
|
||||
<choose>
|
||||
<if type="book">
|
||||
<text variable="title" form="short"/>
|
||||
</if>
|
||||
<else>
|
||||
<text variable="title" form="short" text-case="uppercase" quotes="false"/>
|
||||
</else>
|
||||
</choose>
|
||||
</substitute>
|
||||
</names>
|
||||
</macro>
|
||||
<macro name="director">
|
||||
<names variable="author">
|
||||
<name sort-separator=", " initialize-with=". " delimiter="; " delimiter-precedes-last="always">
|
||||
<name-part name="given" text-case="capitalize-first"/>
|
||||
<name-part name="family" text-case="capitalize-first"/>
|
||||
</name>
|
||||
</names>
|
||||
</macro>
|
||||
<macro name="access">
|
||||
<text variable="DOI" prefix=" DOI: " suffix="."/>
|
||||
<text variable="URL" prefix=" Disponível em: " suffix="."/>
|
||||
<date variable="accessed" prefix=". Acesso em: " suffix=".">
|
||||
<date-part name="day" suffix=" "/>
|
||||
<date-part name="month" form="short" suffix=". " text-case="lowercase"/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
</macro>
|
||||
<macro name="title">
|
||||
<choose>
|
||||
<if type="chapter article-newspaper legislation article-magazine article-journal bill entry-encyclopedia paper-conference" match="any">
|
||||
<text variable="title"/>
|
||||
</if>
|
||||
<else-if type="book thesis patent report" match="any">
|
||||
<text variable="title" font-weight="bold"/>
|
||||
</else-if>
|
||||
<else-if type="dataset" match="any">
|
||||
<text variable="title" suffix=". "/>
|
||||
</else-if>
|
||||
<else-if type="broadcast motion_picture" match="any">
|
||||
<text variable="title" text-case="uppercase"/>
|
||||
</else-if>
|
||||
<else>
|
||||
<text variable="title" font-weight="bold"/>
|
||||
</else>
|
||||
</choose>
|
||||
<text value=""/>
|
||||
</macro>
|
||||
<macro name="container-title">
|
||||
<choose>
|
||||
<if type="paper-conference" match="any">
|
||||
<text variable="container-title" text-case="uppercase"/>
|
||||
<text variable="number" prefix=", " suffix=", "/>
|
||||
<text macro="issued-year" prefix=" " suffix=", "/>
|
||||
<text variable="publisher-place" suffix=". "/>
|
||||
<text value="Anais" font-weight="bold"/>
|
||||
<text value=" [...]. "/>
|
||||
</if>
|
||||
<else>
|
||||
<text variable="container-title" font-weight="bold"/>
|
||||
</else>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="publisher">
|
||||
<choose>
|
||||
<if match="any" variable="publisher-place publisher">
|
||||
<choose>
|
||||
<if variable="publisher-place">
|
||||
<text variable="publisher-place"/>
|
||||
</if>
|
||||
<else-if type="entry-encyclopedia thesis" match="any"/>
|
||||
<else-if type="paper-conference" match="any">
|
||||
<text variable="publisher-place" suffix=". "/>
|
||||
</else-if>
|
||||
<else>
|
||||
<text value="[s.l.] "/>
|
||||
</else>
|
||||
</choose>
|
||||
<choose>
|
||||
<if variable="publisher">
|
||||
<text variable="publisher" prefix=": " suffix=","/>
|
||||
<text macro="issued"/>
|
||||
</if>
|
||||
</choose>
|
||||
</if>
|
||||
<else>
|
||||
<text value="[s.l: s.n.]"/>
|
||||
</else>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="event">
|
||||
<choose>
|
||||
<if variable="event">
|
||||
<choose>
|
||||
<if variable="genre" match="none">
|
||||
<text term="in" font-style="italic" text-case="capitalize-first" suffix=": "/>
|
||||
<text variable="event" text-case="uppercase"/>
|
||||
</if>
|
||||
<else>
|
||||
<group delimiter=" ">
|
||||
<text variable="genre" text-case="capitalize-first"/>
|
||||
<text term="presented at"/>
|
||||
<text variable="event"/>
|
||||
</group>
|
||||
</else>
|
||||
</choose>
|
||||
</if>
|
||||
<else-if type="paper-conference" match="any"/>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="issued">
|
||||
<choose>
|
||||
<if variable="issued" match="any">
|
||||
<group>
|
||||
<date variable="issued">
|
||||
<date-part name="year" prefix=" " suffix="."/>
|
||||
</date>
|
||||
</group>
|
||||
</if>
|
||||
<else-if type="patent" match="any">
|
||||
<date form="numeric" variable="issued" suffix="."/>
|
||||
</else-if>
|
||||
<else>
|
||||
<text value="[s.d.]"/>
|
||||
</else>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="issued-year">
|
||||
<choose>
|
||||
<if variable="issued" match="any">
|
||||
<date variable="issued">
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
</if>
|
||||
<else-if type="paper-conference" match="all">
|
||||
<date date-parts="year" form="numeric" variable="issued">
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
</else-if>
|
||||
<else>
|
||||
<text value="[s.d.]"/>
|
||||
</else>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="issued-legislation">
|
||||
<date variable="issued">
|
||||
<date-part name="day" suffix=" "/>
|
||||
<date-part name="month" form="short" suffix=". " text-case="lowercase"/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
</macro>
|
||||
<macro name="edition">
|
||||
<choose>
|
||||
<if type="book chapter" match="any">
|
||||
<choose>
|
||||
<if is-numeric="edition">
|
||||
<group delimiter=" ">
|
||||
<number variable="edition" form="numeric" suffix="."/>
|
||||
<text term="edition" form="short" suffix="."/>
|
||||
</group>
|
||||
</if>
|
||||
<else>
|
||||
<text variable="edition" suffix=" ed."/>
|
||||
</else>
|
||||
</choose>
|
||||
</if>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="locators">
|
||||
<choose>
|
||||
<if type="bill">
|
||||
<group prefix=". " delimiter=", ">
|
||||
<date variable="issued">
|
||||
<date-part name="day"/>
|
||||
<date-part prefix=" " name="month" form="short"/>
|
||||
<date-part prefix=" " name="year"/>
|
||||
</date>
|
||||
<text macro="section"/>
|
||||
<text variable="page" prefix="p. " suffix="."/>
|
||||
</group>
|
||||
</if>
|
||||
<else-if match="any" type="article-journal article-magazine article-newspaper">
|
||||
<group delimiter=", ">
|
||||
<group delimiter=", ">
|
||||
<text variable="volume" prefix="v. "/>
|
||||
<text variable="issue" prefix="n. "/>
|
||||
</group>
|
||||
<text variable="collection-title"/>
|
||||
<text variable="page" prefix="p. "/>
|
||||
</group>
|
||||
</else-if>
|
||||
<else-if match="any" type="book chapter">
|
||||
<group delimiter=", ">
|
||||
<group>
|
||||
<text variable="volume" prefix="v. "/>
|
||||
<text variable="page" prefix="p. "/>
|
||||
</group>
|
||||
</group>
|
||||
</else-if>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="collection-title">
|
||||
<text variable="collection-title"/>
|
||||
<text variable="collection-number" prefix=" "/>
|
||||
</macro>
|
||||
<macro name="genre">
|
||||
<text variable="genre"/>
|
||||
</macro>
|
||||
<macro name="section">
|
||||
<choose>
|
||||
<if match="any" variable="section issue">
|
||||
<text variable="section"/>
|
||||
<text variable="issue"/>
|
||||
</if>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="citation-locator">
|
||||
<group>
|
||||
<label variable="locator" form="short"/>
|
||||
<text variable="locator" prefix=" "/>
|
||||
</group>
|
||||
</macro>
|
||||
<macro name="place">
|
||||
<choose>
|
||||
<if variable="publisher-place" match="any">
|
||||
<text variable="publisher-place" suffix=", "/>
|
||||
</if>
|
||||
<else-if type="paper-conference" variable="publisher-place">
|
||||
<text variable="publisher-place" suffix=". "/>
|
||||
</else-if>
|
||||
<else>
|
||||
<text value="[S. l.]" font-style="italic" suffix=", "/>
|
||||
</else>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="archive">
|
||||
<group>
|
||||
<text variable="archive" prefix=" "/>
|
||||
</group>
|
||||
</macro>
|
||||
<citation et-al-min="4" et-al-use-first="1" collapse="year" disambiguate-add-year-suffix="true">
|
||||
<sort>
|
||||
<key macro="author"/>
|
||||
<key variable="issued"/>
|
||||
</sort>
|
||||
<layout prefix="(" suffix=")" delimiter="; ">
|
||||
<group>
|
||||
<text suffix=", " macro="author-short"/>
|
||||
<text macro="issued-year"/>
|
||||
<text prefix=", " macro="citation-locator"/>
|
||||
</group>
|
||||
</layout>
|
||||
</citation>
|
||||
<bibliography hanging-indent="false" et-al-min="10" et-al-use-first="1" entry-spacing="1">
|
||||
<sort>
|
||||
<key macro="author"/>
|
||||
<key variable="issued"/>
|
||||
</sort>
|
||||
<layout>
|
||||
<choose>
|
||||
<if type="bill">
|
||||
<group>
|
||||
<text macro="author" suffix=". "/>
|
||||
<text variable="number" suffix=". "/>
|
||||
<text macro="title" suffix=". "/>
|
||||
<text variable="references" font-weight="bold"/>
|
||||
<text variable="note"/>
|
||||
<text macro="locators" suffix=". "/>
|
||||
</group>
|
||||
</if>
|
||||
<else-if type="map">
|
||||
<group>
|
||||
<text macro="author" suffix=". "/>
|
||||
<text macro="title" suffix=", "/>
|
||||
<text macro="issued" suffix=". "/>
|
||||
<text variable="note" suffix=". "/>
|
||||
</group>
|
||||
</else-if>
|
||||
<else-if type="book">
|
||||
<group>
|
||||
<text macro="author" suffix=". "/>
|
||||
<text macro="title" suffix=". "/>
|
||||
<text macro="edition" suffix=". "/>
|
||||
<text macro="publisher" suffix=". "/>
|
||||
<text macro="locators"/>
|
||||
<text macro="access"/>
|
||||
</group>
|
||||
</else-if>
|
||||
<else-if type="chapter">
|
||||
<group>
|
||||
<text macro="author" suffix=". "/>
|
||||
<text macro="title" suffix=". "/>
|
||||
<text term="in" font-style="italic" text-case="capitalize-first" suffix=": "/>
|
||||
<text macro="container-contributors" suffix=". "/>
|
||||
<text macro="container-title" suffix=". "/>
|
||||
<text variable="collection-title"/>
|
||||
<text macro="edition" suffix=". "/>
|
||||
<text macro="publisher" suffix=". "/>
|
||||
<text macro="locators" suffix=". "/>
|
||||
<text macro="access"/>
|
||||
</group>
|
||||
</else-if>
|
||||
<else-if type="article-newspaper article-magazine article-journal" match="any">
|
||||
<group>
|
||||
<text macro="author" suffix=". "/>
|
||||
<text macro="title" suffix=". "/>
|
||||
<text macro="container-title" suffix=", "/>
|
||||
<text macro="collection-title" suffix=". "/>
|
||||
<text macro="place"/>
|
||||
<text macro="edition" suffix=", "/>
|
||||
<text macro="locators" suffix=", "/>
|
||||
<text macro="issued" suffix=". "/>
|
||||
<text macro="access"/>
|
||||
</group>
|
||||
</else-if>
|
||||
<else-if type="thesis">
|
||||
<group>
|
||||
<text macro="author" suffix=". "/>
|
||||
<text macro="title" suffix=". "/>
|
||||
<text macro="issued-year" suffix=". "/>
|
||||
<text macro="genre" suffix=" - "/>
|
||||
<text variable="publisher" suffix=", "/>
|
||||
<text macro="place"/>
|
||||
<text macro="issued" suffix="."/>
|
||||
<text macro="access"/>
|
||||
</group>
|
||||
</else-if>
|
||||
<else-if type="manuscript">
|
||||
<group>
|
||||
<text macro="author" suffix=". "/>
|
||||
<text macro="title" suffix=". "/>
|
||||
<text macro="edition" suffix=". "/>
|
||||
<text macro="place" suffix=", "/>
|
||||
<text macro="issued" suffix=". "/>
|
||||
<text macro="access" suffix=". "/>
|
||||
<text macro="archive" suffix=". "/>
|
||||
</group>
|
||||
</else-if>
|
||||
<else-if type="webpage">
|
||||
<group>
|
||||
<text macro="author" suffix=". "/>
|
||||
<text macro="title" suffix=". "/>
|
||||
<text macro="genre" suffix=". "/>
|
||||
<text macro="issued-year" suffix="."/>
|
||||
<text macro="access" suffix=". "/>
|
||||
</group>
|
||||
</else-if>
|
||||
<else-if type="report">
|
||||
<group>
|
||||
<text macro="author" suffix=". "/>
|
||||
<text macro="title"/>
|
||||
<text macro="container-contributors"/>
|
||||
<text macro="secondary-contributors"/>
|
||||
<text macro="container-title"/>
|
||||
<text variable="collection-title" prefix=": "/>
|
||||
<text macro="locators"/>
|
||||
<text macro="event"/>
|
||||
<text macro="publisher" prefix=". " suffix=". "/>
|
||||
<text macro="access" suffix="."/>
|
||||
</group>
|
||||
</else-if>
|
||||
<else-if type="entry-dictionary">
|
||||
<group>
|
||||
<text macro="author" suffix=". "/>
|
||||
<text macro="title"/>
|
||||
<text macro="container-contributors"/>
|
||||
<text macro="secondary-contributors"/>
|
||||
<text macro="container-title"/>
|
||||
<text variable="collection-title" prefix=": " suffix=". "/>
|
||||
<text macro="locators"/>
|
||||
<text macro="event"/>
|
||||
<text macro="publisher" prefix=". " suffix=". "/>
|
||||
<text macro="collection-title" prefix="(Texto para discussao, n. " suffix=")."/>
|
||||
<text macro="access"/>
|
||||
</group>
|
||||
</else-if>
|
||||
<else-if type="entry-encyclopedia">
|
||||
<group>
|
||||
<text macro="author" suffix=". "/>
|
||||
<text macro="title" suffix=". "/>
|
||||
<text term="in" font-style="italic" text-case="capitalize-first" suffix=": "/>
|
||||
<text macro="container-title" suffix="."/>
|
||||
<text variable="publisher-place" prefix=". " suffix=": "/>
|
||||
<text variable="publisher"/>
|
||||
<text macro="issued" prefix="," suffix=". "/>
|
||||
</group>
|
||||
</else-if>
|
||||
<else-if type="paper-conference">
|
||||
<text macro="author" suffix=". "/>
|
||||
<text macro="title" suffix="."/>
|
||||
<text term="in" font-style="italic" text-case="capitalize-first" prefix=" " suffix=": "/>
|
||||
<text macro="container-contributors" text-case="uppercase"/>
|
||||
<text macro="secondary-contributors"/>
|
||||
<text macro="container-title"/>
|
||||
<text macro="locators"/>
|
||||
<group delimiter=". " prefix=". " suffix=". ">
|
||||
<text macro="event"/>
|
||||
</group>
|
||||
<text macro="publisher"/>
|
||||
<text variable="page" prefix=" p. " suffix="."/>
|
||||
<text macro="access"/>
|
||||
</else-if>
|
||||
<else-if type="legislation legal_case" match="any">
|
||||
<group>
|
||||
<text macro="author" suffix=". "/>
|
||||
<text macro="title"/>
|
||||
<text variable="abstract" prefix=". " suffix=". "/>
|
||||
<text macro="container-title" suffix=", "/>
|
||||
<text variable="publisher-place" suffix=", "/>
|
||||
<text macro="issued-legislation" suffix=". "/>
|
||||
<text macro="section" prefix="Seção " suffix=", "/>
|
||||
<text variable="page" prefix="p. " suffix="."/>
|
||||
<text macro="access"/>
|
||||
</group>
|
||||
</else-if>
|
||||
<else-if type="patent" match="any">
|
||||
<group>
|
||||
<text macro="author" suffix=". "/>
|
||||
<text macro="title" prefix=" "/>
|
||||
<text variable="number" prefix=", " suffix=", "/>
|
||||
<text macro="issued" suffix=". "/>
|
||||
</group>
|
||||
</else-if>
|
||||
<else-if type="interview song speech" match="any">
|
||||
<group>
|
||||
<text macro="author" suffix=". "/>
|
||||
<text macro="title" suffix=". "/>
|
||||
<text macro="publisher"/>
|
||||
<text variable="medium"/>
|
||||
</group>
|
||||
</else-if>
|
||||
<else-if type="broadcast motion_picture" match="any">
|
||||
<group>
|
||||
<text macro="title"/>
|
||||
<text value="Direção" text-case="capitalize-first" prefix=". " suffix=": "/>
|
||||
<text macro="director" suffix=". "/>
|
||||
<text macro="publisher"/>
|
||||
<text variable="medium"/>
|
||||
<text macro="access"/>
|
||||
</group>
|
||||
</else-if>
|
||||
<else-if type="dataset" match="any">
|
||||
<group>
|
||||
<text macro="author"/>
|
||||
<text macro="title" suffix=". "/>
|
||||
<text variable="version" prefix=". "/>
|
||||
<text macro="publisher"/>
|
||||
<text variable="medium"/>
|
||||
<text macro="access"/>
|
||||
</group>
|
||||
</else-if>
|
||||
<else>
|
||||
<text macro="author" suffix=". "/>
|
||||
<text macro="title" suffix=". "/>
|
||||
<text macro="container-contributors"/>
|
||||
<text macro="secondary-contributors"/>
|
||||
<text macro="container-title"/>
|
||||
<text variable="collection-title" prefix=": " suffix="."/>
|
||||
<text macro="locators"/>
|
||||
<group delimiter=". " prefix=". " suffix=". ">
|
||||
<text macro="event"/>
|
||||
</group>
|
||||
<text variable="publisher-place"/>
|
||||
<text variable="publisher" suffix=", "/>
|
||||
<text macro="issued" prefix=", " suffix=". "/>
|
||||
<text macro="access"/>
|
||||
<text variable="medium"/>
|
||||
</else>
|
||||
</choose>
|
||||
</layout>
|
||||
</bibliography>
|
||||
</style>
|
||||
@@ -0,0 +1,176 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<style xmlns="http://purl.org/net/xbiblio/csl" class="in-text" version="1.0" demote-non-dropping-particle="sort-only" default-locale="en-US">
|
||||
<info>
|
||||
<title>BibTeX generic citation style</title>
|
||||
<id>http://www.zotero.org/styles/bibtex</id>
|
||||
<link href="http://www.zotero.org/styles/bibtex" rel="self"/>
|
||||
<link href="http://www.bibtex.org/" rel="documentation"/>
|
||||
<author>
|
||||
<name>Markus Schaffner</name>
|
||||
</author>
|
||||
<contributor>
|
||||
<name>Richard Karnesky</name>
|
||||
<email>karnesky+zotero@gmail.com</email>
|
||||
<uri>http://arc.nucapt.northwestern.edu/Richard_Karnesky</uri>
|
||||
</contributor>
|
||||
<category citation-format="author-date"/>
|
||||
<category field="generic-base"/>
|
||||
<updated>2012-09-14T21:22:32+00:00</updated>
|
||||
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
|
||||
</info>
|
||||
<macro name="zotero2bibtexType">
|
||||
<choose>
|
||||
<if type="bill book graphic legal_case legislation motion_picture report song" match="any">
|
||||
<text value="book"/>
|
||||
</if>
|
||||
<else-if type="chapter" match="any">
|
||||
<text value="inbook"/>
|
||||
</else-if>
|
||||
<else-if type="article article-journal article-magazine article-newspaper" match="any">
|
||||
<text value="article"/>
|
||||
</else-if>
|
||||
<else-if type="thesis" match="any">
|
||||
<text value="phdthesis"/>
|
||||
</else-if>
|
||||
<else-if type="manuscript" match="any">
|
||||
<text value="unpublished"/>
|
||||
</else-if>
|
||||
<else-if type="paper-conference" match="any">
|
||||
<text value="inproceedings"/>
|
||||
</else-if>
|
||||
<else-if type="report" match="any">
|
||||
<text value="techreport"/>
|
||||
</else-if>
|
||||
<else>
|
||||
<text value="misc"/>
|
||||
</else>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="citeKey">
|
||||
<group delimiter="_">
|
||||
<text macro="author-short" text-case="lowercase"/>
|
||||
<text macro="issued-year"/>
|
||||
</group>
|
||||
</macro>
|
||||
<macro name="author-short">
|
||||
<names variable="author">
|
||||
<name form="short" delimiter="_" delimiter-precedes-last="always" et-al-min="11" et-al-use-first="10"/>
|
||||
<substitute>
|
||||
<names variable="editor"/>
|
||||
<names variable="translator"/>
|
||||
<choose>
|
||||
<if type="bill book graphic legal_case legislation motion_picture report song" match="any">
|
||||
<text variable="title" form="short"/>
|
||||
</if>
|
||||
<else>
|
||||
<text variable="title" form="short"/>
|
||||
</else>
|
||||
</choose>
|
||||
</substitute>
|
||||
</names>
|
||||
</macro>
|
||||
<macro name="issued-year">
|
||||
<date variable="issued">
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
</macro>
|
||||
<macro name="issued-month">
|
||||
<date variable="issued">
|
||||
<date-part name="month" form="short" strip-periods="true"/>
|
||||
</date>
|
||||
</macro>
|
||||
<macro name="author">
|
||||
<names variable="author">
|
||||
<name sort-separator=", " delimiter=" and " delimiter-precedes-last="always" name-as-sort-order="all"/>
|
||||
</names>
|
||||
</macro>
|
||||
<macro name="editor-translator">
|
||||
<names variable="editor translator" delimiter=", ">
|
||||
<name sort-separator=", " delimiter=" and " delimiter-precedes-last="always" name-as-sort-order="all"/>
|
||||
</names>
|
||||
</macro>
|
||||
<macro name="title">
|
||||
<text variable="title"/>
|
||||
</macro>
|
||||
<macro name="number">
|
||||
<text variable="issue"/>
|
||||
<text variable="number"/>
|
||||
</macro>
|
||||
<macro name="container-title">
|
||||
<choose>
|
||||
<if type="chapter paper-conference" match="any">
|
||||
<text variable="container-title" prefix=" booktitle={" suffix="}"/>
|
||||
</if>
|
||||
<else>
|
||||
<text variable="container-title" prefix=" journal={" suffix="}"/>
|
||||
</else>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="publisher">
|
||||
<choose>
|
||||
<if type="thesis">
|
||||
<text variable="publisher" prefix=" school={" suffix="}"/>
|
||||
</if>
|
||||
<else-if type="report">
|
||||
<text variable="publisher" prefix=" institution={" suffix="}"/>
|
||||
</else-if>
|
||||
<else>
|
||||
<text variable="publisher" prefix=" publisher={" suffix="}"/>
|
||||
</else>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="pages">
|
||||
<text variable="page"/>
|
||||
</macro>
|
||||
<macro name="edition">
|
||||
<text variable="edition"/>
|
||||
</macro>
|
||||
<citation disambiguate-add-year-suffix="true" disambiguate-add-names="false" disambiguate-add-givenname="false" collapse="year">
|
||||
<sort>
|
||||
<key macro="author"/>
|
||||
<key variable="issued"/>
|
||||
</sort>
|
||||
<layout delimiter="_">
|
||||
<text macro="citeKey"/>
|
||||
</layout>
|
||||
</citation>
|
||||
<bibliography hanging-indent="false">
|
||||
<sort>
|
||||
<key macro="author"/>
|
||||
<key variable="issued"/>
|
||||
</sort>
|
||||
<layout>
|
||||
<text macro="zotero2bibtexType" prefix=" @"/>
|
||||
<group prefix="{" suffix=" }" delimiter=", ">
|
||||
<text macro="citeKey"/>
|
||||
<text variable="publisher-place" prefix=" place={" suffix="}"/>
|
||||
<!--Fix This-->
|
||||
<text variable="chapter-number" prefix=" chapter={" suffix="}"/>
|
||||
<!--Fix This-->
|
||||
<text macro="edition" prefix=" edition={" suffix="}"/>
|
||||
<!--Is this in CSL? <text variable="type" prefix=" type={" suffix="}"/>-->
|
||||
<text variable="collection-title" prefix=" series={" suffix="}"/>
|
||||
<text macro="title" prefix=" title={" suffix="}"/>
|
||||
<text variable="volume" prefix=" volume={" suffix="}"/>
|
||||
<!--Not in CSL<text variable="rights" prefix=" rights={" suffix="}"/>-->
|
||||
<text variable="ISBN" prefix=" ISBN={" suffix="}"/>
|
||||
<text variable="ISSN" prefix=" ISSN={" suffix="}"/>
|
||||
<!--Not in CSL <text variable="LCCN" prefix=" callNumber={" suffix="}"/>-->
|
||||
<text variable="archive_location" prefix=" archiveLocation={" suffix="}"/>
|
||||
<text variable="URL" prefix=" url={" suffix="}"/>
|
||||
<text variable="DOI" prefix=" DOI={" suffix="}"/>
|
||||
<text variable="abstract" prefix=" abstractNote={" suffix="}"/>
|
||||
<text variable="note" prefix=" note={" suffix="}"/>
|
||||
<text macro="number" prefix=" number={" suffix="}"/>
|
||||
<text macro="container-title"/>
|
||||
<text macro="publisher"/>
|
||||
<text macro="author" prefix=" author={" suffix="}"/>
|
||||
<text macro="editor-translator" prefix=" editor={" suffix="}"/>
|
||||
<text macro="issued-year" prefix=" year={" suffix="}"/>
|
||||
<text macro="issued-month" prefix=" month={" suffix="}"/>
|
||||
<text macro="pages" prefix=" pages={" suffix="}"/>
|
||||
<text variable="collection-title" prefix=" collection={" suffix="}"/>
|
||||
</group>
|
||||
</layout>
|
||||
</bibliography>
|
||||
</style>
|
||||
@@ -0,0 +1,658 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<style xmlns="http://purl.org/net/xbiblio/csl" class="in-text" version="1.0" demote-non-dropping-particle="display-and-sort" page-range-format="chicago">
|
||||
<info>
|
||||
<title>Chicago Manual of Style 17th edition (author-date)</title>
|
||||
<id>http://www.zotero.org/styles/chicago-author-date</id>
|
||||
<link href="http://www.zotero.org/styles/chicago-author-date" rel="self"/>
|
||||
<link href="http://www.chicagomanualofstyle.org/tools_citationguide.html" rel="documentation"/>
|
||||
<author>
|
||||
<name>Julian Onions</name>
|
||||
<email>julian.onions@gmail.com</email>
|
||||
</author>
|
||||
<contributor>
|
||||
<name>Sebastian Karcher</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Richard Karnesky</name>
|
||||
<email>karnesky+zotero@gmail.com</email>
|
||||
<uri>http://arc.nucapt.northwestern.edu/Richard_Karnesky</uri>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Andrew Dunning</name>
|
||||
<email>andrew.dunning@utoronto.ca</email>
|
||||
<uri>https://orcid.org/0000-0003-0464-5036</uri>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Matthew Roth</name>
|
||||
<email>matthew.g.roth@yale.edu</email>
|
||||
<uri> https://orcid.org/0000-0001-7902-6331</uri>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Brenton M. Wiernik</name>
|
||||
</contributor>
|
||||
<category citation-format="author-date"/>
|
||||
<category field="generic-base"/>
|
||||
<summary>The author-date variant of the Chicago style</summary>
|
||||
<updated>2018-01-24T12:00:00+00:00</updated>
|
||||
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
|
||||
</info>
|
||||
<locale xml:lang="en">
|
||||
<terms>
|
||||
<term name="editor" form="verb-short">ed.</term>
|
||||
<term name="container-author" form="verb">by</term>
|
||||
<term name="translator" form="verb-short">trans.</term>
|
||||
<term name="editortranslator" form="verb">edited and translated by</term>
|
||||
<term name="translator" form="short">trans.</term>
|
||||
</terms>
|
||||
</locale>
|
||||
<macro name="secondary-contributors">
|
||||
<choose>
|
||||
<if type="chapter entry-dictionary entry-encyclopedia paper-conference" match="none">
|
||||
<group delimiter=". ">
|
||||
<names variable="editor translator" delimiter=". ">
|
||||
<label form="verb" text-case="capitalize-first" suffix=" "/>
|
||||
<name and="text" delimiter=", "/>
|
||||
</names>
|
||||
<names variable="director" delimiter=". ">
|
||||
<label form="verb" text-case="capitalize-first" suffix=" "/>
|
||||
<name and="text" delimiter=", "/>
|
||||
</names>
|
||||
</group>
|
||||
</if>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="container-contributors">
|
||||
<choose>
|
||||
<if type="chapter entry-dictionary entry-encyclopedia paper-conference" match="any">
|
||||
<group prefix=", " delimiter=", ">
|
||||
<names variable="container-author" delimiter=", ">
|
||||
<label form="verb" suffix=" "/>
|
||||
<name and="text" delimiter=", "/>
|
||||
</names>
|
||||
<names variable="editor translator" delimiter=", ">
|
||||
<label form="verb" suffix=" "/>
|
||||
<name and="text" delimiter=", "/>
|
||||
</names>
|
||||
</group>
|
||||
</if>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="editor">
|
||||
<names variable="editor">
|
||||
<name name-as-sort-order="first" and="text" sort-separator=", " delimiter=", " delimiter-precedes-last="always"/>
|
||||
<label form="short" prefix=", "/>
|
||||
</names>
|
||||
</macro>
|
||||
<macro name="translator">
|
||||
<names variable="translator">
|
||||
<name name-as-sort-order="first" and="text" sort-separator=", " delimiter=", " delimiter-precedes-last="always"/>
|
||||
<label form="short" prefix=", "/>
|
||||
</names>
|
||||
</macro>
|
||||
<macro name="recipient">
|
||||
<choose>
|
||||
<if type="personal_communication">
|
||||
<choose>
|
||||
<if variable="genre">
|
||||
<text variable="genre" text-case="capitalize-first"/>
|
||||
</if>
|
||||
<else>
|
||||
<text term="letter" text-case="capitalize-first"/>
|
||||
</else>
|
||||
</choose>
|
||||
</if>
|
||||
</choose>
|
||||
<names variable="recipient" delimiter=", ">
|
||||
<label form="verb" prefix=" " text-case="lowercase" suffix=" "/>
|
||||
<name and="text" delimiter=", "/>
|
||||
</names>
|
||||
</macro>
|
||||
<macro name="substitute-title">
|
||||
<choose>
|
||||
<if type="article-magazine article-newspaper review review-book" match="any">
|
||||
<text macro="container-title"/>
|
||||
</if>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="contributors">
|
||||
<group delimiter=". ">
|
||||
<names variable="author">
|
||||
<name and="text" name-as-sort-order="first" sort-separator=", " delimiter=", " delimiter-precedes-last="always"/>
|
||||
<label form="short" prefix=", "/>
|
||||
<substitute>
|
||||
<names variable="editor"/>
|
||||
<names variable="translator"/>
|
||||
<names variable="director"/>
|
||||
<text macro="substitute-title"/>
|
||||
<text macro="title"/>
|
||||
</substitute>
|
||||
</names>
|
||||
<text macro="recipient"/>
|
||||
</group>
|
||||
</macro>
|
||||
<macro name="contributors-short">
|
||||
<names variable="author">
|
||||
<name form="short" and="text" delimiter=", " initialize-with=". "/>
|
||||
<substitute>
|
||||
<names variable="editor"/>
|
||||
<names variable="translator"/>
|
||||
<names variable="director"/>
|
||||
<text macro="substitute-title"/>
|
||||
<text macro="title"/>
|
||||
</substitute>
|
||||
</names>
|
||||
</macro>
|
||||
<macro name="interviewer">
|
||||
<names variable="interviewer" delimiter=", ">
|
||||
<label form="verb" prefix=" " text-case="capitalize-first" suffix=" "/>
|
||||
<name and="text" delimiter=", "/>
|
||||
</names>
|
||||
</macro>
|
||||
<macro name="archive">
|
||||
<group delimiter=". ">
|
||||
<text variable="archive_location" text-case="capitalize-first"/>
|
||||
<text variable="archive"/>
|
||||
<text variable="archive-place"/>
|
||||
</group>
|
||||
</macro>
|
||||
<macro name="access">
|
||||
<group delimiter=". ">
|
||||
<choose>
|
||||
<if type="graphic report" match="any">
|
||||
<text macro="archive"/>
|
||||
</if>
|
||||
<else-if type="article-journal bill book chapter legal_case legislation motion_picture paper-conference" match="none">
|
||||
<text macro="archive"/>
|
||||
</else-if>
|
||||
</choose>
|
||||
<choose>
|
||||
<if type="webpage post-weblog" match="any">
|
||||
<date variable="issued" form="text"/>
|
||||
</if>
|
||||
</choose>
|
||||
<choose>
|
||||
<if variable="issued" match="none">
|
||||
<group delimiter=" ">
|
||||
<text term="accessed" text-case="capitalize-first"/>
|
||||
<date variable="accessed" form="text"/>
|
||||
</group>
|
||||
</if>
|
||||
</choose>
|
||||
<choose>
|
||||
<if type="legal_case" match="none">
|
||||
<choose>
|
||||
<if variable="DOI">
|
||||
<text variable="DOI" prefix="https://doi.org/"/>
|
||||
</if>
|
||||
<else>
|
||||
<text variable="URL"/>
|
||||
</else>
|
||||
</choose>
|
||||
</if>
|
||||
</choose>
|
||||
</group>
|
||||
</macro>
|
||||
<macro name="title">
|
||||
<choose>
|
||||
<if variable="title" match="none">
|
||||
<choose>
|
||||
<if type="personal_communication" match="none">
|
||||
<text variable="genre" text-case="capitalize-first"/>
|
||||
</if>
|
||||
</choose>
|
||||
</if>
|
||||
<else-if type="bill book graphic legislation motion_picture song" match="any">
|
||||
<text variable="title" text-case="title" font-style="italic"/>
|
||||
<group prefix=" (" suffix=")" delimiter=" ">
|
||||
<text term="version"/>
|
||||
<text variable="version"/>
|
||||
</group>
|
||||
</else-if>
|
||||
<else-if variable="reviewed-author">
|
||||
<choose>
|
||||
<if variable="reviewed-title">
|
||||
<group delimiter=". ">
|
||||
<text variable="title" text-case="title" quotes="true"/>
|
||||
<group delimiter=", ">
|
||||
<text variable="reviewed-title" text-case="title" font-style="italic" prefix="Review of "/>
|
||||
<names variable="reviewed-author">
|
||||
<label form="verb-short" text-case="lowercase" suffix=" "/>
|
||||
<name and="text" delimiter=", "/>
|
||||
</names>
|
||||
</group>
|
||||
</group>
|
||||
</if>
|
||||
<else>
|
||||
<group delimiter=", ">
|
||||
<text variable="title" text-case="title" font-style="italic" prefix="Review of "/>
|
||||
<names variable="reviewed-author">
|
||||
<label form="verb-short" text-case="lowercase" suffix=" "/>
|
||||
<name and="text" delimiter=", "/>
|
||||
</names>
|
||||
</group>
|
||||
</else>
|
||||
</choose>
|
||||
</else-if>
|
||||
<else-if type="legal_case interview patent" match="any">
|
||||
<text variable="title"/>
|
||||
</else-if>
|
||||
<else>
|
||||
<text variable="title" text-case="title" quotes="true"/>
|
||||
</else>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="edition">
|
||||
<choose>
|
||||
<if type="bill book graphic legal_case legislation motion_picture report song" match="any">
|
||||
<choose>
|
||||
<if is-numeric="edition">
|
||||
<group delimiter=" " prefix=". ">
|
||||
<number variable="edition" form="ordinal"/>
|
||||
<text term="edition" form="short" strip-periods="true"/>
|
||||
</group>
|
||||
</if>
|
||||
<else>
|
||||
<text variable="edition" text-case="capitalize-first" prefix=". "/>
|
||||
</else>
|
||||
</choose>
|
||||
</if>
|
||||
<else-if type="chapter entry-dictionary entry-encyclopedia paper-conference" match="any">
|
||||
<choose>
|
||||
<if is-numeric="edition">
|
||||
<group delimiter=" " prefix=", ">
|
||||
<number variable="edition" form="ordinal"/>
|
||||
<text term="edition" form="short"/>
|
||||
</group>
|
||||
</if>
|
||||
<else>
|
||||
<text variable="edition" prefix=", "/>
|
||||
</else>
|
||||
</choose>
|
||||
</else-if>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="locators">
|
||||
<choose>
|
||||
<if type="article-journal">
|
||||
<choose>
|
||||
<if variable="volume">
|
||||
<text variable="volume" prefix=" "/>
|
||||
<group prefix=" (" suffix=")">
|
||||
<choose>
|
||||
<if variable="issue">
|
||||
<text variable="issue"/>
|
||||
</if>
|
||||
<else>
|
||||
<date variable="issued">
|
||||
<date-part name="month"/>
|
||||
</date>
|
||||
</else>
|
||||
</choose>
|
||||
</group>
|
||||
</if>
|
||||
<else-if variable="issue">
|
||||
<group delimiter=" " prefix=", ">
|
||||
<text term="issue" form="short"/>
|
||||
<text variable="issue"/>
|
||||
<date variable="issued" prefix="(" suffix=")">
|
||||
<date-part name="month"/>
|
||||
</date>
|
||||
</group>
|
||||
</else-if>
|
||||
<else>
|
||||
<date variable="issued" prefix=", ">
|
||||
<date-part name="month"/>
|
||||
</date>
|
||||
</else>
|
||||
</choose>
|
||||
</if>
|
||||
<else-if type="legal_case">
|
||||
<text variable="volume" prefix=", "/>
|
||||
<text variable="container-title" prefix=" "/>
|
||||
<text variable="page" prefix=" "/>
|
||||
</else-if>
|
||||
<else-if type="bill book graphic legal_case legislation motion_picture report song" match="any">
|
||||
<group prefix=". " delimiter=". ">
|
||||
<group>
|
||||
<text term="volume" form="short" text-case="capitalize-first" suffix=" "/>
|
||||
<number variable="volume" form="numeric"/>
|
||||
</group>
|
||||
<group>
|
||||
<number variable="number-of-volumes" form="numeric"/>
|
||||
<text term="volume" form="short" prefix=" " plural="true"/>
|
||||
</group>
|
||||
</group>
|
||||
</else-if>
|
||||
<else-if type="chapter entry-dictionary entry-encyclopedia paper-conference" match="any">
|
||||
<choose>
|
||||
<if variable="page" match="none">
|
||||
<group prefix=". ">
|
||||
<text term="volume" form="short" text-case="capitalize-first" suffix=" "/>
|
||||
<number variable="volume" form="numeric"/>
|
||||
</group>
|
||||
</if>
|
||||
</choose>
|
||||
</else-if>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="locators-chapter">
|
||||
<choose>
|
||||
<if type="chapter entry-dictionary entry-encyclopedia paper-conference" match="any">
|
||||
<choose>
|
||||
<if variable="page">
|
||||
<group prefix=", ">
|
||||
<text variable="volume" suffix=":"/>
|
||||
<text variable="page"/>
|
||||
</group>
|
||||
</if>
|
||||
</choose>
|
||||
</if>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="locators-article">
|
||||
<choose>
|
||||
<if type="article-newspaper">
|
||||
<group prefix=", " delimiter=", ">
|
||||
<group delimiter=" ">
|
||||
<text variable="edition"/>
|
||||
<text term="edition"/>
|
||||
</group>
|
||||
<group>
|
||||
<text term="section" form="short" suffix=" "/>
|
||||
<text variable="section"/>
|
||||
</group>
|
||||
</group>
|
||||
</if>
|
||||
<else-if type="article-journal">
|
||||
<choose>
|
||||
<if variable="volume issue" match="any">
|
||||
<text variable="page" prefix=": "/>
|
||||
</if>
|
||||
<else>
|
||||
<text variable="page" prefix=", "/>
|
||||
</else>
|
||||
</choose>
|
||||
</else-if>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="point-locators">
|
||||
<choose>
|
||||
<if variable="locator">
|
||||
<choose>
|
||||
<if locator="page" match="none">
|
||||
<choose>
|
||||
<if type="bill book graphic legal_case legislation motion_picture report song" match="any">
|
||||
<choose>
|
||||
<if variable="volume">
|
||||
<group>
|
||||
<text term="volume" form="short" suffix=" "/>
|
||||
<number variable="volume" form="numeric"/>
|
||||
<label variable="locator" form="short" prefix=", " suffix=" "/>
|
||||
</group>
|
||||
</if>
|
||||
<else>
|
||||
<label variable="locator" form="short" suffix=" "/>
|
||||
</else>
|
||||
</choose>
|
||||
</if>
|
||||
<else>
|
||||
<label variable="locator" form="short" suffix=" "/>
|
||||
</else>
|
||||
</choose>
|
||||
</if>
|
||||
<else-if type="bill book graphic legal_case legislation motion_picture report song" match="any">
|
||||
<number variable="volume" form="numeric" suffix=":"/>
|
||||
</else-if>
|
||||
</choose>
|
||||
<text variable="locator"/>
|
||||
</if>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="container-prefix">
|
||||
<text term="in" text-case="capitalize-first"/>
|
||||
</macro>
|
||||
<macro name="container-title">
|
||||
<choose>
|
||||
<if type="chapter entry-dictionary entry-encyclopedia paper-conference" match="any">
|
||||
<text macro="container-prefix" suffix=" "/>
|
||||
</if>
|
||||
</choose>
|
||||
<choose>
|
||||
<if type="webpage">
|
||||
<text variable="container-title" text-case="title"/>
|
||||
</if>
|
||||
<else-if type="legal_case" match="none">
|
||||
<group delimiter=" ">
|
||||
<text variable="container-title" text-case="title" font-style="italic"/>
|
||||
<choose>
|
||||
<if type="post-weblog">
|
||||
<text value="(blog)"/>
|
||||
</if>
|
||||
</choose>
|
||||
</group>
|
||||
</else-if>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="publisher">
|
||||
<group delimiter=": ">
|
||||
<text variable="publisher-place"/>
|
||||
<text variable="publisher"/>
|
||||
</group>
|
||||
</macro>
|
||||
<macro name="date">
|
||||
<choose>
|
||||
<if variable="issued">
|
||||
<group delimiter=" ">
|
||||
<date variable="original-date" form="text" date-parts="year" prefix="(" suffix=")"/>
|
||||
<date variable="issued">
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
</group>
|
||||
</if>
|
||||
<else-if variable="status">
|
||||
<text variable="status" text-case="capitalize-first"/>
|
||||
</else-if>
|
||||
<else>
|
||||
<text term="no date" form="short"/>
|
||||
</else>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="date-in-text">
|
||||
<choose>
|
||||
<if variable="issued">
|
||||
<group delimiter=" ">
|
||||
<date variable="original-date" form="text" date-parts="year" prefix="[" suffix="]"/>
|
||||
<date variable="issued">
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
</group>
|
||||
</if>
|
||||
<else-if variable="status">
|
||||
<text variable="status"/>
|
||||
</else-if>
|
||||
<else>
|
||||
<text term="no date" form="short"/>
|
||||
</else>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="day-month">
|
||||
<date variable="issued">
|
||||
<date-part name="month"/>
|
||||
<date-part name="day" prefix=" "/>
|
||||
</date>
|
||||
</macro>
|
||||
<macro name="collection-title">
|
||||
<choose>
|
||||
<if match="none" type="article-journal">
|
||||
<choose>
|
||||
<if match="none" is-numeric="collection-number">
|
||||
<group delimiter=", ">
|
||||
<text variable="collection-title" text-case="title"/>
|
||||
<text variable="collection-number"/>
|
||||
</group>
|
||||
</if>
|
||||
<else>
|
||||
<group delimiter=" ">
|
||||
<text variable="collection-title" text-case="title"/>
|
||||
<text variable="collection-number"/>
|
||||
</group>
|
||||
</else>
|
||||
</choose>
|
||||
</if>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="collection-title-journal">
|
||||
<choose>
|
||||
<if type="article-journal">
|
||||
<group delimiter=" ">
|
||||
<text variable="collection-title"/>
|
||||
<text variable="collection-number"/>
|
||||
</group>
|
||||
</if>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="event">
|
||||
<group delimiter=" ">
|
||||
<choose>
|
||||
<if variable="genre">
|
||||
<text term="presented at"/>
|
||||
</if>
|
||||
<else>
|
||||
<text term="presented at" text-case="capitalize-first"/>
|
||||
</else>
|
||||
</choose>
|
||||
<text variable="event"/>
|
||||
</group>
|
||||
</macro>
|
||||
<macro name="description">
|
||||
<choose>
|
||||
<if variable="interviewer" type="interview" match="any">
|
||||
<group delimiter=". ">
|
||||
<text macro="interviewer"/>
|
||||
<text variable="medium" text-case="capitalize-first"/>
|
||||
</group>
|
||||
</if>
|
||||
<else-if type="patent">
|
||||
<group delimiter=" " prefix=". ">
|
||||
<text variable="authority"/>
|
||||
<text variable="number"/>
|
||||
</group>
|
||||
</else-if>
|
||||
<else>
|
||||
<text variable="medium" text-case="capitalize-first" prefix=". "/>
|
||||
</else>
|
||||
</choose>
|
||||
<choose>
|
||||
<if variable="title" match="none"/>
|
||||
<else-if type="thesis personal_communication speech" match="any"/>
|
||||
<else>
|
||||
<group delimiter=" " prefix=". ">
|
||||
<text variable="genre" text-case="capitalize-first"/>
|
||||
<choose>
|
||||
<if type="report">
|
||||
<text variable="number"/>
|
||||
</if>
|
||||
</choose>
|
||||
</group>
|
||||
</else>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="issue">
|
||||
<choose>
|
||||
<if type="legal_case">
|
||||
<text variable="authority" prefix=". "/>
|
||||
</if>
|
||||
<else-if type="speech">
|
||||
<group prefix=". " delimiter=", ">
|
||||
<group delimiter=" ">
|
||||
<text variable="genre" text-case="capitalize-first"/>
|
||||
<text macro="event"/>
|
||||
</group>
|
||||
<text variable="event-place"/>
|
||||
<text macro="day-month"/>
|
||||
</group>
|
||||
</else-if>
|
||||
<else-if type="article-newspaper article-magazine personal_communication" match="any">
|
||||
<date variable="issued" form="text" prefix=", "/>
|
||||
</else-if>
|
||||
<else-if type="patent">
|
||||
<group delimiter=", " prefix=", ">
|
||||
<group delimiter=" ">
|
||||
<!--Needs Localization-->
|
||||
<text value="filed"/>
|
||||
<date variable="submitted" form="text"/>
|
||||
</group>
|
||||
<group delimiter=" ">
|
||||
<choose>
|
||||
<if variable="issued submitted" match="all">
|
||||
<text term="and"/>
|
||||
</if>
|
||||
</choose>
|
||||
<!--Needs Localization-->
|
||||
<text value="issued"/>
|
||||
<date variable="issued" form="text"/>
|
||||
</group>
|
||||
</group>
|
||||
</else-if>
|
||||
<else-if type="article-journal" match="any"/>
|
||||
<else>
|
||||
<group prefix=". " delimiter=", ">
|
||||
<choose>
|
||||
<if type="thesis">
|
||||
<text variable="genre" text-case="capitalize-first"/>
|
||||
</if>
|
||||
</choose>
|
||||
<text macro="publisher"/>
|
||||
</group>
|
||||
</else>
|
||||
</choose>
|
||||
</macro>
|
||||
<citation et-al-min="4" et-al-use-first="1" disambiguate-add-year-suffix="true" disambiguate-add-names="true" disambiguate-add-givenname="true" givenname-disambiguation-rule="primary-name" collapse="year" after-collapse-delimiter="; ">
|
||||
<layout prefix="(" suffix=")" delimiter="; ">
|
||||
<group delimiter=", ">
|
||||
<choose>
|
||||
<if variable="issued accessed" match="any">
|
||||
<group delimiter=" ">
|
||||
<text macro="contributors-short"/>
|
||||
<text macro="date-in-text"/>
|
||||
</group>
|
||||
</if>
|
||||
<!---comma before forthcoming and n.d.-->
|
||||
<else>
|
||||
<group delimiter=", ">
|
||||
<text macro="contributors-short"/>
|
||||
<text macro="date-in-text"/>
|
||||
</group>
|
||||
</else>
|
||||
</choose>
|
||||
<text macro="point-locators"/>
|
||||
</group>
|
||||
</layout>
|
||||
</citation>
|
||||
<bibliography hanging-indent="true" et-al-min="11" et-al-use-first="7" subsequent-author-substitute="———" entry-spacing="0">
|
||||
<sort>
|
||||
<key macro="contributors"/>
|
||||
<key variable="issued"/>
|
||||
<key variable="title"/>
|
||||
</sort>
|
||||
<layout suffix=".">
|
||||
<group delimiter=". ">
|
||||
<text macro="contributors"/>
|
||||
<text macro="date"/>
|
||||
<text macro="title"/>
|
||||
</group>
|
||||
<text macro="description"/>
|
||||
<text macro="secondary-contributors" prefix=". "/>
|
||||
<text macro="container-title" prefix=". "/>
|
||||
<text macro="container-contributors"/>
|
||||
<text macro="edition"/>
|
||||
<text macro="locators-chapter"/>
|
||||
<text macro="collection-title-journal" prefix=", " suffix=", "/>
|
||||
<text macro="locators"/>
|
||||
<text macro="collection-title" prefix=". "/>
|
||||
<text macro="issue"/>
|
||||
<text macro="locators-article"/>
|
||||
<text macro="access" prefix=". "/>
|
||||
</layout>
|
||||
</bibliography>
|
||||
</style>
|
||||
@@ -0,0 +1,318 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<style xmlns="http://purl.org/net/xbiblio/csl" class="in-text" version="1.0" demote-non-dropping-particle="sort-only" default-locale="en-GB">
|
||||
<info>
|
||||
<title>Cite Them Right 11th edition - Harvard</title>
|
||||
<id>http://www.zotero.org/styles/harvard-cite-them-right</id>
|
||||
<link href="http://www.zotero.org/styles/harvard-cite-them-right" rel="self"/>
|
||||
<link href="http://www.zotero.org/styles/harvard-cite-them-right-10th-edition" rel="template"/>
|
||||
<link href="http://www.citethemrightonline.com/" rel="documentation"/>
|
||||
<author>
|
||||
<name>Patrick O'Brien</name>
|
||||
</author>
|
||||
<category citation-format="author-date"/>
|
||||
<category field="generic-base"/>
|
||||
<summary>Harvard according to Cite Them Right, 11th edition.</summary>
|
||||
<updated>2021-09-01T07:43:59+00:00</updated>
|
||||
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
|
||||
</info>
|
||||
<locale xml:lang="en-GB">
|
||||
<terms>
|
||||
<term name="editor" form="short">
|
||||
<single>ed.</single>
|
||||
<multiple>eds</multiple>
|
||||
</term>
|
||||
<term name="editortranslator" form="verb">edited and translated by</term>
|
||||
<term name="edition" form="short">edn.</term>
|
||||
</terms>
|
||||
</locale>
|
||||
<macro name="editor">
|
||||
<choose>
|
||||
<if type="chapter paper-conference" match="any">
|
||||
<names variable="container-author" delimiter=", " suffix=", ">
|
||||
<name and="text" initialize-with=". " delimiter=", " sort-separator=", " name-as-sort-order="all"/>
|
||||
</names>
|
||||
<choose>
|
||||
<if variable="container-author" match="none">
|
||||
<names variable="editor translator" delimiter=", ">
|
||||
<name and="text" initialize-with="." name-as-sort-order="all"/>
|
||||
<label form="short" prefix=" (" suffix=")"/>
|
||||
</names>
|
||||
</if>
|
||||
</choose>
|
||||
</if>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="secondary-contributors">
|
||||
<choose>
|
||||
<if type="chapter paper-conference" match="none">
|
||||
<names variable="editor translator" delimiter=". ">
|
||||
<label form="verb" text-case="capitalize-first" suffix=" "/>
|
||||
<name and="text" initialize-with="."/>
|
||||
</names>
|
||||
</if>
|
||||
<else-if variable="container-author" match="any">
|
||||
<names variable="editor translator" delimiter=". ">
|
||||
<label form="verb" text-case="capitalize-first" suffix=" "/>
|
||||
<name and="text" initialize-with=". " delimiter=", "/>
|
||||
</names>
|
||||
</else-if>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="author">
|
||||
<names variable="author">
|
||||
<name and="text" delimiter-precedes-last="never" initialize-with="." name-as-sort-order="all"/>
|
||||
<label form="short" prefix=" (" suffix=")"/>
|
||||
<et-al font-style="italic"/>
|
||||
<substitute>
|
||||
<names variable="editor"/>
|
||||
<names variable="translator"/>
|
||||
<choose>
|
||||
<if type="article-newspaper article-magazine" match="any">
|
||||
<text variable="container-title" text-case="title" font-style="italic"/>
|
||||
</if>
|
||||
<else>
|
||||
<text macro="title"/>
|
||||
</else>
|
||||
</choose>
|
||||
</substitute>
|
||||
</names>
|
||||
</macro>
|
||||
<macro name="author-short">
|
||||
<names variable="author">
|
||||
<name form="short" and="text" delimiter=", " delimiter-precedes-last="never" initialize-with=". "/>
|
||||
<et-al font-style="italic"/>
|
||||
<substitute>
|
||||
<names variable="editor"/>
|
||||
<names variable="translator"/>
|
||||
<choose>
|
||||
<if type="article-newspaper article-magazine" match="any">
|
||||
<text variable="container-title" text-case="title" font-style="italic"/>
|
||||
</if>
|
||||
<else>
|
||||
<text macro="title"/>
|
||||
</else>
|
||||
</choose>
|
||||
</substitute>
|
||||
</names>
|
||||
</macro>
|
||||
<macro name="access">
|
||||
<choose>
|
||||
<if variable="DOI">
|
||||
<text variable="DOI" prefix="doi:"/>
|
||||
</if>
|
||||
<else-if variable="URL">
|
||||
<text term="available at" suffix=": " text-case="capitalize-first"/>
|
||||
<text variable="URL"/>
|
||||
<group prefix=" (" delimiter=": " suffix=")">
|
||||
<text term="accessed" text-case="capitalize-first"/>
|
||||
<date form="text" variable="accessed">
|
||||
<date-part name="day"/>
|
||||
<date-part name="month"/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
</group>
|
||||
</else-if>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="number-volumes">
|
||||
<choose>
|
||||
<if variable="volume" match="none">
|
||||
<group delimiter=" " prefix="(" suffix=")">
|
||||
<text variable="number-of-volumes"/>
|
||||
<label variable="volume" form="short" strip-periods="true"/>
|
||||
</group>
|
||||
</if>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="title">
|
||||
<choose>
|
||||
<if type="bill book legal_case legislation motion_picture report song thesis webpage graphic" match="any">
|
||||
<group delimiter=". ">
|
||||
<group delimiter=" ">
|
||||
<group delimiter=" ">
|
||||
<text variable="title" font-style="italic"/>
|
||||
<text variable="medium" prefix="[" suffix="]"/>
|
||||
</group>
|
||||
<text macro="number-volumes"/>
|
||||
</group>
|
||||
<text macro="edition"/>
|
||||
</group>
|
||||
</if>
|
||||
<else>
|
||||
<text variable="title" form="long" quotes="true"/>
|
||||
</else>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="publisher">
|
||||
<choose>
|
||||
<if type="thesis">
|
||||
<group delimiter=". ">
|
||||
<text variable="genre"/>
|
||||
<text variable="publisher"/>
|
||||
</group>
|
||||
</if>
|
||||
<else-if type="report">
|
||||
<group delimiter=". ">
|
||||
<group delimiter=" ">
|
||||
<text variable="genre"/>
|
||||
<text variable="number"/>
|
||||
</group>
|
||||
<group delimiter=": ">
|
||||
<text variable="publisher-place"/>
|
||||
<text variable="publisher"/>
|
||||
</group>
|
||||
</group>
|
||||
</else-if>
|
||||
<else-if type="article-journal article-newspaper article-magazine" match="none">
|
||||
<group delimiter=" ">
|
||||
<group delimiter=", ">
|
||||
<choose>
|
||||
<if type="speech" variable="event" match="any">
|
||||
<text variable="event" font-style="italic"/>
|
||||
</if>
|
||||
</choose>
|
||||
<group delimiter=": ">
|
||||
<text variable="publisher-place"/>
|
||||
<text variable="publisher"/>
|
||||
</group>
|
||||
</group>
|
||||
<group prefix="(" suffix=")" delimiter=", ">
|
||||
<text variable="collection-title"/>
|
||||
<text variable="collection-number"/>
|
||||
</group>
|
||||
</group>
|
||||
</else-if>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="year-date">
|
||||
<choose>
|
||||
<if variable="issued">
|
||||
<date variable="issued">
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<text variable="year-suffix"/>
|
||||
</if>
|
||||
<else>
|
||||
<text term="no date"/>
|
||||
<text variable="year-suffix" prefix=" "/>
|
||||
</else>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="locator">
|
||||
<choose>
|
||||
<if type="article-journal">
|
||||
<text variable="volume"/>
|
||||
<text variable="issue" prefix="(" suffix=")"/>
|
||||
</if>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="published-date">
|
||||
<choose>
|
||||
<if type="article-newspaper article-magazine post-weblog speech" match="any">
|
||||
<date variable="issued">
|
||||
<date-part name="day" suffix=" "/>
|
||||
<date-part name="month" form="long"/>
|
||||
</date>
|
||||
</if>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="pages">
|
||||
<choose>
|
||||
<if type="chapter paper-conference article-journal article article-magazine article-newspaper book review review-book report" match="any">
|
||||
<group delimiter=" ">
|
||||
<label variable="page" form="short"/>
|
||||
<text variable="page"/>
|
||||
</group>
|
||||
</if>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="container-title">
|
||||
<choose>
|
||||
<if variable="container-title">
|
||||
<group delimiter=". ">
|
||||
<group delimiter=" ">
|
||||
<text variable="container-title" font-style="italic"/>
|
||||
<choose>
|
||||
<if type="article article-journal" match="any">
|
||||
<choose>
|
||||
<if match="none" variable="page volume">
|
||||
<text value="Preprint" prefix="[" suffix="]"/>
|
||||
</if>
|
||||
</choose>
|
||||
</if>
|
||||
</choose>
|
||||
</group>
|
||||
<text macro="edition"/>
|
||||
</group>
|
||||
</if>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="edition">
|
||||
<choose>
|
||||
<if is-numeric="edition">
|
||||
<group delimiter=" ">
|
||||
<number variable="edition" form="ordinal"/>
|
||||
<text term="edition" form="short" strip-periods="true"/>
|
||||
</group>
|
||||
</if>
|
||||
<else>
|
||||
<text variable="edition"/>
|
||||
</else>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="container-prefix">
|
||||
<choose>
|
||||
<if type="chapter paper-conference" match="any">
|
||||
<text term="in"/>
|
||||
</if>
|
||||
</choose>
|
||||
</macro>
|
||||
<citation et-al-min="4" et-al-use-first="1" disambiguate-add-year-suffix="true" disambiguate-add-names="true" disambiguate-add-givenname="true" collapse="year">
|
||||
<sort>
|
||||
<key macro="year-date"/>
|
||||
</sort>
|
||||
<layout prefix="(" suffix=")" delimiter="; ">
|
||||
<group delimiter=", ">
|
||||
<group delimiter=", ">
|
||||
<text macro="author-short"/>
|
||||
<text macro="year-date"/>
|
||||
</group>
|
||||
<group>
|
||||
<label variable="locator" form="short" suffix=" "/>
|
||||
<text variable="locator"/>
|
||||
</group>
|
||||
</group>
|
||||
</layout>
|
||||
</citation>
|
||||
<bibliography and="text" et-al-min="4" et-al-use-first="1">
|
||||
<sort>
|
||||
<key macro="author"/>
|
||||
<key macro="year-date"/>
|
||||
<key variable="title"/>
|
||||
</sort>
|
||||
<layout suffix=".">
|
||||
<group delimiter=". ">
|
||||
<group delimiter=" ">
|
||||
<text macro="author"/>
|
||||
<text macro="year-date" prefix="(" suffix=")"/>
|
||||
<group delimiter=", ">
|
||||
<text macro="title"/>
|
||||
<group delimiter=" ">
|
||||
<text macro="container-prefix"/>
|
||||
<text macro="editor"/>
|
||||
<text macro="container-title"/>
|
||||
</group>
|
||||
</group>
|
||||
</group>
|
||||
<text macro="secondary-contributors"/>
|
||||
<text macro="publisher"/>
|
||||
</group>
|
||||
<group delimiter=", " prefix=", ">
|
||||
<text macro="locator"/>
|
||||
<text macro="published-date"/>
|
||||
<text macro="pages"/>
|
||||
</group>
|
||||
<text macro="access" prefix=". "/>
|
||||
</layout>
|
||||
</bibliography>
|
||||
</style>
|
||||
@@ -0,0 +1,453 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<style xmlns="http://purl.org/net/xbiblio/csl" class="in-text" version="1.0" demote-non-dropping-particle="sort-only">
|
||||
<info>
|
||||
<title>IEEE</title>
|
||||
<id>http://www.zotero.org/styles/ieee</id>
|
||||
<link href="http://www.zotero.org/styles/ieee" rel="self"/>
|
||||
<!-- <link href="https://ieeeauthorcenter.ieee.org/wp-content/uploads/IEEE-Reference-Guide.pdf" rel="documentation"/> - 2018 guidelines -->
|
||||
<link href="http://journals.ieeeauthorcenter.ieee.org/wp-content/uploads/sites/7/IEEE_Reference_Guide.pdf" rel="documentation"/>
|
||||
<link href="https://journals.ieeeauthorcenter.ieee.org/your-role-in-article-production/ieee-editorial-style-manual/" rel="documentation"/>
|
||||
<author>
|
||||
<name>Michael Berkowitz</name>
|
||||
<email>mberkowi@gmu.edu</email>
|
||||
</author>
|
||||
<contributor>
|
||||
<name>Julian Onions</name>
|
||||
<email>julian.onions@gmail.com</email>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Rintze Zelle</name>
|
||||
<uri>http://twitter.com/rintzezelle</uri>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Stephen Frank</name>
|
||||
<uri>http://www.zotero.org/sfrank</uri>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Sebastian Karcher</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Giuseppe Silano</name>
|
||||
<email>g.silano89@gmail.com</email>
|
||||
<uri>http://giuseppesilano.net</uri>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Patrick O'Brien</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Brenton M. Wiernik</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Oliver Couch</name>
|
||||
<email>oliver.couch@gmail.com</email>
|
||||
</contributor>
|
||||
<category citation-format="numeric"/>
|
||||
<category field="engineering"/>
|
||||
<category field="generic-base"/>
|
||||
<summary>IEEE style as per the 2021 guidelines, V 01.29.2021.</summary>
|
||||
<updated>2022-02-05T21:19:36-05:00</updated>
|
||||
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
|
||||
</info>
|
||||
<locale xml:lang="en">
|
||||
<date form="text">
|
||||
<date-part name="month" form="short" suffix=" "/>
|
||||
<date-part name="day" form="numeric-leading-zeros" suffix=", "/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<terms>
|
||||
<term name="chapter" form="short">ch.</term>
|
||||
<term name="presented at">presented at the</term>
|
||||
<term name="available at">available</term>
|
||||
</terms>
|
||||
</locale>
|
||||
<!-- Macros -->
|
||||
<macro name="status">
|
||||
<choose>
|
||||
<if variable="page issue volume" match="none">
|
||||
<text variable="status" text-case="capitalize-first" suffix="" font-weight="bold"/>
|
||||
</if>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="edition">
|
||||
<choose>
|
||||
<if type="bill book chapter graphic legal_case legislation motion_picture paper-conference report song" match="any">
|
||||
<choose>
|
||||
<if is-numeric="edition">
|
||||
<group delimiter=" ">
|
||||
<number variable="edition" form="ordinal"/>
|
||||
<text term="edition" form="short"/>
|
||||
</group>
|
||||
</if>
|
||||
<else>
|
||||
<text variable="edition" text-case="capitalize-first" suffix="."/>
|
||||
</else>
|
||||
</choose>
|
||||
</if>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="issued">
|
||||
<choose>
|
||||
<if type="article-journal report" match="any">
|
||||
<date variable="issued">
|
||||
<date-part name="month" form="short" suffix=" "/>
|
||||
<date-part name="year" form="long"/>
|
||||
</date>
|
||||
</if>
|
||||
<else-if type="bill book chapter graphic legal_case legislation song thesis" match="any">
|
||||
<date variable="issued">
|
||||
<date-part name="year" form="long"/>
|
||||
</date>
|
||||
</else-if>
|
||||
<else-if type="paper-conference" match="any">
|
||||
<date variable="issued">
|
||||
<date-part name="month" form="short"/>
|
||||
<date-part name="year" prefix=" "/>
|
||||
</date>
|
||||
</else-if>
|
||||
<else-if type="motion_picture" match="any">
|
||||
<date variable="issued" form="text" prefix="(" suffix=")"/>
|
||||
</else-if>
|
||||
<else>
|
||||
<date variable="issued" form="text"/>
|
||||
</else>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="author">
|
||||
<names variable="author">
|
||||
<name and="text" et-al-min="7" et-al-use-first="1" initialize-with=". "/>
|
||||
<label form="short" prefix=", " text-case="capitalize-first"/>
|
||||
<et-al font-style="italic"/>
|
||||
<substitute>
|
||||
<names variable="editor"/>
|
||||
<names variable="translator"/>
|
||||
</substitute>
|
||||
</names>
|
||||
</macro>
|
||||
<macro name="editor">
|
||||
<names variable="editor">
|
||||
<name initialize-with=". " delimiter=", " and="text"/>
|
||||
<label form="short" prefix=", " text-case="capitalize-first"/>
|
||||
</names>
|
||||
</macro>
|
||||
<macro name="locators">
|
||||
<group delimiter=", ">
|
||||
<text macro="edition"/>
|
||||
<group delimiter=" ">
|
||||
<text term="volume" form="short"/>
|
||||
<number variable="volume" form="numeric"/>
|
||||
</group>
|
||||
<group delimiter=" ">
|
||||
<number variable="number-of-volumes" form="numeric"/>
|
||||
<text term="volume" form="short" plural="true"/>
|
||||
</group>
|
||||
<group delimiter=" ">
|
||||
<text term="issue" form="short"/>
|
||||
<number variable="issue" form="numeric"/>
|
||||
</group>
|
||||
</group>
|
||||
</macro>
|
||||
<macro name="title">
|
||||
<choose>
|
||||
<if type="bill book graphic legal_case legislation motion_picture song" match="any">
|
||||
<text variable="title" font-style="italic"/>
|
||||
</if>
|
||||
<else>
|
||||
<text variable="title" quotes="true"/>
|
||||
</else>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="publisher">
|
||||
<choose>
|
||||
<if type="bill book chapter graphic legal_case legislation motion_picture paper-conference song" match="any">
|
||||
<group delimiter=": ">
|
||||
<text variable="publisher-place"/>
|
||||
<text variable="publisher"/>
|
||||
</group>
|
||||
</if>
|
||||
<else>
|
||||
<group delimiter=", ">
|
||||
<text variable="publisher"/>
|
||||
<text variable="publisher-place"/>
|
||||
</group>
|
||||
</else>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="event">
|
||||
<choose>
|
||||
<if type="paper-conference speech" match="any">
|
||||
<choose>
|
||||
<!-- Published Conference Paper -->
|
||||
<if variable="collection-editor editor editorial-director issue page volume" match="any">
|
||||
<group delimiter=", ">
|
||||
<group delimiter=" ">
|
||||
<text term="in"/>
|
||||
<text variable="container-title" font-style="italic"/>
|
||||
</group>
|
||||
<text variable="event-place"/>
|
||||
</group>
|
||||
</if>
|
||||
<!-- Unpublished Conference Paper -->
|
||||
<else>
|
||||
<group delimiter=", ">
|
||||
<group delimiter=" ">
|
||||
<text term="presented at"/>
|
||||
<text variable="event"/>
|
||||
</group>
|
||||
<text variable="event-place"/>
|
||||
</group>
|
||||
</else>
|
||||
</choose>
|
||||
</if>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="access">
|
||||
<choose>
|
||||
<if type="webpage post post-weblog" match="any">
|
||||
<!-- https://url.com/ (accessed Mon. DD, YYYY). -->
|
||||
<choose>
|
||||
<if variable="URL">
|
||||
<group prefix=" " delimiter=" ">
|
||||
<text variable="URL"/>
|
||||
<group delimiter=" " prefix="(" suffix=").">
|
||||
<text term="accessed"/>
|
||||
<date variable="accessed" form="text"/>
|
||||
</group>
|
||||
</group>
|
||||
</if>
|
||||
</choose>
|
||||
</if>
|
||||
<else-if match="any" variable="DOI">
|
||||
<!-- doi: 10.1000/xyz123. -->
|
||||
<text variable="DOI" prefix=" doi: " suffix="."/>
|
||||
</else-if>
|
||||
<else-if variable="URL">
|
||||
<!-- Accessed: Mon. DD, YYYY. [Medium]. Available: https://URL.com/ -->
|
||||
<group delimiter=". " prefix=" " suffix=". ">
|
||||
<!-- Accessed: Mon. DD, YYYY. -->
|
||||
<group delimiter=": ">
|
||||
<text term="accessed" text-case="capitalize-first"/>
|
||||
<date variable="accessed" form="text"/>
|
||||
</group>
|
||||
<!-- [Online Video]. -->
|
||||
<group prefix="[" suffix="]" delimiter=" ">
|
||||
<choose>
|
||||
<if variable="medium" match="any">
|
||||
<text variable="medium" text-case="capitalize-first"/>
|
||||
</if>
|
||||
<else>
|
||||
<text term="online" text-case="capitalize-first"/>
|
||||
<choose>
|
||||
<if type="motion_picture">
|
||||
<text term="video" text-case="capitalize-first"/>
|
||||
</if>
|
||||
</choose>
|
||||
</else>
|
||||
</choose>
|
||||
</group>
|
||||
</group>
|
||||
<!-- Available: https://URL.com/ -->
|
||||
<group delimiter=": " prefix=" ">
|
||||
<text term="available at" text-case="capitalize-first"/>
|
||||
<text variable="URL"/>
|
||||
</group>
|
||||
</else-if>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="page">
|
||||
<choose>
|
||||
<if type="article-journal" variable="number" match="all">
|
||||
<group delimiter=" ">
|
||||
<text value="Art."/>
|
||||
<text term="issue" form="short"/>
|
||||
<text variable="number"/>
|
||||
</group>
|
||||
</if>
|
||||
<else>
|
||||
<group delimiter=" ">
|
||||
<label variable="page" form="short"/>
|
||||
<text variable="page"/>
|
||||
</group>
|
||||
</else>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="citation-locator">
|
||||
<group delimiter=" ">
|
||||
<choose>
|
||||
<if locator="page">
|
||||
<label variable="locator" form="short"/>
|
||||
</if>
|
||||
<else>
|
||||
<label variable="locator" form="short" text-case="capitalize-first"/>
|
||||
</else>
|
||||
</choose>
|
||||
<text variable="locator"/>
|
||||
</group>
|
||||
</macro>
|
||||
<macro name="geographic-location">
|
||||
<group delimiter=", " suffix=".">
|
||||
<choose>
|
||||
<if variable="publisher-place">
|
||||
<text variable="publisher-place" text-case="title"/>
|
||||
</if>
|
||||
<else-if variable="event-place">
|
||||
<text variable="event-place" text-case="title"/>
|
||||
</else-if>
|
||||
</choose>
|
||||
</group>
|
||||
</macro>
|
||||
<!-- Citation -->
|
||||
<citation collapse="citation-number">
|
||||
<sort>
|
||||
<key variable="citation-number"/>
|
||||
</sort>
|
||||
<layout delimiter=", ">
|
||||
<group prefix="[" suffix="]" delimiter=", ">
|
||||
<text variable="citation-number"/>
|
||||
<text macro="citation-locator"/>
|
||||
</group>
|
||||
</layout>
|
||||
</citation>
|
||||
<!-- Bibliography -->
|
||||
<bibliography entry-spacing="0" second-field-align="flush">
|
||||
<layout>
|
||||
<!-- Citation Number -->
|
||||
<text variable="citation-number" prefix="[" suffix="]"/>
|
||||
<!-- Author(s) -->
|
||||
<text macro="author" suffix=", "/>
|
||||
<!-- Rest of Citation -->
|
||||
<choose>
|
||||
<!-- Specific Formats -->
|
||||
<if type="article-journal">
|
||||
<group delimiter=", ">
|
||||
<text macro="title"/>
|
||||
<text variable="container-title" font-style="italic" form="short"/>
|
||||
<text macro="locators"/>
|
||||
<text macro="page"/>
|
||||
<text macro="issued"/>
|
||||
<text macro="status"/>
|
||||
</group>
|
||||
<choose>
|
||||
<if variable="URL DOI" match="none">
|
||||
<text value="."/>
|
||||
</if>
|
||||
<else>
|
||||
<text value=","/>
|
||||
</else>
|
||||
</choose>
|
||||
<text macro="access"/>
|
||||
</if>
|
||||
<else-if type="paper-conference speech" match="any">
|
||||
<group delimiter=", " suffix=".">
|
||||
<text macro="title"/>
|
||||
<text macro="event"/>
|
||||
<text macro="issued"/>
|
||||
<text macro="locators"/>
|
||||
<text macro="page"/>
|
||||
<text macro="status"/>
|
||||
</group>
|
||||
<text macro="access"/>
|
||||
</else-if>
|
||||
<else-if type="report">
|
||||
<group delimiter=", " suffix=".">
|
||||
<text macro="title"/>
|
||||
<text macro="publisher"/>
|
||||
<group delimiter=" ">
|
||||
<text variable="genre"/>
|
||||
<text variable="number"/>
|
||||
</group>
|
||||
<text macro="issued"/>
|
||||
</group>
|
||||
<text macro="access"/>
|
||||
</else-if>
|
||||
<else-if type="thesis">
|
||||
<group delimiter=", " suffix=".">
|
||||
<text macro="title"/>
|
||||
<text variable="genre"/>
|
||||
<text macro="publisher"/>
|
||||
<text macro="issued"/>
|
||||
</group>
|
||||
<text macro="access"/>
|
||||
</else-if>
|
||||
<else-if type="webpage post-weblog post" match="any">
|
||||
<group delimiter=", " suffix=".">
|
||||
<text macro="title"/>
|
||||
<text variable="container-title" font-style="italic"/>
|
||||
<text macro="issued"/>
|
||||
</group>
|
||||
<text macro="access"/>
|
||||
</else-if>
|
||||
<else-if type="patent">
|
||||
<group delimiter=", ">
|
||||
<text macro="title"/>
|
||||
<text variable="number"/>
|
||||
<text macro="issued"/>
|
||||
</group>
|
||||
<text macro="access"/>
|
||||
</else-if>
|
||||
<!-- Online Video -->
|
||||
<else-if type="motion_picture">
|
||||
<text macro="geographic-location" suffix=". "/>
|
||||
<group delimiter=", " suffix=".">
|
||||
<text macro="title"/>
|
||||
<text macro="issued"/>
|
||||
</group>
|
||||
<text macro="access"/>
|
||||
</else-if>
|
||||
<!-- Generic/Fallback Formats -->
|
||||
<else-if type="bill book graphic legal_case legislation report song" match="any">
|
||||
<group delimiter=", " suffix=". ">
|
||||
<text macro="title"/>
|
||||
<text macro="locators"/>
|
||||
</group>
|
||||
<group delimiter=", " suffix=".">
|
||||
<text macro="publisher"/>
|
||||
<text macro="issued"/>
|
||||
<text macro="page"/>
|
||||
</group>
|
||||
<text macro="access"/>
|
||||
</else-if>
|
||||
<else-if type="article-magazine article-newspaper broadcast interview manuscript map patent personal_communication song speech thesis webpage" match="any">
|
||||
<group delimiter=", " suffix=".">
|
||||
<text macro="title"/>
|
||||
<text variable="container-title" font-style="italic"/>
|
||||
<text macro="locators"/>
|
||||
<text macro="publisher"/>
|
||||
<text macro="page"/>
|
||||
<text macro="issued"/>
|
||||
</group>
|
||||
<text macro="access"/>
|
||||
</else-if>
|
||||
<else-if type="chapter paper-conference" match="any">
|
||||
<group delimiter=", " suffix=", ">
|
||||
<text macro="title"/>
|
||||
<group delimiter=" ">
|
||||
<text term="in"/>
|
||||
<text variable="container-title" font-style="italic"/>
|
||||
</group>
|
||||
<text macro="locators"/>
|
||||
</group>
|
||||
<text macro="editor" suffix=" "/>
|
||||
<group delimiter=", " suffix=".">
|
||||
<text macro="publisher"/>
|
||||
<text macro="issued"/>
|
||||
<text macro="page"/>
|
||||
</group>
|
||||
<text macro="access"/>
|
||||
</else-if>
|
||||
<else>
|
||||
<group delimiter=", " suffix=". ">
|
||||
<text macro="title"/>
|
||||
<text variable="container-title" font-style="italic"/>
|
||||
<text macro="locators"/>
|
||||
</group>
|
||||
<group delimiter=", " suffix=".">
|
||||
<text macro="publisher"/>
|
||||
<text macro="page"/>
|
||||
<text macro="issued"/>
|
||||
</group>
|
||||
<text macro="access"/>
|
||||
</else>
|
||||
</choose>
|
||||
</layout>
|
||||
</bibliography>
|
||||
</style>
|
||||
+329
@@ -0,0 +1,329 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<style xmlns="http://purl.org/net/xbiblio/csl" class="in-text" version="1.0" demote-non-dropping-particle="never" page-range-format="minimal-two">
|
||||
<info>
|
||||
<title>Modern Language Association 9th edition</title>
|
||||
<title-short>MLA</title-short>
|
||||
<id>http://www.zotero.org/styles/modern-language-association</id>
|
||||
<link href="http://www.zotero.org/styles/modern-language-association" rel="self"/>
|
||||
<link href="http://style.mla.org" rel="documentation"/>
|
||||
<author>
|
||||
<name>Sebastian Karcher</name>
|
||||
</author>
|
||||
<category citation-format="author"/>
|
||||
<category field="generic-base"/>
|
||||
<summary>This style adheres to the MLA 9th edition handbook. Follows the structure of references as outlined in the MLA Manual closely</summary>
|
||||
<updated>2022-01-23T06:46:03-05:00</updated>
|
||||
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
|
||||
</info>
|
||||
<locale xml:lang="en">
|
||||
<date form="text">
|
||||
<date-part name="day" suffix=" "/>
|
||||
<date-part name="month" suffix=" " form="short"/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<terms>
|
||||
<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">June</term>
|
||||
<term name="month-07" form="short">July</term>
|
||||
<term name="month-08" form="short">Aug.</term>
|
||||
<term name="month-09" form="short">Sept.</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>
|
||||
<term name="translator" form="short">trans.</term>
|
||||
</terms>
|
||||
</locale>
|
||||
<macro name="author">
|
||||
<names variable="author">
|
||||
<name name-as-sort-order="first" and="text" delimiter-precedes-last="always" delimiter-precedes-et-al="always" initialize="false" initialize-with=". "/>
|
||||
<label form="long" prefix=", "/>
|
||||
<substitute>
|
||||
<names variable="editor"/>
|
||||
<names variable="translator"/>
|
||||
<text macro="title"/>
|
||||
</substitute>
|
||||
</names>
|
||||
</macro>
|
||||
<macro name="author-short">
|
||||
<group delimiter=", ">
|
||||
<names variable="author">
|
||||
<name form="short" initialize-with=". " and="text"/>
|
||||
<substitute>
|
||||
<names variable="editor"/>
|
||||
<names variable="translator"/>
|
||||
<text macro="title-short"/>
|
||||
</substitute>
|
||||
</names>
|
||||
<choose>
|
||||
<if disambiguate="true">
|
||||
<text macro="title-short"/>
|
||||
</if>
|
||||
</choose>
|
||||
</group>
|
||||
</macro>
|
||||
<macro name="title">
|
||||
<choose>
|
||||
<if variable="container-title" match="any">
|
||||
<text variable="title" quotes="true" text-case="title"/>
|
||||
</if>
|
||||
<else>
|
||||
<text variable="title" font-style="italic" text-case="title"/>
|
||||
</else>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="title-short">
|
||||
<choose>
|
||||
<if variable="container-title" match="any">
|
||||
<text variable="title" form="short" quotes="true" text-case="title"/>
|
||||
</if>
|
||||
<else>
|
||||
<text variable="title" form="short" font-style="italic" text-case="title"/>
|
||||
</else>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="container-title">
|
||||
<text variable="container-title" font-style="italic" text-case="title"/>
|
||||
</macro>
|
||||
<macro name="other-contributors">
|
||||
<choose>
|
||||
<if variable="container-title" match="any">
|
||||
<group delimiter=", ">
|
||||
<names variable="container-author" delimiter=", ">
|
||||
<label form="verb" suffix=" "/>
|
||||
<name and="text"/>
|
||||
</names>
|
||||
<names variable="editor translator" delimiter=", ">
|
||||
<label form="verb" suffix=" "/>
|
||||
<name and="text"/>
|
||||
</names>
|
||||
<names variable="director illustrator interviewer" delimiter=", ">
|
||||
<label form="verb" suffix=" "/>
|
||||
<name and="text"/>
|
||||
</names>
|
||||
</group>
|
||||
</if>
|
||||
<else>
|
||||
<group delimiter=", ">
|
||||
<names variable="container-author" delimiter=", ">
|
||||
<label form="verb" suffix=" " text-case="capitalize-first"/>
|
||||
<name and="text"/>
|
||||
</names>
|
||||
<names variable="editor translator" delimiter=", ">
|
||||
<label form="verb" suffix=" " text-case="capitalize-first"/>
|
||||
<name and="text"/>
|
||||
</names>
|
||||
<names variable="director illustrator interviewer" delimiter=", ">
|
||||
<label form="verb" suffix=" " text-case="capitalize-first"/>
|
||||
<name and="text"/>
|
||||
</names>
|
||||
</group>
|
||||
</else>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="version">
|
||||
<group delimiter=", ">
|
||||
<choose>
|
||||
<if is-numeric="edition">
|
||||
<group delimiter=" ">
|
||||
<number variable="edition" form="ordinal"/>
|
||||
<text term="edition" form="short"/>
|
||||
</group>
|
||||
</if>
|
||||
<else>
|
||||
<text variable="edition" text-case="capitalize-first"/>
|
||||
</else>
|
||||
</choose>
|
||||
<text variable="version"/>
|
||||
<text variable="medium"/>
|
||||
</group>
|
||||
</macro>
|
||||
<macro name="volume-lowercase">
|
||||
<group delimiter=" ">
|
||||
<text term="volume" form="short"/>
|
||||
<text variable="volume"/>
|
||||
</group>
|
||||
</macro>
|
||||
<macro name="number">
|
||||
<group delimiter=", ">
|
||||
<group>
|
||||
<choose>
|
||||
<!--lowercase if we have a preceding element-->
|
||||
<if variable="edition container-title" match="any">
|
||||
<text macro="volume-lowercase"/>
|
||||
</if>
|
||||
<!--other contributors preceding the volume-->
|
||||
<else-if variable="author" match="all">
|
||||
<choose>
|
||||
<if variable="editor translator container-author illustrator interviewer director" match="any">
|
||||
<text macro="volume-lowercase"/>
|
||||
</if>
|
||||
</choose>
|
||||
</else-if>
|
||||
<else-if variable="editor" match="all">
|
||||
<choose>
|
||||
<if variable="translator container-author illustrator interviewer director" match="any">
|
||||
<text macro="volume-lowercase"/>
|
||||
</if>
|
||||
</choose>
|
||||
</else-if>
|
||||
<else-if variable="container-author illustrator interviewer director" match="any">
|
||||
<text macro="volume-lowercase"/>
|
||||
</else-if>
|
||||
<else>
|
||||
<group delimiter=" ">
|
||||
<text term="volume" form="short" text-case="capitalize-first"/>
|
||||
<text variable="volume"/>
|
||||
</group>
|
||||
</else>
|
||||
</choose>
|
||||
</group>
|
||||
<group delimiter=" ">
|
||||
<text term="issue" form="short"/>
|
||||
<text variable="issue"/>
|
||||
</group>
|
||||
<choose>
|
||||
<if type="report">
|
||||
<text variable="genre"/>
|
||||
</if>
|
||||
</choose>
|
||||
<text variable="number"/>
|
||||
</group>
|
||||
</macro>
|
||||
<macro name="publisher">
|
||||
<choose>
|
||||
<if type="article-magazine article-newspaper article-journal" match="none">
|
||||
<text variable="publisher"/>
|
||||
</if>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="publication-date">
|
||||
<choose>
|
||||
<if type="book chapter paper-conference motion_picture" match="any">
|
||||
<date variable="issued" form="numeric" date-parts="year"/>
|
||||
</if>
|
||||
<else-if type="article-journal article-magazine" match="any">
|
||||
<date variable="issued" form="text" date-parts="year-month"/>
|
||||
</else-if>
|
||||
<else-if type="speech" match="none">
|
||||
<date variable="issued" form="text"/>
|
||||
</else-if>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="location">
|
||||
<group delimiter=", ">
|
||||
<group delimiter=" ">
|
||||
<label variable="page" form="short"/>
|
||||
<text variable="page"/>
|
||||
</group>
|
||||
<choose>
|
||||
<if variable="source" match="none">
|
||||
<text macro="URI"/>
|
||||
</if>
|
||||
</choose>
|
||||
</group>
|
||||
</macro>
|
||||
<macro name="container2-title">
|
||||
<group delimiter=", ">
|
||||
<choose>
|
||||
<if type="speech">
|
||||
<text variable="event"/>
|
||||
<date variable="event-date" form="text"/>
|
||||
<text variable="event-place"/>
|
||||
</if>
|
||||
</choose>
|
||||
<text variable="archive"/>
|
||||
<text variable="archive-place"/>
|
||||
<text variable="archive_location"/>
|
||||
</group>
|
||||
</macro>
|
||||
<macro name="container2-location">
|
||||
<choose>
|
||||
<if variable="source">
|
||||
<choose>
|
||||
<if variable="DOI URL" match="any">
|
||||
<group delimiter=", ">
|
||||
<text variable="source" font-style="italic"/>
|
||||
<text macro="URI"/>
|
||||
</group>
|
||||
</if>
|
||||
</choose>
|
||||
</if>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="URI">
|
||||
<choose>
|
||||
<if variable="DOI">
|
||||
<text variable="DOI" prefix="https://doi.org/"/>
|
||||
</if>
|
||||
<else>
|
||||
<text variable="URL"/>
|
||||
</else>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="accessed">
|
||||
<!--using accessed where we don't have an issued date; follows recommendation on p. 53 -->
|
||||
<choose>
|
||||
<if variable="issued" match="none">
|
||||
<group delimiter=" ">
|
||||
<text term="accessed" text-case="capitalize-first"/>
|
||||
<date variable="accessed" form="text"/>
|
||||
</group>
|
||||
</if>
|
||||
</choose>
|
||||
</macro>
|
||||
<citation et-al-min="3" et-al-use-first="1" disambiguate-add-names="true" disambiguate-add-givenname="true">
|
||||
<layout prefix="(" suffix=")" delimiter="; ">
|
||||
<choose>
|
||||
<if locator="page line" match="any">
|
||||
<group delimiter=" ">
|
||||
<text macro="author-short"/>
|
||||
<text variable="locator"/>
|
||||
</group>
|
||||
</if>
|
||||
<else>
|
||||
<group delimiter=", ">
|
||||
<text macro="author-short"/>
|
||||
<group>
|
||||
<label variable="locator" form="short"/>
|
||||
<text variable="locator"/>
|
||||
</group>
|
||||
</group>
|
||||
</else>
|
||||
</choose>
|
||||
</layout>
|
||||
</citation>
|
||||
<bibliography hanging-indent="true" et-al-min="3" et-al-use-first="1" line-spacing="2" entry-spacing="0" subsequent-author-substitute="---">
|
||||
<sort>
|
||||
<key macro="author"/>
|
||||
<key variable="title"/>
|
||||
</sort>
|
||||
<layout suffix=".">
|
||||
<group delimiter=". ">
|
||||
<text macro="author"/>
|
||||
<text macro="title"/>
|
||||
<date variable="original-date" form="numeric" date-parts="year"/>
|
||||
<group delimiter=", ">
|
||||
<!---This group corresponds to MLA's "Container 1"-->
|
||||
<text macro="container-title"/>
|
||||
<text macro="other-contributors"/>
|
||||
<text macro="version"/>
|
||||
<text macro="number"/>
|
||||
<text macro="publisher"/>
|
||||
<text macro="publication-date"/>
|
||||
<text macro="location"/>
|
||||
</group>
|
||||
<group delimiter=", ">
|
||||
<!---This group corresponds to MLA's "Container 2"-->
|
||||
<!--currently just using this one for archival info-->
|
||||
<text macro="container2-title"/>
|
||||
<text macro="container2-location"/>
|
||||
</group>
|
||||
<text macro="accessed"/>
|
||||
</group>
|
||||
</layout>
|
||||
</bibliography>
|
||||
</style>
|
||||
+869
@@ -0,0 +1,869 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<style xmlns="http://purl.org/net/xbiblio/csl" class="note" version="1.0" demote-non-dropping-particle="sort-only" default-locale="en-US">
|
||||
<info>
|
||||
<title>Turabian 8th edition (full note)</title>
|
||||
<id>http://www.zotero.org/styles/turabian-fullnote-bibliography</id>
|
||||
<link href="http://www.zotero.org/styles/turabian-fullnote-bibliography" rel="self"/>
|
||||
<link href="http://www.press.uchicago.edu/books/turabian/turabian_citationguide.html" rel="documentation"/>
|
||||
<author>
|
||||
<name>Elena Razlogova</name>
|
||||
<email>elena.razlogova@gmail.com</email>
|
||||
</author>
|
||||
<contributor>
|
||||
<name>Sebastian Karcher</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Brenton M. Wiernik</name>
|
||||
</contributor>
|
||||
<category citation-format="note"/>
|
||||
<category field="history"/>
|
||||
<summary>Turabian note style, a variant of Chicago for students</summary>
|
||||
<updated>2012-10-25T21:15:26+00:00</updated>
|
||||
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
|
||||
</info>
|
||||
<locale>
|
||||
<terms>
|
||||
<term name="editor" form="verb-short">ed.</term>
|
||||
<term name="translator" form="verb-short">trans.</term>
|
||||
<term name="translator" form="short">trans.</term>
|
||||
</terms>
|
||||
</locale>
|
||||
<macro name="editor-translator">
|
||||
<group delimiter=", ">
|
||||
<choose>
|
||||
<if variable="author">
|
||||
<names variable="editor" delimiter=", ">
|
||||
<label form="verb-short" suffix=" "/>
|
||||
<name and="text" delimiter=", "/>
|
||||
</names>
|
||||
<choose>
|
||||
<if variable="container-author">
|
||||
<group>
|
||||
<names variable="container-author">
|
||||
<label form="verb-short" prefix=" " suffix=" "/>
|
||||
<name and="text" delimiter=", "/>
|
||||
</names>
|
||||
</group>
|
||||
</if>
|
||||
</choose>
|
||||
</if>
|
||||
</choose>
|
||||
<choose>
|
||||
<if variable="author editor" match="any">
|
||||
<names variable="translator" delimiter=", ">
|
||||
<label form="verb-short" suffix=" "/>
|
||||
<name and="text" delimiter=", "/>
|
||||
</names>
|
||||
</if>
|
||||
</choose>
|
||||
</group>
|
||||
</macro>
|
||||
<macro name="secondary-contributors-note">
|
||||
<choose>
|
||||
<if type="chapter paper-conference" match="none">
|
||||
<text macro="editor-translator"/>
|
||||
</if>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="container-contributors-note">
|
||||
<choose>
|
||||
<if type="chapter paper-conference" match="any">
|
||||
<text macro="editor-translator"/>
|
||||
</if>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="secondary-contributors">
|
||||
<choose>
|
||||
<if type="chapter paper-conference" match="none">
|
||||
<group delimiter=". ">
|
||||
<choose>
|
||||
<if variable="author">
|
||||
<names variable="editor" delimiter=". ">
|
||||
<label form="verb" text-case="capitalize-first" suffix=" "/>
|
||||
<name and="text" delimiter=", "/>
|
||||
</names>
|
||||
</if>
|
||||
</choose>
|
||||
<choose>
|
||||
<if variable="author editor" match="any">
|
||||
<names variable="translator" delimiter=". ">
|
||||
<label form="verb" text-case="capitalize-first" suffix=" "/>
|
||||
<name and="text" delimiter=", "/>
|
||||
</names>
|
||||
</if>
|
||||
</choose>
|
||||
</group>
|
||||
</if>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="container-contributors">
|
||||
<choose>
|
||||
<if type="chapter paper-conference" match="any">
|
||||
<group delimiter=", ">
|
||||
<choose>
|
||||
<if variable="author">
|
||||
<names variable="editor" delimiter=", ">
|
||||
<label form="verb" suffix=" "/>
|
||||
<name and="text" delimiter=", "/>
|
||||
</names>
|
||||
<choose>
|
||||
<if variable="container-author">
|
||||
<group>
|
||||
<names variable="container-author">
|
||||
<label form="verb-short" prefix=" " suffix=" "/>
|
||||
<name and="text" delimiter=", "/>
|
||||
</names>
|
||||
</group>
|
||||
</if>
|
||||
</choose>
|
||||
</if>
|
||||
</choose>
|
||||
<choose>
|
||||
<if variable="author editor" match="any">
|
||||
<names variable="translator" delimiter=", ">
|
||||
<label form="verb" suffix=" "/>
|
||||
<name and="text" delimiter=", "/>
|
||||
</names>
|
||||
</if>
|
||||
</choose>
|
||||
</group>
|
||||
</if>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="recipient-note">
|
||||
<names variable="recipient" delimiter=", ">
|
||||
<label form="verb" prefix=" " suffix=" "/>
|
||||
<name and="text" delimiter=", "/>
|
||||
</names>
|
||||
</macro>
|
||||
<macro name="contributors-note">
|
||||
<names variable="author">
|
||||
<name and="text" sort-separator=", " delimiter=", "/>
|
||||
<label form="short" prefix=", "/>
|
||||
<substitute>
|
||||
<names variable="editor"/>
|
||||
<names variable="translator"/>
|
||||
</substitute>
|
||||
</names>
|
||||
<text macro="recipient-note"/>
|
||||
</macro>
|
||||
<macro name="recipient">
|
||||
<choose>
|
||||
<if type="personal_communication">
|
||||
<choose>
|
||||
<if variable="genre">
|
||||
<text variable="genre" text-case="capitalize-first"/>
|
||||
</if>
|
||||
<else>
|
||||
<text term="letter" text-case="capitalize-first"/>
|
||||
</else>
|
||||
</choose>
|
||||
</if>
|
||||
</choose>
|
||||
<text macro="recipient-note" prefix=" "/>
|
||||
</macro>
|
||||
<macro name="contributors">
|
||||
<names variable="author">
|
||||
<name name-as-sort-order="first" and="text" sort-separator=", " delimiter=", " delimiter-precedes-last="always"/>
|
||||
<label form="short" prefix=", "/>
|
||||
<substitute>
|
||||
<names variable="editor"/>
|
||||
<names variable="translator"/>
|
||||
</substitute>
|
||||
</names>
|
||||
<text macro="recipient" prefix=". "/>
|
||||
</macro>
|
||||
<macro name="recipient-short">
|
||||
<names variable="recipient">
|
||||
<label form="verb" prefix=" " suffix=" "/>
|
||||
<name form="short" and="text" delimiter=", "/>
|
||||
</names>
|
||||
</macro>
|
||||
<macro name="contributors-short">
|
||||
<names variable="author">
|
||||
<name form="short" and="text" delimiter=", "/>
|
||||
<substitute>
|
||||
<names variable="editor"/>
|
||||
<names variable="translator"/>
|
||||
</substitute>
|
||||
</names>
|
||||
<text macro="recipient-short"/>
|
||||
</macro>
|
||||
<macro name="contributors-sort">
|
||||
<names variable="author">
|
||||
<name name-as-sort-order="all" and="text" sort-separator=", " delimiter=", " delimiter-precedes-last="always"/>
|
||||
<substitute>
|
||||
<names variable="editor"/>
|
||||
<names variable="translator"/>
|
||||
</substitute>
|
||||
</names>
|
||||
</macro>
|
||||
<macro name="interviewer-note">
|
||||
<names variable="interviewer" delimiter=", ">
|
||||
<label form="verb" prefix=" " suffix=" "/>
|
||||
<name and="text" delimiter=", "/>
|
||||
</names>
|
||||
</macro>
|
||||
<macro name="interviewer">
|
||||
<names variable="interviewer" delimiter=", ">
|
||||
<label form="verb" prefix=" " text-case="capitalize-first" suffix=" "/>
|
||||
<name and="text" delimiter=", "/>
|
||||
</names>
|
||||
</macro>
|
||||
<macro name="title-note">
|
||||
<choose>
|
||||
<if variable="title" match="none">
|
||||
<text variable="genre"/>
|
||||
</if>
|
||||
<else-if type="bill book graphic legal_case legislation motion_picture report song" match="any">
|
||||
<text variable="title" font-style="italic" text-case="title"/>
|
||||
</else-if>
|
||||
<else>
|
||||
<text variable="title" quotes="true" text-case="title"/>
|
||||
</else>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="title">
|
||||
<choose>
|
||||
<if variable="title" match="none">
|
||||
<choose>
|
||||
<if type="personal_communication" match="none">
|
||||
<text variable="genre" text-case="capitalize-first"/>
|
||||
</if>
|
||||
</choose>
|
||||
</if>
|
||||
<else-if type="bill book graphic legal_case legislation motion_picture report song" match="any">
|
||||
<text variable="title" font-style="italic" text-case="title"/>
|
||||
</else-if>
|
||||
<else>
|
||||
<text variable="title" quotes="true" text-case="title"/>
|
||||
</else>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="title-short">
|
||||
<choose>
|
||||
<if variable="title" match="none">
|
||||
<choose>
|
||||
<if type="interview">
|
||||
<text term="interview"/>
|
||||
</if>
|
||||
<else-if type="manuscript speech" match="any">
|
||||
<text variable="genre" form="short"/>
|
||||
</else-if>
|
||||
<else-if type="personal_communication">
|
||||
<text macro="issued"/>
|
||||
</else-if>
|
||||
</choose>
|
||||
</if>
|
||||
<else-if type="bill book graphic legal_case legislation motion_picture report song" match="any">
|
||||
<text variable="title" form="short" font-style="italic" text-case="title"/>
|
||||
</else-if>
|
||||
<else>
|
||||
<text variable="title" form="short" quotes="true" text-case="title"/>
|
||||
</else>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="description-note">
|
||||
<group delimiter=", ">
|
||||
<text macro="interviewer-note"/>
|
||||
<text variable="medium"/>
|
||||
<choose>
|
||||
<if variable="title" match="none"/>
|
||||
<else-if type="thesis speech" match="any"/>
|
||||
<else>
|
||||
<text variable="genre"/>
|
||||
</else>
|
||||
</choose>
|
||||
</group>
|
||||
</macro>
|
||||
<macro name="description">
|
||||
<group delimiter=", ">
|
||||
<group delimiter=". ">
|
||||
<text macro="interviewer"/>
|
||||
<text variable="medium" text-case="capitalize-first"/>
|
||||
</group>
|
||||
<choose>
|
||||
<if variable="title" match="none"/>
|
||||
<else-if type="thesis speech" match="any"/>
|
||||
<else>
|
||||
<text variable="genre" text-case="capitalize-first"/>
|
||||
</else>
|
||||
</choose>
|
||||
</group>
|
||||
</macro>
|
||||
<macro name="container-title-note">
|
||||
<choose>
|
||||
<if type="chapter paper-conference" match="any">
|
||||
<text term="in" suffix=" "/>
|
||||
</if>
|
||||
</choose>
|
||||
<choose>
|
||||
<if type="legal_case" match="none">
|
||||
<choose>
|
||||
<if type="article-journal article-magazine" match="none">
|
||||
<!--title case every container title except magazines and journals-->
|
||||
<text variable="container-title" font-style="italic" text-case="title"/>
|
||||
</if>
|
||||
<else>
|
||||
<text variable="container-title" font-style="italic"/>
|
||||
</else>
|
||||
</choose>
|
||||
</if>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="container-title">
|
||||
<choose>
|
||||
<if type="chapter paper-conference" match="any">
|
||||
<text term="in" text-case="capitalize-first" suffix=" "/>
|
||||
</if>
|
||||
</choose>
|
||||
<choose>
|
||||
<if type="legal_case" match="none">
|
||||
<choose>
|
||||
<if type="article-journal article-magazine" match="none">
|
||||
<text variable="container-title" font-style="italic" text-case="title"/>
|
||||
</if>
|
||||
<else>
|
||||
<text variable="container-title" font-style="italic"/>
|
||||
</else>
|
||||
</choose>
|
||||
</if>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="collection-title">
|
||||
<text variable="collection-title"/>
|
||||
<text variable="collection-number" prefix=" "/>
|
||||
</macro>
|
||||
<macro name="edition-note">
|
||||
<choose>
|
||||
<if type="bill book chapter graphic legal_case legislation motion_picture paper-conference report song" match="any">
|
||||
<choose>
|
||||
<if is-numeric="edition">
|
||||
<group delimiter=" ">
|
||||
<number variable="edition" form="ordinal"/>
|
||||
<text term="edition" form="short"/>
|
||||
</group>
|
||||
</if>
|
||||
<else>
|
||||
<text variable="edition" suffix="."/>
|
||||
</else>
|
||||
</choose>
|
||||
</if>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="edition">
|
||||
<choose>
|
||||
<if type="bill book chapter graphic legal_case legislation motion_picture paper-conference report song" match="any">
|
||||
<choose>
|
||||
<if is-numeric="edition">
|
||||
<group delimiter=" ">
|
||||
<number variable="edition" form="ordinal"/>
|
||||
<text term="edition" form="short"/>
|
||||
</group>
|
||||
</if>
|
||||
<else>
|
||||
<text variable="edition" text-case="capitalize-first" suffix="."/>
|
||||
</else>
|
||||
</choose>
|
||||
</if>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="locators-note">
|
||||
<choose>
|
||||
<if type="article-journal">
|
||||
<text variable="volume" prefix=" "/>
|
||||
<group prefix=", ">
|
||||
<text term="issue" form="short" suffix=" "/>
|
||||
<number variable="issue"/>
|
||||
</group>
|
||||
</if>
|
||||
<else-if type="legal_case">
|
||||
<text variable="volume" prefix=", "/>
|
||||
<text variable="container-title" prefix=" "/>
|
||||
<text variable="page" prefix=" "/>
|
||||
<text variable="locator" prefix=", "/>
|
||||
</else-if>
|
||||
<else-if type="bill book chapter graphic legal_case legislation motion_picture paper-conference report song" match="any">
|
||||
<group prefix=", " delimiter=", ">
|
||||
<text macro="edition-note"/>
|
||||
<group>
|
||||
<text term="volume" form="short" suffix=" "/>
|
||||
<number variable="volume" form="numeric"/>
|
||||
</group>
|
||||
<choose>
|
||||
<if variable="locator" match="none">
|
||||
<group>
|
||||
<number variable="number-of-volumes" form="numeric"/>
|
||||
<text term="volume" form="short" prefix=" " plural="true"/>
|
||||
</group>
|
||||
</if>
|
||||
</choose>
|
||||
</group>
|
||||
</else-if>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="locators">
|
||||
<choose>
|
||||
<if type="article-journal">
|
||||
<text variable="volume" prefix=" "/>
|
||||
<text variable="issue" prefix=", no. "/>
|
||||
</if>
|
||||
<else-if type="legal_case">
|
||||
<text variable="volume" prefix=", "/>
|
||||
<text variable="container-title" prefix=" "/>
|
||||
<text variable="page" prefix=" "/>
|
||||
</else-if>
|
||||
<else-if type="bill book graphic legal_case legislation motion_picture report song" match="any">
|
||||
<group prefix=". " delimiter=". ">
|
||||
<text macro="edition"/>
|
||||
<group>
|
||||
<text term="volume" form="short" text-case="capitalize-first" suffix=" "/>
|
||||
<number variable="volume" form="numeric"/>
|
||||
</group>
|
||||
<group>
|
||||
<number variable="number-of-volumes" form="numeric"/>
|
||||
<text term="volume" form="short" prefix=" " plural="true"/>
|
||||
</group>
|
||||
</group>
|
||||
</else-if>
|
||||
<else-if type="chapter paper-conference" match="any">
|
||||
<group prefix=". " delimiter=". ">
|
||||
<choose>
|
||||
<if variable="page" match="none">
|
||||
<group>
|
||||
<text term="volume" form="short" text-case="capitalize-first" suffix=" "/>
|
||||
<number variable="volume" form="numeric"/>
|
||||
</group>
|
||||
</if>
|
||||
</choose>
|
||||
<text macro="edition"/>
|
||||
</group>
|
||||
</else-if>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="locators-newspaper">
|
||||
<choose>
|
||||
<if type="article-newspaper">
|
||||
<group delimiter=", ">
|
||||
<group delimiter=" ">
|
||||
<text variable="edition"/>
|
||||
<text term="edition"/>
|
||||
</group>
|
||||
<group>
|
||||
<text term="section" form="short" suffix=" "/>
|
||||
<text variable="section"/>
|
||||
</group>
|
||||
</group>
|
||||
</if>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="event">
|
||||
<group delimiter=" ">
|
||||
<choose>
|
||||
<if variable="genre">
|
||||
<text term="presented at"/>
|
||||
</if>
|
||||
<else>
|
||||
<text term="presented at" text-case="capitalize-first"/>
|
||||
</else>
|
||||
</choose>
|
||||
<text variable="event"/>
|
||||
</group>
|
||||
</macro>
|
||||
<macro name="publisher">
|
||||
<choose>
|
||||
<if type="thesis">
|
||||
<text variable="publisher"/>
|
||||
</if>
|
||||
<else>
|
||||
<group delimiter=": ">
|
||||
<text variable="publisher-place"/>
|
||||
<text variable="publisher"/>
|
||||
</group>
|
||||
</else>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="originally-published">
|
||||
<group delimiter=", ">
|
||||
<group delimiter=": ">
|
||||
<text variable="original-publisher-place"/>
|
||||
<text variable="original-publisher"/>
|
||||
</group>
|
||||
<choose>
|
||||
<if is-uncertain-date="original-date">
|
||||
<date variable="original-date" form="numeric" date-parts="year" prefix="[" suffix="?]"/>
|
||||
</if>
|
||||
<else>
|
||||
<date variable="original-date" form="numeric" date-parts="year"/>
|
||||
</else>
|
||||
</choose>
|
||||
</group>
|
||||
</macro>
|
||||
<macro name="reprint-note">
|
||||
<!--needs localization-->
|
||||
<choose>
|
||||
<if variable="original-date issued" match="all">
|
||||
<choose>
|
||||
<!--for whatever reason in notes, when we have both original and new publishers, reprint doesn't appear-->
|
||||
<if variable="original-publisher original-publisher-place" match="none">
|
||||
<text value="repr."/>
|
||||
</if>
|
||||
</choose>
|
||||
</if>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="reprint">
|
||||
<!--needs localization-->
|
||||
<choose>
|
||||
<if variable="original-date issued" match="all">
|
||||
<text value="reprint" text-case="capitalize-first"/>
|
||||
</if>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="issued">
|
||||
<choose>
|
||||
<if variable="issued">
|
||||
<choose>
|
||||
<if type="graphic report" match="any">
|
||||
<date variable="issued">
|
||||
<date-part name="month" suffix=" "/>
|
||||
<date-part name="day" suffix=", "/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
</if>
|
||||
<else-if type="legal_case">
|
||||
<text variable="authority" suffix=" "/>
|
||||
<date variable="issued">
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
</else-if>
|
||||
<else-if type="bill book chapter graphic legal_case legislation motion_picture paper-conference report song thesis" match="any">
|
||||
<date variable="issued">
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
</else-if>
|
||||
<else>
|
||||
<date variable="issued">
|
||||
<date-part name="month" suffix=" "/>
|
||||
<date-part name="day" suffix=", "/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
</else>
|
||||
</choose>
|
||||
</if>
|
||||
<else>
|
||||
<text term="no date" form="short"/>
|
||||
</else>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="point-locators-subsequent">
|
||||
<group>
|
||||
<choose>
|
||||
<if locator="page" match="none">
|
||||
<choose>
|
||||
<if type="bill book graphic legal_case legislation motion_picture report song" match="any">
|
||||
<choose>
|
||||
<if variable="volume">
|
||||
<group>
|
||||
<text term="volume" form="short" suffix=" "/>
|
||||
<number variable="volume" form="numeric"/>
|
||||
<label variable="locator" form="short" prefix=", " suffix=" "/>
|
||||
</group>
|
||||
</if>
|
||||
<else>
|
||||
<label variable="locator" form="short" suffix=" "/>
|
||||
</else>
|
||||
</choose>
|
||||
</if>
|
||||
</choose>
|
||||
</if>
|
||||
<else-if type="bill book graphic legal_case legislation motion_picture report song" match="any">
|
||||
<number variable="volume" form="numeric" suffix=":"/>
|
||||
</else-if>
|
||||
</choose>
|
||||
<text variable="locator"/>
|
||||
</group>
|
||||
</macro>
|
||||
<macro name="point-locators">
|
||||
<choose>
|
||||
<if variable="locator" match="none">
|
||||
<text macro="pages"/>
|
||||
</if>
|
||||
<else-if type="article-journal">
|
||||
<text variable="locator" prefix=": "/>
|
||||
</else-if>
|
||||
<else-if type="legal_case"/>
|
||||
<else>
|
||||
<group prefix=", ">
|
||||
<choose>
|
||||
<if locator="page" match="none">
|
||||
<label variable="locator" form="short" suffix=" "/>
|
||||
</if>
|
||||
</choose>
|
||||
<text variable="locator"/>
|
||||
</group>
|
||||
</else>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="pages">
|
||||
<choose>
|
||||
<if type="article-journal">
|
||||
<text variable="page" prefix=": "/>
|
||||
</if>
|
||||
<else-if type="chapter paper-conference" match="any">
|
||||
<text variable="page" prefix=", "/>
|
||||
</else-if>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="locators-chapter">
|
||||
<choose>
|
||||
<if type="chapter paper-conference" match="any">
|
||||
<choose>
|
||||
<if variable="page">
|
||||
<text variable="volume" suffix=":"/>
|
||||
<text variable="page"/>
|
||||
</if>
|
||||
</choose>
|
||||
</if>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="locators-journal">
|
||||
<choose>
|
||||
<if type="article-journal">
|
||||
<text variable="page" prefix=": "/>
|
||||
</if>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="archive-note">
|
||||
<group delimiter=", ">
|
||||
<text variable="archive_location"/>
|
||||
<text variable="archive"/>
|
||||
<text variable="archive-place"/>
|
||||
</group>
|
||||
</macro>
|
||||
<macro name="archive">
|
||||
<group delimiter=". ">
|
||||
<text variable="archive_location" text-case="capitalize-first"/>
|
||||
<text variable="archive"/>
|
||||
<text variable="archive-place"/>
|
||||
</group>
|
||||
</macro>
|
||||
<macro name="issue-note">
|
||||
<choose>
|
||||
<if type="article-journal legal_case" match="any">
|
||||
<text macro="issued" prefix=" (" suffix=")"/>
|
||||
</if>
|
||||
<else-if variable="publisher-place publisher" match="any">
|
||||
<group prefix=" (" suffix=")" delimiter=", ">
|
||||
<group delimiter=" ">
|
||||
<choose>
|
||||
<if variable="title" match="none"/>
|
||||
<else-if type="thesis speech" match="any">
|
||||
<text variable="genre"/>
|
||||
</else-if>
|
||||
</choose>
|
||||
<text macro="event"/>
|
||||
</group>
|
||||
<group delimiter="; ">
|
||||
<text macro="originally-published"/>
|
||||
<group delimiter=", ">
|
||||
<text macro="reprint-note"/>
|
||||
<text macro="publisher"/>
|
||||
</group>
|
||||
</group>
|
||||
<text macro="issued"/>
|
||||
</group>
|
||||
</else-if>
|
||||
<else-if type="webpage" match="none">
|
||||
<text macro="issued" prefix=", "/>
|
||||
</else-if>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="issue">
|
||||
<choose>
|
||||
<if type="article-journal legal_case" match="any">
|
||||
<text macro="issued" prefix=" (" suffix=")"/>
|
||||
</if>
|
||||
<else-if type="speech">
|
||||
<choose>
|
||||
<if variable="title" match="none"/>
|
||||
<else>
|
||||
<text variable="genre" text-case="capitalize-first" prefix=". "/>
|
||||
</else>
|
||||
</choose>
|
||||
<text macro="event" prefix=" "/>
|
||||
<text variable="event-place" prefix=", "/>
|
||||
<text macro="issued" prefix=", "/>
|
||||
</else-if>
|
||||
<else-if variable="publisher-place publisher" match="any">
|
||||
<group prefix=". " delimiter=", ">
|
||||
<choose>
|
||||
<if type="thesis">
|
||||
<text variable="genre" text-case="capitalize-first"/>
|
||||
</if>
|
||||
</choose>
|
||||
<group delimiter=". ">
|
||||
<text macro="originally-published"/>
|
||||
<group delimiter=", ">
|
||||
<text macro="reprint"/>
|
||||
<text macro="publisher"/>
|
||||
</group>
|
||||
</group>
|
||||
<text macro="issued"/>
|
||||
</group>
|
||||
</else-if>
|
||||
<else-if type="webpage" match="none">
|
||||
<text macro="issued" prefix=", "/>
|
||||
</else-if>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="access-note">
|
||||
<group delimiter=", ">
|
||||
<choose>
|
||||
<if type="graphic report" match="any">
|
||||
<text macro="archive-note"/>
|
||||
</if>
|
||||
<else-if type="article-journal article-magazine article-newspaper bill book chapter graphic legal_case legislation motion_picture paper-conference report song thesis" match="none">
|
||||
<text macro="archive-note"/>
|
||||
</else-if>
|
||||
</choose>
|
||||
<choose>
|
||||
<if type="legal_case" match="none">
|
||||
<choose>
|
||||
<if variable="URL">
|
||||
<group delimiter=", ">
|
||||
<group>
|
||||
<choose>
|
||||
<if type="webpage">
|
||||
<date variable="issued" prefix="last modified ">
|
||||
<date-part name="month" suffix=" "/>
|
||||
<date-part name="day" suffix=", "/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
</if>
|
||||
</choose>
|
||||
</group>
|
||||
<group>
|
||||
<text term="accessed" suffix=" "/>
|
||||
<date variable="accessed">
|
||||
<date-part name="month" suffix=" "/>
|
||||
<date-part name="day" suffix=", "/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
</group>
|
||||
<text variable="URL"/>
|
||||
</group>
|
||||
</if>
|
||||
</choose>
|
||||
</if>
|
||||
</choose>
|
||||
</group>
|
||||
</macro>
|
||||
<macro name="access">
|
||||
<group delimiter=". ">
|
||||
<choose>
|
||||
<if type="graphic report" match="any">
|
||||
<text macro="archive"/>
|
||||
</if>
|
||||
<else-if type="article-journal article-magazine article-newspaper bill book chapter graphic legal_case legislation motion_picture paper-conference report song thesis" match="none">
|
||||
<text macro="archive"/>
|
||||
</else-if>
|
||||
</choose>
|
||||
<choose>
|
||||
<if type="legal_case" match="none">
|
||||
<choose>
|
||||
<if variable="URL">
|
||||
<group delimiter=". ">
|
||||
<group>
|
||||
<choose>
|
||||
<if type="webpage">
|
||||
<date variable="issued" prefix="Last modified ">
|
||||
<date-part name="month" suffix=" "/>
|
||||
<date-part name="day" suffix=", "/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
</if>
|
||||
</choose>
|
||||
</group>
|
||||
<group>
|
||||
<text term="accessed" suffix=" " text-case="capitalize-first"/>
|
||||
<date variable="accessed">
|
||||
<date-part name="month" suffix=" "/>
|
||||
<date-part name="day" suffix=", "/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
</group>
|
||||
<text variable="URL"/>
|
||||
</group>
|
||||
</if>
|
||||
</choose>
|
||||
</if>
|
||||
</choose>
|
||||
</group>
|
||||
</macro>
|
||||
<citation et-al-min="4" et-al-use-first="1" disambiguate-add-names="true">
|
||||
<layout suffix="." delimiter="; ">
|
||||
<choose>
|
||||
<if position="ibid-with-locator">
|
||||
<group delimiter=", ">
|
||||
<text term="ibid"/>
|
||||
<text macro="point-locators-subsequent"/>
|
||||
</group>
|
||||
</if>
|
||||
<else-if position="ibid">
|
||||
<text term="ibid"/>
|
||||
</else-if>
|
||||
<else-if position="subsequent">
|
||||
<group delimiter=", ">
|
||||
<text macro="contributors-short"/>
|
||||
<text macro="title-short"/>
|
||||
<text macro="point-locators-subsequent"/>
|
||||
</group>
|
||||
</else-if>
|
||||
<else>
|
||||
<group delimiter=", ">
|
||||
<text macro="contributors-note"/>
|
||||
<text macro="title-note"/>
|
||||
<text macro="description-note"/>
|
||||
<text macro="secondary-contributors-note"/>
|
||||
<text macro="container-title-note"/>
|
||||
<text macro="container-contributors-note"/>
|
||||
</group>
|
||||
<text macro="locators-note"/>
|
||||
<text macro="collection-title" prefix=", "/>
|
||||
<text macro="issue-note"/>
|
||||
<text macro="locators-newspaper" prefix=", "/>
|
||||
<text macro="point-locators"/>
|
||||
<text macro="access-note" prefix=", "/>
|
||||
</else>
|
||||
</choose>
|
||||
</layout>
|
||||
</citation>
|
||||
<bibliography hanging-indent="true" et-al-min="11" et-al-use-first="7" subsequent-author-substitute="———" entry-spacing="1">
|
||||
<sort>
|
||||
<key macro="contributors-sort"/>
|
||||
<key variable="title"/>
|
||||
<key variable="genre"/>
|
||||
<key variable="issued"/>
|
||||
</sort>
|
||||
<layout suffix=".">
|
||||
<group delimiter=". ">
|
||||
<text macro="contributors"/>
|
||||
<text macro="title"/>
|
||||
<text macro="description"/>
|
||||
<text macro="secondary-contributors"/>
|
||||
<group delimiter=", ">
|
||||
<text macro="container-title"/>
|
||||
<text macro="container-contributors"/>
|
||||
<text macro="locators-chapter"/>
|
||||
</group>
|
||||
</group>
|
||||
<text macro="locators"/>
|
||||
<text macro="collection-title" prefix=". "/>
|
||||
<text macro="issue"/>
|
||||
<text macro="locators-newspaper" prefix=", "/>
|
||||
<text macro="locators-journal"/>
|
||||
<text macro="access" prefix=". "/>
|
||||
</layout>
|
||||
</bibliography>
|
||||
</style>
|
||||
@@ -0,0 +1,351 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<style xmlns="http://purl.org/net/xbiblio/csl" class="in-text" version="1.0" demote-non-dropping-particle="sort-only" page-range-format="minimal">
|
||||
<info>
|
||||
<title>Vancouver</title>
|
||||
<id>http://www.zotero.org/styles/vancouver</id>
|
||||
<link href="http://www.zotero.org/styles/vancouver" rel="self"/>
|
||||
<link href="http://www.nlm.nih.gov/bsd/uniform_requirements.html" rel="documentation"/>
|
||||
<author>
|
||||
<name>Michael Berkowitz</name>
|
||||
<email>mberkowi@gmu.edu</email>
|
||||
</author>
|
||||
<contributor>
|
||||
<name>Sean Takats</name>
|
||||
<email>stakats@gmu.edu</email>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Sebastian Karcher</name>
|
||||
</contributor>
|
||||
<category citation-format="numeric"/>
|
||||
<category field="medicine"/>
|
||||
<summary>Vancouver style as outlined by International Committee of Medical Journal Editors Uniform Requirements for Manuscripts Submitted to Biomedical Journals: Sample References</summary>
|
||||
<updated>2014-09-06T16:03:01+00:00</updated>
|
||||
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
|
||||
</info>
|
||||
<locale xml:lang="en">
|
||||
<date form="text" delimiter=" ">
|
||||
<date-part name="year"/>
|
||||
<date-part name="month" form="short" strip-periods="true"/>
|
||||
<date-part name="day"/>
|
||||
</date>
|
||||
<terms>
|
||||
<term name="collection-editor" form="long">
|
||||
<single>editor</single>
|
||||
<multiple>editors</multiple>
|
||||
</term>
|
||||
<term name="presented at">presented at</term>
|
||||
<term name="available at">available from</term>
|
||||
<term name="section" form="short">sect.</term>
|
||||
</terms>
|
||||
</locale>
|
||||
<locale xml:lang="fr">
|
||||
<date form="text" delimiter=" ">
|
||||
<date-part name="day"/>
|
||||
<date-part name="month" form="short" strip-periods="true"/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
</locale>
|
||||
<macro name="author">
|
||||
<names variable="author">
|
||||
<name sort-separator=" " initialize-with="" name-as-sort-order="all" delimiter=", " delimiter-precedes-last="always"/>
|
||||
<label form="long" prefix=", "/>
|
||||
<substitute>
|
||||
<names variable="editor"/>
|
||||
</substitute>
|
||||
</names>
|
||||
</macro>
|
||||
<macro name="editor">
|
||||
<names variable="editor" suffix=".">
|
||||
<name sort-separator=" " initialize-with="" name-as-sort-order="all" delimiter=", " delimiter-precedes-last="always"/>
|
||||
<label form="long" prefix=", "/>
|
||||
</names>
|
||||
</macro>
|
||||
<macro name="chapter-marker">
|
||||
<choose>
|
||||
<if type="chapter paper-conference entry-dictionary entry-encyclopedia" match="any">
|
||||
<text term="in" text-case="capitalize-first"/>
|
||||
</if>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="publisher">
|
||||
<choose>
|
||||
<!--discard publisher info for articles-->
|
||||
<if type="article-journal article-magazine article-newspaper" match="none">
|
||||
<group delimiter=": " suffix=";">
|
||||
<choose>
|
||||
<if type="thesis">
|
||||
<text variable="publisher-place" prefix="[" suffix="]"/>
|
||||
</if>
|
||||
<else-if type="speech"/>
|
||||
<else>
|
||||
<text variable="publisher-place"/>
|
||||
</else>
|
||||
</choose>
|
||||
<text variable="publisher"/>
|
||||
</group>
|
||||
</if>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="access">
|
||||
<choose>
|
||||
<if variable="URL">
|
||||
<group delimiter=": ">
|
||||
<text term="available at" text-case="capitalize-first"/>
|
||||
<text variable="URL"/>
|
||||
</group>
|
||||
</if>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="accessed-date">
|
||||
<choose>
|
||||
<if variable="URL">
|
||||
<group prefix="[" suffix="]" delimiter=" ">
|
||||
<text term="cited" text-case="lowercase"/>
|
||||
<date variable="accessed" form="text"/>
|
||||
</group>
|
||||
</if>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="container-title">
|
||||
<choose>
|
||||
<if type="article-journal article-magazine chapter paper-conference article-newspaper review review-book entry-dictionary entry-encyclopedia" match="any">
|
||||
<group suffix="." delimiter=" ">
|
||||
<choose>
|
||||
<if type="article-journal review review-book" match="any">
|
||||
<text variable="container-title" form="short" strip-periods="true"/>
|
||||
</if>
|
||||
<else>
|
||||
<text variable="container-title" strip-periods="true"/>
|
||||
</else>
|
||||
</choose>
|
||||
<choose>
|
||||
<if variable="URL">
|
||||
<text term="internet" prefix="[" suffix="]" text-case="capitalize-first"/>
|
||||
</if>
|
||||
</choose>
|
||||
</group>
|
||||
<text macro="edition" prefix=" "/>
|
||||
</if>
|
||||
<!--add event-name and event-place once they become available-->
|
||||
<else-if type="bill legislation" match="any">
|
||||
<group delimiter=", ">
|
||||
<group delimiter=". ">
|
||||
<text variable="container-title"/>
|
||||
<group delimiter=" ">
|
||||
<text term="section" form="short" text-case="capitalize-first"/>
|
||||
<text variable="section"/>
|
||||
</group>
|
||||
</group>
|
||||
<text variable="number"/>
|
||||
</group>
|
||||
</else-if>
|
||||
<else-if type="speech">
|
||||
<group delimiter=": " suffix=";">
|
||||
<group delimiter=" ">
|
||||
<text variable="genre" text-case="capitalize-first"/>
|
||||
<text term="presented at"/>
|
||||
</group>
|
||||
<text variable="event"/>
|
||||
</group>
|
||||
</else-if>
|
||||
<else>
|
||||
<group delimiter=", " suffix=".">
|
||||
<choose>
|
||||
<if variable="collection-title" match="none">
|
||||
<group delimiter=" ">
|
||||
<label variable="volume" form="short" text-case="capitalize-first"/>
|
||||
<text variable="volume"/>
|
||||
</group>
|
||||
</if>
|
||||
</choose>
|
||||
<text variable="container-title"/>
|
||||
</group>
|
||||
</else>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="title">
|
||||
<text variable="title"/>
|
||||
<choose>
|
||||
<if type="article-journal article-magazine chapter paper-conference article-newspaper review review-book entry-dictionary entry-encyclopedia" match="none">
|
||||
<choose>
|
||||
<if variable="URL">
|
||||
<text term="internet" prefix=" [" suffix="]" text-case="capitalize-first"/>
|
||||
</if>
|
||||
</choose>
|
||||
<text macro="edition" prefix=". "/>
|
||||
</if>
|
||||
</choose>
|
||||
<choose>
|
||||
<if type="thesis">
|
||||
<text variable="genre" prefix=" [" suffix="]"/>
|
||||
</if>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="edition">
|
||||
<choose>
|
||||
<if is-numeric="edition">
|
||||
<group delimiter=" ">
|
||||
<number variable="edition" form="ordinal"/>
|
||||
<text term="edition" form="short"/>
|
||||
</group>
|
||||
</if>
|
||||
<else>
|
||||
<text variable="edition" suffix="."/>
|
||||
</else>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="date">
|
||||
<choose>
|
||||
<if type="article-journal article-magazine article-newspaper review review-book" match="any">
|
||||
<group suffix=";" delimiter=" ">
|
||||
<date variable="issued" form="text"/>
|
||||
<text macro="accessed-date"/>
|
||||
</group>
|
||||
</if>
|
||||
<else-if type="bill legislation" match="any">
|
||||
<group delimiter=", ">
|
||||
<date variable="issued" delimiter=" ">
|
||||
<date-part name="month" form="short" strip-periods="true"/>
|
||||
<date-part name="day"/>
|
||||
</date>
|
||||
<date variable="issued">
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
</group>
|
||||
</else-if>
|
||||
<else-if type="report">
|
||||
<date variable="issued" delimiter=" ">
|
||||
<date-part name="year"/>
|
||||
<date-part name="month" form="short" strip-periods="true"/>
|
||||
</date>
|
||||
<text macro="accessed-date" prefix=" "/>
|
||||
</else-if>
|
||||
<else-if type="patent">
|
||||
<group suffix=".">
|
||||
<group delimiter=", ">
|
||||
<text variable="number"/>
|
||||
<date variable="issued">
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
</group>
|
||||
<text macro="accessed-date" prefix=" "/>
|
||||
</group>
|
||||
</else-if>
|
||||
<else-if type="speech">
|
||||
<group delimiter="; ">
|
||||
<group delimiter=" ">
|
||||
<date variable="issued" delimiter=" ">
|
||||
<date-part name="year"/>
|
||||
<date-part name="month" form="short" strip-periods="true"/>
|
||||
<date-part name="day"/>
|
||||
</date>
|
||||
<text macro="accessed-date"/>
|
||||
</group>
|
||||
<text variable="event-place"/>
|
||||
</group>
|
||||
</else-if>
|
||||
<else>
|
||||
<group suffix=".">
|
||||
<date variable="issued">
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<text macro="accessed-date" prefix=" "/>
|
||||
</group>
|
||||
</else>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="pages">
|
||||
<choose>
|
||||
<if type="article-journal article-magazine article-newspaper review review-book" match="any">
|
||||
<text variable="page" prefix=":"/>
|
||||
</if>
|
||||
<else-if type="book" match="any">
|
||||
<text variable="number-of-pages" prefix=" "/>
|
||||
<choose>
|
||||
<if is-numeric="number-of-pages">
|
||||
<label variable="number-of-pages" form="short" prefix=" " plural="never"/>
|
||||
</if>
|
||||
</choose>
|
||||
</else-if>
|
||||
<else>
|
||||
<group prefix=" " delimiter=" ">
|
||||
<label variable="page" form="short" plural="never"/>
|
||||
<text variable="page"/>
|
||||
</group>
|
||||
</else>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="journal-location">
|
||||
<choose>
|
||||
<if type="article-journal article-magazine review review-book" match="any">
|
||||
<text variable="volume"/>
|
||||
<text variable="issue" prefix="(" suffix=")"/>
|
||||
</if>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="collection-details">
|
||||
<choose>
|
||||
<if type="article-journal article-magazine article-newspaper review review-book" match="none">
|
||||
<choose>
|
||||
<if variable="collection-title">
|
||||
<group delimiter=" " prefix="(" suffix=")">
|
||||
<names variable="collection-editor" suffix=".">
|
||||
<name sort-separator=" " initialize-with="" name-as-sort-order="all" delimiter=", " delimiter-precedes-last="always"/>
|
||||
<label form="long" prefix=", "/>
|
||||
</names>
|
||||
<group delimiter="; ">
|
||||
<text variable="collection-title"/>
|
||||
<group delimiter=" ">
|
||||
<label variable="volume" form="short"/>
|
||||
<text variable="volume"/>
|
||||
</group>
|
||||
</group>
|
||||
</group>
|
||||
</if>
|
||||
</choose>
|
||||
</if>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="report-details">
|
||||
<choose>
|
||||
<if type="report">
|
||||
<text variable="number" prefix="Report No.: "/>
|
||||
</if>
|
||||
</choose>
|
||||
</macro>
|
||||
<citation collapse="citation-number">
|
||||
<sort>
|
||||
<key variable="citation-number"/>
|
||||
</sort>
|
||||
<layout prefix="(" suffix=")" delimiter=",">
|
||||
<text variable="citation-number"/>
|
||||
</layout>
|
||||
</citation>
|
||||
<bibliography et-al-min="7" et-al-use-first="6" second-field-align="flush">
|
||||
<layout>
|
||||
<text variable="citation-number" suffix=". "/>
|
||||
<group delimiter=". " suffix=". ">
|
||||
<text macro="author"/>
|
||||
<text macro="title"/>
|
||||
</group>
|
||||
<group delimiter=" " suffix=". ">
|
||||
<group delimiter=": ">
|
||||
<text macro="chapter-marker"/>
|
||||
<group delimiter=" ">
|
||||
<text macro="editor"/>
|
||||
<text macro="container-title"/>
|
||||
</group>
|
||||
</group>
|
||||
<text macro="publisher"/>
|
||||
<group>
|
||||
<text macro="date"/>
|
||||
<text macro="journal-location"/>
|
||||
<text macro="pages"/>
|
||||
</group>
|
||||
</group>
|
||||
<text macro="collection-details" suffix=". "/>
|
||||
<text macro="report-details" suffix=". "/>
|
||||
<text macro="access"/>
|
||||
</layout>
|
||||
</bibliography>
|
||||
</style>
|
||||
@@ -0,0 +1,26 @@
|
||||
{
|
||||
"require": {
|
||||
"citation-style-language/locales":"@dev",
|
||||
"seboettg/citeproc-php": "^2.4.1"
|
||||
},
|
||||
"config": {
|
||||
"vendor-dir": "lib/vendor",
|
||||
"platform": {
|
||||
"php": "8.0.2"
|
||||
}
|
||||
},
|
||||
"repositories": [
|
||||
{
|
||||
"type": "package",
|
||||
"package": {
|
||||
"name": "citation-style-language/locales",
|
||||
"version":"1.0.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/citation-style-language/locales.git",
|
||||
"reference": "master"
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
+220
@@ -0,0 +1,220 @@
|
||||
{
|
||||
"_readme": [
|
||||
"This file locks the dependencies of your project to a known state",
|
||||
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
||||
"This file is @generated automatically"
|
||||
],
|
||||
"content-hash": "1a057720c09bafdcf5675acfa0c9ad21",
|
||||
"packages": [
|
||||
{
|
||||
"name": "citation-style-language/locales",
|
||||
"version": "1.0.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/citation-style-language/locales.git",
|
||||
"reference": "master"
|
||||
},
|
||||
"type": "library"
|
||||
},
|
||||
{
|
||||
"name": "myclabs/php-enum",
|
||||
"version": "1.8.4",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/myclabs/php-enum.git",
|
||||
"reference": "a867478eae49c9f59ece437ae7f9506bfaa27483"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/myclabs/php-enum/zipball/a867478eae49c9f59ece437ae7f9506bfaa27483",
|
||||
"reference": "a867478eae49c9f59ece437ae7f9506bfaa27483",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"ext-json": "*",
|
||||
"php": "^7.3 || ^8.0"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpunit/phpunit": "^9.5",
|
||||
"squizlabs/php_codesniffer": "1.*",
|
||||
"vimeo/psalm": "^4.6.2"
|
||||
},
|
||||
"type": "library",
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"MyCLabs\\Enum\\": "src/"
|
||||
},
|
||||
"classmap": [
|
||||
"stubs/Stringable.php"
|
||||
]
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "PHP Enum contributors",
|
||||
"homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
|
||||
}
|
||||
],
|
||||
"description": "PHP Enum implementation",
|
||||
"homepage": "http://github.com/myclabs/php-enum",
|
||||
"keywords": [
|
||||
"enum"
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/myclabs/php-enum/issues",
|
||||
"source": "https://github.com/myclabs/php-enum/tree/1.8.4"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
"url": "https://github.com/mnapoli",
|
||||
"type": "github"
|
||||
},
|
||||
{
|
||||
"url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
|
||||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"time": "2022-08-04T09:53:51+00:00"
|
||||
},
|
||||
{
|
||||
"name": "seboettg/citeproc-php",
|
||||
"version": "v2.5.2",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/seboettg/citeproc-php.git",
|
||||
"reference": "042535d9d1e56058f54156e3c5682f3f9a467abe"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/seboettg/citeproc-php/zipball/042535d9d1e56058f54156e3c5682f3f9a467abe",
|
||||
"reference": "042535d9d1e56058f54156e3c5682f3f9a467abe",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"ext-intl": "*",
|
||||
"ext-json": "*",
|
||||
"ext-mbstring": "*",
|
||||
"ext-simplexml": "*",
|
||||
"myclabs/php-enum": "^1.8",
|
||||
"php": ">=7.3",
|
||||
"seboettg/collection": ">=v3.1.0"
|
||||
},
|
||||
"require-dev": {
|
||||
"php-coveralls/php-coveralls": "^1",
|
||||
"phpmd/phpmd": "^2.8",
|
||||
"phpunit/phpunit": "^8.5",
|
||||
"squizlabs/php_codesniffer": "^3.5"
|
||||
},
|
||||
"suggest": {
|
||||
"symfony/polyfill-mbstring": "^1.10"
|
||||
},
|
||||
"type": "library",
|
||||
"autoload": {
|
||||
"files": [
|
||||
"src/functions.php"
|
||||
],
|
||||
"psr-4": {
|
||||
"Seboettg\\CiteProc\\": "src/"
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Sebastian Böttger",
|
||||
"email": "seboettg@gmail.com",
|
||||
"homepage": "https://sebastianboettger.net",
|
||||
"role": "Developer"
|
||||
}
|
||||
],
|
||||
"description": "Full-featured CSL processor (https://citationstyles.org)",
|
||||
"support": {
|
||||
"issues": "https://github.com/seboettg/citeproc-php/issues",
|
||||
"source": "https://github.com/seboettg/citeproc-php/tree/v2.5.2"
|
||||
},
|
||||
"time": "2023-02-08T21:13:17+00:00"
|
||||
},
|
||||
{
|
||||
"name": "seboettg/collection",
|
||||
"version": "v3.1.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/seboettg/Collection.git",
|
||||
"reference": "6f753aef75923965173dcb11696e5dece0533f45"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/seboettg/Collection/zipball/6f753aef75923965173dcb11696e5dece0533f45",
|
||||
"reference": "6f753aef75923965173dcb11696e5dece0533f45",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"php": ">=7.3"
|
||||
},
|
||||
"require-dev": {
|
||||
"php-coveralls/php-coveralls": "^1",
|
||||
"phpunit/phpunit": "8.5.*"
|
||||
},
|
||||
"type": "library",
|
||||
"autoload": {
|
||||
"files": [
|
||||
"src/ArrayList/Functions.php"
|
||||
],
|
||||
"psr-4": {
|
||||
"Seboettg\\Collection\\": "src/"
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Sebastian Böttger",
|
||||
"email": "seboettg@gmail.com"
|
||||
}
|
||||
],
|
||||
"description": "Collection is a set of useful PHP wrapper classes for arrays, similar to Java Collection. Contains ArrayList, Stack, Queue.",
|
||||
"keywords": [
|
||||
"OOP",
|
||||
"array",
|
||||
"arraylist",
|
||||
"basic-data-structures",
|
||||
"collections",
|
||||
"comparable",
|
||||
"comparable-interface",
|
||||
"comparator",
|
||||
"datastructures",
|
||||
"filter",
|
||||
"map",
|
||||
"queue",
|
||||
"sort",
|
||||
"stack"
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/seboettg/Collection/issues",
|
||||
"source": "https://github.com/seboettg/Collection/tree/v3.1.0"
|
||||
},
|
||||
"time": "2022-07-09T19:47:27+00:00"
|
||||
}
|
||||
],
|
||||
"packages-dev": [],
|
||||
"aliases": [],
|
||||
"minimum-stability": "stable",
|
||||
"stability-flags": {
|
||||
"citation-style-language/locales": 20
|
||||
},
|
||||
"prefer-stable": false,
|
||||
"prefer-lowest": false,
|
||||
"platform": [],
|
||||
"platform-dev": [],
|
||||
"platform-overrides": {
|
||||
"php": "8.0.2"
|
||||
},
|
||||
"plugin-api-version": "2.3.0"
|
||||
}
|
||||
@@ -0,0 +1,86 @@
|
||||
.citation_display .csl-left-margin {
|
||||
display : none;
|
||||
}
|
||||
|
||||
.citation_display [aria-hidden="true"] {
|
||||
display : none;
|
||||
}
|
||||
|
||||
.citation_display .citation_formats {
|
||||
margin-top : 1em;
|
||||
border : 1px solid rgba(0, 0, 0, 0.4);
|
||||
border-radius : 2px;
|
||||
}
|
||||
|
||||
.citation_display .citation_formats_button {
|
||||
position : relative;
|
||||
background : transparent;
|
||||
border : none;
|
||||
border-bottom-left-radius : 0;
|
||||
border-bottom-right-radius : 0;
|
||||
box-shadow : none;
|
||||
padding : 0 1em;
|
||||
width : 100%;
|
||||
min-height : 2.5em;
|
||||
text-align : left;
|
||||
}
|
||||
|
||||
.citation_display .citation_formats_button:after {
|
||||
display : inline-block;
|
||||
font : normal normal normal 14px/1 FontAwesome;
|
||||
font-size : inherit;
|
||||
text-rendering : auto;
|
||||
-webkit-font-smoothing : antialiased;
|
||||
-moz-osx-font-smoothing : grayscale;
|
||||
content : "\f0d7";
|
||||
position : absolute;
|
||||
top : 50%;
|
||||
right : 1em;
|
||||
transform : translate(0, -50%);
|
||||
}
|
||||
|
||||
.citation_display .citation_formats_button[aria-expanded="true"]:after {
|
||||
content : "\f0d8";
|
||||
}
|
||||
|
||||
.citation_display .citation_formats_button:focus {
|
||||
outline : 0;
|
||||
}
|
||||
|
||||
.citation_display .citation_formats_styles {
|
||||
margin : 0;
|
||||
padding : 0;
|
||||
list-style : none;
|
||||
}
|
||||
|
||||
.citation_display .citation_formats_styles a {
|
||||
display : block;
|
||||
padding : 0.5em 1em;
|
||||
border-bottom : 1px solid #BBBBBB;
|
||||
text-decoration : none;
|
||||
font-size : 0.75rem;
|
||||
}
|
||||
|
||||
.citation_display .citation_formats_styles a:focus {
|
||||
outline : 0;
|
||||
}
|
||||
|
||||
.citation_display .citation_formats_styles li:last-child a {
|
||||
border-bottom : none;
|
||||
}
|
||||
|
||||
.citation_display .citation_formats_list .label {
|
||||
padding : 1em 1em 0.25em 1em;
|
||||
}
|
||||
|
||||
.citation_display .citation_formats_styles + .label {
|
||||
border-top : 1px solid #BBBBBB;
|
||||
}
|
||||
|
||||
.citation_display span {
|
||||
margin-right : 0.5em;
|
||||
}
|
||||
|
||||
#citationOutput.fade-in {
|
||||
transition: opacity 0.5s ease;
|
||||
}
|
||||
@@ -0,0 +1,104 @@
|
||||
/**
|
||||
* @file plugins/generic/citationStyleLanguage/js/articleCitation.js
|
||||
*
|
||||
* Copyright (c) 2014-2020 Simon Fraser University
|
||||
* Copyright (c) 2000-2020 John Willinsky
|
||||
* Distributed under the GNU GPL v3. For full terms see the file docs/COPYING.
|
||||
*
|
||||
* @brief Fetch and display an article citation on the article's page
|
||||
*
|
||||
* This script is designed to be compatible with any themes that follow these
|
||||
* steps. First, you need a target element that will display the citation in
|
||||
* the requested format. This should have an id of `citationOutput`:
|
||||
*
|
||||
* <div id="citationOutput"></div>
|
||||
*
|
||||
* You can create a link to retrieve a citation and display it in this div by
|
||||
* assigning the link a `data-load-citation` attribute:
|
||||
*
|
||||
* <a href="{url ...}" data-load-citation="true">View citation in ABNT format</a>
|
||||
*
|
||||
* Downloadable citations should leave the `data-load-citation` attribute out
|
||||
* to allow normal browser download handling.
|
||||
*
|
||||
* To make use of the dropdown display of citation formats, you must include
|
||||
* a button to expand the dropdown with the following attributes:
|
||||
*
|
||||
* <button aria-controls="cslCitationFormats" aria-expanded="false" data-csl-dropdown="true">
|
||||
* More Citation Formats
|
||||
* </button>
|
||||
*
|
||||
* And the dropdown should have the id `cslCitationFormats`:
|
||||
*
|
||||
* <div id="cslCitationFormats" aria-hidden="true">
|
||||
* // additional citation formats
|
||||
* </div>
|
||||
*
|
||||
* This script requires jQuery. The format you specify should match
|
||||
* a format provided by a CitationFormat plugin.
|
||||
*/
|
||||
|
||||
document.addEventListener('DOMContentLoaded', () => {
|
||||
// Get the citation elements
|
||||
const citationOutput = document.getElementById('citationOutput');
|
||||
const citationFormatLinks = document.querySelectorAll('[data-load-citation]');
|
||||
const citationFormatBtn = document.querySelector(
|
||||
'[aria-controls="cslCitationFormats"]'
|
||||
);
|
||||
const citationFormatDropdown = document.getElementById('cslCitationFormats');
|
||||
|
||||
// Check if the required elements exist
|
||||
if (!citationOutput || citationFormatLinks.length === 0) {
|
||||
return;
|
||||
}
|
||||
|
||||
// Fetch new citations and update diplayed citation
|
||||
citationFormatLinks.forEach((link) => {
|
||||
link.addEventListener('click', (e) => {
|
||||
const jsonHref = link.dataset.jsonHref;
|
||||
|
||||
if (!jsonHref) {
|
||||
return true;
|
||||
}
|
||||
|
||||
e.preventDefault();
|
||||
citationOutput.classList.remove('fade-in');
|
||||
citationOutput.style.opacity = '0.5';
|
||||
|
||||
fetch(jsonHref)
|
||||
.then((response) => response.json())
|
||||
.then((r) => {
|
||||
citationOutput.innerHTML = r.content;
|
||||
citationOutput.classList.add('fade-in');
|
||||
citationOutput.style.opacity = '1';
|
||||
})
|
||||
.catch(() => {
|
||||
citationOutput.style.opacity = '1';
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
// Check if the required elements for the dropdown exist
|
||||
if (!citationFormatBtn || !citationFormatDropdown) {
|
||||
return;
|
||||
}
|
||||
|
||||
// Function to handle dropdown display for more citation formats
|
||||
citationFormatBtn.addEventListener('click', (e) => {
|
||||
e.preventDefault();
|
||||
e.stopPropagation();
|
||||
|
||||
const state = citationFormatBtn.getAttribute('aria-expanded') === 'true';
|
||||
|
||||
citationFormatBtn.setAttribute('aria-expanded', !state);
|
||||
citationFormatDropdown.setAttribute('aria-hidden', state);
|
||||
});
|
||||
|
||||
// Close the dropdown when any link or button inside is clicked
|
||||
citationFormatDropdown.querySelectorAll('a, button').forEach((elem) => {
|
||||
elem.addEventListener('click', () => {
|
||||
citationFormatBtn.setAttribute('aria-expanded', false);
|
||||
citationFormatDropdown.setAttribute('aria-hidden', true);
|
||||
});
|
||||
});
|
||||
});
|
||||
@@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
// autoload.php @generated by Composer
|
||||
|
||||
if (PHP_VERSION_ID < 50600) {
|
||||
echo 'Composer 2.3.0 dropped support for autoloading on PHP <5.6 and you are running '.PHP_VERSION.', please upgrade PHP or use Composer 2.2 LTS via "composer self-update --2.2". Aborting.'.PHP_EOL;
|
||||
exit(1);
|
||||
}
|
||||
|
||||
require_once __DIR__ . '/composer/autoload_real.php';
|
||||
|
||||
return ComposerAutoloaderInita7e2cf237a3ef157c1a8fcc41a2d44d0::getLoader();
|
||||
+13
@@ -0,0 +1,13 @@
|
||||
## CSL Locales Pull Request Template
|
||||
|
||||
You're about to create a pull request to the CSL locales repository.
|
||||
If you haven't done so already, see <http://docs.citationstyles.org/en/stable/translating-locale-files.html> for instructions on how to translate CSL locale files, and <https://github.com/citation-style-language/styles/blob/master/CONTRIBUTING.md> on how to submit your changes.
|
||||
In addition, please fill out the pull request template below.
|
||||
|
||||
### Description
|
||||
|
||||
Briefly describe the changes you're proposing.
|
||||
|
||||
### Checklist
|
||||
|
||||
- [ ] Check that you're listed as a `<translator>` in the `<info>` block at the beginning of the file.
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
--format Fuubar
|
||||
--color
|
||||
--require spec_helper.rb
|
||||
--format json
|
||||
--out spec/sheldon/travis.json
|
||||
Vendored
+20
@@ -0,0 +1,20 @@
|
||||
language: ruby
|
||||
cache: bundler
|
||||
rvm:
|
||||
- 2.6.3
|
||||
install:
|
||||
- bundle install --jobs=3 --retry=3 --path=${BUNDLE_PATH:-vendor/bundle}
|
||||
- bundle update sheldon
|
||||
notifications:
|
||||
email:
|
||||
recipients:
|
||||
- rintze.zelle@gmail.com
|
||||
- karcher@u.northwestern.edu
|
||||
on_success: change
|
||||
on_failure: always
|
||||
webhooks:
|
||||
urls:
|
||||
- https://shelbot.herokuapp.com/build
|
||||
on_success: always
|
||||
on_failure: always
|
||||
on_start: never
|
||||
Vendored
+28
@@ -0,0 +1,28 @@
|
||||
# Contributing to the CSL locale repository
|
||||
|
||||
We welcome contributions to the Citation Style Language (CSL) locale files in this repository.
|
||||
|
||||
The CSL locale files provide the standard translations for automatic localization of CSL styles.
|
||||
As such, the CSL locale files should generally contain the most commonly used translations for a given locale.
|
||||
Less common translations can be [provided in the individual CSL styles](https://docs.citationstyles.org/en/stable/specification.html#locale) that require them, which will overwrite the CSL locale file translations.
|
||||
|
||||
Because each CSL locale file offers the standard translations for all CSL styles, changes should be made conservatively and carefully.
|
||||
We will often ask a second native speaker and/or past contributor to look over your proposed changes.
|
||||
|
||||
## Licensing and crediting
|
||||
|
||||
By creating a pull request, you agree to license your contributions under the [Creative Commons Attribution-ShareAlike 3.0 Unported license](https://creativecommons.org/licenses/by-sa/3.0/) license.
|
||||
|
||||
In addition, if you're interested in being credited, please add yourself to the locale file as translator. See the example below (both the `<email/>` and `</uri>` elements are optional):
|
||||
|
||||
```xml
|
||||
<info>
|
||||
<translator>
|
||||
<name>John Doe</name>
|
||||
<email>john.doe@citationstyles.org</email>
|
||||
<uri>https://citationstyles.org/</uri>
|
||||
</translator>
|
||||
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
|
||||
<updated>2019-01-01T12:00:00+00:00</updated>
|
||||
</info>
|
||||
```
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
ruby '2.6.3'
|
||||
source 'https://rubygems.org'
|
||||
|
||||
gem 'rake'
|
||||
gem 'rspec'
|
||||
gem 'fuubar'
|
||||
gem 'nokogiri'
|
||||
gem 'csl', '~>1.1'
|
||||
gem 'sheldon', git: 'https://github.com/citation-style-language/Sheldon.git'
|
||||
Vendored
+70
@@ -0,0 +1,70 @@
|
||||
GIT
|
||||
remote: https://github.com/citation-style-language/Sheldon.git
|
||||
revision: c2cc508c57157ee7d00948e24c46e10e3f319d57
|
||||
specs:
|
||||
sheldon (1.0.2)
|
||||
citeproc-ruby
|
||||
csl-styles
|
||||
diffy
|
||||
dotenv
|
||||
nokogiri
|
||||
ostruct
|
||||
reverse_markdown
|
||||
|
||||
GEM
|
||||
remote: https://rubygems.org/
|
||||
specs:
|
||||
citeproc (1.0.9)
|
||||
namae (~> 1.0)
|
||||
citeproc-ruby (1.1.10)
|
||||
citeproc (~> 1.0, >= 1.0.9)
|
||||
csl (~> 1.5)
|
||||
csl (1.5.0)
|
||||
namae (~> 1.0)
|
||||
csl-styles (1.0.1.9)
|
||||
csl (~> 1.0)
|
||||
diff-lcs (1.3)
|
||||
diffy (3.3.0)
|
||||
dotenv (2.7.5)
|
||||
fuubar (2.5.0)
|
||||
rspec-core (~> 3.0)
|
||||
ruby-progressbar (~> 1.4)
|
||||
mini_portile2 (2.4.0)
|
||||
namae (1.0.1)
|
||||
nokogiri (1.10.8)
|
||||
mini_portile2 (~> 2.4.0)
|
||||
ostruct (0.1.0)
|
||||
rake (13.0.1)
|
||||
reverse_markdown (1.3.0)
|
||||
nokogiri
|
||||
rspec (3.9.0)
|
||||
rspec-core (~> 3.9.0)
|
||||
rspec-expectations (~> 3.9.0)
|
||||
rspec-mocks (~> 3.9.0)
|
||||
rspec-core (3.9.0)
|
||||
rspec-support (~> 3.9.0)
|
||||
rspec-expectations (3.9.0)
|
||||
diff-lcs (>= 1.2.0, < 2.0)
|
||||
rspec-support (~> 3.9.0)
|
||||
rspec-mocks (3.9.0)
|
||||
diff-lcs (>= 1.2.0, < 2.0)
|
||||
rspec-support (~> 3.9.0)
|
||||
rspec-support (3.9.0)
|
||||
ruby-progressbar (1.10.1)
|
||||
|
||||
PLATFORMS
|
||||
ruby
|
||||
|
||||
DEPENDENCIES
|
||||
csl (~> 1.1)
|
||||
fuubar
|
||||
nokogiri
|
||||
rake
|
||||
rspec
|
||||
sheldon!
|
||||
|
||||
RUBY VERSION
|
||||
ruby 2.6.3p62
|
||||
|
||||
BUNDLED WITH
|
||||
1.17.3
|
||||
+16
@@ -0,0 +1,16 @@
|
||||
CSL Locales Repository
|
||||
======================
|
||||
|
||||
[](https://travis-ci.org/citation-style-language/locales)
|
||||
[](https://github.com/citation-style-language/locales#licensing)
|
||||

|
||||
|
||||
[github.com/citation-style-language/locales](https://github.com/citation-style-language/locales) is the official repository for Citation Style Language (CSL) locale files and is maintained by CSL project members.
|
||||
For more information, check out [CitationStyles.org](http://citationstyles.org/) and the [repository wiki](https://github.com/citation-style-language/locales/wiki).
|
||||
|
||||
Licensing
|
||||
---------
|
||||
|
||||
All the locale files in this repository are released under the [Creative Commons Attribution-ShareAlike 3.0 Unported license](http://creativecommons.org/licenses/by-sa/3.0/).
|
||||
For attribution, any software using CSL locale files from this repository must include a clear mention of the CSL project and a link to [CitationStyles.org](http://citationstyles.org/).
|
||||
When distributing these locale files, the listings of translators in the locale metadata must be kept as is.
|
||||
+23
@@ -0,0 +1,23 @@
|
||||
|
||||
require 'bundler'
|
||||
begin
|
||||
Bundler.setup
|
||||
rescue Bundler::BundlerError => e
|
||||
$stderr.puts e.message
|
||||
$stderr.puts "Run `bundle install' to install missing gems"
|
||||
exit e.status_code
|
||||
end
|
||||
|
||||
if ENV['TRAVIS']
|
||||
at_exit do
|
||||
system('bundle exec sheldon')
|
||||
end
|
||||
end
|
||||
|
||||
require 'rspec/core'
|
||||
require 'rspec/core/rake_task'
|
||||
RSpec::Core::RakeTask.new(:spec) do |spec|
|
||||
spec.rspec_opts = %w{ --require spec_helper.rb --format Fuubar --color --format json --out spec/sheldon/travis.json }
|
||||
end
|
||||
|
||||
task :default => [:spec]
|
||||
Vendored
+312
@@ -0,0 +1,312 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="af-ZA">
|
||||
<info>
|
||||
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
|
||||
<updated>2012-07-04T23:31:02+00:00</updated>
|
||||
</info>
|
||||
<style-options punctuation-in-quote="false"/>
|
||||
<date form="text">
|
||||
<date-part name="day" form="numeric-leading-zeros" suffix=" "/>
|
||||
<date-part name="month" suffix=" "/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<date form="numeric">
|
||||
<date-part name="year"/>
|
||||
<date-part name="month" form="numeric-leading-zeros" prefix="/"/>
|
||||
<date-part name="day" form="numeric-leading-zeros" prefix="/"/>
|
||||
</date>
|
||||
<terms>
|
||||
<term name="accessed">toegang verkry</term>
|
||||
<term name="and">en</term>
|
||||
<term name="and others">and others</term>
|
||||
<term name="anonymous">anonymous</term>
|
||||
<term name="anonymous" form="short">anon</term>
|
||||
<term name="at">at</term>
|
||||
<term name="available at">available at</term>
|
||||
<term name="by">by</term>
|
||||
<term name="circa">circa</term>
|
||||
<term name="circa" form="short">c.</term>
|
||||
<term name="cited">cited</term>
|
||||
<term name="edition">
|
||||
<single>edition</single>
|
||||
<multiple>editions</multiple>
|
||||
</term>
|
||||
<term name="edition" form="short">ed</term>
|
||||
<term name="et-al">et al.</term>
|
||||
<term name="forthcoming">voorhande</term>
|
||||
<term name="from">van</term>
|
||||
<term name="ibid">ibid.</term>
|
||||
<term name="in">in</term>
|
||||
<term name="in press">in press</term>
|
||||
<term name="internet">internet</term>
|
||||
<term name="interview">interview</term>
|
||||
<term name="letter">letter</term>
|
||||
<term name="no date">no date</term>
|
||||
<term name="no date" form="short">n.d.</term>
|
||||
<term name="online">online</term>
|
||||
<term name="presented at">presented at the</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="retrieved">opgehaal</term>
|
||||
<term name="scale">scale</term>
|
||||
<term name="version">version</term>
|
||||
|
||||
<!-- ANNO DOMINI; BEFORE CHRIST -->
|
||||
<term name="ad">AD</term>
|
||||
<term name="bc">BC</term>
|
||||
|
||||
<!-- PUNCTUATION -->
|
||||
<term name="open-quote">“</term>
|
||||
<term name="close-quote">”</term>
|
||||
<term name="open-inner-quote">‘</term>
|
||||
<term name="close-inner-quote">’</term>
|
||||
<term name="page-range-delimiter">–</term>
|
||||
|
||||
<!-- ORDINALS -->
|
||||
<term name="ordinal">th</term>
|
||||
<term name="ordinal-01">st</term>
|
||||
<term name="ordinal-02">nd</term>
|
||||
<term name="ordinal-03">rd</term>
|
||||
<term name="ordinal-11">th</term>
|
||||
<term name="ordinal-12">th</term>
|
||||
<term name="ordinal-13">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>
|
||||
|
||||
<!-- LONG LOCATOR FORMS -->
|
||||
<term name="book">
|
||||
<single>book</single>
|
||||
<multiple>books</multiple>
|
||||
</term>
|
||||
<term name="chapter">
|
||||
<single>chapter</single>
|
||||
<multiple>chapters</multiple>
|
||||
</term>
|
||||
<term name="column">
|
||||
<single>column</single>
|
||||
<multiple>columns</multiple>
|
||||
</term>
|
||||
<term name="figure">
|
||||
<single>figure</single>
|
||||
<multiple>figures</multiple>
|
||||
</term>
|
||||
<term name="folio">
|
||||
<single>folio</single>
|
||||
<multiple>folios</multiple>
|
||||
</term>
|
||||
<term name="issue">
|
||||
<single>number</single>
|
||||
<multiple>numbers</multiple>
|
||||
</term>
|
||||
<term name="line">
|
||||
<single>reël</single>
|
||||
<multiple>reëls</multiple>
|
||||
</term>
|
||||
<term name="note">
|
||||
<single>note</single>
|
||||
<multiple>notes</multiple>
|
||||
</term>
|
||||
<term name="opus">
|
||||
<single>opus</single>
|
||||
<multiple>opera</multiple>
|
||||
</term>
|
||||
<term name="page">
|
||||
<single>bladsy</single>
|
||||
<multiple>bladsye</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages">
|
||||
<single>bladsy</single>
|
||||
<multiple>bladsye</multiple>
|
||||
</term>
|
||||
<term name="paragraph">
|
||||
<single>paragraaf</single>
|
||||
<multiple>paragrawe</multiple>
|
||||
</term>
|
||||
<term name="part">
|
||||
<single>part</single>
|
||||
<multiple>parts</multiple>
|
||||
</term>
|
||||
<term name="section">
|
||||
<single>section</single>
|
||||
<multiple>sections</multiple>
|
||||
</term>
|
||||
<term name="sub verbo">
|
||||
<single>sub verbo</single>
|
||||
<multiple>sub verbis</multiple>
|
||||
</term>
|
||||
<term name="verse">
|
||||
<single>verse</single>
|
||||
<multiple>verses</multiple>
|
||||
</term>
|
||||
<term name="volume">
|
||||
<single>volume</single>
|
||||
<multiple>volumes</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="line" form="short">l.</term>
|
||||
<term name="note" form="short">n.</term>
|
||||
<term name="opus" form="short">op</term>
|
||||
<term name="page" form="short">
|
||||
<single>bl</single>
|
||||
<multiple>bll</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages" form="short">
|
||||
<single>bl</single>
|
||||
<multiple>bll</multiple>
|
||||
</term>
|
||||
<term name="paragraph" form="short">para</term>
|
||||
<term name="part" form="short">pt</term>
|
||||
<term name="section" form="short">sec</term>
|
||||
<term name="sub verbo" form="short">
|
||||
<single>s.v.</single>
|
||||
<multiple>s.vv.</multiple>
|
||||
</term>
|
||||
<term name="verse" form="short">
|
||||
<single>v</single>
|
||||
<multiple>vv</multiple>
|
||||
</term>
|
||||
<term name="volume" form="short">
|
||||
<single>vol</single>
|
||||
<multiple>vols</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶¶</multiple>
|
||||
</term>
|
||||
<term name="section" form="symbol">
|
||||
<single>§</single>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="director">
|
||||
<single>director</single>
|
||||
<multiple>directors</multiple>
|
||||
</term>
|
||||
<term name="editor">
|
||||
<single>redakteur</single>
|
||||
<multiple>redakteurs</multiple>
|
||||
</term>
|
||||
<term name="editorial-director">
|
||||
<single>editor</single>
|
||||
<multiple>editors</multiple>
|
||||
</term>
|
||||
<term name="illustrator">
|
||||
<single>illustrator</single>
|
||||
<multiple>illustrators</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="director" form="short">
|
||||
<single>dir.</single>
|
||||
<multiple>dirs.</multiple>
|
||||
</term>
|
||||
<term name="editor" form="short">
|
||||
<single>red</single>
|
||||
<multiple>reds</multiple>
|
||||
</term>
|
||||
<term name="editorial-director" form="short">
|
||||
<single>ed.</single>
|
||||
<multiple>eds.</multiple>
|
||||
</term>
|
||||
<term name="illustrator" form="short">
|
||||
<single>ill.</single>
|
||||
<multiple>ills.</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="container-author" form="verb">by</term>
|
||||
<term name="director" form="verb">directed by</term>
|
||||
<term name="editor" form="verb">onder redaksie van</term>
|
||||
<term name="editorial-director" form="verb">edited by</term>
|
||||
<term name="illustrator" form="verb">illustrated by</term>
|
||||
<term name="interviewer" form="verb">interview by</term>
|
||||
<term name="recipient" form="verb">to</term>
|
||||
<term name="reviewed-author" form="verb">by</term>
|
||||
<term name="translator" form="verb">vertaal deur</term>
|
||||
<term name="editortranslator" form="verb">edited & translated by</term>
|
||||
|
||||
<!-- SHORT VERB ROLE FORMS -->
|
||||
<term name="director" form="verb-short">dir.</term>
|
||||
<term name="editor" form="verb-short">red</term>
|
||||
<term name="editorial-director" form="verb-short">ed.</term>
|
||||
<term name="illustrator" form="verb-short">illus.</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>
|
||||
<term name="month-04">April</term>
|
||||
<term name="month-05">Mei</term>
|
||||
<term name="month-06">Junie</term>
|
||||
<term name="month-07">Julie</term>
|
||||
<term name="month-08">Augustus</term>
|
||||
<term name="month-09">September</term>
|
||||
<term name="month-10">Oktober</term>
|
||||
<term name="month-11">November</term>
|
||||
<term name="month-12">Desember</term>
|
||||
|
||||
<!-- SHORT MONTH FORMS -->
|
||||
<term name="month-01" form="short">Jan</term>
|
||||
<term name="month-02" form="short">Feb</term>
|
||||
<term name="month-03" form="short">Mrt</term>
|
||||
<term name="month-04" form="short">Apr</term>
|
||||
<term name="month-05" form="short">Mei</term>
|
||||
<term name="month-06" form="short">Jun</term>
|
||||
<term name="month-07" form="short">Jul</term>
|
||||
<term name="month-08" form="short">Aug</term>
|
||||
<term name="month-09" form="short">Sep</term>
|
||||
<term name="month-10" form="short">Okt</term>
|
||||
<term name="month-11" form="short">Nov</term>
|
||||
<term name="month-12" form="short">Des</term>
|
||||
|
||||
<!-- SEASONS -->
|
||||
<term name="season-01">Spring</term>
|
||||
<term name="season-02">Summer</term>
|
||||
<term name="season-03">Autumn</term>
|
||||
<term name="season-04">Winter</term>
|
||||
</terms>
|
||||
</locale>
|
||||
Vendored
+253
@@ -0,0 +1,253 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="ar">
|
||||
<info>
|
||||
<translator>
|
||||
<name>abdealikhurrum</name>
|
||||
</translator>
|
||||
<translator>
|
||||
<name>Dr. Ayman Saleh</name>
|
||||
</translator>
|
||||
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
|
||||
<updated>2012-07-04T23:31:02+00:00</updated>
|
||||
</info>
|
||||
<style-options punctuation-in-quote="false"/>
|
||||
<date form="text">
|
||||
<date-part name="day" suffix=" "/>
|
||||
<date-part name="month" suffix="، "/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<date form="numeric">
|
||||
<date-part name="day" suffix="/"/>
|
||||
<date-part name="month" form="numeric" suffix="/"/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<terms>
|
||||
<term name="accessed">تاريخ الوصول</term>
|
||||
<term name="and">و</term>
|
||||
<term name="and others">وآخرون</term>
|
||||
<term name="anonymous">مجهول</term>
|
||||
<term name="anonymous" form="short">مجهول</term>
|
||||
<term name="at">عند</term>
|
||||
<term name="available at">موجود في</term>
|
||||
<term name="by">عن طريق</term>
|
||||
<term name="circa">حوالي</term>
|
||||
<term name="circa" form="short">حوالي</term>
|
||||
<term name="cited">وثق</term>
|
||||
<term name="edition">
|
||||
<single>الطبعة</single>
|
||||
<multiple>الطبعات</multiple>
|
||||
</term>
|
||||
<term name="edition" form="short">ط</term>
|
||||
<term name="et-al">وآخرون</term>
|
||||
<term name="forthcoming">التالي</term>
|
||||
<term name="from">من</term>
|
||||
<term name="ibid">المرجع السابق</term>
|
||||
<term name="in">في</term>
|
||||
<term name="in press">قيد النشر</term>
|
||||
<term name="internet">انترنت</term>
|
||||
<term name="interview">مقابلة</term>
|
||||
<term name="letter">خطاب</term>
|
||||
<term name="no date">دون تاريخ</term>
|
||||
<term name="no date" form="short">د.ت</term>
|
||||
<term name="online">مباشر على الإنترنت</term>
|
||||
<term name="presented at">قُدَّم في</term>
|
||||
<term name="reference">
|
||||
<single>مرجع</single>
|
||||
<multiple>مراجع</multiple>
|
||||
</term>
|
||||
<term name="reference" form="short">
|
||||
<single>مرجع</single>
|
||||
<multiple>مراجع</multiple>
|
||||
</term>
|
||||
<term name="retrieved">استرجع في</term>
|
||||
<term name="scale">السلم الموسيقي</term>
|
||||
<term name="version">إصدار</term>
|
||||
|
||||
<!-- ANNO DOMINI; BEFORE CHRIST -->
|
||||
<term name="ad">ب.م.</term>
|
||||
<term name="bc">ق.م.</term>
|
||||
|
||||
<!-- PUNCTUATION -->
|
||||
<term name="open-quote">"</term>
|
||||
<term name="close-quote">"</term>
|
||||
<term name="open-inner-quote">'</term>
|
||||
<term name="close-inner-quote">'</term>
|
||||
<term name="page-range-delimiter">–</term>
|
||||
|
||||
<!-- ORDINALS -->
|
||||
<term name="ordinal"></term>
|
||||
|
||||
<!-- LONG ORDINALS -->
|
||||
<term name="long-ordinal-01">الأول</term>
|
||||
<term name="long-ordinal-02">الثاني</term>
|
||||
<term name="long-ordinal-03">الثالث</term>
|
||||
<term name="long-ordinal-04">الرابع</term>
|
||||
<term name="long-ordinal-05">الخامس</term>
|
||||
<term name="long-ordinal-06">السادس</term>
|
||||
<term name="long-ordinal-07">السابع</term>
|
||||
<term name="long-ordinal-08">الثامن</term>
|
||||
<term name="long-ordinal-09">التاسع</term>
|
||||
<term name="long-ordinal-10">العاشر</term>
|
||||
|
||||
<!-- LONG LOCATOR FORMS -->
|
||||
<term name="book">
|
||||
<single>كتاب</single>
|
||||
<multiple>كتب</multiple>
|
||||
</term>
|
||||
<term name="chapter">
|
||||
<single>فصل</single>
|
||||
<multiple>فصول</multiple>
|
||||
</term>
|
||||
<term name="column">
|
||||
<single>عمود</single>
|
||||
<multiple>أعمدة</multiple>
|
||||
</term>
|
||||
<term name="figure">
|
||||
<single>رسم توضيحي</single>
|
||||
<multiple>رسوم توضيحية</multiple>
|
||||
</term>
|
||||
<term name="folio">
|
||||
<single>ورقة</single>
|
||||
<multiple>أوراق</multiple>
|
||||
</term>
|
||||
<term name="issue">
|
||||
<single>عدد</single>
|
||||
<multiple>أعداد</multiple>
|
||||
</term>
|
||||
<term name="line">
|
||||
<single>سطر</single>
|
||||
<multiple>أسطر</multiple>
|
||||
</term>
|
||||
<term name="note">
|
||||
<single>ملاحظة</single>
|
||||
<multiple>ملاحظات</multiple>
|
||||
</term>
|
||||
<term name="opus">
|
||||
<single>نوته موسيقية</single>
|
||||
<multiple>نوتات موسيقية</multiple>
|
||||
</term>
|
||||
<term name="page">
|
||||
<single>صفحة</single>
|
||||
<multiple>صفحات</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages">
|
||||
<single>صفحة</single>
|
||||
<multiple>صفحات</multiple>
|
||||
</term>
|
||||
<term name="paragraph">
|
||||
<single>فقرة</single>
|
||||
<multiple>فقرات</multiple>
|
||||
</term>
|
||||
<term name="part">
|
||||
<single>جزء</single>
|
||||
<multiple>أجزاء</multiple>
|
||||
</term>
|
||||
<term name="section">
|
||||
<single>قسم</single>
|
||||
<multiple>أقسام</multiple>
|
||||
</term>
|
||||
<term name="sub verbo">
|
||||
<single>تفسير فرعي</single>
|
||||
<multiple>تفسيرات فرعية</multiple>
|
||||
</term>
|
||||
<term name="verse">
|
||||
<single>بيت شعر</single>
|
||||
<multiple>أبيات شعر</multiple>
|
||||
</term>
|
||||
<term name="volume">
|
||||
<single>مجلد</single>
|
||||
<multiple>مجلدات</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT LOCATOR FORMS -->
|
||||
<term name="book" form="short">كتاب</term>
|
||||
<term name="chapter" form="short">فصل</term>
|
||||
<term name="column" form="short">عمود</term>
|
||||
<term name="figure" form="short">رسم توضيحي</term>
|
||||
<term name="folio" form="short">مطوية</term>
|
||||
<term name="issue" form="short">عدد</term>
|
||||
<term name="line" form="short">سـ</term>
|
||||
<term name="note" form="short">ملاحظة</term>
|
||||
<term name="opus" form="short">نوتة موسيقية</term>
|
||||
<term name="page" form="short">
|
||||
<single>ص</single>
|
||||
<multiple>ص</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages" form="short">
|
||||
<single>ص</single>
|
||||
<multiple>ص</multiple>
|
||||
</term>
|
||||
<term name="paragraph" form="short">فقرة</term>
|
||||
<term name="part" form="short">ج</term>
|
||||
<term name="section" form="short">قسم</term>
|
||||
<term name="sub verbo" form="short">
|
||||
<single>تفسير فرعي</single>
|
||||
<multiple>تفسيرات فرعية</multiple>
|
||||
</term>
|
||||
<term name="verse" form="short">
|
||||
<single>بيت شعر</single>
|
||||
<multiple>أبيات شعر</multiple>
|
||||
</term>
|
||||
<term name="volume" form="short">
|
||||
<single>م</single>
|
||||
<multiple>م</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶¶</multiple>
|
||||
</term>
|
||||
<term name="section" form="symbol">
|
||||
<single>§</single>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="director">إدارة</term>
|
||||
<term name="editor">تحقيق</term>
|
||||
<term name="editorial-director">إدارة التحرير</term>
|
||||
<term name="illustrator">رسوم</term>
|
||||
<term name="translator">ترجمة</term>
|
||||
<term name="editortranslator">ترجمة وتحقيق</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
|
||||
<!-- VERB ROLE FORMS -->
|
||||
<term name="container-author" form="verb">إنشاء</term>
|
||||
<term name="director" form="verb">إشراف</term>
|
||||
<term name="editor" form="verb">تحقيق</term>
|
||||
<term name="editorial-director" form="verb">إعداد</term>
|
||||
<term name="illustrator" form="verb">رسوم</term>
|
||||
<term name="interviewer" form="verb">مقابلة مع</term>
|
||||
<term name="recipient" form="verb">المستلم</term>
|
||||
<term name="reviewed-author" form="verb">مراجعة</term>
|
||||
<term name="translator" form="verb">ترجمة</term>
|
||||
<term name="editortranslator" form="verb">تحقيق وترجمة</term>
|
||||
|
||||
<!-- SHORT VERB ROLE FORMS -->
|
||||
|
||||
<!-- LONG MONTH FORMS -->
|
||||
<term name="month-01">يناير</term>
|
||||
<term name="month-02">فبراير</term>
|
||||
<term name="month-03">مارس</term>
|
||||
<term name="month-04">أبريل</term>
|
||||
<term name="month-05">مايو</term>
|
||||
<term name="month-06">يونيو</term>
|
||||
<term name="month-07">يوليو</term>
|
||||
<term name="month-08">أغسطس</term>
|
||||
<term name="month-09">سبتمبر</term>
|
||||
<term name="month-10">أكتوبر</term>
|
||||
<term name="month-11">نوفمبر</term>
|
||||
<term name="month-12">ديسمبر</term>
|
||||
|
||||
<!-- SHORT MONTH FORMS -->
|
||||
|
||||
|
||||
<!-- SEASONS -->
|
||||
<term name="season-01">ربيع</term>
|
||||
<term name="season-02">صيف</term>
|
||||
<term name="season-03">خريف</term>
|
||||
<term name="season-04">شتاء</term>
|
||||
</terms>
|
||||
</locale>
|
||||
Vendored
+324
@@ -0,0 +1,324 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="bg-BG">
|
||||
<info>
|
||||
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
|
||||
<updated>2018-02-15T04:14:02+00:00</updated>
|
||||
<translator>
|
||||
<name>Valeriya Simeonova</name>
|
||||
<email>simeonova@fmi.uni-sofia.bg</email>
|
||||
<uri>http://www.mendeley.com/profiles/valeriya-simeonova/</uri>
|
||||
</translator>
|
||||
</info>
|
||||
<style-options punctuation-in-quote="false"/>
|
||||
<date form="text">
|
||||
<date-part name="day" form="numeric-leading-zeros" suffix=" "/>
|
||||
<date-part name="month" suffix=" "/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<date form="numeric">
|
||||
<date-part name="day" form="numeric-leading-zeros" suffix="."/>
|
||||
<date-part name="month" form="numeric-leading-zeros" suffix="."/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<terms>
|
||||
<term name="accessed">отворен на</term>
|
||||
<term name="and">и</term>
|
||||
<term name="and others">и други</term>
|
||||
<term name="anonymous">анонимен</term>
|
||||
<term name="anonymous" form="short">анон.</term>
|
||||
<term name="at">в</term>
|
||||
<term name="available at">достъпен на</term>
|
||||
<term name="by">от</term>
|
||||
<term name="circa">около</term>
|
||||
<term name="circa" form="short">ок.</term>
|
||||
<term name="cited">цитиран</term>
|
||||
<term name="edition">
|
||||
<single>издание</single>
|
||||
<multiple>издания</multiple>
|
||||
</term>
|
||||
<term name="edition" form="short">изд.</term>
|
||||
<term name="et-al">и съавт.</term>
|
||||
<term name="forthcoming">предстоящ</term>
|
||||
<term name="from">от</term>
|
||||
<term name="ibid">пак там</term>
|
||||
<term name="in">в</term>
|
||||
<term name="in press">под печат</term>
|
||||
<term name="internet">интернет</term>
|
||||
<term name="interview">интервю</term>
|
||||
<term name="letter">писмо</term>
|
||||
<term name="no date">без дата</term>
|
||||
<term name="no date" form="short">б.д.</term>
|
||||
<term name="online">онлайн</term>
|
||||
<term name="presented at">представен на</term>
|
||||
<term name="reference">
|
||||
<single>източник</single>
|
||||
<multiple>източници</multiple>
|
||||
</term>
|
||||
<term name="reference" form="short">
|
||||
<single>изт.</single>
|
||||
<multiple>изт.</multiple>
|
||||
</term>
|
||||
<term name="retrieved">изтеглен на</term>
|
||||
<term name="scale">скала</term>
|
||||
<term name="version">версия</term>
|
||||
|
||||
<!-- ANNO DOMINI; BEFORE CHRIST -->
|
||||
<term name="ad">сл.хр.</term>
|
||||
<term name="bc">пр.хр.</term>
|
||||
|
||||
<!-- PUNCTUATION -->
|
||||
<term name="open-quote">„</term>
|
||||
<term name="close-quote">“</term>
|
||||
<term name="open-inner-quote">„</term>
|
||||
<term name="close-inner-quote">“</term>
|
||||
<term name="page-range-delimiter">–</term>
|
||||
|
||||
<!-- ORDINALS -->
|
||||
<term name="ordinal">то</term>
|
||||
<term name="ordinal-01">во</term>
|
||||
<term name="ordinal-02">ро</term>
|
||||
<term name="ordinal-03">то</term>
|
||||
<term name="ordinal-21">во</term>
|
||||
<term name="ordinal-22">ро</term>
|
||||
<term name="ordinal-33">то</term>
|
||||
<term name="ordinal" gender-form="masculine">ти</term>
|
||||
<term name="ordinal-01" gender-form="masculine">ви</term>
|
||||
<term name="ordinal-02" gender-form="masculine">ри</term>
|
||||
<term name="ordinal-03" gender-form="masculine">ти</term>
|
||||
<term name="ordinal-21" gender-form="masculine">ви</term>
|
||||
<term name="ordinal-22" gender-form="masculine">ри</term>
|
||||
<term name="ordinal-33" gender-form="masculine">ти</term>
|
||||
<term name="ordinal" gender-form="feminine">та</term>
|
||||
<term name="ordinal-01" gender-form="feminine">ва</term>
|
||||
<term name="ordinal-02" gender-form="feminine">ра</term>
|
||||
<term name="ordinal-03" gender-form="feminine">та</term>
|
||||
<term name="ordinal-21" gender-form="feminine">ва</term>
|
||||
<term name="ordinal-22" gender-form="feminine">ра</term>
|
||||
<term name="ordinal-33" gender-form="feminine">та</term>
|
||||
|
||||
<!-- LONG ORDINALS -->
|
||||
<term name="long-ordinal-01">първo</term>
|
||||
<term name="long-ordinal-02">вторo</term>
|
||||
<term name="long-ordinal-03">третo</term>
|
||||
<term name="long-ordinal-04">четвъртo</term>
|
||||
<term name="long-ordinal-05">петo</term>
|
||||
<term name="long-ordinal-06">шестo</term>
|
||||
<term name="long-ordinal-07">седмo</term>
|
||||
<term name="long-ordinal-08">осмo</term>
|
||||
<term name="long-ordinal-09">деветo</term>
|
||||
<term name="long-ordinal-10">десетo</term>
|
||||
<term name="long-ordinal-01" gender-form="masculine">първи</term>
|
||||
<term name="long-ordinal-02" gender-form="masculine">втори</term>
|
||||
<term name="long-ordinal-03" gender-form="masculine">трети</term>
|
||||
<term name="long-ordinal-04" gender-form="masculine">четверти</term>
|
||||
<term name="long-ordinal-05" gender-form="masculine">пети</term>
|
||||
<term name="long-ordinal-06" gender-form="masculine">шести</term>
|
||||
<term name="long-ordinal-07" gender-form="masculine">седми</term>
|
||||
<term name="long-ordinal-08" gender-form="masculine">осми</term>
|
||||
<term name="long-ordinal-09" gender-form="masculine">девети</term>
|
||||
<term name="long-ordinal-10" gender-form="masculine">десети</term>
|
||||
<term name="long-ordinal-01" gender-form="feminine">първа</term>
|
||||
<term name="long-ordinal-02" gender-form="feminine">втора</term>
|
||||
<term name="long-ordinal-03" gender-form="feminine">трета</term>
|
||||
<term name="long-ordinal-04" gender-form="feminine">четверта</term>
|
||||
<term name="long-ordinal-05" gender-form="feminine">пета</term>
|
||||
<term name="long-ordinal-06" gender-form="feminine">шеста</term>
|
||||
<term name="long-ordinal-07" gender-form="feminine">седма</term>
|
||||
<term name="long-ordinal-08" gender-form="feminine">осма</term>
|
||||
<term name="long-ordinal-09" gender-form="feminine">девета</term>
|
||||
<term name="long-ordinal-10" gender-form="feminine">десета</term>
|
||||
|
||||
<!-- LONG LOCATOR FORMS -->
|
||||
<term name="book">
|
||||
<single>книга</single>
|
||||
<multiple>книги</multiple>
|
||||
</term>
|
||||
<term name="chapter">
|
||||
<single>глава</single>
|
||||
<multiple>глави</multiple>
|
||||
</term>
|
||||
<term name="column">
|
||||
<single>колона</single>
|
||||
<multiple>колони</multiple>
|
||||
</term>
|
||||
<term name="figure">
|
||||
<single>фигура</single>
|
||||
<multiple>фигури</multiple>
|
||||
</term>
|
||||
<term name="folio">
|
||||
<single>фолио</single>
|
||||
<multiple>фолия</multiple>
|
||||
</term>
|
||||
<term name="issue">
|
||||
<single>брой</single>
|
||||
<multiple>броеве</multiple>
|
||||
</term>
|
||||
<term name="line">
|
||||
<single>ред</single>
|
||||
<multiple>редове</multiple>
|
||||
</term>
|
||||
<term name="note">
|
||||
<single>бележка</single>
|
||||
<multiple>бележки</multiple>
|
||||
</term>
|
||||
<term name="opus">
|
||||
<single>опус</single>
|
||||
<multiple>опуси</multiple>
|
||||
</term>
|
||||
<term name="page">
|
||||
<single>страница</single>
|
||||
<multiple>страници</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages">брой страници</term>
|
||||
<term name="paragraph">
|
||||
<single>абзац</single>
|
||||
<multiple>абзаци</multiple>
|
||||
</term>
|
||||
<term name="part">
|
||||
<single>част</single>
|
||||
<multiple>части</multiple>
|
||||
</term>
|
||||
<term name="section">
|
||||
<single>раздел</single>
|
||||
<multiple>раздели</multiple>
|
||||
</term>
|
||||
<term name="sub verbo">
|
||||
<single>под раздел</single>
|
||||
<multiple>под раздели</multiple>
|
||||
</term>
|
||||
<term name="verse">
|
||||
<single>стихотворение</single>
|
||||
<multiple>стихове</multiple>
|
||||
</term>
|
||||
<term name="volume">
|
||||
<single>том</single>
|
||||
<multiple>томове</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT LOCATOR FORMS -->
|
||||
<term name="book" form="short">кн.</term>
|
||||
<term name="chapter" form="short">гл.</term>
|
||||
<term name="column" form="short">кол.</term>
|
||||
<term name="figure" form="short">фиг.</term>
|
||||
<term name="folio" form="short">фол.</term>
|
||||
<term name="issue" form="short">бр.</term>
|
||||
<term name="line" form="short">р.</term>
|
||||
<term name="note" form="short">бел.</term>
|
||||
<term name="opus" form="short">оп.</term>
|
||||
<term name="page" form="short">стр.</term>
|
||||
<term name="number-of-pages" form="short">бр.стр.</term>
|
||||
<term name="paragraph" form="short">абз.</term>
|
||||
<term name="part" form="short">ч.</term>
|
||||
<term name="section" form="short">разд.</term>
|
||||
<term name="sub verbo" form="short">подразд.</term>
|
||||
<term name="verse" form="short">ст.</term>
|
||||
<term name="volume" form="short">
|
||||
<single>том</single>
|
||||
<multiple>томове</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶¶</multiple>
|
||||
</term>
|
||||
<term name="section" form="symbol">
|
||||
<single>§</single>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="director">режисьор</term>
|
||||
<term name="editor">
|
||||
<single>редактор</single>
|
||||
<multiple>редактори</multiple>
|
||||
</term>
|
||||
<term name="editorial-director">
|
||||
<single>главен редактор</single>
|
||||
<multiple>редакторски колектив</multiple>
|
||||
</term>
|
||||
<term name="illustrator">илюстрации</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="director" form="short">реж.</term>
|
||||
<term name="editor" form="short">
|
||||
<single>ред.</single>
|
||||
<multiple>ред.кол.</multiple>
|
||||
</term>
|
||||
<term name="editorial-director" form="short">
|
||||
<single>гл.ред.</single>
|
||||
<multiple>гл.ред.кол.</multiple>
|
||||
</term>
|
||||
<term name="illustrator" form="short">ил.</term>
|
||||
<term name="translator" form="short">
|
||||
<single>прев</single>
|
||||
<multiple>прев.кол.</multiple>
|
||||
</term>
|
||||
<term name="editortranslator" form="short">
|
||||
<single>ред. & прев.</single>
|
||||
<multiple>ред.кол. & прев.</multiple>
|
||||
</term>
|
||||
|
||||
<!-- VERB ROLE FORMS -->
|
||||
<term name="container-author" form="verb">от</term>
|
||||
<term name="director" form="verb">под общата редакция на</term>
|
||||
<term name="editor" form="verb">редактиран от</term>
|
||||
<term name="editorial-director" form="verb">главен редактор</term>
|
||||
<term name="illustrator" form="verb">илюстрации от</term>
|
||||
<term name="interviewer" form="verb">интервюиран от</term>
|
||||
<term name="recipient" form="verb">до</term>
|
||||
<term name="reviewed-author" form="verb">рецензент</term>
|
||||
<term name="translator" form="verb">преведен от</term>
|
||||
<term name="editortranslator" form="verb">редактирано & преведено от</term>
|
||||
|
||||
<!-- SHORT VERB ROLE FORMS -->
|
||||
<term name="director" form="verb-short">п.о.р.</term>
|
||||
<term name="editor" form="verb-short">ред.</term>
|
||||
<term name="editorial-director" form="verb-short">гл.ред.</term>
|
||||
<term name="illustrator" form="verb-short">ил.</term>
|
||||
<term name="translator" form="verb-short">прев.</term>
|
||||
<term name="editortranslator" form="verb-short">ред. & прев. от</term>
|
||||
|
||||
<!-- LONG MONTH FORMS -->
|
||||
<term name="month-01">Януари</term>
|
||||
<term name="month-02">Февруари</term>
|
||||
<term name="month-03">Март</term>
|
||||
<term name="month-04">Април</term>
|
||||
<term name="month-05">Май</term>
|
||||
<term name="month-06">Юни</term>
|
||||
<term name="month-07">Юли</term>
|
||||
<term name="month-08">Август</term>
|
||||
<term name="month-09">Септември</term>
|
||||
<term name="month-10">Октомври</term>
|
||||
<term name="month-11">Ноември</term>
|
||||
<term name="month-12">Декември</term>
|
||||
|
||||
<!-- SHORT MONTH FORMS -->
|
||||
<term name="month-01" form="short">Яну</term>
|
||||
<term name="month-02" form="short">Фев</term>
|
||||
<term name="month-03" form="short">Мар</term>
|
||||
<term name="month-04" form="short">Апр</term>
|
||||
<term name="month-05" form="short">Май</term>
|
||||
<term name="month-06" form="short">Юни</term>
|
||||
<term name="month-07" form="short">Юли</term>
|
||||
<term name="month-08" form="short">Авг</term>
|
||||
<term name="month-09" form="short">Сеп</term>
|
||||
<term name="month-10" form="short">Окт</term>
|
||||
<term name="month-11" form="short">Ное</term>
|
||||
<term name="month-12" form="short">Дек</term>
|
||||
|
||||
<!-- SEASONS -->
|
||||
<term name="season-01">Пролет</term>
|
||||
<term name="season-02">Лято</term>
|
||||
<term name="season-03">Есен</term>
|
||||
<term name="season-04">Зима</term>
|
||||
</terms>
|
||||
</locale>
|
||||
Vendored
+312
@@ -0,0 +1,312 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="ca-AD">
|
||||
<info>
|
||||
<translator>
|
||||
<name>anidal</name>
|
||||
</translator>
|
||||
<translator>
|
||||
<name>javimat</name>
|
||||
</translator>
|
||||
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
|
||||
<updated>2012-07-04T23:31:02+00:00</updated>
|
||||
</info>
|
||||
<style-options punctuation-in-quote="false"/>
|
||||
<date form="text">
|
||||
<date-part name="day" suffix=" "/>
|
||||
<date-part name="month" suffix=" "/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<date form="numeric">
|
||||
<date-part name="day" form="numeric-leading-zeros" suffix="/"/>
|
||||
<date-part name="month" form="numeric-leading-zeros" suffix="/"/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<terms>
|
||||
<term name="accessed">consulta</term>
|
||||
<term name="and">i</term>
|
||||
<term name="and others">i altres</term>
|
||||
<term name="anonymous">anònim</term>
|
||||
<term name="anonymous" form="short">anòn.</term>
|
||||
<term name="at">a</term>
|
||||
<term name="available at">disponible a</term>
|
||||
<term name="by">per</term>
|
||||
<term name="circa">circa</term>
|
||||
<term name="circa" form="short">c.</term>
|
||||
<term name="cited">citat</term>
|
||||
<term name="edition">
|
||||
<single>edició</single>
|
||||
<multiple>edicions</multiple>
|
||||
</term>
|
||||
<term name="edition" form="short">ed.</term>
|
||||
<term name="et-al">et al.</term>
|
||||
<term name="forthcoming">previst</term>
|
||||
<term name="from">de</term>
|
||||
<term name="ibid">ibíd.</term>
|
||||
<term name="in">en</term>
|
||||
<term name="in press">en impremta</term>
|
||||
<term name="internet">internet</term>
|
||||
<term name="interview">entrevista</term>
|
||||
<term name="letter">carta</term>
|
||||
<term name="no date">sense data</term>
|
||||
<term name="no date" form="short">s.d.</term>
|
||||
<term name="online">en línia</term>
|
||||
<term name="presented at">presentat a</term>
|
||||
<term name="reference">
|
||||
<single>referència</single>
|
||||
<multiple>referències</multiple>
|
||||
</term>
|
||||
<term name="reference" form="short">
|
||||
<single>ref.</single>
|
||||
<multiple>ref.</multiple>
|
||||
</term>
|
||||
<term name="retrieved">recuperat</term>
|
||||
<term name="scale">escala</term>
|
||||
<term name="version">versió</term>
|
||||
|
||||
<!-- ANNO DOMINI; BEFORE CHRIST -->
|
||||
<term name="ad">dC</term>
|
||||
<term name="bc">aC</term>
|
||||
|
||||
<!-- PUNCTUATION -->
|
||||
<term name="open-quote">«</term>
|
||||
<term name="close-quote">»</term>
|
||||
<term name="open-inner-quote">“</term>
|
||||
<term name="close-inner-quote">”</term>
|
||||
<term name="page-range-delimiter">-</term>
|
||||
|
||||
<!-- ORDINALS -->
|
||||
<term name="ordinal">a</term>
|
||||
|
||||
<!-- LONG ORDINALS -->
|
||||
<term name="long-ordinal-01">primera</term>
|
||||
<term name="long-ordinal-02">segona</term>
|
||||
<term name="long-ordinal-03">tercera</term>
|
||||
<term name="long-ordinal-04">quarta</term>
|
||||
<term name="long-ordinal-05">cinquena</term>
|
||||
<term name="long-ordinal-06">sisena</term>
|
||||
<term name="long-ordinal-07">setena</term>
|
||||
<term name="long-ordinal-08">vuitena</term>
|
||||
<term name="long-ordinal-09">novena</term>
|
||||
<term name="long-ordinal-10">desena</term>
|
||||
|
||||
<!-- LONG LOCATOR FORMS -->
|
||||
<term name="book">
|
||||
<single>llibre</single>
|
||||
<multiple>llibres</multiple>
|
||||
</term>
|
||||
<term name="chapter">
|
||||
<single>capítol</single>
|
||||
<multiple>capítols</multiple>
|
||||
</term>
|
||||
<term name="column">
|
||||
<single>columna</single>
|
||||
<multiple>columnes</multiple>
|
||||
</term>
|
||||
<term name="figure">
|
||||
<single>figura</single>
|
||||
<multiple>figures</multiple>
|
||||
</term>
|
||||
<term name="folio">
|
||||
<single>foli</single>
|
||||
<multiple>folis</multiple>
|
||||
</term>
|
||||
<term name="issue">
|
||||
<single>número</single>
|
||||
<multiple>números</multiple>
|
||||
</term>
|
||||
<term name="line">
|
||||
<single>línia</single>
|
||||
<multiple>línies</multiple>
|
||||
</term>
|
||||
<term name="note">
|
||||
<single>nota</single>
|
||||
<multiple>notes</multiple>
|
||||
</term>
|
||||
<term name="opus">
|
||||
<single>opus</single>
|
||||
<multiple>opera</multiple>
|
||||
</term>
|
||||
<term name="page">
|
||||
<single>pàgina</single>
|
||||
<multiple>pàgines</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages">
|
||||
<single>pàgina</single>
|
||||
<multiple>pàgines</multiple>
|
||||
</term>
|
||||
<term name="paragraph">
|
||||
<single>paràgraf</single>
|
||||
<multiple>paràgrafs</multiple>
|
||||
</term>
|
||||
<term name="part">
|
||||
<single>part</single>
|
||||
<multiple>parts</multiple>
|
||||
</term>
|
||||
<term name="section">
|
||||
<single>secció</single>
|
||||
<multiple>seccions</multiple>
|
||||
</term>
|
||||
<term name="sub verbo">
|
||||
<single>sub voce</single>
|
||||
<multiple>sub vocibus</multiple>
|
||||
</term>
|
||||
<term name="verse">
|
||||
<single>vers</single>
|
||||
<multiple>versos</multiple>
|
||||
</term>
|
||||
<term name="volume">
|
||||
<single>volum</single>
|
||||
<multiple>volums</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT LOCATOR FORMS -->
|
||||
<term name="book" form="short">llib.</term>
|
||||
<term name="chapter" form="short">cap.</term>
|
||||
<term name="column" form="short">col.</term>
|
||||
<term name="figure" form="short">fig.</term>
|
||||
<term name="folio" form="short">f.</term>
|
||||
<term name="issue" form="short">núm.</term>
|
||||
<term name="line" form="short">l.</term>
|
||||
<term name="note" form="short">n.</term>
|
||||
<term name="opus" form="short">op.</term>
|
||||
<term name="page" form="short">
|
||||
<single>p.</single>
|
||||
<multiple>p.</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages" form="short">
|
||||
<single>p.</single>
|
||||
<multiple>p.</multiple>
|
||||
</term>
|
||||
<term name="paragraph" form="short">par.</term>
|
||||
<term name="part" form="short">pt.</term>
|
||||
<term name="section" form="short">sec.</term>
|
||||
<term name="sub verbo" form="short">
|
||||
<single>s.v.</single>
|
||||
<multiple>s.v.</multiple>
|
||||
</term>
|
||||
<term name="verse" form="short">
|
||||
<single>v.</single>
|
||||
<multiple>v.</multiple>
|
||||
</term>
|
||||
<term name="volume" form="short">
|
||||
<single>vol.</single>
|
||||
<multiple>vol.</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>§</single>
|
||||
<multiple>§</multiple>
|
||||
</term>
|
||||
<term name="section" form="symbol">
|
||||
<single>§</single>
|
||||
<multiple>§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="director">
|
||||
<single>director</single>
|
||||
<multiple>directors</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="illustrator">
|
||||
<single>il·lustrador</single>
|
||||
<multiple>il·lustradors</multiple>
|
||||
</term>
|
||||
<term name="translator">
|
||||
<single>traductor</single>
|
||||
<multiple>traductors</multiple>
|
||||
</term>
|
||||
<term name="editortranslator">
|
||||
<single>editor i traductor</single>
|
||||
<multiple>editors i traductors</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="director" form="short">
|
||||
<single>dir.</single>
|
||||
<multiple>dir.</multiple>
|
||||
</term>
|
||||
<term name="editor" form="short">
|
||||
<single>ed.</single>
|
||||
<multiple>ed.</multiple>
|
||||
</term>
|
||||
<term name="editorial-director" form="short">
|
||||
<single>ed.</single>
|
||||
<multiple>ed.</multiple>
|
||||
</term>
|
||||
<term name="illustrator" form="short">
|
||||
<single>il·lust.</single>
|
||||
<multiple>il·lust.</multiple>
|
||||
</term>
|
||||
<term name="translator" form="short">
|
||||
<single>trad.</single>
|
||||
<multiple>trad.</multiple>
|
||||
</term>
|
||||
<term name="editortranslator" form="short">
|
||||
<single>ed. i trad.</single>
|
||||
<multiple>ed. i trad.</multiple>
|
||||
</term>
|
||||
|
||||
<!-- VERB ROLE FORMS -->
|
||||
<term name="container-author" form="verb">per</term>
|
||||
<term name="director" form="verb">dirigit per</term>
|
||||
<term name="editor" form="verb">editat per</term>
|
||||
<term name="editorial-director" form="verb">editat per</term>
|
||||
<term name="illustrator" form="verb">il·lustrat per</term>
|
||||
<term name="interviewer" form="verb">entrevistat per</term>
|
||||
<term name="recipient" form="verb">a</term>
|
||||
<term name="reviewed-author" form="verb">per</term>
|
||||
<term name="translator" form="verb">traduït per</term>
|
||||
<term name="editortranslator" form="verb">editat i traduït per</term>
|
||||
|
||||
<!-- SHORT VERB ROLE FORMS -->
|
||||
<term name="director" form="verb-short">dir.</term>
|
||||
<term name="editor" form="verb-short">ed.</term>
|
||||
<term name="editorial-director" form="verb-short">ed.</term>
|
||||
<term name="illustrator" form="verb-short">il·lust.</term>
|
||||
<term name="translator" form="verb-short">trad.</term>
|
||||
<term name="editortranslator" form="verb-short">ed. i trad. per</term>
|
||||
|
||||
<!-- LONG MONTH FORMS -->
|
||||
<term name="month-01">gener</term>
|
||||
<term name="month-02">febrer</term>
|
||||
<term name="month-03">març</term>
|
||||
<term name="month-04">abril</term>
|
||||
<term name="month-05">maig</term>
|
||||
<term name="month-06">juny</term>
|
||||
<term name="month-07">juliol</term>
|
||||
<term name="month-08">agost</term>
|
||||
<term name="month-09">setembre</term>
|
||||
<term name="month-10">octubre</term>
|
||||
<term name="month-11">novembre</term>
|
||||
<term name="month-12">desembre</term>
|
||||
|
||||
<!-- SHORT MONTH FORMS -->
|
||||
<term name="month-01" form="short">gen.</term>
|
||||
<term name="month-02" form="short">feb.</term>
|
||||
<term name="month-03" form="short">març</term>
|
||||
<term name="month-04" form="short">abr.</term>
|
||||
<term name="month-05" form="short">maig</term>
|
||||
<term name="month-06" form="short">juny</term>
|
||||
<term name="month-07" form="short">jul.</term>
|
||||
<term name="month-08" form="short">ago.</term>
|
||||
<term name="month-09" form="short">set.</term>
|
||||
<term name="month-10" form="short">oct.</term>
|
||||
<term name="month-11" form="short">nov.</term>
|
||||
<term name="month-12" form="short">des.</term>
|
||||
|
||||
<!-- SEASONS -->
|
||||
<term name="season-01">primavera</term>
|
||||
<term name="season-02">estiu</term>
|
||||
<term name="season-03">tardor</term>
|
||||
<term name="season-04">hivern</term>
|
||||
</terms>
|
||||
</locale>
|
||||
Vendored
+319
@@ -0,0 +1,319 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="cs-CZ">
|
||||
<info>
|
||||
<translator>
|
||||
<name>nosaal</name>
|
||||
</translator>
|
||||
<translator>
|
||||
<name>Andrew Dunning</name>
|
||||
</translator>
|
||||
<translator>
|
||||
<name>libora</name>
|
||||
</translator>
|
||||
<translator>
|
||||
<name>Michal Hoftich</name>
|
||||
</translator>
|
||||
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
|
||||
<updated>2012-07-04T23:31:02+00:00</updated>
|
||||
</info>
|
||||
<style-options punctuation-in-quote="false"/>
|
||||
<date form="text">
|
||||
<date-part name="day" form="ordinal" suffix=" "/>
|
||||
<date-part name="month" suffix=" "/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<date form="numeric">
|
||||
<date-part name="day" form="numeric" suffix=". " range-delimiter="-"/>
|
||||
<date-part name="month" form="numeric" suffix=". " range-delimiter="-"/>
|
||||
<date-part name="year" range-delimiter="-"/>
|
||||
</date>
|
||||
<terms>
|
||||
<term name="accessed">viděno</term>
|
||||
<term name="accessed" form="short">vid.</term>
|
||||
<term name="and">a</term>
|
||||
<term name="and others">a další</term>
|
||||
<term name="anonymous">anonym</term>
|
||||
<term name="anonymous" form="short">anon.</term>
|
||||
<term name="at">v</term>
|
||||
<term name="available at">dostupné z</term>
|
||||
<term name="by">od</term>
|
||||
<term name="circa">asi</term>
|
||||
<term name="circa" form="short">cca.</term>
|
||||
<term name="cited">citován</term>
|
||||
<term name="edition">
|
||||
<single>vydání</single>
|
||||
<multiple>vydání</multiple>
|
||||
</term>
|
||||
<term name="edition" form="short">vyd.</term>
|
||||
<term name="et-al">et al.</term>
|
||||
<term name="forthcoming">nadcházející</term>
|
||||
<term name="from">z</term>
|
||||
<term name="ibid">ibid.</term>
|
||||
<term name="in">in</term>
|
||||
<term name="in press">v tisku</term>
|
||||
<term name="internet">internet</term>
|
||||
<term name="interview">interview</term>
|
||||
<term name="letter">dopis</term>
|
||||
<term name="no date">nedatováno</term>
|
||||
<term name="no date" form="short">b.r.</term>
|
||||
<term name="online">online</term>
|
||||
<term name="presented at">prezentováno v</term>
|
||||
<term name="reference">
|
||||
<single>reference</single>
|
||||
<multiple>reference</multiple>
|
||||
</term>
|
||||
<term name="reference" form="short">
|
||||
<single>ref.</single>
|
||||
<multiple>ref.</multiple>
|
||||
</term>
|
||||
<term name="retrieved">získáno</term>
|
||||
<term name="scale">měřítko</term>
|
||||
<term name="version">verze</term>
|
||||
|
||||
<!-- ANNO DOMINI; BEFORE CHRIST -->
|
||||
<term name="ad">n. l.</term>
|
||||
<term name="bc">př. n. l.</term>
|
||||
|
||||
<!-- PUNCTUATION -->
|
||||
<term name="open-quote">„</term>
|
||||
<term name="close-quote">"</term>
|
||||
<term name="open-inner-quote">‚</term>
|
||||
<term name="close-inner-quote">´</term>
|
||||
<term name="page-range-delimiter">–</term>
|
||||
|
||||
<!-- ORDINALS -->
|
||||
<term name="ordinal">.</term>
|
||||
|
||||
<!-- LONG ORDINALS -->
|
||||
<term name="long-ordinal-01">první</term>
|
||||
<term name="long-ordinal-02">druhé</term>
|
||||
<term name="long-ordinal-03">třetí</term>
|
||||
<term name="long-ordinal-04">čtvrté</term>
|
||||
<term name="long-ordinal-05">páté</term>
|
||||
<term name="long-ordinal-06">šesté</term>
|
||||
<term name="long-ordinal-07">sedmé</term>
|
||||
<term name="long-ordinal-08">osmé</term>
|
||||
<term name="long-ordinal-09">deváté</term>
|
||||
<term name="long-ordinal-10">desáté</term>
|
||||
|
||||
<!-- LONG LOCATOR FORMS -->
|
||||
<term name="book">
|
||||
<single>kniha</single>
|
||||
<multiple>knihy</multiple>
|
||||
</term>
|
||||
<term name="chapter">
|
||||
<single>kapitola</single>
|
||||
<multiple>kapitoly</multiple>
|
||||
</term>
|
||||
<term name="column">
|
||||
<single>sloupec</single>
|
||||
<multiple>sloupce</multiple>
|
||||
</term>
|
||||
<term name="figure">
|
||||
<single>obrázek</single>
|
||||
<multiple>obrázky</multiple>
|
||||
</term>
|
||||
<term name="folio">
|
||||
<single>list</single>
|
||||
<multiple>listy</multiple>
|
||||
</term>
|
||||
<term name="issue">
|
||||
<single>číslo</single>
|
||||
<multiple>čísla</multiple>
|
||||
</term>
|
||||
<term name="line">
|
||||
<single>řádek</single>
|
||||
<multiple>řádky</multiple>
|
||||
</term>
|
||||
<term name="note">
|
||||
<single>poznámka</single>
|
||||
<multiple>poznámky</multiple>
|
||||
</term>
|
||||
<term name="opus">
|
||||
<single>opus</single>
|
||||
<multiple>opusy</multiple>
|
||||
</term>
|
||||
<term name="page">
|
||||
<single>strana</single>
|
||||
<multiple>strany</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages">
|
||||
<single>strana</single>
|
||||
<multiple>strany</multiple>
|
||||
</term>
|
||||
<term name="paragraph">
|
||||
<single>odstavec</single>
|
||||
<multiple>odstavce</multiple>
|
||||
</term>
|
||||
<term name="part">
|
||||
<single>část</single>
|
||||
<multiple>části</multiple>
|
||||
</term>
|
||||
<term name="section">
|
||||
<single>sekce</single>
|
||||
<multiple>sekce</multiple>
|
||||
</term>
|
||||
<term name="sub verbo">
|
||||
<single>pod heslem</single>
|
||||
<multiple>pod hesly</multiple>
|
||||
</term>
|
||||
<term name="verse">
|
||||
<single>verš</single>
|
||||
<multiple>verše</multiple>
|
||||
</term>
|
||||
<term name="volume">
|
||||
<single>ročník</single>
|
||||
<multiple>ročníky</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT LOCATOR FORMS -->
|
||||
<term name="book" form="short">k.</term>
|
||||
<term name="chapter" form="short">kap.</term>
|
||||
<term name="column" form="short">sl.</term>
|
||||
<term name="figure" form="short">obr.</term>
|
||||
<term name="folio" form="short">l.</term>
|
||||
<term name="issue" form="short">č.</term>
|
||||
<term name="line" form="short">ř.</term>
|
||||
<term name="note" form="short">pozn.</term>
|
||||
<term name="opus" form="short">op.</term>
|
||||
<term name="page" form="short">
|
||||
<single>s.</single>
|
||||
<multiple>s.</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages" form="short">
|
||||
<single>s.</single>
|
||||
<multiple>s.</multiple>
|
||||
</term>
|
||||
<term name="paragraph" form="short">odst.</term>
|
||||
<term name="part" form="short">č.</term>
|
||||
<term name="section" form="short">sek.</term>
|
||||
<term name="sub verbo" form="short">
|
||||
<single>s.v.</single>
|
||||
<multiple>s.v.</multiple>
|
||||
</term>
|
||||
<term name="verse" form="short">
|
||||
<single>v.</single>
|
||||
<multiple>v.</multiple>
|
||||
</term>
|
||||
<term name="volume" form="short">
|
||||
<single>roč.</single>
|
||||
<multiple>roč.</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶¶</multiple>
|
||||
</term>
|
||||
<term name="section" form="symbol">
|
||||
<single>§</single>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="director">
|
||||
<single>ředitel</single>
|
||||
<multiple>ředitelé</multiple>
|
||||
</term>
|
||||
<term name="editor">
|
||||
<single>editor</single>
|
||||
<multiple>editoři</multiple>
|
||||
</term>
|
||||
<term name="editorial-director">
|
||||
<single>vedoucí editor</single>
|
||||
<multiple>vedoucí editoři</multiple>
|
||||
</term>
|
||||
<term name="illustrator">
|
||||
<single>ilustrátor</single>
|
||||
<multiple>ilustrátoři</multiple>
|
||||
</term>
|
||||
<term name="translator">
|
||||
<single>překladatel</single>
|
||||
<multiple>překladatelé</multiple>
|
||||
</term>
|
||||
<term name="editortranslator">
|
||||
<single>editor a překladatel</single>
|
||||
<multiple>editoři a překladatelé</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="director" form="short">
|
||||
<single>řed.</single>
|
||||
<multiple>řed.</multiple>
|
||||
</term>
|
||||
<term name="editor" form="short">
|
||||
<single>ed.</single>
|
||||
<multiple>ed.</multiple>
|
||||
</term>
|
||||
<term name="editorial-director" form="short">
|
||||
<single>ed.</single>
|
||||
<multiple>ed.</multiple>
|
||||
</term>
|
||||
<term name="illustrator" form="short">
|
||||
<single>il.</single>
|
||||
<multiple>il.</multiple>
|
||||
</term>
|
||||
<term name="translator" form="short">
|
||||
<single>přel.</single>
|
||||
<multiple>přel.</multiple>
|
||||
</term>
|
||||
<term name="editortranslator" form="short">
|
||||
<single>ed. a přel.</single>
|
||||
<multiple>ed. a přel.</multiple>
|
||||
</term>
|
||||
|
||||
<!-- VERB ROLE FORMS -->
|
||||
<term name="container-author" form="verb"></term>
|
||||
<term name="director" form="verb">řídil</term>
|
||||
<term name="editor" form="verb">editoval</term>
|
||||
<term name="editorial-director" form="verb">editoval</term>
|
||||
<term name="illustrator" form="verb">ilustroval</term>
|
||||
<term name="interviewer" form="verb">rozhovor vedl</term>
|
||||
<term name="recipient" form="verb">pro</term>
|
||||
<term name="reviewed-author" form="verb">recenzoval</term>
|
||||
<term name="translator" form="verb">přeložil</term>
|
||||
<term name="editortranslator" form="verb">editoval a přeložil</term>
|
||||
|
||||
<!-- SHORT VERB ROLE FORMS -->
|
||||
<term name="director" form="verb-short">řed.</term>
|
||||
<term name="editor" form="verb-short">ed.</term>
|
||||
<term name="editorial-director" form="verb-short">ed.</term>
|
||||
<term name="illustrator" form="verb-short">ilust.</term>
|
||||
<term name="translator" form="verb-short">přel.</term>
|
||||
<term name="editortranslator" form="verb-short">ed. a přel.</term>
|
||||
|
||||
<!-- LONG MONTH FORMS -->
|
||||
<term name="month-01">leden</term>
|
||||
<term name="month-02">únor</term>
|
||||
<term name="month-03">březen</term>
|
||||
<term name="month-04">duben</term>
|
||||
<term name="month-05">květen</term>
|
||||
<term name="month-06">červen</term>
|
||||
<term name="month-07">červenec</term>
|
||||
<term name="month-08">srpen</term>
|
||||
<term name="month-09">září</term>
|
||||
<term name="month-10">říjen</term>
|
||||
<term name="month-11">listopad</term>
|
||||
<term name="month-12">prosinec</term>
|
||||
|
||||
<!-- SHORT MONTH FORMS -->
|
||||
<term name="month-01" form="short">led.</term>
|
||||
<term name="month-02" form="short">úno.</term>
|
||||
<term name="month-03" form="short">bře.</term>
|
||||
<term name="month-04" form="short">dub.</term>
|
||||
<term name="month-05" form="short">kvě.</term>
|
||||
<term name="month-06" form="short">čer.</term>
|
||||
<term name="month-07" form="short">čvc.</term>
|
||||
<term name="month-08" form="short">srp.</term>
|
||||
<term name="month-09" form="short">zář.</term>
|
||||
<term name="month-10" form="short">říj.</term>
|
||||
<term name="month-11" form="short">lis.</term>
|
||||
<term name="month-12" form="short">pro.</term>
|
||||
|
||||
<!-- SEASONS -->
|
||||
<term name="season-01">jaro</term>
|
||||
<term name="season-02">léto</term>
|
||||
<term name="season-03">podzim</term>
|
||||
<term name="season-04">zima</term>
|
||||
</terms>
|
||||
</locale>
|
||||
Vendored
+312
@@ -0,0 +1,312 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="cy-GB">
|
||||
<info>
|
||||
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
|
||||
<updated>2014-10-08T12:00:00+00:00</updated>
|
||||
</info>
|
||||
<style-options punctuation-in-quote="false"/>
|
||||
<date form="text">
|
||||
<date-part name="day" suffix=" "/>
|
||||
<date-part name="month" suffix=" "/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<date form="numeric">
|
||||
<date-part name="day" form="numeric-leading-zeros" suffix="/"/>
|
||||
<date-part name="month" form="numeric-leading-zeros" suffix="/"/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<terms>
|
||||
<term name="accessed">gwelwyd</term>
|
||||
<term name="and">a/ac</term>
|
||||
<term name="and others">ac eraill</term>
|
||||
<term name="anonymous">di-enw</term>
|
||||
<term name="anonymous" form="short">dienw</term>
|
||||
<term name="at">at</term>
|
||||
<term name="available at">ar gael</term>
|
||||
<term name="by">gan</term>
|
||||
<term name="circa">circa</term>
|
||||
<term name="circa" form="short">c.</term>
|
||||
<term name="cited">dyfynnwyd</term>
|
||||
<term name="edition">
|
||||
<single>argraffiad</single>
|
||||
<multiple>argraffiadau</multiple>
|
||||
</term>
|
||||
<term name="edition" form="short">arg.</term>
|
||||
<term name="et-al">et al.</term>
|
||||
<term name="forthcoming">ar fin ymddangos</term>
|
||||
<term name="from">gan</term>
|
||||
<term name="ibid">ibid.</term>
|
||||
<term name="in">yn</term>
|
||||
<term name="in press">yn y wasg</term>
|
||||
<term name="internet">rhyngrwyd</term>
|
||||
<term name="interview">cyfweliad</term>
|
||||
<term name="letter">llythyr</term>
|
||||
<term name="no date">dim dyddiad</term>
|
||||
<term name="no date" form="short">d.d.</term>
|
||||
<term name="online">arlein</term>
|
||||
<term name="presented at">cyflwynwyd yn</term>
|
||||
<term name="reference">
|
||||
<single>cyfeirnod</single>
|
||||
<multiple>cyfeirnodau</multiple>
|
||||
</term>
|
||||
<term name="reference" form="short">
|
||||
<single>cyf.</single>
|
||||
<multiple>cyf’au.</multiple>
|
||||
</term>
|
||||
<term name="retrieved">gwelwyd</term>
|
||||
<term name="scale">graddfa</term>
|
||||
<term name="version">fersiwn</term>
|
||||
|
||||
<!-- ANNO DOMINI; BEFORE CHRIST -->
|
||||
<term name="ad">OC</term>
|
||||
<term name="bc">CC</term>
|
||||
|
||||
<!-- PUNCTUATION -->
|
||||
<term name="open-quote">‘</term>
|
||||
<term name="close-quote">’</term>
|
||||
<term name="open-inner-quote">“</term>
|
||||
<term name="close-inner-quote">”</term>
|
||||
<term name="page-range-delimiter">–</term>
|
||||
|
||||
<!-- ORDINALS -->
|
||||
<term name="ordinal">th</term>
|
||||
<term name="ordinal-01">af</term>
|
||||
<term name="ordinal-02">il</term>
|
||||
<term name="ordinal-03">ydd</term>
|
||||
<term name="ordinal-11">ed</term>
|
||||
<term name="ordinal-12">ed</term>
|
||||
<term name="ordinal-13">ed</term>
|
||||
|
||||
<!-- LONG ORDINALS -->
|
||||
<term name="long-ordinal-01">cyntaf</term>
|
||||
<term name="long-ordinal-02">ail</term>
|
||||
<term name="long-ordinal-03">trydydd</term>
|
||||
<term name="long-ordinal-04">pedwerydd</term>
|
||||
<term name="long-ordinal-05">pumed</term>
|
||||
<term name="long-ordinal-06">chweched</term>
|
||||
<term name="long-ordinal-07">seithfed</term>
|
||||
<term name="long-ordinal-08">wythfed</term>
|
||||
<term name="long-ordinal-09">nawfed</term>
|
||||
<term name="long-ordinal-10">degfed</term>
|
||||
|
||||
<!-- LONG LOCATOR FORMS -->
|
||||
<term name="book">
|
||||
<single>llyfr</single>
|
||||
<multiple>llyfrau</multiple>
|
||||
</term>
|
||||
<term name="chapter">
|
||||
<single>pennod</single>
|
||||
<multiple>penodau</multiple>
|
||||
</term>
|
||||
<term name="column">
|
||||
<single>colofn</single>
|
||||
<multiple>colofnau</multiple>
|
||||
</term>
|
||||
<term name="figure">
|
||||
<single>ffigwr</single>
|
||||
<multiple>ffigyrau</multiple>
|
||||
</term>
|
||||
<term name="folio">
|
||||
<single>ffolio</single>
|
||||
<multiple>ffolios</multiple>
|
||||
</term>
|
||||
<term name="issue">
|
||||
<single>rhifyn</single>
|
||||
<multiple>rhifynnau</multiple>
|
||||
</term>
|
||||
<term name="line">
|
||||
<single>llinell</single>
|
||||
<multiple>llinellau</multiple>
|
||||
</term>
|
||||
<term name="note">
|
||||
<single>nodyn</single>
|
||||
<multiple>nodiadau</multiple>
|
||||
</term>
|
||||
<term name="opus">
|
||||
<single>opus</single>
|
||||
<multiple>opera</multiple>
|
||||
</term>
|
||||
<term name="page">
|
||||
<single>tudalen</single>
|
||||
<multiple>tudalennau</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages">
|
||||
<single>tudalen</single>
|
||||
<multiple>tudalennau</multiple>
|
||||
</term>
|
||||
<term name="paragraph">
|
||||
<single>paragraff</single>
|
||||
<multiple>paragraffau</multiple>
|
||||
</term>
|
||||
<term name="part">
|
||||
<single>rhan</single>
|
||||
<multiple>rhannau</multiple>
|
||||
</term>
|
||||
<term name="section">
|
||||
<single>adran</single>
|
||||
<multiple>adrannau</multiple>
|
||||
</term>
|
||||
<term name="sub verbo">
|
||||
<single>sub verbo</single>
|
||||
<multiple>sub verbis</multiple>
|
||||
</term>
|
||||
<term name="verse">
|
||||
<single>pennill</single>
|
||||
<multiple>penillion</multiple>
|
||||
</term>
|
||||
<term name="volume">
|
||||
<single>cyfrol</single>
|
||||
<multiple>cyfrolau</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT LOCATOR FORMS -->
|
||||
<term name="book" form="short">llyfr.</term>
|
||||
<term name="chapter" form="short">pen.</term>
|
||||
<term name="column" form="short">col.</term>
|
||||
<term name="figure" form="short">ffig.</term>
|
||||
<term name="folio" form="short">ff.</term>
|
||||
<term name="issue" form="short">rhif.</term>
|
||||
<term name="line" form="short">ll.</term>
|
||||
<term name="note" form="short">n.</term>
|
||||
<term name="opus" form="short">op.</term>
|
||||
<term name="page" form="short">
|
||||
<single>t.</single>
|
||||
<multiple>tt.</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages" form="short">
|
||||
<single>t.</single>
|
||||
<multiple>tt.</multiple>
|
||||
</term>
|
||||
<term name="paragraph" form="short">para.</term>
|
||||
<term name="part" form="short">rhan.</term>
|
||||
<term name="section" form="short">adr.</term>
|
||||
<term name="sub verbo" form="short">
|
||||
<single>s.v.</single>
|
||||
<multiple>s.vv.</multiple>
|
||||
</term>
|
||||
<term name="verse" form="short">
|
||||
<single>p.</single>
|
||||
<multiple>pp.</multiple>
|
||||
</term>
|
||||
<term name="volume" form="short">
|
||||
<single>rhif.</single>
|
||||
<multiple>rhifu.</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶¶</multiple>
|
||||
</term>
|
||||
<term name="section" form="symbol">
|
||||
<single>§</single>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="director">
|
||||
<single>cyfarwyddwr</single>
|
||||
<multiple>cyfarwyddwyr</multiple>
|
||||
</term>
|
||||
<term name="editor">
|
||||
<single>golygydd</single>
|
||||
<multiple>golygyddion</multiple>
|
||||
</term>
|
||||
<term name="editorial-director">
|
||||
<single>cyfarwyddwr-golygyddol</single>
|
||||
<multiple>cyfarwyddwyr-golygyddol</multiple>
|
||||
</term>
|
||||
<term name="illustrator">
|
||||
<single>darlunydd</single>
|
||||
<multiple>darlunwyr</multiple>
|
||||
</term>
|
||||
<term name="translator">
|
||||
<single>cyfieithydd</single>
|
||||
<multiple>cyfieithwyr</multiple>
|
||||
</term>
|
||||
<term name="editortranslator">
|
||||
<single>golygydd a chyfieithydd</single>
|
||||
<multiple>golygyddion a chyfieithwyr</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="director" form="short">
|
||||
<single>cyf.</single>
|
||||
<multiple>cyfy.</multiple>
|
||||
</term>
|
||||
<term name="editor" form="short">
|
||||
<single>gol.</single>
|
||||
<multiple>goln.</multiple>
|
||||
</term>
|
||||
<term name="editorial-director" form="short">
|
||||
<single>gol.</single>
|
||||
<multiple>goln.</multiple>
|
||||
</term>
|
||||
<term name="illustrator" form="short">
|
||||
<single>darlun.</single>
|
||||
<multiple>darlun.</multiple>
|
||||
</term>
|
||||
<term name="translator" form="short">
|
||||
<single>cyf.</single>
|
||||
<multiple>cyf.</multiple>
|
||||
</term>
|
||||
<term name="editortranslator" form="short">
|
||||
<single>gol. a chyf.</single>
|
||||
<multiple>goln. a chyf.</multiple>
|
||||
</term>
|
||||
|
||||
<!-- VERB ROLE FORMS -->
|
||||
<term name="container-author" form="verb">gan</term>
|
||||
<term name="director" form="verb">cyfarwyddwyd gan</term>
|
||||
<term name="editor" form="verb">golygwyd gan</term>
|
||||
<term name="editorial-director" form="verb">cyfarwyddwyd a golygwyd gan</term>
|
||||
<term name="illustrator" form="verb">darlunwyd gan</term>
|
||||
<term name="interviewer" form="verb">cyfweliad gan</term>
|
||||
<term name="recipient" form="verb">i</term>
|
||||
<term name="reviewed-author" form="verb">gan</term>
|
||||
<term name="translator" form="verb">cyfieithwyd gan </term>
|
||||
<term name="editortranslator" form="verb">golygwyd a chyfieithwyd gan</term>
|
||||
|
||||
<!-- SHORT VERB ROLE FORMS -->
|
||||
<term name="director" form="verb-short">cyf. gan</term>
|
||||
<term name="editor" form="verb-short">gol. gan</term>
|
||||
<term name="editorial-director" form="verb-short">cyf.-gol. gan</term>
|
||||
<term name="illustrator" form="verb-short">darlun. gan</term>
|
||||
<term name="translator" form="verb-short">cyf. gan</term>
|
||||
<term name="editortranslator" form="verb-short">gol. a chyf. gan</term>
|
||||
|
||||
<!-- LONG MONTH FORMS -->
|
||||
<term name="month-01">Ionawr</term>
|
||||
<term name="month-02">Chwefror</term>
|
||||
<term name="month-03">Mawrth</term>
|
||||
<term name="month-04">Ebrill</term>
|
||||
<term name="month-05">Mai</term>
|
||||
<term name="month-06">Mehefin</term>
|
||||
<term name="month-07">Gorffennaf</term>
|
||||
<term name="month-08">Awst</term>
|
||||
<term name="month-09">Medi</term>
|
||||
<term name="month-10">Hydref</term>
|
||||
<term name="month-11">Tachwedd</term>
|
||||
<term name="month-12">Rhagfyr</term>
|
||||
|
||||
<!-- SHORT MONTH FORMS -->
|
||||
<term name="month-01" form="short">Ion.</term>
|
||||
<term name="month-02" form="short">Chwe.</term>
|
||||
<term name="month-03" form="short">Maw.</term>
|
||||
<term name="month-04" form="short">Ebr.</term>
|
||||
<term name="month-05" form="short">Mai</term>
|
||||
<term name="month-06" form="short">Meh.</term>
|
||||
<term name="month-07" form="short">Gorff.</term>
|
||||
<term name="month-08" form="short">Aws.</term>
|
||||
<term name="month-09" form="short">Med.</term>
|
||||
<term name="month-10" form="short">Hyd.</term>
|
||||
<term name="month-11" form="short">Tach.</term>
|
||||
<term name="month-12" form="short">Rhag.</term>
|
||||
|
||||
<!-- SEASONS -->
|
||||
<term name="season-01">Gwanwyn</term>
|
||||
<term name="season-02">Haf</term>
|
||||
<term name="season-03">Hydref</term>
|
||||
<term name="season-04">Gaeaf</term>
|
||||
</terms>
|
||||
</locale>
|
||||
Vendored
+315
@@ -0,0 +1,315 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="da-DK">
|
||||
<info>
|
||||
<translator>
|
||||
<name>Niels Erik Wille</name>
|
||||
</translator>
|
||||
<translator>
|
||||
<name>Jonas Nyrup</name>
|
||||
</translator>
|
||||
<translator>
|
||||
<name>hafnius</name>
|
||||
</translator>
|
||||
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
|
||||
<updated>2012-07-04T23:31:02+00:00</updated>
|
||||
</info>
|
||||
<style-options punctuation-in-quote="false"/>
|
||||
<date form="text">
|
||||
<date-part name="day" form="ordinal" suffix=" "/>
|
||||
<date-part name="month" suffix=" "/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<date form="numeric">
|
||||
<date-part name="day" form="numeric-leading-zeros" suffix="-" range-delimiter="/"/>
|
||||
<date-part name="month" form="numeric-leading-zeros" suffix="-" range-delimiter="/"/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<terms>
|
||||
<term name="accessed">set</term>
|
||||
<term name="and">og</term>
|
||||
<term name="and others">med flere</term>
|
||||
<term name="anonymous">anonym</term>
|
||||
<term name="anonymous" form="short">anon.</term>
|
||||
<term name="at">på</term>
|
||||
<term name="available at">tilgængelig hos</term>
|
||||
<term name="by">af</term>
|
||||
<term name="circa">cirka</term>
|
||||
<term name="circa" form="short">ca.</term>
|
||||
<term name="cited">henvist</term>
|
||||
<term name="edition">
|
||||
<single>udgave</single>
|
||||
<multiple>udgaver</multiple>
|
||||
</term>
|
||||
<term name="edition" form="short">udg.</term>
|
||||
<term name="et-al">m.fl.</term>
|
||||
<term name="forthcoming">kommende</term>
|
||||
<term name="from">fra</term>
|
||||
<term name="ibid">ibid.</term>
|
||||
<term name="in">i</term>
|
||||
<term name="in press">i trykken</term>
|
||||
<term name="internet">internet</term>
|
||||
<term name="interview">interview</term>
|
||||
<term name="letter">brev</term>
|
||||
<term name="no date">uden år</term>
|
||||
<term name="no date" form="short">u.å.</term>
|
||||
<term name="online">online</term>
|
||||
<term name="presented at">præsenteret ved</term>
|
||||
<term name="reference">
|
||||
<single>reference</single>
|
||||
<multiple>referencer</multiple>
|
||||
</term>
|
||||
<term name="reference" form="short">
|
||||
<single>ref.</single>
|
||||
<multiple>refr.</multiple>
|
||||
</term>
|
||||
<term name="retrieved">hentet</term>
|
||||
<term name="scale">skala</term>
|
||||
<term name="version">version</term>
|
||||
|
||||
<!-- ANNO DOMINI; BEFORE CHRIST -->
|
||||
<term name="ad">e.v.t.</term>
|
||||
<term name="bc">f.v.t.</term>
|
||||
|
||||
<!-- PUNCTUATION -->
|
||||
<term name="open-quote">“</term>
|
||||
<term name="close-quote">”</term>
|
||||
<term name="open-inner-quote">‘</term>
|
||||
<term name="close-inner-quote">’</term>
|
||||
<term name="page-range-delimiter">–</term>
|
||||
|
||||
<!-- ORDINALS -->
|
||||
<term name="ordinal">.</term>
|
||||
|
||||
<!-- LONG ORDINALS -->
|
||||
<term name="long-ordinal-01">første</term>
|
||||
<term name="long-ordinal-02">anden</term>
|
||||
<term name="long-ordinal-03">tredje</term>
|
||||
<term name="long-ordinal-04">fjerde</term>
|
||||
<term name="long-ordinal-05">femte</term>
|
||||
<term name="long-ordinal-06">sjette</term>
|
||||
<term name="long-ordinal-07">syvende</term>
|
||||
<term name="long-ordinal-08">ottende</term>
|
||||
<term name="long-ordinal-09">niende</term>
|
||||
<term name="long-ordinal-10">tiende</term>
|
||||
|
||||
<!-- LONG LOCATOR FORMS -->
|
||||
<term name="book">
|
||||
<single>bog</single>
|
||||
<multiple>bøger</multiple>
|
||||
</term>
|
||||
<term name="chapter">
|
||||
<single>kapitel</single>
|
||||
<multiple>kapitler</multiple>
|
||||
</term>
|
||||
<term name="column">
|
||||
<single>kolonne</single>
|
||||
<multiple>kolonner</multiple>
|
||||
</term>
|
||||
<term name="figure">
|
||||
<single>figur</single>
|
||||
<multiple>figurer</multiple>
|
||||
</term>
|
||||
<term name="folio">
|
||||
<single>folio</single>
|
||||
<multiple>folio</multiple>
|
||||
</term>
|
||||
<term name="issue">
|
||||
<single>nummer</single>
|
||||
<multiple>numre</multiple>
|
||||
</term>
|
||||
<term name="line">
|
||||
<single>linje</single>
|
||||
<multiple>linjer</multiple>
|
||||
</term>
|
||||
<term name="note">
|
||||
<single>note</single>
|
||||
<multiple>noter</multiple>
|
||||
</term>
|
||||
<term name="opus">
|
||||
<single>opus</single>
|
||||
<multiple>opus</multiple>
|
||||
</term>
|
||||
<term name="page">
|
||||
<single>side</single>
|
||||
<multiple>sider</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages">
|
||||
<single>side</single>
|
||||
<multiple>sider</multiple>
|
||||
</term>
|
||||
<term name="paragraph">
|
||||
<single>afsnit</single>
|
||||
<multiple>afsnit</multiple>
|
||||
</term>
|
||||
<term name="part">
|
||||
<single>del</single>
|
||||
<multiple>dele</multiple>
|
||||
</term>
|
||||
<term name="section">
|
||||
<single>paragraf</single>
|
||||
<multiple>paragraffer</multiple>
|
||||
</term>
|
||||
<term name="sub verbo">
|
||||
<single>sub voce</single>
|
||||
<multiple>sub voce</multiple>
|
||||
</term>
|
||||
<term name="verse">
|
||||
<single>vers</single>
|
||||
<multiple>vers</multiple>
|
||||
</term>
|
||||
<term name="volume">
|
||||
<single>bind</single>
|
||||
<multiple>bind</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT LOCATOR FORMS -->
|
||||
<term name="book" form="short">b.</term>
|
||||
<term name="chapter" form="short">kap.</term>
|
||||
<term name="column" form="short">kol.</term>
|
||||
<term name="figure" form="short">fig.</term>
|
||||
<term name="folio" form="short">fol.</term>
|
||||
<term name="issue" form="short">nr.</term>
|
||||
<term name="line" form="short">l.</term>
|
||||
<term name="note" form="short">n.</term>
|
||||
<term name="opus" form="short">op.</term>
|
||||
<term name="page" form="short">
|
||||
<single>s.</single>
|
||||
<multiple>s.</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages" form="short">
|
||||
<single>s.</single>
|
||||
<multiple>s.</multiple>
|
||||
</term>
|
||||
<term name="paragraph" form="short">afs.</term>
|
||||
<term name="part" form="short">d.</term>
|
||||
<term name="section" form="short">par.</term>
|
||||
<term name="sub verbo" form="short">
|
||||
<single>s.v.</single>
|
||||
<multiple>s.v.</multiple>
|
||||
</term>
|
||||
<term name="verse" form="short">
|
||||
<single>v.</single>
|
||||
<multiple>v.</multiple>
|
||||
</term>
|
||||
<term name="volume" form="short">
|
||||
<single>bd.</single>
|
||||
<multiple>bd.</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶¶</multiple>
|
||||
</term>
|
||||
<term name="section" form="symbol">
|
||||
<single>§</single>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="director">
|
||||
<single>instruktør</single>
|
||||
<multiple>instruktører</multiple>
|
||||
</term>
|
||||
<term name="editor">
|
||||
<single>redaktør</single>
|
||||
<multiple>redaktører</multiple>
|
||||
</term>
|
||||
<term name="editorial-director">
|
||||
<single>redaktør</single>
|
||||
<multiple>redaktører</multiple>
|
||||
</term>
|
||||
<term name="illustrator">
|
||||
<single>illustrator</single>
|
||||
<multiple>illustratorer</multiple>
|
||||
</term>
|
||||
<term name="translator">
|
||||
<single>oversætter</single>
|
||||
<multiple>oversættere</multiple>
|
||||
</term>
|
||||
<term name="editortranslator">
|
||||
<single>redaktør & oversætter</single>
|
||||
<multiple>redaktører & oversættere</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="director" form="short">
|
||||
<single>instr.</single>
|
||||
<multiple>instr.</multiple>
|
||||
</term>
|
||||
<term name="editor" form="short">
|
||||
<single>red.</single>
|
||||
<multiple>red.</multiple>
|
||||
</term>
|
||||
<term name="editorial-director" form="short">
|
||||
<single>red.</single>
|
||||
<multiple>red.</multiple>
|
||||
</term>
|
||||
<term name="illustrator" form="short">
|
||||
<single>ill.</single>
|
||||
<multiple>ill.</multiple>
|
||||
</term>
|
||||
<term name="translator" form="short">
|
||||
<single>overs.</single>
|
||||
<multiple>overs.</multiple>
|
||||
</term>
|
||||
<term name="editortranslator" form="short">
|
||||
<single>red. & overs.</single>
|
||||
<multiple>red. & overs.</multiple>
|
||||
</term>
|
||||
|
||||
<!-- VERB ROLE FORMS -->
|
||||
<term name="container-author" form="verb">af</term>
|
||||
<term name="director" form="verb">instrueret af</term>
|
||||
<term name="editor" form="verb">redigeret af</term>
|
||||
<term name="editorial-director" form="verb">redigeret af</term>
|
||||
<term name="illustrator" form="verb">illustreret af</term>
|
||||
<term name="interviewer" form="verb">interviewet af</term>
|
||||
<term name="recipient" form="verb">modtaget af</term>
|
||||
<term name="reviewed-author" form="verb">af</term>
|
||||
<term name="translator" form="verb">oversat af</term>
|
||||
<term name="editortranslator" form="verb">redigeret & oversat af</term>
|
||||
|
||||
<!-- SHORT VERB ROLE FORMS -->
|
||||
<term name="director" form="verb-short">instr.</term>
|
||||
<term name="editor" form="verb-short">red.</term>
|
||||
<term name="editorial-director" form="verb-short">red.</term>
|
||||
<term name="illustrator" form="verb-short">illus.</term>
|
||||
<term name="translator" form="verb-short">overs.</term>
|
||||
<term name="editortranslator" form="verb-short">red. & overs. af</term>
|
||||
|
||||
<!-- LONG MONTH FORMS -->
|
||||
<term name="month-01">januar</term>
|
||||
<term name="month-02">februar</term>
|
||||
<term name="month-03">marts</term>
|
||||
<term name="month-04">april</term>
|
||||
<term name="month-05">maj</term>
|
||||
<term name="month-06">juni</term>
|
||||
<term name="month-07">juli</term>
|
||||
<term name="month-08">august</term>
|
||||
<term name="month-09">september</term>
|
||||
<term name="month-10">oktober</term>
|
||||
<term name="month-11">november</term>
|
||||
<term name="month-12">december</term>
|
||||
|
||||
<!-- SHORT MONTH FORMS -->
|
||||
<term name="month-01" form="short">jan.</term>
|
||||
<term name="month-02" form="short">feb.</term>
|
||||
<term name="month-03" form="short">mar.</term>
|
||||
<term name="month-04" form="short">apr.</term>
|
||||
<term name="month-05" form="short">maj</term>
|
||||
<term name="month-06" form="short">jun.</term>
|
||||
<term name="month-07" form="short">jul.</term>
|
||||
<term name="month-08" form="short">aug.</term>
|
||||
<term name="month-09" form="short">sep.</term>
|
||||
<term name="month-10" form="short">okt.</term>
|
||||
<term name="month-11" form="short">nov.</term>
|
||||
<term name="month-12" form="short">dec.</term>
|
||||
|
||||
<!-- SEASONS -->
|
||||
<term name="season-01">Forår</term>
|
||||
<term name="season-02">Sommer</term>
|
||||
<term name="season-03">Efterår</term>
|
||||
<term name="season-04">Vinter</term>
|
||||
</terms>
|
||||
</locale>
|
||||
Vendored
+334
@@ -0,0 +1,334 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="de-AT">
|
||||
<info>
|
||||
<translator>
|
||||
<name>Till A. Heilmann</name>
|
||||
</translator>
|
||||
<translator>
|
||||
<name>Georg Duffner</name>
|
||||
</translator>
|
||||
<translator>
|
||||
<name>Sebastian Karcher</name>
|
||||
</translator>
|
||||
<translator>
|
||||
<name>Sylvester Keil</name>
|
||||
</translator>
|
||||
<translator>
|
||||
<name>jakov</name>
|
||||
</translator>
|
||||
<translator>
|
||||
<name>Frank Bennett</name>
|
||||
</translator>
|
||||
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
|
||||
<updated>2012-07-04T23:31:02+00:00</updated>
|
||||
</info>
|
||||
<style-options punctuation-in-quote="false"/>
|
||||
<date form="text">
|
||||
<date-part name="day" form="ordinal" suffix=" "/>
|
||||
<date-part name="month" suffix=" "/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<date form="numeric">
|
||||
<date-part name="day" form="numeric-leading-zeros" suffix="."/>
|
||||
<date-part name="month" form="numeric-leading-zeros" suffix="."/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<terms>
|
||||
<term name="accessed">zugegriffen</term>
|
||||
<term name="and">und</term>
|
||||
<term name="and others">und andere</term>
|
||||
<term name="anonymous">ohne Autor</term>
|
||||
<term name="anonymous" form="short">o. A.</term>
|
||||
<term name="at">auf</term>
|
||||
<term name="available at">verfügbar unter</term>
|
||||
<term name="by">von</term>
|
||||
<term name="circa">circa</term>
|
||||
<term name="circa" form="short">ca.</term>
|
||||
<term name="cited">zitiert</term>
|
||||
<term name="edition">
|
||||
<single>Auflage</single>
|
||||
<multiple>Auflagen</multiple>
|
||||
</term>
|
||||
<term name="edition" form="short">Aufl.</term>
|
||||
<term name="et-al">u. a.</term>
|
||||
<term name="forthcoming">i. E.</term>
|
||||
<term name="from">von</term>
|
||||
<term name="ibid">ebd.</term>
|
||||
<term name="in">in</term>
|
||||
<term name="in press">im Druck</term>
|
||||
<term name="internet">Internet</term>
|
||||
<term name="interview">Interview</term>
|
||||
<term name="letter">Brief</term>
|
||||
<term name="no date">ohne Datum</term>
|
||||
<term name="no date" form="short">o. J.</term>
|
||||
<term name="online">online</term>
|
||||
<term name="presented at">gehalten auf der</term>
|
||||
<term name="reference">
|
||||
<single>Referenz</single>
|
||||
<multiple>Referenzen</multiple>
|
||||
</term>
|
||||
<term name="reference" form="short">
|
||||
<single>Ref.</single>
|
||||
<multiple>Ref.</multiple>
|
||||
</term>
|
||||
<term name="retrieved">abgerufen</term>
|
||||
<term name="scale">Maßstab</term>
|
||||
<term name="version">Version</term>
|
||||
|
||||
<!-- ANNO DOMINI; BEFORE CHRIST -->
|
||||
<term name="ad"> n. Chr.</term>
|
||||
<term name="bc"> v. Chr.</term>
|
||||
|
||||
<!-- PUNCTUATION -->
|
||||
<term name="open-quote">„</term>
|
||||
<term name="close-quote">“</term>
|
||||
<term name="open-inner-quote">‚</term>
|
||||
<term name="close-inner-quote">‘</term>
|
||||
<term name="page-range-delimiter">–</term>
|
||||
|
||||
<!-- ORDINALS -->
|
||||
<term name="ordinal">.</term>
|
||||
|
||||
<!-- LONG ORDINALS -->
|
||||
<term name="long-ordinal-01">erster</term>
|
||||
<term name="long-ordinal-02">zweiter</term>
|
||||
<term name="long-ordinal-03">dritter</term>
|
||||
<term name="long-ordinal-04">vierter</term>
|
||||
<term name="long-ordinal-05">fünfter</term>
|
||||
<term name="long-ordinal-06">sechster</term>
|
||||
<term name="long-ordinal-07">siebter</term>
|
||||
<term name="long-ordinal-08">achter</term>
|
||||
<term name="long-ordinal-09">neunter</term>
|
||||
<term name="long-ordinal-10">zehnter</term>
|
||||
|
||||
<!-- LONG LOCATOR FORMS -->
|
||||
<term name="book">
|
||||
<single>Buch</single>
|
||||
<multiple>Bücher</multiple>
|
||||
</term>
|
||||
<term name="chapter">
|
||||
<single>Kapitel</single>
|
||||
<multiple>Kapitel</multiple>
|
||||
</term>
|
||||
<term name="column">
|
||||
<single>Spalte</single>
|
||||
<multiple>Spalten</multiple>
|
||||
</term>
|
||||
<term name="figure">
|
||||
<single>Abbildung</single>
|
||||
<multiple>Abbildungen</multiple>
|
||||
</term>
|
||||
<term name="folio">
|
||||
<single>Blatt</single>
|
||||
<multiple>Blätter</multiple>
|
||||
</term>
|
||||
<term name="issue">
|
||||
<single>Nummer</single>
|
||||
<multiple>Nummern</multiple>
|
||||
</term>
|
||||
<term name="line">
|
||||
<single>Zeile</single>
|
||||
<multiple>Zeilen</multiple>
|
||||
</term>
|
||||
<term name="note">
|
||||
<single>Note</single>
|
||||
<multiple>Noten</multiple>
|
||||
</term>
|
||||
<term name="opus">
|
||||
<single>Opus</single>
|
||||
<multiple>Opera</multiple>
|
||||
</term>
|
||||
<term name="page">
|
||||
<single>Seite</single>
|
||||
<multiple>Seiten</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages">
|
||||
<single>Seite</single>
|
||||
<multiple>Seiten</multiple>
|
||||
</term>
|
||||
<term name="paragraph">
|
||||
<single>Absatz</single>
|
||||
<multiple>Absätze</multiple>
|
||||
</term>
|
||||
<term name="part">
|
||||
<single>Teil</single>
|
||||
<multiple>Teile</multiple>
|
||||
</term>
|
||||
<term name="section">
|
||||
<single>Abschnitt</single>
|
||||
<multiple>Abschnitte</multiple>
|
||||
</term>
|
||||
<term name="sub verbo">
|
||||
<single>sub verbo</single>
|
||||
<multiple>sub verbis</multiple>
|
||||
</term>
|
||||
<term name="verse">
|
||||
<single>Vers</single>
|
||||
<multiple>Verse</multiple>
|
||||
</term>
|
||||
<term name="volume">
|
||||
<single>Band</single>
|
||||
<multiple>Bände</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT LOCATOR FORMS -->
|
||||
<term name="book" form="short">B.</term>
|
||||
<term name="chapter" form="short">Kap.</term>
|
||||
<term name="column" form="short">Sp.</term>
|
||||
<term name="figure" form="short">Abb.</term>
|
||||
<term name="folio" form="short">Fol.</term>
|
||||
<term name="issue" form="short">Nr.</term>
|
||||
<term name="line" form="short">l.</term>
|
||||
<term name="note" form="short">n.</term>
|
||||
<term name="opus" form="short">op.</term>
|
||||
<term name="page" form="short">
|
||||
<single>S.</single>
|
||||
<multiple>S.</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages" form="short">
|
||||
<single>S.</single>
|
||||
<multiple>S.</multiple>
|
||||
</term>
|
||||
<term name="paragraph" form="short">Abs.</term>
|
||||
<term name="part" form="short">Teil</term>
|
||||
<term name="section" form="short">Abschn.</term>
|
||||
<term name="sub verbo" form="short">
|
||||
<single>s. v.</single>
|
||||
<multiple>s. vv.</multiple>
|
||||
</term>
|
||||
<term name="verse" form="short">
|
||||
<single>V.</single>
|
||||
<multiple>V.</multiple>
|
||||
</term>
|
||||
<term name="volume" form="short">
|
||||
<single>Bd.</single>
|
||||
<multiple>Bd.</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶¶</multiple>
|
||||
</term>
|
||||
<term name="section" form="symbol">
|
||||
<single>§</single>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="director">
|
||||
<single>Regisseur</single>
|
||||
<multiple>Regisseure</multiple>
|
||||
</term>
|
||||
<term name="editor">
|
||||
<single>Herausgeber</single>
|
||||
<multiple>Herausgeber</multiple>
|
||||
</term>
|
||||
<term name="collection-editor">
|
||||
<single>Reihenherausgeber</single>
|
||||
<multiple>Reihenherausgeber</multiple>
|
||||
</term>
|
||||
<term name="editorial-director">
|
||||
<single>Herausgeber</single>
|
||||
<multiple>Herausgeber</multiple>
|
||||
</term>
|
||||
<term name="illustrator">
|
||||
<single>Illustrator</single>
|
||||
<multiple>Illustratoren</multiple>
|
||||
</term>
|
||||
<term name="translator">
|
||||
<single>Übersetzer</single>
|
||||
<multiple>Übersetzer</multiple>
|
||||
</term>
|
||||
<term name="editortranslator">
|
||||
<single>Herausgeber & Übersetzer</single>
|
||||
<multiple>Herausgeber & Übersetzer</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="director" form="short">
|
||||
<single>Reg.</single>
|
||||
<multiple>Reg.</multiple>
|
||||
</term>
|
||||
<term name="editor" form="short">
|
||||
<single>Hrsg.</single>
|
||||
<multiple>Hrsg.</multiple>
|
||||
</term>
|
||||
<term name="collection-editor" form="short">
|
||||
<single>Hrsg.</single>
|
||||
<multiple>Hrsg.</multiple>
|
||||
</term>
|
||||
<term name="editorial-director" form="short">
|
||||
<single>Hrsg.</single>
|
||||
<multiple>Hrsg.</multiple>
|
||||
</term>
|
||||
<term name="illustrator" form="short">
|
||||
<single>Ill.</single>
|
||||
<multiple>Ill.</multiple>
|
||||
</term>
|
||||
<term name="translator" form="short">
|
||||
<single>Übers.</single>
|
||||
<multiple>Übers.</multiple>
|
||||
</term>
|
||||
<term name="editortranslator" form="short">
|
||||
<single>Hrsg. & Übers.</single>
|
||||
<multiple>Hrsg. & Übers</multiple>
|
||||
</term>
|
||||
|
||||
<!-- VERB ROLE FORMS -->
|
||||
<term name="container-author" form="verb">von</term>
|
||||
<term name="director" form="verb">Regie von</term>
|
||||
<term name="editor" form="verb">herausgegeben von</term>
|
||||
<term name="collection-editor" form="verb">herausgegeben von</term>
|
||||
<term name="editorial-director" form="verb">herausgegeben von</term>
|
||||
<term name="illustrator" form="verb">illustriert von</term>
|
||||
<term name="interviewer" form="verb">interviewt von</term>
|
||||
<term name="recipient" form="verb">an</term>
|
||||
<term name="reviewed-author" form="verb">von</term>
|
||||
<term name="translator" form="verb">übersetzt von</term>
|
||||
<term name="editortranslator" form="verb">herausgegeben und übersetzt von</term>
|
||||
|
||||
<!-- SHORT VERB ROLE FORMS -->
|
||||
<term name="director" form="verb-short">Reg.</term>
|
||||
<term name="editor" form="verb-short">hg. von</term>
|
||||
<term name="collection-editor" form="verb-short">hg. von</term>
|
||||
<term name="editorial-director" form="verb-short">hg. von</term>
|
||||
<term name="illustrator" form="verb-short">illus. von</term>
|
||||
<term name="translator" form="verb-short">übers. von</term>
|
||||
<term name="editortranslator" form="verb-short">hg. & übers. von</term>
|
||||
|
||||
<!-- LONG MONTH FORMS -->
|
||||
<term name="month-01">Jänner</term>
|
||||
<term name="month-02">Februar</term>
|
||||
<term name="month-03">März</term>
|
||||
<term name="month-04">April</term>
|
||||
<term name="month-05">Mai</term>
|
||||
<term name="month-06">Juni</term>
|
||||
<term name="month-07">Juli</term>
|
||||
<term name="month-08">August</term>
|
||||
<term name="month-09">September</term>
|
||||
<term name="month-10">Oktober</term>
|
||||
<term name="month-11">November</term>
|
||||
<term name="month-12">Dezember</term>
|
||||
|
||||
<!-- SHORT MONTH FORMS -->
|
||||
<term name="month-01" form="short">Jän.</term>
|
||||
<term name="month-02" form="short">Feb.</term>
|
||||
<term name="month-03" form="short">März</term>
|
||||
<term name="month-04" form="short">Apr.</term>
|
||||
<term name="month-05" form="short">Mai</term>
|
||||
<term name="month-06" form="short">Juni</term>
|
||||
<term name="month-07" form="short">Juli</term>
|
||||
<term name="month-08" form="short">Aug.</term>
|
||||
<term name="month-09" form="short">Sep.</term>
|
||||
<term name="month-10" form="short">Okt.</term>
|
||||
<term name="month-11" form="short">Nov.</term>
|
||||
<term name="month-12" form="short">Dez.</term>
|
||||
|
||||
<!-- SEASONS -->
|
||||
<term name="season-01">Frühjahr</term>
|
||||
<term name="season-02">Sommer</term>
|
||||
<term name="season-03">Herbst</term>
|
||||
<term name="season-04">Winter</term>
|
||||
</terms>
|
||||
</locale>
|
||||
Vendored
+318
@@ -0,0 +1,318 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="de-CH">
|
||||
<info>
|
||||
<translator>
|
||||
<name>Till A. Heilmann</name>
|
||||
</translator>
|
||||
<translator>
|
||||
<name>Sylvester Keil</name>
|
||||
</translator>
|
||||
<translator>
|
||||
<name>jakov</name>
|
||||
</translator>
|
||||
<translator>
|
||||
<name>Sebastian Karcher</name>
|
||||
</translator>
|
||||
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
|
||||
<updated>2012-07-04T23:31:02+00:00</updated>
|
||||
</info>
|
||||
<style-options punctuation-in-quote="false"/>
|
||||
<date form="text">
|
||||
<date-part name="day" form="ordinal" suffix=" "/>
|
||||
<date-part name="month" suffix=" "/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<date form="numeric">
|
||||
<date-part name="day" form="numeric-leading-zeros" suffix="."/>
|
||||
<date-part name="month" form="numeric-leading-zeros" suffix="."/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<terms>
|
||||
<term name="accessed">zugegriffen</term>
|
||||
<term name="and">und</term>
|
||||
<term name="and others">und andere</term>
|
||||
<term name="anonymous">ohne Autor</term>
|
||||
<term name="anonymous" form="short">o. A.</term>
|
||||
<term name="at">auf</term>
|
||||
<term name="available at">verfügbar unter</term>
|
||||
<term name="by">von</term>
|
||||
<term name="circa">circa</term>
|
||||
<term name="circa" form="short">ca.</term>
|
||||
<term name="cited">zitiert</term>
|
||||
<term name="edition">
|
||||
<single>Auflage</single>
|
||||
<multiple>Auflagen</multiple>
|
||||
</term>
|
||||
<term name="edition" form="short">Aufl.</term>
|
||||
<term name="et-al">u. a.</term>
|
||||
<term name="forthcoming">i. E.</term>
|
||||
<term name="from">von</term>
|
||||
<term name="ibid">ebd.</term>
|
||||
<term name="in">in</term>
|
||||
<term name="in press">im Druck</term>
|
||||
<term name="internet">Internet</term>
|
||||
<term name="interview">Interview</term>
|
||||
<term name="letter">Brief</term>
|
||||
<term name="no date">ohne Datum</term>
|
||||
<term name="no date" form="short">o. J.</term>
|
||||
<term name="online">online</term>
|
||||
<term name="presented at">gehalten auf der</term>
|
||||
<term name="reference">
|
||||
<single>Referenz</single>
|
||||
<multiple>Referenzen</multiple>
|
||||
</term>
|
||||
<term name="reference" form="short">
|
||||
<single>Ref.</single>
|
||||
<multiple>Ref.</multiple>
|
||||
</term>
|
||||
<term name="retrieved">abgerufen</term>
|
||||
<term name="scale">Massstab</term>
|
||||
<term name="version">Version</term>
|
||||
|
||||
<!-- ANNO DOMINI; BEFORE CHRIST -->
|
||||
<term name="ad"> n. Chr.</term>
|
||||
<term name="bc"> v. Chr.</term>
|
||||
|
||||
<!-- PUNCTUATION -->
|
||||
<term name="open-quote">«</term>
|
||||
<term name="close-quote">»</term>
|
||||
<term name="open-inner-quote">‹</term>
|
||||
<term name="close-inner-quote">›</term>
|
||||
<term name="page-range-delimiter">–</term>
|
||||
|
||||
<!-- ORDINALS -->
|
||||
<term name="ordinal">.</term>
|
||||
|
||||
<!-- LONG ORDINALS -->
|
||||
<term name="long-ordinal-01">erster</term>
|
||||
<term name="long-ordinal-02">zweiter</term>
|
||||
<term name="long-ordinal-03">dritter</term>
|
||||
<term name="long-ordinal-04">vierter</term>
|
||||
<term name="long-ordinal-05">fünfter</term>
|
||||
<term name="long-ordinal-06">sechster</term>
|
||||
<term name="long-ordinal-07">siebter</term>
|
||||
<term name="long-ordinal-08">achter</term>
|
||||
<term name="long-ordinal-09">neunter</term>
|
||||
<term name="long-ordinal-10">zehnter</term>
|
||||
|
||||
<!-- LONG LOCATOR FORMS -->
|
||||
<term name="book">
|
||||
<single>Buch</single>
|
||||
<multiple>Bücher</multiple>
|
||||
</term>
|
||||
<term name="chapter">
|
||||
<single>Kapitel</single>
|
||||
<multiple>Kapitel</multiple>
|
||||
</term>
|
||||
<term name="column">
|
||||
<single>Spalte</single>
|
||||
<multiple>Spalten</multiple>
|
||||
</term>
|
||||
<term name="figure">
|
||||
<single>Abbildung</single>
|
||||
<multiple>Abbildungen</multiple>
|
||||
</term>
|
||||
<term name="folio">
|
||||
<single>Blatt</single>
|
||||
<multiple>Blätter</multiple>
|
||||
</term>
|
||||
<term name="issue">
|
||||
<single>Nummer</single>
|
||||
<multiple>Nummern</multiple>
|
||||
</term>
|
||||
<term name="line">
|
||||
<single>Zeile</single>
|
||||
<multiple>Zeilen</multiple>
|
||||
</term>
|
||||
<term name="note">
|
||||
<single>Note</single>
|
||||
<multiple>Noten</multiple>
|
||||
</term>
|
||||
<term name="opus">
|
||||
<single>Opus</single>
|
||||
<multiple>Opera</multiple>
|
||||
</term>
|
||||
<term name="page">
|
||||
<single>Seite</single>
|
||||
<multiple>Seiten</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages">
|
||||
<single>Seite</single>
|
||||
<multiple>Seiten</multiple>
|
||||
</term>
|
||||
<term name="paragraph">
|
||||
<single>Absatz</single>
|
||||
<multiple>Absätze</multiple>
|
||||
</term>
|
||||
<term name="part">
|
||||
<single>Teil</single>
|
||||
<multiple>Teile</multiple>
|
||||
</term>
|
||||
<term name="section">
|
||||
<single>Abschnitt</single>
|
||||
<multiple>Abschnitte</multiple>
|
||||
</term>
|
||||
<term name="sub verbo">
|
||||
<single>sub verbo</single>
|
||||
<multiple>sub verbis</multiple>
|
||||
</term>
|
||||
<term name="verse">
|
||||
<single>Vers</single>
|
||||
<multiple>Verse</multiple>
|
||||
</term>
|
||||
<term name="volume">
|
||||
<single>Band</single>
|
||||
<multiple>Bände</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT LOCATOR FORMS -->
|
||||
<term name="book" form="short">B.</term>
|
||||
<term name="chapter" form="short">Kap.</term>
|
||||
<term name="column" form="short">Sp.</term>
|
||||
<term name="figure" form="short">Abb.</term>
|
||||
<term name="folio" form="short">Fol.</term>
|
||||
<term name="issue" form="short">Nr.</term>
|
||||
<term name="line" form="short">l.</term>
|
||||
<term name="note" form="short">n.</term>
|
||||
<term name="opus" form="short">op.</term>
|
||||
<term name="page" form="short">
|
||||
<single>S.</single>
|
||||
<multiple>S.</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages" form="short">
|
||||
<single>S.</single>
|
||||
<multiple>S.</multiple>
|
||||
</term>
|
||||
<term name="paragraph" form="short">Abs.</term>
|
||||
<term name="part" form="short">Teil</term>
|
||||
<term name="section" form="short">Abschn.</term>
|
||||
<term name="sub verbo" form="short">
|
||||
<single>s. v.</single>
|
||||
<multiple>s. vv.</multiple>
|
||||
</term>
|
||||
<term name="verse" form="short">
|
||||
<single>V.</single>
|
||||
<multiple>V.</multiple>
|
||||
</term>
|
||||
<term name="volume" form="short">
|
||||
<single>Bd.</single>
|
||||
<multiple>Bd.</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶¶</multiple>
|
||||
</term>
|
||||
<term name="section" form="symbol">
|
||||
<single>§</single>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="director">
|
||||
<single>Regisseur</single>
|
||||
<multiple>Regisseure</multiple>
|
||||
</term>
|
||||
<term name="editor">
|
||||
<single>Herausgeber</single>
|
||||
<multiple>Herausgeber</multiple>
|
||||
</term>
|
||||
<term name="editorial-director">
|
||||
<single>Herausgeber</single>
|
||||
<multiple>Herausgeber</multiple>
|
||||
</term>
|
||||
<term name="illustrator">
|
||||
<single>Illustrator</single>
|
||||
<multiple>Illustratoren</multiple>
|
||||
</term>
|
||||
<term name="translator">
|
||||
<single>Übersetzer</single>
|
||||
<multiple>Übersetzer</multiple>
|
||||
</term>
|
||||
<term name="editortranslator">
|
||||
<single>Herausgeber & Übersetzer</single>
|
||||
<multiple>Herausgeber & Übersetzer</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="director" form="short">
|
||||
<single>Reg.</single>
|
||||
<multiple>Reg.</multiple>
|
||||
</term>
|
||||
<term name="editor" form="short">
|
||||
<single>Hrsg.</single>
|
||||
<multiple>Hrsg.</multiple>
|
||||
</term>
|
||||
<term name="editorial-director" form="short">
|
||||
<single>Hrsg.</single>
|
||||
<multiple>Hrsg.</multiple>
|
||||
</term>
|
||||
<term name="illustrator" form="short">
|
||||
<single>Ill.</single>
|
||||
<multiple>Ill.</multiple>
|
||||
</term>
|
||||
<term name="translator" form="short">
|
||||
<single>Übers.</single>
|
||||
<multiple>Übers.</multiple>
|
||||
</term>
|
||||
<term name="editortranslator" form="short">
|
||||
<single>Hrsg. & Übers.</single>
|
||||
<multiple>Hrsg. & Übers</multiple>
|
||||
</term>
|
||||
|
||||
<!-- VERB ROLE FORMS -->
|
||||
<term name="container-author" form="verb">von</term>
|
||||
<term name="director" form="verb">Regie von</term>
|
||||
<term name="editor" form="verb">herausgegeben von</term>
|
||||
<term name="editorial-director" form="verb">herausgegeben von</term>
|
||||
<term name="illustrator" form="verb">illustriert von</term>
|
||||
<term name="interviewer" form="verb">interviewt von</term>
|
||||
<term name="recipient" form="verb">an</term>
|
||||
<term name="reviewed-author" form="verb">von</term>
|
||||
<term name="translator" form="verb">übersetzt von</term>
|
||||
<term name="editortranslator" form="verb">herausgegeben und übersetzt von</term>
|
||||
|
||||
<!-- SHORT VERB ROLE FORMS -->
|
||||
<term name="director" form="verb-short">Reg.</term>
|
||||
<term name="editor" form="verb-short">hg. von</term>
|
||||
<term name="editorial-director" form="verb-short">hg. von</term>
|
||||
<term name="illustrator" form="verb-short">illus. von</term>
|
||||
<term name="translator" form="verb-short">übers. von</term>
|
||||
<term name="editortranslator" form="verb-short">hg. & übers. von</term>
|
||||
|
||||
<!-- LONG MONTH FORMS -->
|
||||
<term name="month-01">Januar</term>
|
||||
<term name="month-02">Februar</term>
|
||||
<term name="month-03">März</term>
|
||||
<term name="month-04">April</term>
|
||||
<term name="month-05">Mai</term>
|
||||
<term name="month-06">Juni</term>
|
||||
<term name="month-07">Juli</term>
|
||||
<term name="month-08">August</term>
|
||||
<term name="month-09">September</term>
|
||||
<term name="month-10">Oktober</term>
|
||||
<term name="month-11">November</term>
|
||||
<term name="month-12">Dezember</term>
|
||||
|
||||
<!-- SHORT MONTH FORMS -->
|
||||
<term name="month-01" form="short">Jan.</term>
|
||||
<term name="month-02" form="short">Feb.</term>
|
||||
<term name="month-03" form="short">März</term>
|
||||
<term name="month-04" form="short">Apr.</term>
|
||||
<term name="month-05" form="short">Mai</term>
|
||||
<term name="month-06" form="short">Juni</term>
|
||||
<term name="month-07" form="short">Juli</term>
|
||||
<term name="month-08" form="short">Aug.</term>
|
||||
<term name="month-09" form="short">Sep.</term>
|
||||
<term name="month-10" form="short">Okt.</term>
|
||||
<term name="month-11" form="short">Nov.</term>
|
||||
<term name="month-12" form="short">Dez.</term>
|
||||
|
||||
<!-- SEASONS -->
|
||||
<term name="season-01">Frühjahr</term>
|
||||
<term name="season-02">Sommer</term>
|
||||
<term name="season-03">Herbst</term>
|
||||
<term name="season-04">Winter</term>
|
||||
</terms>
|
||||
</locale>
|
||||
Vendored
+331
@@ -0,0 +1,331 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="de-DE">
|
||||
<info>
|
||||
<translator>
|
||||
<name>Till A. Heilmann</name>
|
||||
</translator>
|
||||
<translator>
|
||||
<name>Ulrich</name>
|
||||
</translator>
|
||||
<translator>
|
||||
<name>Rintze M. Zelle</name>
|
||||
</translator>
|
||||
<translator>
|
||||
<name>Sebastian Karcher</name>
|
||||
</translator>
|
||||
<translator>
|
||||
<name>jakov</name>
|
||||
</translator>
|
||||
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
|
||||
<updated>2012-07-04T23:31:02+00:00</updated>
|
||||
</info>
|
||||
<style-options punctuation-in-quote="false"/>
|
||||
<date form="text">
|
||||
<date-part name="day" form="ordinal" suffix=" "/>
|
||||
<date-part name="month" suffix=" "/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<date form="numeric">
|
||||
<date-part name="day" form="numeric-leading-zeros" suffix="."/>
|
||||
<date-part name="month" form="numeric-leading-zeros" suffix="."/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<terms>
|
||||
<term name="accessed">zugegriffen</term>
|
||||
<term name="and">und</term>
|
||||
<term name="and others">und andere</term>
|
||||
<term name="anonymous">ohne Autor</term>
|
||||
<term name="anonymous" form="short">o. A.</term>
|
||||
<term name="at">auf</term>
|
||||
<term name="available at">verfügbar unter</term>
|
||||
<term name="by">von</term>
|
||||
<term name="circa">circa</term>
|
||||
<term name="circa" form="short">ca.</term>
|
||||
<term name="cited">zitiert</term>
|
||||
<term name="edition">
|
||||
<single>Auflage</single>
|
||||
<multiple>Auflagen</multiple>
|
||||
</term>
|
||||
<term name="edition" form="short">Aufl.</term>
|
||||
<term name="et-al">u. a.</term>
|
||||
<term name="forthcoming">i. E.</term>
|
||||
<term name="from">von</term>
|
||||
<term name="ibid">ebd.</term>
|
||||
<term name="in">in</term>
|
||||
<term name="in press">im Druck</term>
|
||||
<term name="internet">Internet</term>
|
||||
<term name="interview">Interview</term>
|
||||
<term name="letter">Brief</term>
|
||||
<term name="no date">ohne Datum</term>
|
||||
<term name="no date" form="short">o. J.</term>
|
||||
<term name="online">online</term>
|
||||
<term name="presented at">gehalten auf der</term>
|
||||
<term name="reference">
|
||||
<single>Referenz</single>
|
||||
<multiple>Referenzen</multiple>
|
||||
</term>
|
||||
<term name="reference" form="short">
|
||||
<single>Ref.</single>
|
||||
<multiple>Ref.</multiple>
|
||||
</term>
|
||||
<term name="retrieved">abgerufen</term>
|
||||
<term name="scale">Maßstab</term>
|
||||
<term name="version">Version</term>
|
||||
|
||||
<!-- ANNO DOMINI; BEFORE CHRIST -->
|
||||
<term name="ad"> n. Chr.</term>
|
||||
<term name="bc"> v. Chr.</term>
|
||||
|
||||
<!-- PUNCTUATION -->
|
||||
<term name="open-quote">„</term>
|
||||
<term name="close-quote">“</term>
|
||||
<term name="open-inner-quote">‚</term>
|
||||
<term name="close-inner-quote">‘</term>
|
||||
<term name="page-range-delimiter">–</term>
|
||||
|
||||
<!-- ORDINALS -->
|
||||
<term name="ordinal">.</term>
|
||||
|
||||
<!-- LONG ORDINALS -->
|
||||
<term name="long-ordinal-01">erster</term>
|
||||
<term name="long-ordinal-02">zweiter</term>
|
||||
<term name="long-ordinal-03">dritter</term>
|
||||
<term name="long-ordinal-04">vierter</term>
|
||||
<term name="long-ordinal-05">fünfter</term>
|
||||
<term name="long-ordinal-06">sechster</term>
|
||||
<term name="long-ordinal-07">siebter</term>
|
||||
<term name="long-ordinal-08">achter</term>
|
||||
<term name="long-ordinal-09">neunter</term>
|
||||
<term name="long-ordinal-10">zehnter</term>
|
||||
|
||||
<!-- LONG LOCATOR FORMS -->
|
||||
<term name="book">
|
||||
<single>Buch</single>
|
||||
<multiple>Bücher</multiple>
|
||||
</term>
|
||||
<term name="chapter">
|
||||
<single>Kapitel</single>
|
||||
<multiple>Kapitel</multiple>
|
||||
</term>
|
||||
<term name="column">
|
||||
<single>Spalte</single>
|
||||
<multiple>Spalten</multiple>
|
||||
</term>
|
||||
<term name="figure">
|
||||
<single>Abbildung</single>
|
||||
<multiple>Abbildungen</multiple>
|
||||
</term>
|
||||
<term name="folio">
|
||||
<single>Blatt</single>
|
||||
<multiple>Blätter</multiple>
|
||||
</term>
|
||||
<term name="issue">
|
||||
<single>Nummer</single>
|
||||
<multiple>Nummern</multiple>
|
||||
</term>
|
||||
<term name="line">
|
||||
<single>Zeile</single>
|
||||
<multiple>Zeilen</multiple>
|
||||
</term>
|
||||
<term name="note">
|
||||
<single>Note</single>
|
||||
<multiple>Noten</multiple>
|
||||
</term>
|
||||
<term name="opus">
|
||||
<single>Opus</single>
|
||||
<multiple>Opera</multiple>
|
||||
</term>
|
||||
<term name="page">
|
||||
<single>Seite</single>
|
||||
<multiple>Seiten</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages">
|
||||
<single>Seite</single>
|
||||
<multiple>Seiten</multiple>
|
||||
</term>
|
||||
<term name="paragraph">
|
||||
<single>Absatz</single>
|
||||
<multiple>Absätze</multiple>
|
||||
</term>
|
||||
<term name="part">
|
||||
<single>Teil</single>
|
||||
<multiple>Teile</multiple>
|
||||
</term>
|
||||
<term name="section">
|
||||
<single>Abschnitt</single>
|
||||
<multiple>Abschnitte</multiple>
|
||||
</term>
|
||||
<term name="sub verbo">
|
||||
<single>sub verbo</single>
|
||||
<multiple>sub verbis</multiple>
|
||||
</term>
|
||||
<term name="verse">
|
||||
<single>Vers</single>
|
||||
<multiple>Verse</multiple>
|
||||
</term>
|
||||
<term name="volume">
|
||||
<single>Band</single>
|
||||
<multiple>Bände</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT LOCATOR FORMS -->
|
||||
<term name="book" form="short">B.</term>
|
||||
<term name="chapter" form="short">Kap.</term>
|
||||
<term name="column" form="short">Sp.</term>
|
||||
<term name="figure" form="short">Abb.</term>
|
||||
<term name="folio" form="short">Fol.</term>
|
||||
<term name="issue" form="short">Nr.</term>
|
||||
<term name="line" form="short">Z.</term>
|
||||
<term name="note" form="short">N.</term>
|
||||
<term name="opus" form="short">op.</term>
|
||||
<term name="page" form="short">
|
||||
<single>S.</single>
|
||||
<multiple>S.</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages" form="short">
|
||||
<single>S.</single>
|
||||
<multiple>S.</multiple>
|
||||
</term>
|
||||
<term name="paragraph" form="short">Abs.</term>
|
||||
<term name="part" form="short">Teil</term>
|
||||
<term name="section" form="short">Abschn.</term>
|
||||
<term name="sub verbo" form="short">
|
||||
<single>s. v.</single>
|
||||
<multiple>s. vv.</multiple>
|
||||
</term>
|
||||
<term name="verse" form="short">
|
||||
<single>V.</single>
|
||||
<multiple>V.</multiple>
|
||||
</term>
|
||||
<term name="volume" form="short">
|
||||
<single>Bd.</single>
|
||||
<multiple>Bde.</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶¶</multiple>
|
||||
</term>
|
||||
<term name="section" form="symbol">
|
||||
<single>§</single>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="director">
|
||||
<single>Regisseur</single>
|
||||
<multiple>Regisseure</multiple>
|
||||
</term>
|
||||
<term name="editor">
|
||||
<single>Herausgeber</single>
|
||||
<multiple>Herausgeber</multiple>
|
||||
</term>
|
||||
<term name="collection-editor">
|
||||
<single>Reihenherausgeber</single>
|
||||
<multiple>Reihenherausgeber</multiple>
|
||||
</term>
|
||||
<term name="editorial-director">
|
||||
<single>Herausgeber</single>
|
||||
<multiple>Herausgeber</multiple>
|
||||
</term>
|
||||
<term name="illustrator">
|
||||
<single>Illustrator</single>
|
||||
<multiple>Illustratoren</multiple>
|
||||
</term>
|
||||
<term name="translator">
|
||||
<single>Übersetzer</single>
|
||||
<multiple>Übersetzer</multiple>
|
||||
</term>
|
||||
<term name="editortranslator">
|
||||
<single>Herausgeber & Übersetzer</single>
|
||||
<multiple>Herausgeber & Übersetzer</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="director" form="short">
|
||||
<single>Reg.</single>
|
||||
<multiple>Reg.</multiple>
|
||||
</term>
|
||||
<term name="editor" form="short">
|
||||
<single>Hrsg.</single>
|
||||
<multiple>Hrsg.</multiple>
|
||||
</term>
|
||||
<term name="collection-editor" form="short">
|
||||
<single>Hrsg.</single>
|
||||
<multiple>Hrsg.</multiple>
|
||||
</term>
|
||||
<term name="editorial-director" form="short">
|
||||
<single>Hrsg.</single>
|
||||
<multiple>Hrsg.</multiple>
|
||||
</term>
|
||||
<term name="illustrator" form="short">
|
||||
<single>Ill.</single>
|
||||
<multiple>Ill.</multiple>
|
||||
</term>
|
||||
<term name="translator" form="short">
|
||||
<single>Übers.</single>
|
||||
<multiple>Übers.</multiple>
|
||||
</term>
|
||||
<term name="editortranslator" form="short">
|
||||
<single>Hrsg. & Übers.</single>
|
||||
<multiple>Hrsg. & Übers</multiple>
|
||||
</term>
|
||||
|
||||
<!-- VERB ROLE FORMS -->
|
||||
<term name="container-author" form="verb">von</term>
|
||||
<term name="director" form="verb">Regie von</term>
|
||||
<term name="editor" form="verb">herausgegeben von</term>
|
||||
<term name="collection-editor" form="verb">herausgegeben von</term>
|
||||
<term name="editorial-director" form="verb">herausgegeben von</term>
|
||||
<term name="illustrator" form="verb">illustriert von</term>
|
||||
<term name="interviewer" form="verb">interviewt von</term>
|
||||
<term name="recipient" form="verb">an</term>
|
||||
<term name="reviewed-author" form="verb">von</term>
|
||||
<term name="translator" form="verb">übersetzt von</term>
|
||||
<term name="editortranslator" form="verb">herausgegeben und übersetzt von</term>
|
||||
|
||||
<!-- SHORT VERB ROLE FORMS -->
|
||||
<term name="director" form="verb-short">Reg.</term>
|
||||
<term name="editor" form="verb-short">hg. von</term>
|
||||
<term name="collection-editor" form="verb-short">hg. von</term>
|
||||
<term name="editorial-director" form="verb-short">hg. von</term>
|
||||
<term name="illustrator" form="verb-short">illus. von</term>
|
||||
<term name="translator" form="verb-short">übers. von</term>
|
||||
<term name="editortranslator" form="verb-short">hg. & übers. von</term>
|
||||
|
||||
<!-- LONG MONTH FORMS -->
|
||||
<term name="month-01">Januar</term>
|
||||
<term name="month-02">Februar</term>
|
||||
<term name="month-03">März</term>
|
||||
<term name="month-04">April</term>
|
||||
<term name="month-05">Mai</term>
|
||||
<term name="month-06">Juni</term>
|
||||
<term name="month-07">Juli</term>
|
||||
<term name="month-08">August</term>
|
||||
<term name="month-09">September</term>
|
||||
<term name="month-10">Oktober</term>
|
||||
<term name="month-11">November</term>
|
||||
<term name="month-12">Dezember</term>
|
||||
|
||||
<!-- SHORT MONTH FORMS -->
|
||||
<term name="month-01" form="short">Jan.</term>
|
||||
<term name="month-02" form="short">Feb.</term>
|
||||
<term name="month-03" form="short">März</term>
|
||||
<term name="month-04" form="short">Apr.</term>
|
||||
<term name="month-05" form="short">Mai</term>
|
||||
<term name="month-06" form="short">Juni</term>
|
||||
<term name="month-07" form="short">Juli</term>
|
||||
<term name="month-08" form="short">Aug.</term>
|
||||
<term name="month-09" form="short">Sep.</term>
|
||||
<term name="month-10" form="short">Okt.</term>
|
||||
<term name="month-11" form="short">Nov.</term>
|
||||
<term name="month-12" form="short">Dez.</term>
|
||||
|
||||
<!-- SEASONS -->
|
||||
<term name="season-01">Frühjahr</term>
|
||||
<term name="season-02">Sommer</term>
|
||||
<term name="season-03">Herbst</term>
|
||||
<term name="season-04">Winter</term>
|
||||
</terms>
|
||||
</locale>
|
||||
Vendored
+314
@@ -0,0 +1,314 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="el-GR">
|
||||
<info>
|
||||
<translator>
|
||||
<name>thanasis57</name>
|
||||
</translator>
|
||||
<translator>
|
||||
<name>dimtamb</name>
|
||||
</translator>
|
||||
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
|
||||
<updated>2013-11-08T20:31:02+00:00</updated>
|
||||
</info>
|
||||
<style-options punctuation-in-quote="false"/>
|
||||
<date form="text">
|
||||
<date-part name="day" suffix=" "/>
|
||||
<date-part name="month" suffix=" "/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<date form="numeric">
|
||||
<date-part name="day" form="numeric-leading-zeros" suffix="/"/>
|
||||
<date-part name="month" form="numeric-leading-zeros" suffix="/"/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<terms>
|
||||
<term name="accessed">ημερομηνία πρόσβασης</term>
|
||||
<term name="and">και</term>
|
||||
<term name="and others">και άλλοι</term>
|
||||
<term name="anonymous">ανώνυμο</term>
|
||||
<term name="anonymous" form="short">ανών.</term>
|
||||
<term name="at">εφ.</term>
|
||||
<term name="available at">διαθέσιμο στο</term>
|
||||
<term name="by">από</term>
|
||||
<term name="circa">περίπου</term>
|
||||
<term name="circa" form="short">περ.</term>
|
||||
<term name="cited">παρατίθεται</term>
|
||||
<term name="edition" gender="feminine">
|
||||
<single>έκδοση</single>
|
||||
<multiple>εκδόσεις</multiple>
|
||||
</term>
|
||||
<term name="edition" form="short">έκδ.</term>
|
||||
<term name="et-al">κ.ά.</term>
|
||||
<term name="forthcoming">προσεχές</term>
|
||||
<term name="from">από</term>
|
||||
<term name="ibid">στο ίδιο</term>
|
||||
<term name="in">στο</term>
|
||||
<term name="in press">υπό έκδοση</term>
|
||||
<term name="internet">διαδίκτυο</term>
|
||||
<term name="interview">συνέντευξη</term>
|
||||
<term name="letter">επιστολή</term>
|
||||
<term name="no date">χωρίς χρονολογία</term>
|
||||
<term name="no date" form="short">χ.χ.</term>
|
||||
<term name="online">έκδοση σε ψηφιακή μορφή</term>
|
||||
<term name="presented at">παρουσιάστηκε στο</term>
|
||||
<term name="reference">
|
||||
<single>παραπομπή</single>
|
||||
<multiple>παραπομπές</multiple>
|
||||
</term>
|
||||
<term name="reference" form="short">
|
||||
<single>παρ.</single>
|
||||
<multiple>παρ.</multiple>
|
||||
</term>
|
||||
<term name="retrieved">ανακτήθηκε</term>
|
||||
<term name="scale">κλίμακα</term>
|
||||
<term name="version">εκδοχή</term>
|
||||
|
||||
<!-- ANNO DOMINI; BEFORE CHRIST -->
|
||||
<term name="ad">μ.Χ.</term>
|
||||
<term name="bc">π.Χ.</term>
|
||||
|
||||
<!-- PUNCTUATION -->
|
||||
<term name="open-quote">‘</term>
|
||||
<term name="close-quote">’</term>
|
||||
<term name="open-inner-quote">'</term>
|
||||
<term name="close-inner-quote">'</term>
|
||||
<term name="page-range-delimiter">–</term>
|
||||
|
||||
<!-- ORDINALS -->
|
||||
<term name="ordinal">ο</term>
|
||||
<term name="ordinal-01" gender-form="feminine" match="whole-number">η</term>
|
||||
<term name="ordinal-01" gender-form="masculine" match="whole-number">ος</term>
|
||||
|
||||
<!-- LONG ORDINALS -->
|
||||
<term name="long-ordinal-01">πρώτος</term>
|
||||
<term name="long-ordinal-02">δεύτερος</term>
|
||||
<term name="long-ordinal-03">τρίτος</term>
|
||||
<term name="long-ordinal-04">τέταρτος</term>
|
||||
<term name="long-ordinal-05">πέμπτος</term>
|
||||
<term name="long-ordinal-06">έκτος</term>
|
||||
<term name="long-ordinal-07">έβδομος</term>
|
||||
<term name="long-ordinal-08">όγδοος</term>
|
||||
<term name="long-ordinal-09">ένατος</term>
|
||||
<term name="long-ordinal-10">δέκατος</term>
|
||||
|
||||
<!-- LONG LOCATOR FORMS -->
|
||||
<term name="book">
|
||||
<single>βιβλίο</single>
|
||||
<multiple>βιβλία</multiple>
|
||||
</term>
|
||||
<term name="chapter">
|
||||
<single>κεφάλαιο</single>
|
||||
<multiple>κεφάλαια</multiple>
|
||||
</term>
|
||||
<term name="column">
|
||||
<single>στήλη</single>
|
||||
<multiple>στήλες</multiple>
|
||||
</term>
|
||||
<term name="figure">
|
||||
<single>εικόνα</single>
|
||||
<multiple>εικόνες</multiple>
|
||||
</term>
|
||||
<term name="folio">
|
||||
<single>φάκελος</single>
|
||||
<multiple>φάκελοι</multiple>
|
||||
</term>
|
||||
<term name="issue">
|
||||
<single>τεύχος</single>
|
||||
<multiple>τεύχη</multiple>
|
||||
</term>
|
||||
<term name="line">
|
||||
<single>σειρά</single>
|
||||
<multiple>σειρές</multiple>
|
||||
</term>
|
||||
<term name="note">
|
||||
<single>σημείωση</single>
|
||||
<multiple>σημειώσεις</multiple>
|
||||
</term>
|
||||
<term name="opus">
|
||||
<single>έργο</single>
|
||||
<multiple>έργα</multiple>
|
||||
</term>
|
||||
<term name="page">
|
||||
<single>σελίδα</single>
|
||||
<multiple>σελίδες</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages">
|
||||
<single>σελίδα</single>
|
||||
<multiple>σελίδες</multiple>
|
||||
</term>
|
||||
<term name="paragraph">
|
||||
<single>παράγραφος</single>
|
||||
<multiple>παράγραφοι</multiple>
|
||||
</term>
|
||||
<term name="part">
|
||||
<single>μέρος</single>
|
||||
<multiple>μέρη</multiple>
|
||||
</term>
|
||||
<term name="section">
|
||||
<single>τμήμα</single>
|
||||
<multiple>τμήματα</multiple>
|
||||
</term>
|
||||
<term name="sub verbo">
|
||||
<single>λήμμα</single>
|
||||
<multiple>λήμματα</multiple>
|
||||
</term>
|
||||
<term name="verse">
|
||||
<single>στίχος</single>
|
||||
<multiple>στίχοι</multiple>
|
||||
</term>
|
||||
<term name="volume">
|
||||
<single>τόμος</single>
|
||||
<multiple>τόμοι</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT LOCATOR FORMS -->
|
||||
<term name="book" form="short">βιβ.</term>
|
||||
<term name="chapter" form="short">κεφ.</term>
|
||||
<term name="column" form="short">στ.</term>
|
||||
<term name="figure" form="short">εικ.</term>
|
||||
<term name="folio" form="short">φάκ</term>
|
||||
<term name="issue" form="short">τχ.</term>
|
||||
<term name="line" form="short">γρ.</term>
|
||||
<term name="note" form="short">σημ.</term>
|
||||
<term name="opus" form="short">έργ.</term>
|
||||
<term name="page" form="short">
|
||||
<single>σ.</single>
|
||||
<multiple>σσ.</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages" form="short">
|
||||
<single>σ.</single>
|
||||
<multiple>σσ.</multiple>
|
||||
</term>
|
||||
<term name="paragraph" form="short">παρ.</term>
|
||||
<term name="part" form="short">μέρ.</term>
|
||||
<term name="section" form="short">τμ.</term>
|
||||
<term name="sub verbo" form="short">
|
||||
<single>λήμ.</single>
|
||||
<multiple>λήμ.</multiple>
|
||||
</term>
|
||||
<term name="verse" form="short">
|
||||
<single>στ.</single>
|
||||
<multiple>στ.</multiple>
|
||||
</term>
|
||||
<term name="volume" form="short">
|
||||
<single>τ.</single>
|
||||
<multiple>τ.</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶¶</multiple>
|
||||
</term>
|
||||
<term name="section" form="symbol">
|
||||
<single>§</single>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="director">
|
||||
<single>Διευθυντής</single>
|
||||
<multiple>Διευθυντές</multiple>
|
||||
</term>
|
||||
<term name="editor">
|
||||
<single>επιμελητής</single>
|
||||
<multiple>επιμελητές</multiple>
|
||||
</term>
|
||||
<term name="editorial-director">
|
||||
<single>διευθυντής σειράς</single>
|
||||
<multiple>διευθυντές σειράς</multiple>
|
||||
</term>
|
||||
<term name="illustrator">
|
||||
<single>εικονογράφος</single>
|
||||
<multiple>εικονογράφοι</multiple>
|
||||
</term>
|
||||
<term name="translator">
|
||||
<single>μεταφραστής</single>
|
||||
<multiple>μεταφραστές</multiple>
|
||||
</term>
|
||||
<term name="editortranslator">
|
||||
<single>μεταφραστής και επιμελητής</single>
|
||||
<multiple>μεταφραστές και επιμελητές</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="director" form="short">
|
||||
<single>δ/ντης.</single>
|
||||
<multiple>δ/ντές.</multiple>
|
||||
</term>
|
||||
<term name="editor" form="short">
|
||||
<single>επιμ.</single>
|
||||
<multiple>επιμ.</multiple>
|
||||
</term>
|
||||
<term name="editorial-director" form="short">
|
||||
<single>δ/ντής σειράς</single>
|
||||
<multiple>δ/ντές σειρας</multiple>
|
||||
</term>
|
||||
<term name="illustrator" form="short">
|
||||
<single>εικ.</single>
|
||||
<multiple>εικ..</multiple>
|
||||
</term>
|
||||
<term name="translator" form="short">
|
||||
<single>μτφ.</single>
|
||||
<multiple>μτφ.</multiple>
|
||||
</term>
|
||||
<term name="editortranslator" form="short">
|
||||
<single>μτφ. και επιμ.</single>
|
||||
<multiple>μτφ. και επιμ.</multiple>
|
||||
</term>
|
||||
|
||||
<!-- VERB ROLE FORMS -->
|
||||
<term name="container-author" form="verb">στον συλλ. τόμο</term>
|
||||
<term name="director" form="verb">διεύθυνση</term>
|
||||
<term name="editor" form="verb">επιμέλεια</term>
|
||||
<term name="editorial-director" form="verb">διεύθυνση σειράς</term>
|
||||
<term name="illustrator" form="verb">εικονογράφηση:</term>
|
||||
<term name="interviewer" form="verb">συνέντευξη</term>
|
||||
<term name="recipient" form="verb">παραλήπτης</term>
|
||||
<term name="reviewed-author" form="verb">συγγραφέας:</term>
|
||||
<term name="translator" form="verb">μετάφραση</term>
|
||||
<term name="editortranslator" form="verb">μετάφραση και επιμέλεια</term>
|
||||
|
||||
<!-- SHORT VERB ROLE FORMS -->
|
||||
<term name="director" form="verb-short">διευθ.</term>
|
||||
<term name="editor" form="verb-short">επιμέλ.</term>
|
||||
<term name="editorial-director" form="verb-short">δ/νση σειράς</term>
|
||||
<term name="illustrator" form="verb-short">εικον.</term>
|
||||
<term name="translator" form="verb-short">μετάφρ.</term>
|
||||
<term name="editortranslator" form="verb-short">μετάφρ. και επιμέλ.</term>
|
||||
|
||||
<!-- LONG MONTH FORMS -->
|
||||
<term name="month-01">Ιανουάριος</term>
|
||||
<term name="month-02">Φεβρουάριος</term>
|
||||
<term name="month-03">Μάρτιος</term>
|
||||
<term name="month-04">Απρίλιος</term>
|
||||
<term name="month-05">Μάιος</term>
|
||||
<term name="month-06">Ιούνιος</term>
|
||||
<term name="month-07">Ιούλιος</term>
|
||||
<term name="month-08">Αύγουστος</term>
|
||||
<term name="month-09">Σεπτέμβριος</term>
|
||||
<term name="month-10">Οκτώβριος</term>
|
||||
<term name="month-11">Νοέμβριος</term>
|
||||
<term name="month-12">Δεκέμβριος</term>
|
||||
|
||||
<!-- SHORT MONTH FORMS -->
|
||||
<term name="month-01" form="short">Ιανουαρίου</term>
|
||||
<term name="month-02" form="short">Φεβρουαρίου</term>
|
||||
<term name="month-03" form="short">Μαρτίου</term>
|
||||
<term name="month-04" form="short">Απριλίου</term>
|
||||
<term name="month-05" form="short">Μαΐου</term>
|
||||
<term name="month-06" form="short">Ιουνίου</term>
|
||||
<term name="month-07" form="short">Ιουλίου</term>
|
||||
<term name="month-08" form="short">Αυγούστου</term>
|
||||
<term name="month-09" form="short">Σεπτεμβρίου</term>
|
||||
<term name="month-10" form="short">Οκτωβρίου</term>
|
||||
<term name="month-11" form="short">Νοεμβρίου</term>
|
||||
<term name="month-12" form="short">Δεκεμβρίου</term>
|
||||
|
||||
<!-- SEASONS -->
|
||||
<term name="season-01">Άνοιξη</term>
|
||||
<term name="season-02">Καλοκαίρι</term>
|
||||
<term name="season-03">Φθινόπωρο</term>
|
||||
<term name="season-04">Χειμώνας</term>
|
||||
</terms>
|
||||
</locale>
|
||||
Vendored
+357
@@ -0,0 +1,357 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="en-GB">
|
||||
<info>
|
||||
<translator>
|
||||
<name>Andrew Dunning</name>
|
||||
</translator>
|
||||
<translator>
|
||||
<name>Sebastian Karcher</name>
|
||||
</translator>
|
||||
<translator>
|
||||
<name>Rintze M. Zelle</name>
|
||||
</translator>
|
||||
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
|
||||
<updated>2015-10-10T23:31:02+00:00</updated>
|
||||
</info>
|
||||
<style-options punctuation-in-quote="false"/>
|
||||
<date form="text">
|
||||
<date-part name="day" suffix=" "/>
|
||||
<date-part name="month" suffix=" "/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<date form="numeric">
|
||||
<date-part name="day" form="numeric-leading-zeros" suffix="/"/>
|
||||
<date-part name="month" form="numeric-leading-zeros" suffix="/"/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<terms>
|
||||
<term name="accessed">accessed</term>
|
||||
<term name="and">and</term>
|
||||
<term name="and others">and others</term>
|
||||
<term name="anonymous">anonymous</term>
|
||||
<term name="anonymous" form="short">anon.</term>
|
||||
<term name="at">at</term>
|
||||
<term name="available at">available at</term>
|
||||
<term name="by">by</term>
|
||||
<term name="circa">circa</term>
|
||||
<term name="circa" form="short">c.</term>
|
||||
<term name="cited">cited</term>
|
||||
<term name="edition">
|
||||
<single>edition</single>
|
||||
<multiple>editions</multiple>
|
||||
</term>
|
||||
<term name="edition" form="short">ed.</term>
|
||||
<term name="et-al">et al.</term>
|
||||
<term name="forthcoming">forthcoming</term>
|
||||
<term name="from">from</term>
|
||||
<term name="ibid">ibid.</term>
|
||||
<term name="in">in</term>
|
||||
<term name="in press">in press</term>
|
||||
<term name="internet">internet</term>
|
||||
<term name="interview">interview</term>
|
||||
<term name="letter">letter</term>
|
||||
<term name="no date">no date</term>
|
||||
<term name="no date" form="short">n.d.</term>
|
||||
<term name="online">online</term>
|
||||
<term name="presented at">presented at the</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="retrieved">retrieved</term>
|
||||
<term name="scale">scale</term>
|
||||
<term name="version">version</term>
|
||||
|
||||
<!-- ANNO DOMINI; BEFORE CHRIST -->
|
||||
<term name="ad">AD</term>
|
||||
<term name="bc">BC</term>
|
||||
|
||||
<!-- PUNCTUATION -->
|
||||
<term name="open-quote">‘</term>
|
||||
<term name="close-quote">’</term>
|
||||
<term name="open-inner-quote">“</term>
|
||||
<term name="close-inner-quote">”</term>
|
||||
<term name="page-range-delimiter">–</term>
|
||||
|
||||
<!-- ORDINALS -->
|
||||
<term name="ordinal">th</term>
|
||||
<term name="ordinal-01">st</term>
|
||||
<term name="ordinal-02">nd</term>
|
||||
<term name="ordinal-03">rd</term>
|
||||
<term name="ordinal-11">th</term>
|
||||
<term name="ordinal-12">th</term>
|
||||
<term name="ordinal-13">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>
|
||||
|
||||
<!-- LONG LOCATOR FORMS -->
|
||||
<term name="book">
|
||||
<single>book</single>
|
||||
<multiple>books</multiple>
|
||||
</term>
|
||||
<term name="chapter">
|
||||
<single>chapter</single>
|
||||
<multiple>chapters</multiple>
|
||||
</term>
|
||||
<term name="column">
|
||||
<single>column</single>
|
||||
<multiple>columns</multiple>
|
||||
</term>
|
||||
<term name="figure">
|
||||
<single>figure</single>
|
||||
<multiple>figures</multiple>
|
||||
</term>
|
||||
<term name="folio">
|
||||
<single>folio</single>
|
||||
<multiple>folios</multiple>
|
||||
</term>
|
||||
<term name="issue">
|
||||
<single>number</single>
|
||||
<multiple>numbers</multiple>
|
||||
</term>
|
||||
<term name="line">
|
||||
<single>line</single>
|
||||
<multiple>lines</multiple>
|
||||
</term>
|
||||
<term name="note">
|
||||
<single>note</single>
|
||||
<multiple>notes</multiple>
|
||||
</term>
|
||||
<term name="opus">
|
||||
<single>opus</single>
|
||||
<multiple>opera</multiple>
|
||||
</term>
|
||||
<term name="page">
|
||||
<single>page</single>
|
||||
<multiple>pages</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages">
|
||||
<single>page</single>
|
||||
<multiple>pages</multiple>
|
||||
</term>
|
||||
<term name="paragraph">
|
||||
<single>paragraph</single>
|
||||
<multiple>paragraphs</multiple>
|
||||
</term>
|
||||
<term name="part">
|
||||
<single>part</single>
|
||||
<multiple>parts</multiple>
|
||||
</term>
|
||||
<term name="section">
|
||||
<single>section</single>
|
||||
<multiple>sections</multiple>
|
||||
</term>
|
||||
<term name="sub verbo">
|
||||
<single>sub verbo</single>
|
||||
<multiple>sub verbis</multiple>
|
||||
</term>
|
||||
<term name="verse">
|
||||
<single>verse</single>
|
||||
<multiple>verses</multiple>
|
||||
</term>
|
||||
<term name="volume">
|
||||
<single>volume</single>
|
||||
<multiple>volumes</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT LOCATOR FORMS -->
|
||||
<term name="book" form="short">
|
||||
<single>bk.</single>
|
||||
<multiple>bks</multiple>
|
||||
</term>
|
||||
<term name="chapter" form="short">
|
||||
<single>chap.</single>
|
||||
<multiple>chaps</multiple>
|
||||
</term>
|
||||
<term name="column" form="short">
|
||||
<single>col.</single>
|
||||
<multiple>cols</multiple>
|
||||
</term>
|
||||
<term name="figure" form="short">
|
||||
<single>fig.</single>
|
||||
<multiple>figs</multiple>
|
||||
</term>
|
||||
<term name="folio" form="short">
|
||||
<single>fol.</single>
|
||||
<multiple>fols</multiple>
|
||||
</term>
|
||||
<term name="issue" form="short">
|
||||
<single>no.</single>
|
||||
<multiple>nos.</multiple>
|
||||
</term>
|
||||
<term name="line" form="short">
|
||||
<single>l.</single>
|
||||
<multiple>ll.</multiple>
|
||||
</term>
|
||||
<term name="note" form="short">
|
||||
<single>n.</single>
|
||||
<multiple>nn.</multiple>
|
||||
</term>
|
||||
<term name="opus" form="short">
|
||||
<single>op.</single>
|
||||
<multiple>opp.</multiple>
|
||||
</term>
|
||||
<term name="page" form="short">
|
||||
<single>p.</single>
|
||||
<multiple>pp.</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages" form="short">
|
||||
<single>p.</single>
|
||||
<multiple>pp.</multiple>
|
||||
</term>
|
||||
<term name="paragraph" form="short">
|
||||
<single>para.</single>
|
||||
<multiple>paras</multiple>
|
||||
</term>
|
||||
<term name="part" form="short">
|
||||
<single>pt.</single>
|
||||
<multiple>pts</multiple>
|
||||
</term>
|
||||
<term name="section" form="short">
|
||||
<single>sec.</single>
|
||||
<multiple>secs</multiple>
|
||||
</term>
|
||||
<term name="sub verbo" form="short">
|
||||
<single>s.v.</single>
|
||||
<multiple>s.vv.</multiple>
|
||||
</term>
|
||||
<term name="verse" form="short">
|
||||
<single>v.</single>
|
||||
<multiple>vv.</multiple>
|
||||
</term>
|
||||
<term name="volume" form="short">
|
||||
<single>vol.</single>
|
||||
<multiple>vols</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶¶</multiple>
|
||||
</term>
|
||||
<term name="section" form="symbol">
|
||||
<single>§</single>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="director">
|
||||
<single>director</single>
|
||||
<multiple>directors</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="illustrator">
|
||||
<single>illustrator</single>
|
||||
<multiple>illustrators</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="director" form="short">
|
||||
<single>dir.</single>
|
||||
<multiple>dirs.</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="illustrator" form="short">
|
||||
<single>ill.</single>
|
||||
<multiple>ills.</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="container-author" form="verb">by</term>
|
||||
<term name="director" form="verb">directed by</term>
|
||||
<term name="editor" form="verb">edited by</term>
|
||||
<term name="editorial-director" form="verb">edited by</term>
|
||||
<term name="illustrator" form="verb">illustrated by</term>
|
||||
<term name="interviewer" form="verb">interview by</term>
|
||||
<term name="recipient" form="verb">to</term>
|
||||
<term name="reviewed-author" form="verb">by</term>
|
||||
<term name="translator" form="verb">translated by</term>
|
||||
<term name="editortranslator" form="verb">edited & translated by</term>
|
||||
|
||||
<!-- SHORT VERB ROLE FORMS -->
|
||||
<term name="director" form="verb-short">dir. by</term>
|
||||
<term name="editor" form="verb-short">ed. by</term>
|
||||
<term name="editorial-director" form="verb-short">ed. by</term>
|
||||
<term name="illustrator" form="verb-short">illus. by</term>
|
||||
<term name="translator" form="verb-short">trans. by</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>
|
||||
<term name="month-04">April</term>
|
||||
<term name="month-05">May</term>
|
||||
<term name="month-06">June</term>
|
||||
<term name="month-07">July</term>
|
||||
<term name="month-08">August</term>
|
||||
<term name="month-09">September</term>
|
||||
<term name="month-10">October</term>
|
||||
<term name="month-11">November</term>
|
||||
<term name="month-12">December</term>
|
||||
|
||||
<!-- SHORT MONTH FORMS -->
|
||||
<term name="month-01" form="short">Jan.</term>
|
||||
<term name="month-02" form="short">Feb.</term>
|
||||
<term name="month-03" form="short">Mar.</term>
|
||||
<term name="month-04" form="short">Apr.</term>
|
||||
<term name="month-05" form="short">May</term>
|
||||
<term name="month-06" form="short">Jun.</term>
|
||||
<term name="month-07" form="short">Jul.</term>
|
||||
<term name="month-08" form="short">Aug.</term>
|
||||
<term name="month-09" form="short">Sep.</term>
|
||||
<term name="month-10" form="short">Oct.</term>
|
||||
<term name="month-11" form="short">Nov.</term>
|
||||
<term name="month-12" form="short">Dec.</term>
|
||||
|
||||
<!-- SEASONS -->
|
||||
<term name="season-01">Spring</term>
|
||||
<term name="season-02">Summer</term>
|
||||
<term name="season-03">Autumn</term>
|
||||
<term name="season-04">Winter</term>
|
||||
</terms>
|
||||
</locale>
|
||||
Vendored
+357
@@ -0,0 +1,357 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="en-US">
|
||||
<info>
|
||||
<translator>
|
||||
<name>Andrew Dunning</name>
|
||||
</translator>
|
||||
<translator>
|
||||
<name>Sebastian Karcher</name>
|
||||
</translator>
|
||||
<translator>
|
||||
<name>Rintze M. Zelle</name>
|
||||
</translator>
|
||||
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
|
||||
<updated>2015-10-10T23:31:02+00:00</updated>
|
||||
</info>
|
||||
<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="month" form="numeric-leading-zeros" suffix="/"/>
|
||||
<date-part name="day" form="numeric-leading-zeros" suffix="/"/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<terms>
|
||||
<term name="accessed">accessed</term>
|
||||
<term name="and">and</term>
|
||||
<term name="and others">and others</term>
|
||||
<term name="anonymous">anonymous</term>
|
||||
<term name="anonymous" form="short">anon.</term>
|
||||
<term name="at">at</term>
|
||||
<term name="available at">available at</term>
|
||||
<term name="by">by</term>
|
||||
<term name="circa">circa</term>
|
||||
<term name="circa" form="short">c.</term>
|
||||
<term name="cited">cited</term>
|
||||
<term name="edition">
|
||||
<single>edition</single>
|
||||
<multiple>editions</multiple>
|
||||
</term>
|
||||
<term name="edition" form="short">ed.</term>
|
||||
<term name="et-al">et al.</term>
|
||||
<term name="forthcoming">forthcoming</term>
|
||||
<term name="from">from</term>
|
||||
<term name="ibid">ibid.</term>
|
||||
<term name="in">in</term>
|
||||
<term name="in press">in press</term>
|
||||
<term name="internet">internet</term>
|
||||
<term name="interview">interview</term>
|
||||
<term name="letter">letter</term>
|
||||
<term name="no date">no date</term>
|
||||
<term name="no date" form="short">n.d.</term>
|
||||
<term name="online">online</term>
|
||||
<term name="presented at">presented at the</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="retrieved">retrieved</term>
|
||||
<term name="scale">scale</term>
|
||||
<term name="version">version</term>
|
||||
|
||||
<!-- ANNO DOMINI; BEFORE CHRIST -->
|
||||
<term name="ad">AD</term>
|
||||
<term name="bc">BC</term>
|
||||
|
||||
<!-- PUNCTUATION -->
|
||||
<term name="open-quote">“</term>
|
||||
<term name="close-quote">”</term>
|
||||
<term name="open-inner-quote">‘</term>
|
||||
<term name="close-inner-quote">’</term>
|
||||
<term name="page-range-delimiter">–</term>
|
||||
|
||||
<!-- ORDINALS -->
|
||||
<term name="ordinal">th</term>
|
||||
<term name="ordinal-01">st</term>
|
||||
<term name="ordinal-02">nd</term>
|
||||
<term name="ordinal-03">rd</term>
|
||||
<term name="ordinal-11">th</term>
|
||||
<term name="ordinal-12">th</term>
|
||||
<term name="ordinal-13">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>
|
||||
|
||||
<!-- LONG LOCATOR FORMS -->
|
||||
<term name="book">
|
||||
<single>book</single>
|
||||
<multiple>books</multiple>
|
||||
</term>
|
||||
<term name="chapter">
|
||||
<single>chapter</single>
|
||||
<multiple>chapters</multiple>
|
||||
</term>
|
||||
<term name="column">
|
||||
<single>column</single>
|
||||
<multiple>columns</multiple>
|
||||
</term>
|
||||
<term name="figure">
|
||||
<single>figure</single>
|
||||
<multiple>figures</multiple>
|
||||
</term>
|
||||
<term name="folio">
|
||||
<single>folio</single>
|
||||
<multiple>folios</multiple>
|
||||
</term>
|
||||
<term name="issue">
|
||||
<single>number</single>
|
||||
<multiple>numbers</multiple>
|
||||
</term>
|
||||
<term name="line">
|
||||
<single>line</single>
|
||||
<multiple>lines</multiple>
|
||||
</term>
|
||||
<term name="note">
|
||||
<single>note</single>
|
||||
<multiple>notes</multiple>
|
||||
</term>
|
||||
<term name="opus">
|
||||
<single>opus</single>
|
||||
<multiple>opera</multiple>
|
||||
</term>
|
||||
<term name="page">
|
||||
<single>page</single>
|
||||
<multiple>pages</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages">
|
||||
<single>page</single>
|
||||
<multiple>pages</multiple>
|
||||
</term>
|
||||
<term name="paragraph">
|
||||
<single>paragraph</single>
|
||||
<multiple>paragraphs</multiple>
|
||||
</term>
|
||||
<term name="part">
|
||||
<single>part</single>
|
||||
<multiple>parts</multiple>
|
||||
</term>
|
||||
<term name="section">
|
||||
<single>section</single>
|
||||
<multiple>sections</multiple>
|
||||
</term>
|
||||
<term name="sub verbo">
|
||||
<single>sub verbo</single>
|
||||
<multiple>sub verbis</multiple>
|
||||
</term>
|
||||
<term name="verse">
|
||||
<single>verse</single>
|
||||
<multiple>verses</multiple>
|
||||
</term>
|
||||
<term name="volume">
|
||||
<single>volume</single>
|
||||
<multiple>volumes</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT LOCATOR FORMS -->
|
||||
<term name="book" form="short">
|
||||
<single>bk.</single>
|
||||
<multiple>bks.</multiple>
|
||||
</term>
|
||||
<term name="chapter" form="short">
|
||||
<single>chap.</single>
|
||||
<multiple>chaps.</multiple>
|
||||
</term>
|
||||
<term name="column" form="short">
|
||||
<single>col.</single>
|
||||
<multiple>cols.</multiple>
|
||||
</term>
|
||||
<term name="figure" form="short">
|
||||
<single>fig.</single>
|
||||
<multiple>figs.</multiple>
|
||||
</term>
|
||||
<term name="folio" form="short">
|
||||
<single>fol.</single>
|
||||
<multiple>fols.</multiple>
|
||||
</term>
|
||||
<term name="issue" form="short">
|
||||
<single>no.</single>
|
||||
<multiple>nos.</multiple>
|
||||
</term>
|
||||
<term name="line" form="short">
|
||||
<single>l.</single>
|
||||
<multiple>ll.</multiple>
|
||||
</term>
|
||||
<term name="note" form="short">
|
||||
<single>n.</single>
|
||||
<multiple>nn.</multiple>
|
||||
</term>
|
||||
<term name="opus" form="short">
|
||||
<single>op.</single>
|
||||
<multiple>opp.</multiple>
|
||||
</term>
|
||||
<term name="page" form="short">
|
||||
<single>p.</single>
|
||||
<multiple>pp.</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages" form="short">
|
||||
<single>p.</single>
|
||||
<multiple>pp.</multiple>
|
||||
</term>
|
||||
<term name="paragraph" form="short">
|
||||
<single>para.</single>
|
||||
<multiple>paras.</multiple>
|
||||
</term>
|
||||
<term name="part" form="short">
|
||||
<single>pt.</single>
|
||||
<multiple>pts.</multiple>
|
||||
</term>
|
||||
<term name="section" form="short">
|
||||
<single>sec.</single>
|
||||
<multiple>secs.</multiple>
|
||||
</term>
|
||||
<term name="sub verbo" form="short">
|
||||
<single>s.v.</single>
|
||||
<multiple>s.vv.</multiple>
|
||||
</term>
|
||||
<term name="verse" form="short">
|
||||
<single>v.</single>
|
||||
<multiple>vv.</multiple>
|
||||
</term>
|
||||
<term name="volume" form="short">
|
||||
<single>vol.</single>
|
||||
<multiple>vols.</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶¶</multiple>
|
||||
</term>
|
||||
<term name="section" form="symbol">
|
||||
<single>§</single>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="director">
|
||||
<single>director</single>
|
||||
<multiple>directors</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="illustrator">
|
||||
<single>illustrator</single>
|
||||
<multiple>illustrators</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="director" form="short">
|
||||
<single>dir.</single>
|
||||
<multiple>dirs.</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="illustrator" form="short">
|
||||
<single>ill.</single>
|
||||
<multiple>ills.</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="container-author" form="verb">by</term>
|
||||
<term name="director" form="verb">directed by</term>
|
||||
<term name="editor" form="verb">edited by</term>
|
||||
<term name="editorial-director" form="verb">edited by</term>
|
||||
<term name="illustrator" form="verb">illustrated by</term>
|
||||
<term name="interviewer" form="verb">interview by</term>
|
||||
<term name="recipient" form="verb">to</term>
|
||||
<term name="reviewed-author" form="verb">by</term>
|
||||
<term name="translator" form="verb">translated by</term>
|
||||
<term name="editortranslator" form="verb">edited & translated by</term>
|
||||
|
||||
<!-- SHORT VERB ROLE FORMS -->
|
||||
<term name="director" form="verb-short">dir. by</term>
|
||||
<term name="editor" form="verb-short">ed. by</term>
|
||||
<term name="editorial-director" form="verb-short">ed. by</term>
|
||||
<term name="illustrator" form="verb-short">illus. by</term>
|
||||
<term name="translator" form="verb-short">trans. by</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>
|
||||
<term name="month-04">April</term>
|
||||
<term name="month-05">May</term>
|
||||
<term name="month-06">June</term>
|
||||
<term name="month-07">July</term>
|
||||
<term name="month-08">August</term>
|
||||
<term name="month-09">September</term>
|
||||
<term name="month-10">October</term>
|
||||
<term name="month-11">November</term>
|
||||
<term name="month-12">December</term>
|
||||
|
||||
<!-- SHORT MONTH FORMS -->
|
||||
<term name="month-01" form="short">Jan.</term>
|
||||
<term name="month-02" form="short">Feb.</term>
|
||||
<term name="month-03" form="short">Mar.</term>
|
||||
<term name="month-04" form="short">Apr.</term>
|
||||
<term name="month-05" form="short">May</term>
|
||||
<term name="month-06" form="short">Jun.</term>
|
||||
<term name="month-07" form="short">Jul.</term>
|
||||
<term name="month-08" form="short">Aug.</term>
|
||||
<term name="month-09" form="short">Sep.</term>
|
||||
<term name="month-10" form="short">Oct.</term>
|
||||
<term name="month-11" form="short">Nov.</term>
|
||||
<term name="month-12" form="short">Dec.</term>
|
||||
|
||||
<!-- SEASONS -->
|
||||
<term name="season-01">Spring</term>
|
||||
<term name="season-02">Summer</term>
|
||||
<term name="season-03">Autumn</term>
|
||||
<term name="season-04">Winter</term>
|
||||
</terms>
|
||||
</locale>
|
||||
Vendored
+310
@@ -0,0 +1,310 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="es-CL">
|
||||
<info>
|
||||
<translator>
|
||||
<name>Scott Sadowsky</name>
|
||||
<uri>http://sadowsky.cl/</uri>
|
||||
</translator>
|
||||
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
|
||||
<updated>2013-10-28T13:57:31-04:00</updated>
|
||||
</info>
|
||||
<style-options punctuation-in-quote="false"/>
|
||||
<date form="text">
|
||||
<date-part name="day" suffix=" de "/>
|
||||
<date-part name="month" suffix=" de "/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<date form="numeric">
|
||||
<date-part name="day" form="numeric-leading-zeros" suffix="/"/>
|
||||
<date-part name="month" form="numeric-leading-zeros" suffix="/"/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<terms>
|
||||
<term name="accessed">accedido</term>
|
||||
<term name="and">y</term>
|
||||
<term name="and others">et al.</term>
|
||||
<term name="anonymous">anónimo</term>
|
||||
<term name="anonymous" form="short">anón.</term>
|
||||
<term name="at">en</term>
|
||||
<term name="available at">disponible en</term>
|
||||
<term name="by">de</term>
|
||||
<term name="circa">circa</term>
|
||||
<term name="circa" form="short">c.</term>
|
||||
<term name="cited">citado</term>
|
||||
<term name="edition">
|
||||
<single>edición</single>
|
||||
<multiple>ediciones</multiple>
|
||||
</term>
|
||||
<term name="edition" form="short">ed.</term>
|
||||
<term name="et-al">et al.</term>
|
||||
<term name="forthcoming">en preparación</term>
|
||||
<term name="from">a partir de</term>
|
||||
<term name="ibid">ibid.</term>
|
||||
<term name="in">en</term>
|
||||
<term name="in press">en imprenta</term>
|
||||
<term name="internet">internet</term>
|
||||
<term name="interview">entrevista</term>
|
||||
<term name="letter">carta</term>
|
||||
<term name="no date">sin fecha</term>
|
||||
<term name="no date" form="short">s. f.</term>
|
||||
<term name="online">en línea</term>
|
||||
<term name="presented at">presentado en</term>
|
||||
<term name="reference">
|
||||
<single>referencia</single>
|
||||
<multiple>referencias</multiple>
|
||||
</term>
|
||||
<term name="reference" form="short">
|
||||
<single>ref.</single>
|
||||
<multiple>refs.</multiple>
|
||||
</term>
|
||||
<term name="retrieved">recuperado</term>
|
||||
<term name="scale">escala</term>
|
||||
<term name="version">versión</term>
|
||||
|
||||
<!-- ANNO DOMINI; BEFORE CHRIST -->
|
||||
<term name="ad">d. C.</term>
|
||||
<term name="bc">a. C.</term>
|
||||
|
||||
<!-- PUNCTUATION -->
|
||||
<term name="open-quote">“</term>
|
||||
<term name="close-quote">”</term>
|
||||
<term name="open-inner-quote">‘</term>
|
||||
<term name="close-inner-quote">’</term>
|
||||
<term name="page-range-delimiter">–</term>
|
||||
|
||||
<!-- ORDINALS -->
|
||||
<term name="ordinal">ª</term>
|
||||
|
||||
<!-- LONG ORDINALS -->
|
||||
<term name="long-ordinal-01">primera</term>
|
||||
<term name="long-ordinal-02">segunda</term>
|
||||
<term name="long-ordinal-03">tercera</term>
|
||||
<term name="long-ordinal-04">cuarta</term>
|
||||
<term name="long-ordinal-05">quinta</term>
|
||||
<term name="long-ordinal-06">sexta</term>
|
||||
<term name="long-ordinal-07">séptima</term>
|
||||
<term name="long-ordinal-08">octava</term>
|
||||
<term name="long-ordinal-09">novena</term>
|
||||
<term name="long-ordinal-10">décima</term>
|
||||
|
||||
<!-- LONG LOCATOR FORMS -->
|
||||
<term name="book">
|
||||
<single>libro</single>
|
||||
<multiple>libros</multiple>
|
||||
</term>
|
||||
<term name="chapter">
|
||||
<single>capítulo</single>
|
||||
<multiple>capítulos</multiple>
|
||||
</term>
|
||||
<term name="column">
|
||||
<single>columna</single>
|
||||
<multiple>columnas</multiple>
|
||||
</term>
|
||||
<term name="figure">
|
||||
<single>figura</single>
|
||||
<multiple>figuras</multiple>
|
||||
</term>
|
||||
<term name="folio">
|
||||
<single>folio</single>
|
||||
<multiple>folios</multiple>
|
||||
</term>
|
||||
<term name="issue">
|
||||
<single>número</single>
|
||||
<multiple>números</multiple>
|
||||
</term>
|
||||
<term name="line">
|
||||
<single>línea</single>
|
||||
<multiple>líneas</multiple>
|
||||
</term>
|
||||
<term name="note">
|
||||
<single>nota</single>
|
||||
<multiple>notas</multiple>
|
||||
</term>
|
||||
<term name="opus">
|
||||
<single>opus</single>
|
||||
<multiple>opera</multiple>
|
||||
</term>
|
||||
<term name="page">
|
||||
<single>página</single>
|
||||
<multiple>páginas</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages">
|
||||
<single>página</single>
|
||||
<multiple>páginas</multiple>
|
||||
</term>
|
||||
<term name="paragraph">
|
||||
<single>párrafo</single>
|
||||
<multiple>párrafos</multiple>
|
||||
</term>
|
||||
<term name="part">
|
||||
<single>parte</single>
|
||||
<multiple>partes</multiple>
|
||||
</term>
|
||||
<term name="section">
|
||||
<single>sección</single>
|
||||
<multiple>secciones</multiple>
|
||||
</term>
|
||||
<term name="sub verbo">
|
||||
<single>sub voce</single>
|
||||
<multiple>sub vocibus</multiple>
|
||||
</term>
|
||||
<term name="verse">
|
||||
<single>verso</single>
|
||||
<multiple>versos</multiple>
|
||||
</term>
|
||||
<term name="volume">
|
||||
<single>volumen</single>
|
||||
<multiple>volúmenes</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT LOCATOR FORMS -->
|
||||
<term name="book" form="short">lib.</term>
|
||||
<term name="chapter" form="short">cap.</term>
|
||||
<term name="column" form="short">col.</term>
|
||||
<term name="figure" form="short">fig.</term>
|
||||
<term name="folio" form="short">f.</term>
|
||||
<term name="issue" form="short">nº</term>
|
||||
<term name="line" form="short">l.</term>
|
||||
<term name="note" form="short">n.</term>
|
||||
<term name="opus" form="short">op.</term>
|
||||
<term name="page" form="short">
|
||||
<single>p.</single>
|
||||
<multiple>pp.</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages" form="short">
|
||||
<single>p.</single>
|
||||
<multiple>pp.</multiple>
|
||||
</term>
|
||||
<term name="paragraph" form="short">párr.</term>
|
||||
<term name="part" form="short">pt.</term>
|
||||
<term name="section" form="short">sec.</term>
|
||||
<term name="sub verbo" form="short">
|
||||
<single>s. v.</single>
|
||||
<multiple>s. vv.</multiple>
|
||||
</term>
|
||||
<term name="verse" form="short">
|
||||
<single>v.</single>
|
||||
<multiple>vv.</multiple>
|
||||
</term>
|
||||
<term name="volume" form="short">
|
||||
<single>vol.</single>
|
||||
<multiple>vols.</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>§</single>
|
||||
<multiple>§</multiple>
|
||||
</term>
|
||||
<term name="section" form="symbol">
|
||||
<single>§</single>
|
||||
<multiple>§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="director">
|
||||
<single>director</single>
|
||||
<multiple>directores</multiple>
|
||||
</term>
|
||||
<term name="editor">
|
||||
<single>editor</single>
|
||||
<multiple>editores</multiple>
|
||||
</term>
|
||||
<term name="editorial-director">
|
||||
<single>coordinador</single>
|
||||
<multiple>coordinadores</multiple>
|
||||
</term>
|
||||
<term name="illustrator">
|
||||
<single>ilustrador</single>
|
||||
<multiple>ilustradores</multiple>
|
||||
</term>
|
||||
<term name="translator">
|
||||
<single>traductor</single>
|
||||
<multiple>traductores</multiple>
|
||||
</term>
|
||||
<term name="editortranslator">
|
||||
<single>editor y traductor</single>
|
||||
<multiple>editores y traductores</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="director" form="short">
|
||||
<single>dir.</single>
|
||||
<multiple>dirs.</multiple>
|
||||
</term>
|
||||
<term name="editor" form="short">
|
||||
<single>ed.</single>
|
||||
<multiple>eds.</multiple>
|
||||
</term>
|
||||
<term name="editorial-director" form="short">
|
||||
<single>coord.</single>
|
||||
<multiple>coords.</multiple>
|
||||
</term>
|
||||
<term name="illustrator" form="short">
|
||||
<single>ilust.</single>
|
||||
<multiple>ilusts.</multiple>
|
||||
</term>
|
||||
<term name="translator" form="short">
|
||||
<single>trad.</single>
|
||||
<multiple>trads.</multiple>
|
||||
</term>
|
||||
<term name="editortranslator" form="short">
|
||||
<single>ed. y trad.</single>
|
||||
<multiple>eds. y trads.</multiple>
|
||||
</term>
|
||||
|
||||
<!-- VERB ROLE FORMS -->
|
||||
<term name="container-author" form="verb">de</term>
|
||||
<term name="director" form="verb">dirigido por</term>
|
||||
<term name="editor" form="verb">editado por</term>
|
||||
<term name="editorial-director" form="verb">coordinado por</term>
|
||||
<term name="illustrator" form="verb">ilustrado por</term>
|
||||
<term name="interviewer" form="verb">entrevistado por</term>
|
||||
<term name="recipient" form="verb">a</term>
|
||||
<term name="reviewed-author" form="verb">por</term>
|
||||
<term name="translator" form="verb">traducido por</term>
|
||||
<term name="editortranslator" form="verb">editado y traducido por</term>
|
||||
|
||||
<!-- SHORT VERB ROLE FORMS -->
|
||||
<term name="director" form="verb-short">dir.</term>
|
||||
<term name="editor" form="verb-short">ed.</term>
|
||||
<term name="editorial-director" form="verb-short">coord.</term>
|
||||
<term name="illustrator" form="verb-short">ilust.</term>
|
||||
<term name="translator" form="verb-short">trad.</term>
|
||||
<term name="editortranslator" form="verb-short">ed. y trad.</term>
|
||||
|
||||
<!-- LONG MONTH FORMS -->
|
||||
<term name="month-01">enero</term>
|
||||
<term name="month-02">febrero</term>
|
||||
<term name="month-03">marzo</term>
|
||||
<term name="month-04">abril</term>
|
||||
<term name="month-05">mayo</term>
|
||||
<term name="month-06">junio</term>
|
||||
<term name="month-07">julio</term>
|
||||
<term name="month-08">agosto</term>
|
||||
<term name="month-09">septiembre</term>
|
||||
<term name="month-10">octubre</term>
|
||||
<term name="month-11">noviembre</term>
|
||||
<term name="month-12">diciembre</term>
|
||||
|
||||
<!-- SHORT MONTH FORMS -->
|
||||
<term name="month-01" form="short">ene.</term>
|
||||
<term name="month-02" form="short">feb.</term>
|
||||
<term name="month-03" form="short">mar.</term>
|
||||
<term name="month-04" form="short">abr.</term>
|
||||
<term name="month-05" form="short">may</term>
|
||||
<term name="month-06" form="short">jun.</term>
|
||||
<term name="month-07" form="short">jul.</term>
|
||||
<term name="month-08" form="short">ago.</term>
|
||||
<term name="month-09" form="short">sep.</term>
|
||||
<term name="month-10" form="short">oct.</term>
|
||||
<term name="month-11" form="short">nov.</term>
|
||||
<term name="month-12" form="short">dic.</term>
|
||||
|
||||
<!-- SEASONS -->
|
||||
<term name="season-01">primavera</term>
|
||||
<term name="season-02">verano</term>
|
||||
<term name="season-03">otoño</term>
|
||||
<term name="season-04">invierno</term>
|
||||
</terms>
|
||||
</locale>
|
||||
Vendored
+309
@@ -0,0 +1,309 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="es-ES">
|
||||
<info>
|
||||
<translator>
|
||||
<name>javimat</name>
|
||||
</translator>
|
||||
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
|
||||
<updated>2012-07-04T23:31:02+00:00</updated>
|
||||
</info>
|
||||
<style-options punctuation-in-quote="false"/>
|
||||
<date form="text">
|
||||
<date-part name="day" suffix=" de "/>
|
||||
<date-part name="month" suffix=" de "/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<date form="numeric">
|
||||
<date-part name="day" form="numeric-leading-zeros" suffix="/"/>
|
||||
<date-part name="month" form="numeric-leading-zeros" suffix="/"/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<terms>
|
||||
<term name="accessed">accedido</term>
|
||||
<term name="and">y</term>
|
||||
<term name="and others">y otros</term>
|
||||
<term name="anonymous">anónimo</term>
|
||||
<term name="anonymous" form="short">anón.</term>
|
||||
<term name="at">en</term>
|
||||
<term name="available at">disponible en</term>
|
||||
<term name="by">de</term>
|
||||
<term name="circa">circa</term>
|
||||
<term name="circa" form="short">c.</term>
|
||||
<term name="cited">citado</term>
|
||||
<term name="edition">
|
||||
<single>edición</single>
|
||||
<multiple>ediciones</multiple>
|
||||
</term>
|
||||
<term name="edition" form="short">ed.</term>
|
||||
<term name="et-al">et al.</term>
|
||||
<term name="forthcoming">previsto</term>
|
||||
<term name="from">a partir de</term>
|
||||
<term name="ibid">ibid.</term>
|
||||
<term name="in">en</term>
|
||||
<term name="in press">en imprenta</term>
|
||||
<term name="internet">internet</term>
|
||||
<term name="interview">entrevista</term>
|
||||
<term name="letter">carta</term>
|
||||
<term name="no date">sin fecha</term>
|
||||
<term name="no date" form="short">s. f.</term>
|
||||
<term name="online">en línea</term>
|
||||
<term name="presented at">presentado en</term>
|
||||
<term name="reference">
|
||||
<single>referencia</single>
|
||||
<multiple>referencias</multiple>
|
||||
</term>
|
||||
<term name="reference" form="short">
|
||||
<single>ref.</single>
|
||||
<multiple>refs.</multiple>
|
||||
</term>
|
||||
<term name="retrieved">recuperado</term>
|
||||
<term name="scale">escala</term>
|
||||
<term name="version">versión</term>
|
||||
|
||||
<!-- ANNO DOMINI; BEFORE CHRIST -->
|
||||
<term name="ad">d. C.</term>
|
||||
<term name="bc">a. C.</term>
|
||||
|
||||
<!-- PUNCTUATION -->
|
||||
<term name="open-quote">«</term>
|
||||
<term name="close-quote">»</term>
|
||||
<term name="open-inner-quote">“</term>
|
||||
<term name="close-inner-quote">”</term>
|
||||
<term name="page-range-delimiter">-</term>
|
||||
|
||||
<!-- ORDINALS -->
|
||||
<term name="ordinal">.ª</term>
|
||||
|
||||
<!-- LONG ORDINALS -->
|
||||
<term name="long-ordinal-01">primera</term>
|
||||
<term name="long-ordinal-02">segunda</term>
|
||||
<term name="long-ordinal-03">tercera</term>
|
||||
<term name="long-ordinal-04">cuarta</term>
|
||||
<term name="long-ordinal-05">quinta</term>
|
||||
<term name="long-ordinal-06">sexta</term>
|
||||
<term name="long-ordinal-07">séptima</term>
|
||||
<term name="long-ordinal-08">octava</term>
|
||||
<term name="long-ordinal-09">novena</term>
|
||||
<term name="long-ordinal-10">décima</term>
|
||||
|
||||
<!-- LONG LOCATOR FORMS -->
|
||||
<term name="book">
|
||||
<single>libro</single>
|
||||
<multiple>libros</multiple>
|
||||
</term>
|
||||
<term name="chapter">
|
||||
<single>capítulo</single>
|
||||
<multiple>capítulos</multiple>
|
||||
</term>
|
||||
<term name="column">
|
||||
<single>columna</single>
|
||||
<multiple>columnas</multiple>
|
||||
</term>
|
||||
<term name="figure">
|
||||
<single>figura</single>
|
||||
<multiple>figuras</multiple>
|
||||
</term>
|
||||
<term name="folio">
|
||||
<single>folio</single>
|
||||
<multiple>folios</multiple>
|
||||
</term>
|
||||
<term name="issue">
|
||||
<single>número</single>
|
||||
<multiple>números</multiple>
|
||||
</term>
|
||||
<term name="line">
|
||||
<single>línea</single>
|
||||
<multiple>líneas</multiple>
|
||||
</term>
|
||||
<term name="note">
|
||||
<single>nota</single>
|
||||
<multiple>notas</multiple>
|
||||
</term>
|
||||
<term name="opus">
|
||||
<single>opus</single>
|
||||
<multiple>opera</multiple>
|
||||
</term>
|
||||
<term name="page">
|
||||
<single>página</single>
|
||||
<multiple>páginas</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages">
|
||||
<single>página</single>
|
||||
<multiple>páginas</multiple>
|
||||
</term>
|
||||
<term name="paragraph">
|
||||
<single>párrafo</single>
|
||||
<multiple>párrafos</multiple>
|
||||
</term>
|
||||
<term name="part">
|
||||
<single>parte</single>
|
||||
<multiple>partes</multiple>
|
||||
</term>
|
||||
<term name="section">
|
||||
<single>sección</single>
|
||||
<multiple>secciones</multiple>
|
||||
</term>
|
||||
<term name="sub verbo">
|
||||
<single>sub voce</single>
|
||||
<multiple>sub vocibus</multiple>
|
||||
</term>
|
||||
<term name="verse">
|
||||
<single>verso</single>
|
||||
<multiple>versos</multiple>
|
||||
</term>
|
||||
<term name="volume">
|
||||
<single>volumen</single>
|
||||
<multiple>volúmenes</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT LOCATOR FORMS -->
|
||||
<term name="book" form="short">lib.</term>
|
||||
<term name="chapter" form="short">cap.</term>
|
||||
<term name="column" form="short">col.</term>
|
||||
<term name="figure" form="short">fig.</term>
|
||||
<term name="folio" form="short">f.</term>
|
||||
<term name="issue" form="short">n.º</term>
|
||||
<term name="line" form="short">l.</term>
|
||||
<term name="note" form="short">n.</term>
|
||||
<term name="opus" form="short">op.</term>
|
||||
<term name="page" form="short">
|
||||
<single>p.</single>
|
||||
<multiple>pp.</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages" form="short">
|
||||
<single>p.</single>
|
||||
<multiple>pp.</multiple>
|
||||
</term>
|
||||
<term name="paragraph" form="short">párr.</term>
|
||||
<term name="part" form="short">pt.</term>
|
||||
<term name="section" form="short">sec.</term>
|
||||
<term name="sub verbo" form="short">
|
||||
<single>s. v.</single>
|
||||
<multiple>s. vv.</multiple>
|
||||
</term>
|
||||
<term name="verse" form="short">
|
||||
<single>v.</single>
|
||||
<multiple>vv.</multiple>
|
||||
</term>
|
||||
<term name="volume" form="short">
|
||||
<single>vol.</single>
|
||||
<multiple>vols.</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>§</single>
|
||||
<multiple>§</multiple>
|
||||
</term>
|
||||
<term name="section" form="symbol">
|
||||
<single>§</single>
|
||||
<multiple>§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="director">
|
||||
<single>director</single>
|
||||
<multiple>directores</multiple>
|
||||
</term>
|
||||
<term name="editor">
|
||||
<single>editor</single>
|
||||
<multiple>editores</multiple>
|
||||
</term>
|
||||
<term name="editorial-director">
|
||||
<single>editor</single>
|
||||
<multiple>editores</multiple>
|
||||
</term>
|
||||
<term name="illustrator">
|
||||
<single>ilustrador</single>
|
||||
<multiple>ilustradores</multiple>
|
||||
</term>
|
||||
<term name="translator">
|
||||
<single>traductor</single>
|
||||
<multiple>traductores</multiple>
|
||||
</term>
|
||||
<term name="editortranslator">
|
||||
<single>editor y traductor</single>
|
||||
<multiple>editores y traductores</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="director" form="short">
|
||||
<single>dir.</single>
|
||||
<multiple>dirs.</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="illustrator" form="short">
|
||||
<single>ilust.</single>
|
||||
<multiple>ilusts.</multiple>
|
||||
</term>
|
||||
<term name="translator" form="short">
|
||||
<single>trad.</single>
|
||||
<multiple>trads.</multiple>
|
||||
</term>
|
||||
<term name="editortranslator" form="short">
|
||||
<single>ed. y trad.</single>
|
||||
<multiple>eds. y trads.</multiple>
|
||||
</term>
|
||||
|
||||
<!-- VERB ROLE FORMS -->
|
||||
<term name="container-author" form="verb">de</term>
|
||||
<term name="director" form="verb">dirigido por</term>
|
||||
<term name="editor" form="verb">editado por</term>
|
||||
<term name="editorial-director" form="verb">editado por</term>
|
||||
<term name="illustrator" form="verb">ilustrado por</term>
|
||||
<term name="interviewer" form="verb">entrevistado por</term>
|
||||
<term name="recipient" form="verb">a</term>
|
||||
<term name="reviewed-author" form="verb">por</term>
|
||||
<term name="translator" form="verb">traducido por</term>
|
||||
<term name="editortranslator" form="verb">editado y traducido por</term>
|
||||
|
||||
<!-- SHORT VERB ROLE FORMS -->
|
||||
<term name="director" form="verb-short">dir.</term>
|
||||
<term name="editor" form="verb-short">ed.</term>
|
||||
<term name="editorial-director" form="verb-short">ed.</term>
|
||||
<term name="illustrator" form="verb-short">ilust.</term>
|
||||
<term name="translator" form="verb-short">trad.</term>
|
||||
<term name="editortranslator" form="verb-short">ed. y trad.</term>
|
||||
|
||||
<!-- LONG MONTH FORMS -->
|
||||
<term name="month-01">enero</term>
|
||||
<term name="month-02">febrero</term>
|
||||
<term name="month-03">marzo</term>
|
||||
<term name="month-04">abril</term>
|
||||
<term name="month-05">mayo</term>
|
||||
<term name="month-06">junio</term>
|
||||
<term name="month-07">julio</term>
|
||||
<term name="month-08">agosto</term>
|
||||
<term name="month-09">septiembre</term>
|
||||
<term name="month-10">octubre</term>
|
||||
<term name="month-11">noviembre</term>
|
||||
<term name="month-12">diciembre</term>
|
||||
|
||||
<!-- SHORT MONTH FORMS -->
|
||||
<term name="month-01" form="short">ene.</term>
|
||||
<term name="month-02" form="short">feb.</term>
|
||||
<term name="month-03" form="short">mar.</term>
|
||||
<term name="month-04" form="short">abr.</term>
|
||||
<term name="month-05" form="short">may</term>
|
||||
<term name="month-06" form="short">jun.</term>
|
||||
<term name="month-07" form="short">jul.</term>
|
||||
<term name="month-08" form="short">ago.</term>
|
||||
<term name="month-09" form="short">sep.</term>
|
||||
<term name="month-10" form="short">oct.</term>
|
||||
<term name="month-11" form="short">nov.</term>
|
||||
<term name="month-12" form="short">dic.</term>
|
||||
|
||||
<!-- SEASONS -->
|
||||
<term name="season-01">primavera</term>
|
||||
<term name="season-02">verano</term>
|
||||
<term name="season-03">otoño</term>
|
||||
<term name="season-04">invierno</term>
|
||||
</terms>
|
||||
</locale>
|
||||
Vendored
+351
@@ -0,0 +1,351 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="es-MX">
|
||||
<info>
|
||||
<translator>
|
||||
<name>Juan Ignacio Flores Salgado</name>
|
||||
<uri>https://www.mendeley.com/profiles/juan-ignacio-flores-salgado/</uri>
|
||||
</translator>
|
||||
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
|
||||
<updated>2015-06-13T13:57:31-04:00</updated>
|
||||
</info>
|
||||
<style-options punctuation-in-quote="false"/>
|
||||
<date form="text">
|
||||
<date-part name="day" prefix="el " suffix=" de "/>
|
||||
<date-part name="month" suffix=" de "/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<date form="numeric">
|
||||
<date-part name="day" form="numeric-leading-zeros" suffix="/"/>
|
||||
<date-part name="month" form="numeric-leading-zeros" suffix="/"/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<terms>
|
||||
<term name="accessed">consultado</term>
|
||||
<term name="and">y</term>
|
||||
<term name="and others">et al.</term>
|
||||
<term name="anonymous">anónimo</term>
|
||||
<term name="anonymous" form="short">anón.</term>
|
||||
<term name="at">en</term>
|
||||
<term name="available at">disponible en</term>
|
||||
<term name="by">de</term>
|
||||
<term name="circa">circa</term>
|
||||
<term name="circa" form="short">c.</term>
|
||||
<term name="cited">citado</term>
|
||||
<term name="edition">
|
||||
<single>edición</single>
|
||||
<multiple>ediciones</multiple>
|
||||
</term>
|
||||
<term name="edition" form="short">
|
||||
<single>ed.</single>
|
||||
<multiple>eds.</multiple>
|
||||
</term>
|
||||
<term name="et-al">et al.</term>
|
||||
<term name="forthcoming">en preparación</term>
|
||||
<term name="from">a partir de</term>
|
||||
<term name="ibid">ibid.</term>
|
||||
<term name="in">en</term>
|
||||
<term name="in press">en imprenta</term>
|
||||
<term name="internet">internet</term>
|
||||
<term name="interview">entrevista</term>
|
||||
<term name="letter">carta</term>
|
||||
<term name="no date">sin fecha</term>
|
||||
<term name="no date" form="short">s/f</term>
|
||||
<term name="online">en línea</term>
|
||||
<term name="presented at">presentado en</term>
|
||||
<term name="reference">
|
||||
<single>referencia</single>
|
||||
<multiple>referencias</multiple>
|
||||
</term>
|
||||
<term name="reference" form="short">
|
||||
<single>ref.</single>
|
||||
<multiple>refs.</multiple>
|
||||
</term>
|
||||
<term name="retrieved">recuperado</term>
|
||||
<term name="scale">escala</term>
|
||||
<term name="version">versión</term>
|
||||
|
||||
<!-- ANNO DOMINI; BEFORE CHRIST -->
|
||||
<term name="ad">d. C.</term>
|
||||
<term name="bc">a. C.</term>
|
||||
|
||||
<!-- PUNCTUATION -->
|
||||
<term name="open-quote">“</term>
|
||||
<term name="close-quote">”</term>
|
||||
<term name="open-inner-quote">‘</term>
|
||||
<term name="close-inner-quote">’</term>
|
||||
<term name="page-range-delimiter">–</term>
|
||||
|
||||
<!-- ORDINALS -->
|
||||
<term name="ordinal">a</term>
|
||||
<term name="ordinal-01" gender-form="feminine" match="whole-number">a</term>
|
||||
<term name="ordinal-01" gender-form="masculine" match="whole-number">o</term>
|
||||
|
||||
<!-- LONG ORDINALS -->
|
||||
<term name="long-ordinal-01">primera</term>
|
||||
<term name="long-ordinal-02">segunda</term>
|
||||
<term name="long-ordinal-03">tercera</term>
|
||||
<term name="long-ordinal-04">cuarta</term>
|
||||
<term name="long-ordinal-05">quinta</term>
|
||||
<term name="long-ordinal-06">sexta</term>
|
||||
<term name="long-ordinal-07">séptima</term>
|
||||
<term name="long-ordinal-08">octava</term>
|
||||
<term name="long-ordinal-09">novena</term>
|
||||
<term name="long-ordinal-10">décima</term>
|
||||
|
||||
<!-- LONG LOCATOR FORMS -->
|
||||
<term name="book">
|
||||
<single>libro</single>
|
||||
<multiple>libros</multiple>
|
||||
</term>
|
||||
<term name="chapter">
|
||||
<single>capítulo</single>
|
||||
<multiple>capítulos</multiple>
|
||||
</term>
|
||||
<term name="column">
|
||||
<single>columna</single>
|
||||
<multiple>columnas</multiple>
|
||||
</term>
|
||||
<term name="figure">
|
||||
<single>figura</single>
|
||||
<multiple>figuras</multiple>
|
||||
</term>
|
||||
<term name="folio">
|
||||
<single>folio</single>
|
||||
<multiple>folios</multiple>
|
||||
</term>
|
||||
<term name="issue">
|
||||
<single>número</single>
|
||||
<multiple>números</multiple>
|
||||
</term>
|
||||
<term name="line">
|
||||
<single>línea</single>
|
||||
<multiple>líneas</multiple>
|
||||
</term>
|
||||
<term name="note">
|
||||
<single>nota</single>
|
||||
<multiple>notas</multiple>
|
||||
</term>
|
||||
<term name="opus">
|
||||
<single>opus</single>
|
||||
<multiple>opera</multiple>
|
||||
</term>
|
||||
<term name="page">
|
||||
<single>página</single>
|
||||
<multiple>páginas</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages">
|
||||
<single>página</single>
|
||||
<multiple>páginas</multiple>
|
||||
</term>
|
||||
<term name="paragraph">
|
||||
<single>párrafo</single>
|
||||
<multiple>párrafos</multiple>
|
||||
</term>
|
||||
<term name="part">
|
||||
<single>parte</single>
|
||||
<multiple>partes</multiple>
|
||||
</term>
|
||||
<term name="section">
|
||||
<single>sección</single>
|
||||
<multiple>secciones</multiple>
|
||||
</term>
|
||||
<term name="sub verbo">
|
||||
<single>sub voce</single>
|
||||
<multiple>sub vocibus</multiple>
|
||||
</term>
|
||||
<term name="verse">
|
||||
<single>verso</single>
|
||||
<multiple>versos</multiple>
|
||||
</term>
|
||||
<term name="volume">
|
||||
<single>volumen</single>
|
||||
<multiple>volúmenes</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT LOCATOR FORMS -->
|
||||
<term name="book" form="short">
|
||||
<single>lib.</single>
|
||||
<multiple>libs.</multiple>
|
||||
</term>
|
||||
<term name="chapter" form="short">
|
||||
<single>cap.</single>
|
||||
<multiple>caps.</multiple>
|
||||
</term>
|
||||
<term name="column" form="short">
|
||||
<single>col.</single>
|
||||
<multiple>cols.</multiple>
|
||||
</term>
|
||||
<term name="figure" form="short">
|
||||
<single>fig.</single>
|
||||
<multiple>figs.</multiple>
|
||||
</term>
|
||||
<term name="folio" form="short">
|
||||
<single>f.</single>
|
||||
<multiple>ff.</multiple>
|
||||
</term>
|
||||
<term name="issue" form="short">
|
||||
<single>núm.</single>
|
||||
<multiple>núms.</multiple>
|
||||
</term>
|
||||
<term name="line" form="short">
|
||||
<single>l.</single>
|
||||
<multiple>ls.</multiple>
|
||||
</term>
|
||||
<term name="note" form="short">
|
||||
<single>n.</single>
|
||||
<multiple>nn.</multiple>
|
||||
</term>
|
||||
<term name="opus" form="short">
|
||||
<single>op.</single>
|
||||
<multiple>opp.</multiple>
|
||||
</term>
|
||||
<term name="page" form="short">
|
||||
<single>p.</single>
|
||||
<multiple>pp.</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages" form="short">
|
||||
<single>p.</single>
|
||||
<multiple>pp.</multiple>
|
||||
</term>
|
||||
<term name="paragraph" form="short">
|
||||
<single>párr.</single>
|
||||
<multiple>párrs.</multiple>
|
||||
</term>
|
||||
<term name="part" form="short">
|
||||
<single>pt.</single>
|
||||
<multiple>pts.</multiple>
|
||||
</term>
|
||||
<term name="section" form="short">
|
||||
<single>sec.</single>
|
||||
<multiple>secs.</multiple>
|
||||
</term>
|
||||
<term name="sub verbo" form="short">
|
||||
<single>s. v.</single>
|
||||
<multiple>s. vv.</multiple>
|
||||
</term>
|
||||
<term name="verse" form="short">
|
||||
<single>v.</single>
|
||||
<multiple>vv.</multiple>
|
||||
</term>
|
||||
<term name="volume" form="short">
|
||||
<single>vol.</single>
|
||||
<multiple>vols.</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶</multiple>
|
||||
</term>
|
||||
<term name="section" form="symbol">
|
||||
<single>§</single>
|
||||
<multiple>§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="director">
|
||||
<single>director</single>
|
||||
<multiple>directores</multiple>
|
||||
</term>
|
||||
<term name="editor">
|
||||
<single>editor</single>
|
||||
<multiple>editores</multiple>
|
||||
</term>
|
||||
<term name="editorial-director">
|
||||
<single>coordinador</single>
|
||||
<multiple>coordinadores</multiple>
|
||||
</term>
|
||||
<term name="illustrator">
|
||||
<single>ilustrador</single>
|
||||
<multiple>ilustradores</multiple>
|
||||
</term>
|
||||
<term name="translator">
|
||||
<single>traductor</single>
|
||||
<multiple>traductores</multiple>
|
||||
</term>
|
||||
<term name="editortranslator">
|
||||
<single>editor y traductor</single>
|
||||
<multiple>editores y traductores</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="director" form="short">
|
||||
<single>dir.</single>
|
||||
<multiple>dirs.</multiple>
|
||||
</term>
|
||||
<term name="editor" form="short">
|
||||
<single>ed.</single>
|
||||
<multiple>eds.</multiple>
|
||||
</term>
|
||||
<term name="editorial-director" form="short">
|
||||
<single>coord.</single>
|
||||
<multiple>coords.</multiple>
|
||||
</term>
|
||||
<term name="illustrator" form="short">
|
||||
<single>ilust.</single>
|
||||
<multiple>ilusts.</multiple>
|
||||
</term>
|
||||
<term name="translator" form="short">
|
||||
<single>trad.</single>
|
||||
<multiple>trads.</multiple>
|
||||
</term>
|
||||
<term name="editortranslator" form="short">
|
||||
<single>ed. y trad.</single>
|
||||
<multiple>eds. y trads.</multiple>
|
||||
</term>
|
||||
|
||||
<!-- VERB ROLE FORMS -->
|
||||
<term name="container-author" form="verb">de</term>
|
||||
<term name="director" form="verb">dirigido por</term>
|
||||
<term name="editor" form="verb">editado por</term>
|
||||
<term name="editorial-director" form="verb">coordinado por</term>
|
||||
<term name="illustrator" form="verb">ilustrado por</term>
|
||||
<term name="interviewer" form="verb">entrevistado por</term>
|
||||
<term name="recipient" form="verb">a</term>
|
||||
<term name="reviewed-author" form="verb">por</term>
|
||||
<term name="translator" form="verb">traducido por</term>
|
||||
<term name="editortranslator" form="verb">editado y traducido por</term>
|
||||
|
||||
<!-- SHORT VERB ROLE FORMS -->
|
||||
<term name="director" form="verb-short">dir.</term>
|
||||
<term name="editor" form="verb-short">ed.</term>
|
||||
<term name="editorial-director" form="verb-short">coord.</term>
|
||||
<term name="illustrator" form="verb-short">ilust.</term>
|
||||
<term name="translator" form="verb-short">trad.</term>
|
||||
<term name="editortranslator" form="verb-short">ed. y trad.</term>
|
||||
|
||||
<!-- LONG MONTH FORMS -->
|
||||
<term name="month-01">enero</term>
|
||||
<term name="month-02">febrero</term>
|
||||
<term name="month-03">marzo</term>
|
||||
<term name="month-04">abril</term>
|
||||
<term name="month-05">mayo</term>
|
||||
<term name="month-06">junio</term>
|
||||
<term name="month-07">julio</term>
|
||||
<term name="month-08">agosto</term>
|
||||
<term name="month-09">septiembre</term>
|
||||
<term name="month-10">octubre</term>
|
||||
<term name="month-11">noviembre</term>
|
||||
<term name="month-12">diciembre</term>
|
||||
|
||||
<!-- SHORT MONTH FORMS -->
|
||||
<term name="month-01" form="short">ene.</term>
|
||||
<term name="month-02" form="short">feb.</term>
|
||||
<term name="month-03" form="short">mar.</term>
|
||||
<term name="month-04" form="short">abr.</term>
|
||||
<term name="month-05" form="short">may</term>
|
||||
<term name="month-06" form="short">jun.</term>
|
||||
<term name="month-07" form="short">jul.</term>
|
||||
<term name="month-08" form="short">ago.</term>
|
||||
<term name="month-09" form="short">sep.</term>
|
||||
<term name="month-10" form="short">oct.</term>
|
||||
<term name="month-11" form="short">nov.</term>
|
||||
<term name="month-12" form="short">dic.</term>
|
||||
|
||||
<!-- SEASONS -->
|
||||
<term name="season-01">primavera</term>
|
||||
<term name="season-02">verano</term>
|
||||
<term name="season-03">otoño</term>
|
||||
<term name="season-04">invierno</term>
|
||||
</terms>
|
||||
</locale>
|
||||
Vendored
+309
@@ -0,0 +1,309 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="et-EE">
|
||||
<info>
|
||||
<translator>
|
||||
<name>Andrew Dunning</name>
|
||||
</translator>
|
||||
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
|
||||
<updated>2012-07-04T23:31:02+00:00</updated>
|
||||
</info>
|
||||
<style-options punctuation-in-quote="false"/>
|
||||
<date form="text">
|
||||
<date-part name="day" form="ordinal" suffix=" "/>
|
||||
<date-part name="month" suffix=" "/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<date form="numeric">
|
||||
<date-part name="day" form="numeric-leading-zeros" suffix="."/>
|
||||
<date-part name="month" form="numeric-leading-zeros" suffix="."/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<terms>
|
||||
<term name="accessed">vaadatud</term>
|
||||
<term name="and">ja</term>
|
||||
<term name="and others">ja teised</term>
|
||||
<term name="anonymous">anonüümne</term>
|
||||
<term name="anonymous" form="short">anon</term>
|
||||
<term name="at"></term>
|
||||
<term name="available at">available at</term>
|
||||
<term name="by"></term>
|
||||
<term name="circa">umbes</term>
|
||||
<term name="circa" form="short">u</term>
|
||||
<term name="cited">tsiteeritud</term>
|
||||
<term name="edition">
|
||||
<single>väljaanne</single>
|
||||
<multiple>väljaanded</multiple>
|
||||
</term>
|
||||
<term name="edition" form="short">tr</term>
|
||||
<term name="et-al">et al.</term>
|
||||
<term name="forthcoming">ilmumisel</term>
|
||||
<term name="from"></term>
|
||||
<term name="ibid">ibid.</term>
|
||||
<term name="in"></term>
|
||||
<term name="in press">trükis</term>
|
||||
<term name="internet">internet</term>
|
||||
<term name="interview">intervjuu</term>
|
||||
<term name="letter">kiri</term>
|
||||
<term name="no date">s.a.</term>
|
||||
<term name="no date" form="short">s.a.</term>
|
||||
<term name="online">online</term>
|
||||
<term name="presented at">esitatud</term>
|
||||
<term name="reference">
|
||||
<single>viide</single>
|
||||
<multiple>viited</multiple>
|
||||
</term>
|
||||
<term name="reference" form="short">
|
||||
<single>viide</single>
|
||||
<multiple>viited</multiple>
|
||||
</term>
|
||||
<term name="retrieved">salvestatud</term>
|
||||
<term name="scale">scale</term>
|
||||
<term name="version">version</term>
|
||||
|
||||
<!-- ANNO DOMINI; BEFORE CHRIST -->
|
||||
<term name="ad">pKr</term>
|
||||
<term name="bc">eKr</term>
|
||||
|
||||
<!-- PUNCTUATION -->
|
||||
<term name="open-quote">„</term>
|
||||
<term name="close-quote">“</term>
|
||||
<term name="open-inner-quote">‘</term>
|
||||
<term name="close-inner-quote">’</term>
|
||||
<term name="page-range-delimiter">–</term>
|
||||
|
||||
<!-- ORDINALS -->
|
||||
<term name="ordinal">.</term>
|
||||
|
||||
<!-- LONG ORDINALS -->
|
||||
<term name="long-ordinal-01">esimene</term>
|
||||
<term name="long-ordinal-02">teine</term>
|
||||
<term name="long-ordinal-03">kolmas</term>
|
||||
<term name="long-ordinal-04">neljas</term>
|
||||
<term name="long-ordinal-05">viies</term>
|
||||
<term name="long-ordinal-06">kuues</term>
|
||||
<term name="long-ordinal-07">seitsmes</term>
|
||||
<term name="long-ordinal-08">kaheksas</term>
|
||||
<term name="long-ordinal-09">üheksas</term>
|
||||
<term name="long-ordinal-10">kümnes</term>
|
||||
|
||||
<!-- LONG LOCATOR FORMS -->
|
||||
<term name="book">
|
||||
<single>raamat</single>
|
||||
<multiple>raamatud</multiple>
|
||||
</term>
|
||||
<term name="chapter">
|
||||
<single>peatükk</single>
|
||||
<multiple>peatükid</multiple>
|
||||
</term>
|
||||
<term name="column">
|
||||
<single>veerg</single>
|
||||
<multiple>veerud</multiple>
|
||||
</term>
|
||||
<term name="figure">
|
||||
<single>joonis</single>
|
||||
<multiple>joonised</multiple>
|
||||
</term>
|
||||
<term name="folio">
|
||||
<single>foolio</single>
|
||||
<multiple>fooliod</multiple>
|
||||
</term>
|
||||
<term name="issue">
|
||||
<single>number</single>
|
||||
<multiple>numbrid</multiple>
|
||||
</term>
|
||||
<term name="line">
|
||||
<single>rida</single>
|
||||
<multiple>read</multiple>
|
||||
</term>
|
||||
<term name="note">
|
||||
<single>viide</single>
|
||||
<multiple>viited</multiple>
|
||||
</term>
|
||||
<term name="opus">
|
||||
<single>opus</single>
|
||||
<multiple>opera</multiple>
|
||||
</term>
|
||||
<term name="page">
|
||||
<single>lehekülg</single>
|
||||
<multiple>leheküljed</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages">
|
||||
<single>lehekülg</single>
|
||||
<multiple>leheküljed</multiple>
|
||||
</term>
|
||||
<term name="paragraph">
|
||||
<single>lõik</single>
|
||||
<multiple>lõigud</multiple>
|
||||
</term>
|
||||
<term name="part">
|
||||
<single>osa</single>
|
||||
<multiple>osad</multiple>
|
||||
</term>
|
||||
<term name="section">
|
||||
<single>alajaotis</single>
|
||||
<multiple>alajaotised</multiple>
|
||||
</term>
|
||||
<term name="sub verbo">
|
||||
<single>sub verbo</single>
|
||||
<multiple>sub verbis</multiple>
|
||||
</term>
|
||||
<term name="verse">
|
||||
<single>värss</single>
|
||||
<multiple>värsid</multiple>
|
||||
</term>
|
||||
<term name="volume">
|
||||
<single>köide</single>
|
||||
<multiple>köited</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT LOCATOR FORMS -->
|
||||
<term name="book" form="short">rmt</term>
|
||||
<term name="chapter" form="short">ptk</term>
|
||||
<term name="column" form="short">v</term>
|
||||
<term name="figure" form="short">joon</term>
|
||||
<term name="folio" form="short">f</term>
|
||||
<term name="issue" form="short">nr</term>
|
||||
<term name="line" form="short">l.</term>
|
||||
<term name="note" form="short">n.</term>
|
||||
<term name="opus" form="short">op</term>
|
||||
<term name="page" form="short">
|
||||
<single>lk</single>
|
||||
<multiple>lk</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages" form="short">
|
||||
<single>lk</single>
|
||||
<multiple>lk</multiple>
|
||||
</term>
|
||||
<term name="paragraph" form="short">lõik</term>
|
||||
<term name="part" form="short">osa</term>
|
||||
<term name="section" form="short">alajaot.</term>
|
||||
<term name="sub verbo" form="short">
|
||||
<single>s.v.</single>
|
||||
<multiple>s.vv.</multiple>
|
||||
</term>
|
||||
<term name="verse" form="short">
|
||||
<single>v</single>
|
||||
<multiple>vv</multiple>
|
||||
</term>
|
||||
<term name="volume" form="short">
|
||||
<single>kd</single>
|
||||
<multiple>kd</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶¶</multiple>
|
||||
</term>
|
||||
<term name="section" form="symbol">
|
||||
<single>§</single>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="director">
|
||||
<single>director</single>
|
||||
<multiple>directors</multiple>
|
||||
</term>
|
||||
<term name="editor">
|
||||
<single>toimetaja</single>
|
||||
<multiple>toimetajad</multiple>
|
||||
</term>
|
||||
<term name="editorial-director">
|
||||
<single>toimetaja</single>
|
||||
<multiple>toimetajad</multiple>
|
||||
</term>
|
||||
<term name="illustrator">
|
||||
<single>illustrator</single>
|
||||
<multiple>illustrators</multiple>
|
||||
</term>
|
||||
<term name="translator">
|
||||
<single>tõlkija</single>
|
||||
<multiple>tõlkijad</multiple>
|
||||
</term>
|
||||
<term name="editortranslator">
|
||||
<single>toimetaja & tõlkija</single>
|
||||
<multiple>toimetajad & tõlkijad</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="director" form="short">
|
||||
<single>dir.</single>
|
||||
<multiple>dirs.</multiple>
|
||||
</term>
|
||||
<term name="editor" form="short">
|
||||
<single>toim</single>
|
||||
<multiple>toim</multiple>
|
||||
</term>
|
||||
<term name="editorial-director" form="short">
|
||||
<single>toim</single>
|
||||
<multiple>toim</multiple>
|
||||
</term>
|
||||
<term name="illustrator" form="short">
|
||||
<single>ill.</single>
|
||||
<multiple>ills.</multiple>
|
||||
</term>
|
||||
<term name="translator" form="short">
|
||||
<single>tõlk</single>
|
||||
<multiple>tõlk</multiple>
|
||||
</term>
|
||||
<term name="editortranslator" form="short">
|
||||
<single>toim & tõlk</single>
|
||||
<multiple>toim & tõlk</multiple>
|
||||
</term>
|
||||
|
||||
<!-- VERB ROLE FORMS -->
|
||||
<term name="container-author" form="verb"></term>
|
||||
<term name="director" form="verb">directed by</term>
|
||||
<term name="editor" form="verb">toimetanud</term>
|
||||
<term name="editorial-director" form="verb">toimetanud</term>
|
||||
<term name="illustrator" form="verb">illustrated by</term>
|
||||
<term name="interviewer" form="verb">intervjueerinud</term>
|
||||
<term name="recipient" form="verb"></term>
|
||||
<term name="reviewed-author" form="verb">by</term>
|
||||
<term name="translator" form="verb">tõlkinud</term>
|
||||
<term name="editortranslator" form="verb">toimetanud & tõlkinud</term>
|
||||
|
||||
<!-- SHORT VERB ROLE FORMS -->
|
||||
<term name="director" form="verb-short">dir.</term>
|
||||
<term name="editor" form="verb-short">toim</term>
|
||||
<term name="editorial-director" form="verb-short">toim</term>
|
||||
<term name="illustrator" form="verb-short">illus.</term>
|
||||
<term name="translator" form="verb-short">tõlk</term>
|
||||
<term name="editortranslator" form="verb-short">toim & tõlk</term>
|
||||
|
||||
<!-- LONG MONTH FORMS -->
|
||||
<term name="month-01">jaanuar</term>
|
||||
<term name="month-02">veebruar</term>
|
||||
<term name="month-03">märts</term>
|
||||
<term name="month-04">aprill</term>
|
||||
<term name="month-05">mai</term>
|
||||
<term name="month-06">juuni</term>
|
||||
<term name="month-07">juuli</term>
|
||||
<term name="month-08">august</term>
|
||||
<term name="month-09">september</term>
|
||||
<term name="month-10">oktoober</term>
|
||||
<term name="month-11">november</term>
|
||||
<term name="month-12">detsember</term>
|
||||
|
||||
<!-- SHORT MONTH FORMS -->
|
||||
<term name="month-01" form="short">jaan</term>
|
||||
<term name="month-02" form="short">veebr</term>
|
||||
<term name="month-03" form="short">märts</term>
|
||||
<term name="month-04" form="short">apr</term>
|
||||
<term name="month-05" form="short">mai</term>
|
||||
<term name="month-06" form="short">juuni</term>
|
||||
<term name="month-07" form="short">juuli</term>
|
||||
<term name="month-08" form="short">aug</term>
|
||||
<term name="month-09" form="short">sept</term>
|
||||
<term name="month-10" form="short">okt</term>
|
||||
<term name="month-11" form="short">nov</term>
|
||||
<term name="month-12" form="short">dets</term>
|
||||
|
||||
<!-- SEASONS -->
|
||||
<term name="season-01">kevad</term>
|
||||
<term name="season-02">suvi</term>
|
||||
<term name="season-03">sügis</term>
|
||||
<term name="season-04">talv</term>
|
||||
</terms>
|
||||
</locale>
|
||||
Vendored
+309
@@ -0,0 +1,309 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="eu">
|
||||
<info>
|
||||
<translator>
|
||||
<name>Amaraun</name>
|
||||
</translator>
|
||||
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
|
||||
<updated>2012-07-04T23:31:02+00:00</updated>
|
||||
</info>
|
||||
<style-options punctuation-in-quote="false"/>
|
||||
<date form="text">
|
||||
<date-part name="year" suffix="(e)ko "/>
|
||||
<date-part name="month" suffix="aren "/>
|
||||
<date-part name="day" suffix="a"/>
|
||||
</date>
|
||||
<date form="numeric">
|
||||
<date-part name="year" suffix="/"/>
|
||||
<date-part name="month" form="numeric-leading-zeros" suffix="/"/>
|
||||
<date-part name="day" form="numeric-leading-zeros"/>
|
||||
</date>
|
||||
<terms>
|
||||
<term name="accessed">eskuratua</term>
|
||||
<term name="and">eta</term>
|
||||
<term name="and others">eta beste</term>
|
||||
<term name="anonymous">ezezaguna</term>
|
||||
<term name="anonymous" form="short">ezez.</term>
|
||||
<term name="at">-(e)n</term>
|
||||
<term name="available at">available at</term>
|
||||
<term name="by">-(e)k egina</term>
|
||||
<term name="circa">inguru</term>
|
||||
<term name="circa" form="short">ing.</term>
|
||||
<term name="cited">aipatua</term>
|
||||
<term name="edition">
|
||||
<single>argitalpena</single>
|
||||
<multiple>argitalpenak</multiple>
|
||||
</term>
|
||||
<term name="edition" form="short">arg.</term>
|
||||
<term name="et-al">et al.</term>
|
||||
<term name="forthcoming">bidean</term>
|
||||
<term name="from">-(e)tik</term>
|
||||
<term name="ibid">ibíd.</term>
|
||||
<term name="in">in</term>
|
||||
<term name="in press">moldiztegian</term>
|
||||
<term name="internet">internet</term>
|
||||
<term name="interview">elkarrizketa</term>
|
||||
<term name="letter">gutuna</term>
|
||||
<term name="no date">datarik gabe</term>
|
||||
<term name="no date" form="short">d. g.</term>
|
||||
<term name="online">sarean</term>
|
||||
<term name="presented at">-(e)n aurkeztua</term>
|
||||
<term name="reference">
|
||||
<single>aipamena</single>
|
||||
<multiple>aipamenak</multiple>
|
||||
</term>
|
||||
<term name="reference" form="short">
|
||||
<single>aip.</single>
|
||||
<multiple>aip.</multiple>
|
||||
</term>
|
||||
<term name="retrieved">berreskuratua</term>
|
||||
<term name="scale">scale</term>
|
||||
<term name="version">version</term>
|
||||
|
||||
<!-- ANNO DOMINI; BEFORE CHRIST -->
|
||||
<term name="ad">K.a.</term>
|
||||
<term name="bc">K.o.</term>
|
||||
|
||||
<!-- PUNCTUATION -->
|
||||
<term name="open-quote">«</term>
|
||||
<term name="close-quote">»</term>
|
||||
<term name="open-inner-quote">“</term>
|
||||
<term name="close-inner-quote">”</term>
|
||||
<term name="page-range-delimiter">–</term>
|
||||
|
||||
<!-- ORDINALS -->
|
||||
<term name="ordinal">.</term>
|
||||
|
||||
<!-- LONG ORDINALS -->
|
||||
<term name="long-ordinal-01">lehengo</term>
|
||||
<term name="long-ordinal-02">bigarren</term>
|
||||
<term name="long-ordinal-03">hirugarren</term>
|
||||
<term name="long-ordinal-04">laugarren</term>
|
||||
<term name="long-ordinal-05">bosgarren</term>
|
||||
<term name="long-ordinal-06">seigarren</term>
|
||||
<term name="long-ordinal-07">zazpigarren</term>
|
||||
<term name="long-ordinal-08">zortzigarren</term>
|
||||
<term name="long-ordinal-09">bederatzigarren</term>
|
||||
<term name="long-ordinal-10">hamargarren</term>
|
||||
|
||||
<!-- LONG LOCATOR FORMS -->
|
||||
<term name="book">
|
||||
<single>liburua</single>
|
||||
<multiple>liburuak</multiple>
|
||||
</term>
|
||||
<term name="chapter">
|
||||
<single>kapitulua</single>
|
||||
<multiple>kapituluak</multiple>
|
||||
</term>
|
||||
<term name="column">
|
||||
<single>zutabea</single>
|
||||
<multiple>zutabeak</multiple>
|
||||
</term>
|
||||
<term name="figure">
|
||||
<single>irudia</single>
|
||||
<multiple>irudiak</multiple>
|
||||
</term>
|
||||
<term name="folio">
|
||||
<single>orria</single>
|
||||
<multiple>orriak</multiple>
|
||||
</term>
|
||||
<term name="issue">
|
||||
<single>zenbakia</single>
|
||||
<multiple>zenbakiak</multiple>
|
||||
</term>
|
||||
<term name="line">
|
||||
<single>lerroa</single>
|
||||
<multiple>lerroak</multiple>
|
||||
</term>
|
||||
<term name="note">
|
||||
<single>oharra</single>
|
||||
<multiple>oharrak</multiple>
|
||||
</term>
|
||||
<term name="opus">
|
||||
<single>obra</single>
|
||||
<multiple>obrak</multiple>
|
||||
</term>
|
||||
<term name="page">
|
||||
<single>orrialdea</single>
|
||||
<multiple>orrialdeak</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages">
|
||||
<single>orrialdea</single>
|
||||
<multiple>orrialdeak</multiple>
|
||||
</term>
|
||||
<term name="paragraph">
|
||||
<single>paragrafoa</single>
|
||||
<multiple>paragrafoak</multiple>
|
||||
</term>
|
||||
<term name="part">
|
||||
<single>zatia</single>
|
||||
<multiple>zatiak</multiple>
|
||||
</term>
|
||||
<term name="section">
|
||||
<single>atala</single>
|
||||
<multiple>atalak</multiple>
|
||||
</term>
|
||||
<term name="sub verbo">
|
||||
<single>sub voce</single>
|
||||
<multiple>sub vocem</multiple>
|
||||
</term>
|
||||
<term name="verse">
|
||||
<single>bertsoa</single>
|
||||
<multiple>bertsoak</multiple>
|
||||
</term>
|
||||
<term name="volume">
|
||||
<single>luburikia</single>
|
||||
<multiple>luburukiak</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT LOCATOR FORMS -->
|
||||
<term name="book" form="short">lib.</term>
|
||||
<term name="chapter" form="short">kap.</term>
|
||||
<term name="column" form="short">zut.</term>
|
||||
<term name="figure" form="short">iru.</term>
|
||||
<term name="folio" form="short">or.</term>
|
||||
<term name="issue" form="short">zenb.</term>
|
||||
<term name="line" form="short">l.</term>
|
||||
<term name="note" form="short">n.</term>
|
||||
<term name="opus" form="short">op.</term>
|
||||
<term name="page" form="short">
|
||||
<single>or.</single>
|
||||
<multiple>or.</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages" form="short">
|
||||
<single>or.</single>
|
||||
<multiple>or.</multiple>
|
||||
</term>
|
||||
<term name="paragraph" form="short">par.</term>
|
||||
<term name="part" form="short">zt.</term>
|
||||
<term name="section" form="short">atal.</term>
|
||||
<term name="sub verbo" form="short">
|
||||
<single>s.v.</single>
|
||||
<multiple>s.v.</multiple>
|
||||
</term>
|
||||
<term name="verse" form="short">
|
||||
<single>b.</single>
|
||||
<multiple>bb.</multiple>
|
||||
</term>
|
||||
<term name="volume" form="short">
|
||||
<single>libk.</single>
|
||||
<multiple>libk.</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶¶</multiple>
|
||||
</term>
|
||||
<term name="section" form="symbol">
|
||||
<single>§</single>
|
||||
<multiple>§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="director">
|
||||
<single>director</single>
|
||||
<multiple>directors</multiple>
|
||||
</term>
|
||||
<term name="editor">
|
||||
<single>argitaratzailea</single>
|
||||
<multiple>argitaratzaileak</multiple>
|
||||
</term>
|
||||
<term name="editorial-director">
|
||||
<single>argitaratzailea</single>
|
||||
<multiple>argitaratzaileak</multiple>
|
||||
</term>
|
||||
<term name="illustrator">
|
||||
<single>illustrator</single>
|
||||
<multiple>illustrators</multiple>
|
||||
</term>
|
||||
<term name="translator">
|
||||
<single>itzultzailea</single>
|
||||
<multiple>itzultzaileak</multiple>
|
||||
</term>
|
||||
<term name="editortranslator">
|
||||
<single>argitaratzaile eta itzultzailea</single>
|
||||
<multiple>argitaratzaile eta itzultzaileak</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="director" form="short">
|
||||
<single>dir.</single>
|
||||
<multiple>dirs.</multiple>
|
||||
</term>
|
||||
<term name="editor" form="short">
|
||||
<single>arg.</single>
|
||||
<multiple>arg.</multiple>
|
||||
</term>
|
||||
<term name="editorial-director" form="short">
|
||||
<single>arg.</single>
|
||||
<multiple>arg.</multiple>
|
||||
</term>
|
||||
<term name="illustrator" form="short">
|
||||
<single>ill.</single>
|
||||
<multiple>ills.</multiple>
|
||||
</term>
|
||||
<term name="translator" form="short">
|
||||
<single>itzul.</single>
|
||||
<multiple>itzul.</multiple>
|
||||
</term>
|
||||
<term name="editortranslator" form="short">
|
||||
<single>arg. eta itzul.</single>
|
||||
<multiple>arg. eta itzul.</multiple>
|
||||
</term>
|
||||
|
||||
<!-- VERB ROLE FORMS -->
|
||||
<term name="container-author" form="verb"></term>
|
||||
<term name="director" form="verb">directed by</term>
|
||||
<term name="editor" form="verb">-(e)k argitaratua</term>
|
||||
<term name="editorial-director" form="verb">-(e)k argitaratua</term>
|
||||
<term name="illustrator" form="verb">illustrated by</term>
|
||||
<term name="interviewer" form="verb">-(e)k elkarrizketatua</term>
|
||||
<term name="recipient" form="verb">-(r)entzat</term>
|
||||
<term name="reviewed-author" form="verb">by</term>
|
||||
<term name="translator" form="verb">-(e)k itzulia</term>
|
||||
<term name="editortranslator" form="verb">-(e)k argitaratu eta itzulia</term>
|
||||
|
||||
<!-- SHORT VERB ROLE FORMS -->
|
||||
<term name="director" form="verb-short">dir.</term>
|
||||
<term name="editor" form="verb-short">arg.</term>
|
||||
<term name="editorial-director" form="verb-short">arg.</term>
|
||||
<term name="illustrator" form="verb-short">illus.</term>
|
||||
<term name="translator" form="verb-short">itzul.</term>
|
||||
<term name="editortranslator" form="verb-short">-(e)k arg. eta itzul.</term>
|
||||
|
||||
<!-- LONG MONTH FORMS -->
|
||||
<term name="month-01">urtarrilak</term>
|
||||
<term name="month-02">otsailak</term>
|
||||
<term name="month-03">martxoak</term>
|
||||
<term name="month-04">apirilak</term>
|
||||
<term name="month-05">maiatzak</term>
|
||||
<term name="month-06">ekainak</term>
|
||||
<term name="month-07">uztailak</term>
|
||||
<term name="month-08">abuztuak</term>
|
||||
<term name="month-09">irailak</term>
|
||||
<term name="month-10">urriak</term>
|
||||
<term name="month-11">azaroak</term>
|
||||
<term name="month-12">abenduak</term>
|
||||
|
||||
<!-- SHORT MONTH FORMS -->
|
||||
<term name="month-01" form="short">urt.</term>
|
||||
<term name="month-02" form="short">ots.</term>
|
||||
<term name="month-03" form="short">martx.</term>
|
||||
<term name="month-04" form="short">apr.</term>
|
||||
<term name="month-05" form="short">mai.</term>
|
||||
<term name="month-06" form="short">eka.</term>
|
||||
<term name="month-07" form="short">uzt.</term>
|
||||
<term name="month-08" form="short">abz.</term>
|
||||
<term name="month-09" form="short">ira.</term>
|
||||
<term name="month-10" form="short">urr.</term>
|
||||
<term name="month-11" form="short">aza.</term>
|
||||
<term name="month-12" form="short">abe.</term>
|
||||
|
||||
<!-- SEASONS -->
|
||||
<term name="season-01">udaberria</term>
|
||||
<term name="season-02">uda</term>
|
||||
<term name="season-03">udazkena</term>
|
||||
<term name="season-04">negua</term>
|
||||
</terms>
|
||||
</locale>
|
||||
Vendored
+312
@@ -0,0 +1,312 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="fa-IR">
|
||||
<info>
|
||||
<translator>
|
||||
<name>Hamed Heydari</name>
|
||||
</translator>
|
||||
<translator>
|
||||
<name>abdealikhurrum</name>
|
||||
</translator>
|
||||
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
|
||||
<updated>2012-07-04T23:31:02+00:00</updated>
|
||||
</info>
|
||||
<style-options punctuation-in-quote="true"/>
|
||||
<date form="text">
|
||||
<date-part name="day" suffix=" "/>
|
||||
<date-part name="month" suffix=" "/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<date form="numeric">
|
||||
<date-part name="day" form="numeric-leading-zeros" suffix="/"/>
|
||||
<date-part name="month" form="numeric-leading-zeros" suffix="/"/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<terms>
|
||||
<term name="accessed">دسترسی</term>
|
||||
<term name="and">و</term>
|
||||
<term name="and others">و دیگران</term>
|
||||
<term name="anonymous">ناشناس</term>
|
||||
<term name="anonymous" form="short">ناشناس</term>
|
||||
<term name="at">در</term>
|
||||
<term name="available at">قابل دسترس در</term>
|
||||
<term name="by">توسط</term>
|
||||
<term name="circa">تقریباً</term>
|
||||
<term name="circa" form="short">c.</term>
|
||||
<term name="cited">ارجاع شده</term>
|
||||
<term name="edition">
|
||||
<single>ویرایش</single>
|
||||
<multiple>ویرایشهای</multiple>
|
||||
</term>
|
||||
<term name="edition" form="short">ویرایش</term>
|
||||
<term name="et-al">و همکاران</term>
|
||||
<term name="forthcoming">در دست انتشار</term>
|
||||
<term name="from">از</term>
|
||||
<term name="ibid">همان</term>
|
||||
<term name="in">در</term>
|
||||
<term name="in press">زیر چاپ</term>
|
||||
<term name="internet">اینترنت</term>
|
||||
<term name="interview">مصاحبه</term>
|
||||
<term name="letter">نامه</term>
|
||||
<term name="no date">بدون تاریخ</term>
|
||||
<term name="no date" form="short">بدون تاریخ</term>
|
||||
<term name="online">آنلاین</term>
|
||||
<term name="presented at">ارائه شده در</term>
|
||||
<term name="reference">
|
||||
<single>مرجع</single>
|
||||
<multiple>مراجع</multiple>
|
||||
</term>
|
||||
<term name="reference" form="short">
|
||||
<single>مرجع</single>
|
||||
<multiple>مراجع</multiple>
|
||||
</term>
|
||||
<term name="retrieved">retrieved</term>
|
||||
<term name="scale">scale</term>
|
||||
<term name="version">نسخه</term>
|
||||
|
||||
<!-- ANNO DOMINI; BEFORE CHRIST -->
|
||||
<term name="ad">بعد از میلاد</term>
|
||||
<term name="bc">قبل از میلاد</term>
|
||||
|
||||
<!-- PUNCTUATION -->
|
||||
<term name="open-quote">“</term>
|
||||
<term name="close-quote">”</term>
|
||||
<term name="open-inner-quote">‘</term>
|
||||
<term name="close-inner-quote">’</term>
|
||||
<term name="page-range-delimiter">–</term>
|
||||
|
||||
<!-- ORDINALS -->
|
||||
<term name="ordinal"></term>
|
||||
|
||||
<!-- LONG ORDINALS -->
|
||||
<term name="long-ordinal-01">اول</term>
|
||||
<term name="long-ordinal-02">دوم</term>
|
||||
<term name="long-ordinal-03">سوم</term>
|
||||
<term name="long-ordinal-04">چهارم</term>
|
||||
<term name="long-ordinal-05">پنجم</term>
|
||||
<term name="long-ordinal-06">ششم</term>
|
||||
<term name="long-ordinal-07">هفتم</term>
|
||||
<term name="long-ordinal-08">هشتم</term>
|
||||
<term name="long-ordinal-09">نهم</term>
|
||||
<term name="long-ordinal-10">دهم</term>
|
||||
|
||||
<!-- LONG LOCATOR FORMS -->
|
||||
<term name="book">
|
||||
<single>کتاب</single>
|
||||
<multiple>کتابهای</multiple>
|
||||
</term>
|
||||
<term name="chapter">
|
||||
<single>فصل</single>
|
||||
<multiple>فصلهای</multiple>
|
||||
</term>
|
||||
<term name="column">
|
||||
<single>ستون</single>
|
||||
<multiple>ستونهای</multiple>
|
||||
</term>
|
||||
<term name="figure">
|
||||
<single>تصویر</single>
|
||||
<multiple>تصاویر</multiple>
|
||||
</term>
|
||||
<term name="folio">
|
||||
<single>برگ</single>
|
||||
<multiple>برگهای</multiple>
|
||||
</term>
|
||||
<term name="issue">
|
||||
<single>شماره</single>
|
||||
<multiple>شمارههای</multiple>
|
||||
</term>
|
||||
<term name="line">
|
||||
<single>خط</single>
|
||||
<multiple>خطوط</multiple>
|
||||
</term>
|
||||
<term name="note">
|
||||
<single>یادداشت</single>
|
||||
<multiple>یادداشتهای</multiple>
|
||||
</term>
|
||||
<term name="opus">
|
||||
<single>قطعه</single>
|
||||
<multiple>قطعات</multiple>
|
||||
</term>
|
||||
<term name="page">
|
||||
<single>صفحه</single>
|
||||
<multiple>صفحات</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages">
|
||||
<single>صفحه</single>
|
||||
<multiple>صفحات</multiple>
|
||||
</term>
|
||||
<term name="paragraph">
|
||||
<single>پاراگراف</single>
|
||||
<multiple>پاراگرافهای</multiple>
|
||||
</term>
|
||||
<term name="part">
|
||||
<single>بخش</single>
|
||||
<multiple>بخشهای</multiple>
|
||||
</term>
|
||||
<term name="section">
|
||||
<single>قسمت</single>
|
||||
<multiple>قسمتهای</multiple>
|
||||
</term>
|
||||
<term name="sub verbo">
|
||||
<single>در ذیلِ واژه</single>
|
||||
<multiple>در ذیلِ واژههای</multiple>
|
||||
</term>
|
||||
<term name="verse">
|
||||
<single>بیت</single>
|
||||
<multiple>بیتهای</multiple>
|
||||
</term>
|
||||
<term name="volume">
|
||||
<single>جلد</single>
|
||||
<multiple>جلدهای</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT LOCATOR FORMS -->
|
||||
<term name="book" form="short">کتاب</term>
|
||||
<term name="chapter" form="short">فصل</term>
|
||||
<term name="column" form="short">ستون</term>
|
||||
<term name="figure" form="short">تصویر</term>
|
||||
<term name="folio" form="short">برگ</term>
|
||||
<term name="issue" form="short">ش</term>
|
||||
<term name="line" form="short">خط</term>
|
||||
<term name="note" form="short">یادداشت</term>
|
||||
<term name="opus" form="short">قطعه</term>
|
||||
<term name="page" form="short">
|
||||
<single>ص</single>
|
||||
<multiple>صص</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages" form="short">
|
||||
<single>ص</single>
|
||||
<multiple>صص</multiple>
|
||||
</term>
|
||||
<term name="paragraph" form="short">پاراگراف</term>
|
||||
<term name="part" form="short">بخش</term>
|
||||
<term name="section" form="short">قسمت</term>
|
||||
<term name="sub verbo" form="short">
|
||||
<single>s.v</single>
|
||||
<multiple>s.vv</multiple>
|
||||
</term>
|
||||
<term name="verse" form="short">
|
||||
<single>بیت</single>
|
||||
<multiple>ابیات</multiple>
|
||||
</term>
|
||||
<term name="volume" form="short">
|
||||
<single>ج</single>
|
||||
<multiple>جج</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶¶</multiple>
|
||||
</term>
|
||||
<term name="section" form="symbol">
|
||||
<single>§</single>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="director">
|
||||
<single>director</single>
|
||||
<multiple>directors</multiple>
|
||||
</term>
|
||||
<term name="editor">
|
||||
<single>ویراستار</single>
|
||||
<multiple>ویراستاران</multiple>
|
||||
</term>
|
||||
<term name="editorial-director">
|
||||
<single>ویراستار</single>
|
||||
<multiple>ویراستاران</multiple>
|
||||
</term>
|
||||
<term name="illustrator">
|
||||
<single>طراح گرافیک</single>
|
||||
<multiple>طراحان گرافیک</multiple>
|
||||
</term>
|
||||
<term name="translator">
|
||||
<single>مترجم</single>
|
||||
<multiple>مترجمین</multiple>
|
||||
</term>
|
||||
<term name="editortranslator">
|
||||
<single>ویراستار و مترجم</single>
|
||||
<multiple>ویراستاران و مترجمین</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="director" form="short">
|
||||
<single>dir.</single>
|
||||
<multiple>dirs.</multiple>
|
||||
</term>
|
||||
<term name="editor" form="short">
|
||||
<single>ویراستار</single>
|
||||
<multiple>ویراستاران</multiple>
|
||||
</term>
|
||||
<term name="editorial-director" form="short">
|
||||
<single>ویراستار</single>
|
||||
<multiple>ویراستاران</multiple>
|
||||
</term>
|
||||
<term name="illustrator" form="short">
|
||||
<single>تصویرگر</single>
|
||||
<multiple>تصویرگران</multiple>
|
||||
</term>
|
||||
<term name="translator" form="short">
|
||||
<single>مترجم</single>
|
||||
<multiple>مترجمین</multiple>
|
||||
</term>
|
||||
<term name="editortranslator" form="short">
|
||||
<single>ویراستار و مترجم</single>
|
||||
<multiple>ویراستاران و مترجمین</multiple>
|
||||
</term>
|
||||
|
||||
<!-- VERB ROLE FORMS -->
|
||||
<term name="container-author" form="verb">توسط</term>
|
||||
<term name="director" form="verb">زیر نظر</term>
|
||||
<term name="editor" form="verb">ویراستهی</term>
|
||||
<term name="editorial-director" form="verb">ویراستهی</term>
|
||||
<term name="illustrator" form="verb">طراحی گرافیکی از</term>
|
||||
<term name="interviewer" form="verb">مصاحبه توسط</term>
|
||||
<term name="recipient" form="verb">به</term>
|
||||
<term name="reviewed-author" form="verb">بازبینی توسط</term>
|
||||
<term name="translator" form="verb">ترجمهی</term>
|
||||
<term name="editortranslator" form="verb">ترجمه و ویراستهی</term>
|
||||
|
||||
<!-- SHORT VERB ROLE FORMS -->
|
||||
<term name="director" form="verb-short">dir.</term>
|
||||
<term name="editor" form="verb-short">ویراستهی</term>
|
||||
<term name="editorial-director" form="verb-short">ویراستهی</term>
|
||||
<term name="illustrator" form="verb-short">طراحی از</term>
|
||||
<term name="translator" form="verb-short">ترجمهی</term>
|
||||
<term name="editortranslator" form="verb-short">ترجمه و ویراستهی</term>
|
||||
|
||||
<!-- LONG MONTH FORMS -->
|
||||
<term name="month-01">ژانویه</term>
|
||||
<term name="month-02">فوریه</term>
|
||||
<term name="month-03">مارس</term>
|
||||
<term name="month-04">آوریل</term>
|
||||
<term name="month-05">می</term>
|
||||
<term name="month-06">ژوئن</term>
|
||||
<term name="month-07">جولای</term>
|
||||
<term name="month-08">آگوست</term>
|
||||
<term name="month-09">سپتامبر</term>
|
||||
<term name="month-10">اکتبر</term>
|
||||
<term name="month-11">نوامبر</term>
|
||||
<term name="month-12">دسامبر</term>
|
||||
|
||||
<!-- SHORT MONTH FORMS -->
|
||||
<term name="month-01" form="short">ژانویه</term>
|
||||
<term name="month-02" form="short">فوریه</term>
|
||||
<term name="month-03" form="short">مارس</term>
|
||||
<term name="month-04" form="short">آوریل</term>
|
||||
<term name="month-05" form="short">می</term>
|
||||
<term name="month-06" form="short">ژوئن</term>
|
||||
<term name="month-07" form="short">جولای</term>
|
||||
<term name="month-08" form="short">آگوست</term>
|
||||
<term name="month-09" form="short">سپتامبر</term>
|
||||
<term name="month-10" form="short">اکتبر</term>
|
||||
<term name="month-11" form="short">نوامبر</term>
|
||||
<term name="month-12" form="short">دسامبر</term>
|
||||
|
||||
<!-- SEASONS -->
|
||||
<term name="season-01">بهار</term>
|
||||
<term name="season-02">تابستان</term>
|
||||
<term name="season-03">پاییز</term>
|
||||
<term name="season-04">زمستان</term>
|
||||
</terms>
|
||||
</locale>
|
||||
Vendored
+318
@@ -0,0 +1,318 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="fi-FI">
|
||||
<info>
|
||||
<translator>
|
||||
<name>Janne Huovari</name>
|
||||
</translator>
|
||||
<translator>
|
||||
<name>snissine</name>
|
||||
</translator>
|
||||
<translator>
|
||||
<name>villelahtinen</name>
|
||||
</translator>
|
||||
<translator>
|
||||
<name>Juhana Venäläinen</name>
|
||||
</translator>
|
||||
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
|
||||
<updated>2012-07-04T23:31:02+00:00</updated>
|
||||
</info>
|
||||
<style-options punctuation-in-quote="false"/>
|
||||
<date form="text">
|
||||
<date-part name="day" form="ordinal" suffix=" "/>
|
||||
<date-part name="month" suffix=" "/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<date form="numeric">
|
||||
<date-part name="day" suffix="."/>
|
||||
<date-part name="month" form="numeric" suffix="."/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<terms>
|
||||
<term name="accessed">viitattu</term>
|
||||
<term name="and">ja</term>
|
||||
<term name="and others">ym.</term>
|
||||
<term name="anonymous">tuntematon</term>
|
||||
<term name="anonymous" form="short">tuntematon</term>
|
||||
<term name="at">osoitteessa</term>
|
||||
<term name="available at">saatavissa</term>
|
||||
<term name="by">tekijä</term>
|
||||
<term name="circa">noin</term>
|
||||
<term name="circa" form="short">n.</term>
|
||||
<term name="cited">viitattu</term>
|
||||
<term name="edition">
|
||||
<single>painos</single>
|
||||
<multiple>painokset</multiple>
|
||||
</term>
|
||||
<term name="edition" form="short">p.</term>
|
||||
<term name="et-al">ym.</term>
|
||||
<term name="forthcoming">tulossa</term>
|
||||
<term name="from">osoitteesta</term>
|
||||
<term name="ibid">mt.</term>
|
||||
<term name="in">teoksessa</term>
|
||||
<term name="in press">painossa</term>
|
||||
<term name="internet">internet</term>
|
||||
<term name="interview">haastattelu</term>
|
||||
<term name="letter">kirje</term>
|
||||
<term name="no date">ei päivämäärää</term>
|
||||
<term name="no date" form="short">ei pvm.</term>
|
||||
<term name="online">verkossa</term>
|
||||
<term name="presented at">esitetty tilaisuudessa</term>
|
||||
<term name="reference">
|
||||
<single>viittaus</single>
|
||||
<multiple>viittaukset</multiple>
|
||||
</term>
|
||||
<term name="reference" form="short">
|
||||
<single>viit.</single>
|
||||
<multiple>viit.</multiple>
|
||||
</term>
|
||||
<term name="retrieved">noudettu</term>
|
||||
<term name="scale">mittakaava</term>
|
||||
<term name="version">versio</term>
|
||||
|
||||
<!-- ANNO DOMINI; BEFORE CHRIST -->
|
||||
<term name="ad">jaa.</term>
|
||||
<term name="bc">eaa.</term>
|
||||
|
||||
<!-- PUNCTUATION -->
|
||||
<term name="open-quote">”</term>
|
||||
<term name="close-quote">”</term>
|
||||
<term name="open-inner-quote">’</term>
|
||||
<term name="close-inner-quote">’</term>
|
||||
<term name="page-range-delimiter">–</term>
|
||||
|
||||
<!-- ORDINALS -->
|
||||
<term name="ordinal">.</term>
|
||||
|
||||
<!-- LONG ORDINALS -->
|
||||
<term name="long-ordinal-01">ensimmäinen</term>
|
||||
<term name="long-ordinal-02">toinen</term>
|
||||
<term name="long-ordinal-03">kolmas</term>
|
||||
<term name="long-ordinal-04">neljäs</term>
|
||||
<term name="long-ordinal-05">viides</term>
|
||||
<term name="long-ordinal-06">kuudes</term>
|
||||
<term name="long-ordinal-07">seitsemäs</term>
|
||||
<term name="long-ordinal-08">kahdeksas</term>
|
||||
<term name="long-ordinal-09">yhdeksäs</term>
|
||||
<term name="long-ordinal-10">kymmenes</term>
|
||||
|
||||
<!-- LONG LOCATOR FORMS -->
|
||||
<term name="book">
|
||||
<single>kirja</single>
|
||||
<multiple>kirjat</multiple>
|
||||
</term>
|
||||
<term name="chapter">
|
||||
<single>luku</single>
|
||||
<multiple>luvut</multiple>
|
||||
</term>
|
||||
<term name="column">
|
||||
<single>palsta</single>
|
||||
<multiple>palstat</multiple>
|
||||
</term>
|
||||
<term name="figure">
|
||||
<single>kuvio</single>
|
||||
<multiple>kuviot</multiple>
|
||||
</term>
|
||||
<term name="folio">
|
||||
<single>folio</single>
|
||||
<multiple>foliot</multiple>
|
||||
</term>
|
||||
<term name="issue">
|
||||
<single>numero</single>
|
||||
<multiple>numerot</multiple>
|
||||
</term>
|
||||
<term name="line">
|
||||
<single>rivi</single>
|
||||
<multiple>rivit</multiple>
|
||||
</term>
|
||||
<term name="note">
|
||||
<single>huomautus</single>
|
||||
<multiple>huomautukset</multiple>
|
||||
</term>
|
||||
<term name="opus">
|
||||
<single>opus</single>
|
||||
<multiple>opukset</multiple>
|
||||
</term>
|
||||
<term name="page">
|
||||
<single>sivu</single>
|
||||
<multiple>sivut</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages">
|
||||
<single>sivu</single>
|
||||
<multiple>sivut</multiple>
|
||||
</term>
|
||||
<term name="paragraph">
|
||||
<single>kappale</single>
|
||||
<multiple>kappaleet</multiple>
|
||||
</term>
|
||||
<term name="part">
|
||||
<single>osa</single>
|
||||
<multiple>osat</multiple>
|
||||
</term>
|
||||
<term name="section">
|
||||
<single>osa</single>
|
||||
<multiple>osat</multiple>
|
||||
</term>
|
||||
<term name="sub verbo">
|
||||
<single>sub verbo</single>
|
||||
<multiple>sub verbis</multiple>
|
||||
</term>
|
||||
<term name="verse">
|
||||
<single>säkeistö</single>
|
||||
<multiple>säkeistöt</multiple>
|
||||
</term>
|
||||
<term name="volume">
|
||||
<single>vuosikerta</single>
|
||||
<multiple>vuosikerrat</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT LOCATOR FORMS -->
|
||||
<term name="book" form="short">kirja</term>
|
||||
<term name="chapter" form="short">luku</term>
|
||||
<term name="column" form="short">palsta</term>
|
||||
<term name="figure" form="short">kuv.</term>
|
||||
<term name="folio" form="short">fol.</term>
|
||||
<term name="issue" form="short">nro</term>
|
||||
<term name="line" form="short">r.</term>
|
||||
<term name="note" form="short">huom.</term>
|
||||
<term name="opus" form="short">op.</term>
|
||||
<term name="page" form="short">
|
||||
<single>s.</single>
|
||||
<multiple>ss.</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages" form="short">
|
||||
<single>s.</single>
|
||||
<multiple>ss.</multiple>
|
||||
</term>
|
||||
<term name="paragraph" form="short">kappale</term>
|
||||
<term name="part" form="short">osa</term>
|
||||
<term name="section" form="short">osa</term>
|
||||
<term name="sub verbo" form="short">
|
||||
<single>s.v.</single>
|
||||
<multiple>s.vv.</multiple>
|
||||
</term>
|
||||
<term name="verse" form="short">
|
||||
<single>säk.</single>
|
||||
<multiple>säk.</multiple>
|
||||
</term>
|
||||
<term name="volume" form="short">
|
||||
<single>vsk.</single>
|
||||
<multiple>vsk.</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶¶</multiple>
|
||||
</term>
|
||||
<term name="section" form="symbol">
|
||||
<single>§</single>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="director">
|
||||
<single>ohjaaja</single>
|
||||
<multiple>ohjaajat</multiple>
|
||||
</term>
|
||||
<term name="editor">
|
||||
<single>toimittaja</single>
|
||||
<multiple>toimittajat</multiple>
|
||||
</term>
|
||||
<term name="editorial-director">
|
||||
<single>toimittaja</single>
|
||||
<multiple>toimittajat</multiple>
|
||||
</term>
|
||||
<term name="illustrator">
|
||||
<single>kuvittaja</single>
|
||||
<multiple>kuvittajat</multiple>
|
||||
</term>
|
||||
<term name="translator">
|
||||
<single>kääntäjä</single>
|
||||
<multiple>kääntäjät</multiple>
|
||||
</term>
|
||||
<term name="editortranslator">
|
||||
<single>toimittaja ja kääntäjä</single>
|
||||
<multiple>toimittajat ja kääntäjät</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="director" form="short">
|
||||
<single>ohj.</single>
|
||||
<multiple>ohj.</multiple>
|
||||
</term>
|
||||
<term name="editor" form="short">
|
||||
<single>toim.</single>
|
||||
<multiple>toim.</multiple>
|
||||
</term>
|
||||
<term name="editorial-director" form="short">
|
||||
<single>toim.</single>
|
||||
<multiple>toim.</multiple>
|
||||
</term>
|
||||
<term name="illustrator" form="short">
|
||||
<single>kuv.</single>
|
||||
<multiple>kuv.</multiple>
|
||||
</term>
|
||||
<term name="translator" form="short">
|
||||
<single>käänt.</single>
|
||||
<multiple>käänt.</multiple>
|
||||
</term>
|
||||
<term name="editortranslator" form="short">
|
||||
<single>toim. ja käänt.</single>
|
||||
<multiple>toim. ja käänt.</multiple>
|
||||
</term>
|
||||
|
||||
<!-- VERB ROLE FORMS -->
|
||||
<term name="container-author" form="verb"></term>
|
||||
<term name="director" form="verb">ohjannut</term>
|
||||
<term name="editor" form="verb">toimittanut</term>
|
||||
<term name="editorial-director" form="verb">toimittanut</term>
|
||||
<term name="illustrator" form="verb">kuvittanut</term>
|
||||
<term name="interviewer" form="verb">haastatellut</term>
|
||||
<term name="recipient" form="verb">vastaanottaja</term>
|
||||
<term name="reviewed-author" form="verb"></term>
|
||||
<term name="translator" form="verb">kääntänyt</term>
|
||||
<term name="editortranslator" form="verb">toimittanut ja kääntänyt</term>
|
||||
|
||||
<!-- SHORT VERB ROLE FORMS -->
|
||||
<term name="director" form="verb-short">ohj.</term>
|
||||
<term name="editor" form="verb-short">toim.</term>
|
||||
<term name="editorial-director" form="verb-short">toim.</term>
|
||||
<term name="illustrator" form="verb-short">kuv.</term>
|
||||
<term name="translator" form="verb-short">käänt.</term>
|
||||
<term name="editortranslator" form="verb-short">toim. ja käänt.</term>
|
||||
|
||||
<!-- LONG MONTH FORMS -->
|
||||
<term name="month-01">tammikuuta</term>
|
||||
<term name="month-02">helmikuuta</term>
|
||||
<term name="month-03">maaliskuuta</term>
|
||||
<term name="month-04">huhtikuuta</term>
|
||||
<term name="month-05">toukokuuta</term>
|
||||
<term name="month-06">kesäkuuta</term>
|
||||
<term name="month-07">heinäkuuta</term>
|
||||
<term name="month-08">elokuuta</term>
|
||||
<term name="month-09">syyskuuta</term>
|
||||
<term name="month-10">lokakuuta</term>
|
||||
<term name="month-11">marraskuuta</term>
|
||||
<term name="month-12">joulukuuta</term>
|
||||
|
||||
<!-- SHORT MONTH FORMS -->
|
||||
<term name="month-01" form="short">tammi</term>
|
||||
<term name="month-02" form="short">helmi</term>
|
||||
<term name="month-03" form="short">maalis</term>
|
||||
<term name="month-04" form="short">huhti</term>
|
||||
<term name="month-05" form="short">touko</term>
|
||||
<term name="month-06" form="short">kesä</term>
|
||||
<term name="month-07" form="short">heinä</term>
|
||||
<term name="month-08" form="short">elo</term>
|
||||
<term name="month-09" form="short">syys</term>
|
||||
<term name="month-10" form="short">loka</term>
|
||||
<term name="month-11" form="short">marras</term>
|
||||
<term name="month-12" form="short">joulu</term>
|
||||
|
||||
<!-- SEASONS -->
|
||||
<term name="season-01">kevät</term>
|
||||
<term name="season-02">kesä</term>
|
||||
<term name="season-03">syksy</term>
|
||||
<term name="season-04">talvi</term>
|
||||
</terms>
|
||||
</locale>
|
||||
Vendored
+317
@@ -0,0 +1,317 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="fr-CA">
|
||||
<info>
|
||||
<translator>
|
||||
<name>Grégoire Colly</name>
|
||||
</translator>
|
||||
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
|
||||
<updated>2012-07-04T23:31:02+00:00</updated>
|
||||
</info>
|
||||
<style-options punctuation-in-quote="false" limit-day-ordinals-to-day-1="true"/>
|
||||
<date form="text">
|
||||
<date-part name="day" suffix=" "/>
|
||||
<date-part name="month" suffix=" "/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<date form="numeric">
|
||||
<date-part name="day" form="numeric-leading-zeros" suffix="/"/>
|
||||
<date-part name="month" form="numeric-leading-zeros" suffix="/"/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<terms>
|
||||
<term name="accessed">consulté le</term>
|
||||
<term name="and">et</term>
|
||||
<term name="and others">et autres</term>
|
||||
<term name="anonymous">anonyme</term>
|
||||
<term name="anonymous" form="short">anon.</term>
|
||||
<term name="at">sur</term>
|
||||
<term name="available at">disponible à</term>
|
||||
<term name="by">par</term>
|
||||
<term name="circa">vers</term>
|
||||
<term name="circa" form="short">v.</term>
|
||||
<term name="cited">cité</term>
|
||||
<term name="edition" gender="feminine">
|
||||
<single>édition</single>
|
||||
<multiple>éditions</multiple>
|
||||
</term>
|
||||
<term name="edition" form="short">éd.</term>
|
||||
<term name="et-al">et al.</term>
|
||||
<term name="forthcoming">à paraître</term>
|
||||
<term name="from">à l'adresse</term>
|
||||
<term name="ibid">ibid.</term>
|
||||
<term name="in">dans</term>
|
||||
<term name="in press">sous presse</term>
|
||||
<term name="internet">Internet</term>
|
||||
<term name="interview">entretien</term>
|
||||
<term name="letter">lettre</term>
|
||||
<term name="no date">sans date</term>
|
||||
<term name="no date" form="short">s. d.</term>
|
||||
<term name="online">en ligne</term>
|
||||
<term name="presented at">présenté à</term>
|
||||
<term name="reference">
|
||||
<single>référence</single>
|
||||
<multiple>références</multiple>
|
||||
</term>
|
||||
<term name="reference" form="short">
|
||||
<single>réf.</single>
|
||||
<multiple>réf.</multiple>
|
||||
</term>
|
||||
<term name="retrieved">consulté</term>
|
||||
<term name="scale">échelle</term>
|
||||
<term name="version">version</term>
|
||||
|
||||
<!-- ANNO DOMINI; BEFORE CHRIST -->
|
||||
<term name="ad">apr. J.-C.</term>
|
||||
<term name="bc">av. J.-C.</term>
|
||||
|
||||
<!-- PUNCTUATION -->
|
||||
<term name="open-quote">« </term>
|
||||
<term name="close-quote"> »</term>
|
||||
<term name="open-inner-quote">“</term>
|
||||
<term name="close-inner-quote">”</term>
|
||||
<term name="page-range-delimiter">‑</term> <!-- non-breaking hyphen -->
|
||||
|
||||
<!-- ORDINALS -->
|
||||
<term name="ordinal">ᵉ</term>
|
||||
<term name="ordinal-01" gender-form="feminine" match="whole-number">ʳᵉ</term>
|
||||
<term name="ordinal-01" gender-form="masculine" match="whole-number">ᵉʳ</term>
|
||||
|
||||
<!-- LONG ORDINALS -->
|
||||
<term name="long-ordinal-01">premier</term>
|
||||
<term name="long-ordinal-02">deuxième</term>
|
||||
<term name="long-ordinal-03">troisième</term>
|
||||
<term name="long-ordinal-04">quatrième</term>
|
||||
<term name="long-ordinal-05">cinquième</term>
|
||||
<term name="long-ordinal-06">sixième</term>
|
||||
<term name="long-ordinal-07">septième</term>
|
||||
<term name="long-ordinal-08">huitième</term>
|
||||
<term name="long-ordinal-09">neuvième</term>
|
||||
<term name="long-ordinal-10">dixième</term>
|
||||
|
||||
<!-- LONG LOCATOR FORMS -->
|
||||
<term name="book">
|
||||
<single>livre</single>
|
||||
<multiple>livres</multiple>
|
||||
</term>
|
||||
<term name="chapter">
|
||||
<single>chapitre</single>
|
||||
<multiple>chapitres</multiple>
|
||||
</term>
|
||||
<term name="column">
|
||||
<single>colonne</single>
|
||||
<multiple>colonnes</multiple>
|
||||
</term>
|
||||
<term name="figure">
|
||||
<single>figure</single>
|
||||
<multiple>figures</multiple>
|
||||
</term>
|
||||
<term name="folio">
|
||||
<single>folio</single>
|
||||
<multiple>folios</multiple>
|
||||
</term>
|
||||
<term name="issue" gender="masculine">
|
||||
<single>numéro</single>
|
||||
<multiple>numéros</multiple>
|
||||
</term>
|
||||
<term name="line">
|
||||
<single>ligne</single>
|
||||
<multiple>lignes</multiple>
|
||||
</term>
|
||||
<term name="note">
|
||||
<single>note</single>
|
||||
<multiple>notes</multiple>
|
||||
</term>
|
||||
<term name="opus">
|
||||
<single>opus</single>
|
||||
<multiple>opus</multiple>
|
||||
</term>
|
||||
<term name="page">
|
||||
<single>page</single>
|
||||
<multiple>pages</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages">
|
||||
<single>page</single>
|
||||
<multiple>pages</multiple>
|
||||
</term>
|
||||
<term name="paragraph">
|
||||
<single>paragraphe</single>
|
||||
<multiple>paragraphes</multiple>
|
||||
</term>
|
||||
<term name="part">
|
||||
<single>partie</single>
|
||||
<multiple>parties</multiple>
|
||||
</term>
|
||||
<term name="section">
|
||||
<single>section</single>
|
||||
<multiple>sections</multiple>
|
||||
</term>
|
||||
<term name="sub verbo">
|
||||
<single>sub verbo</single>
|
||||
<multiple>sub verbis</multiple>
|
||||
</term>
|
||||
<term name="verse">
|
||||
<single>verset</single>
|
||||
<multiple>versets</multiple>
|
||||
</term>
|
||||
<term name="volume" gender="masculine">
|
||||
<single>volume</single>
|
||||
<multiple>volumes</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT LOCATOR FORMS -->
|
||||
<term name="book" form="short">liv.</term>
|
||||
<term name="chapter" form="short">chap.</term>
|
||||
<term name="column" form="short">col.</term>
|
||||
<term name="figure" form="short">fig.</term>
|
||||
<term name="folio" form="short">
|
||||
<single>fᵒ</single>
|
||||
<multiple>fᵒˢ</multiple>
|
||||
</term>
|
||||
<term name="issue" form="short">
|
||||
<single>nᵒ</single>
|
||||
<multiple>nᵒˢ</multiple>
|
||||
</term>
|
||||
<term name="line" form="short">l.</term>
|
||||
<term name="note" form="short">n.</term>
|
||||
<term name="opus" form="short">op.</term>
|
||||
<term name="page" form="short">
|
||||
<single>p.</single>
|
||||
<multiple>p.</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages" form="short">
|
||||
<single>p.</single>
|
||||
<multiple>p.</multiple>
|
||||
</term>
|
||||
<term name="paragraph" form="short">paragr.</term>
|
||||
<term name="part" form="short">part.</term>
|
||||
<term name="section" form="short">sect.</term>
|
||||
<term name="sub verbo" form="short">
|
||||
<single>s. v.</single>
|
||||
<multiple>s. vv.</multiple>
|
||||
</term>
|
||||
<term name="verse" form="short">
|
||||
<single>v.</single>
|
||||
<multiple>v.</multiple>
|
||||
</term>
|
||||
<term name="volume" form="short">
|
||||
<single>vol.</single>
|
||||
<multiple>vol.</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>§</single>
|
||||
<multiple>§</multiple>
|
||||
</term>
|
||||
<term name="section" form="symbol">
|
||||
<single>§</single>
|
||||
<multiple>§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="director">
|
||||
<single>réalisateur</single>
|
||||
<multiple>réalisateurs</multiple>
|
||||
</term>
|
||||
<term name="editor">
|
||||
<single>éditeur</single>
|
||||
<multiple>éditeurs</multiple>
|
||||
</term>
|
||||
<term name="editorial-director">
|
||||
<single>directeur</single>
|
||||
<multiple>directeurs</multiple>
|
||||
</term>
|
||||
<term name="illustrator">
|
||||
<single>illustrateur</single>
|
||||
<multiple>illustrateurs</multiple>
|
||||
</term>
|
||||
<term name="translator">
|
||||
<single>traducteur</single>
|
||||
<multiple>traducteurs</multiple>
|
||||
</term>
|
||||
<term name="editortranslator">
|
||||
<single>éditeur et traducteur</single>
|
||||
<multiple>éditeurs et traducteurs</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="director" form="short">
|
||||
<single>réal.</single>
|
||||
<multiple>réal.</multiple>
|
||||
</term>
|
||||
<term name="editor" form="short">
|
||||
<single>éd.</single>
|
||||
<multiple>éd.</multiple>
|
||||
</term>
|
||||
<term name="editorial-director" form="short">
|
||||
<single>dir.</single>
|
||||
<multiple>dir.</multiple>
|
||||
</term>
|
||||
<term name="illustrator" form="short">
|
||||
<single>ill.</single>
|
||||
<multiple>ill.</multiple>
|
||||
</term>
|
||||
<term name="translator" form="short">
|
||||
<single>trad.</single>
|
||||
<multiple>trad.</multiple>
|
||||
</term>
|
||||
<term name="editortranslator" form="short">
|
||||
<single>éd. et trad.</single>
|
||||
<multiple>éd. et trad.</multiple>
|
||||
</term>
|
||||
|
||||
<!-- VERB ROLE FORMS -->
|
||||
<term name="container-author" form="verb">par</term>
|
||||
<term name="director" form="verb">réalisé par</term>
|
||||
<term name="editor" form="verb">édité par</term>
|
||||
<term name="editorial-director" form="verb">sous la direction de</term>
|
||||
<term name="illustrator" form="verb">illustré par</term>
|
||||
<term name="interviewer" form="verb">entretien réalisé par</term>
|
||||
<term name="recipient" form="verb">à</term>
|
||||
<term name="reviewed-author" form="verb">par</term>
|
||||
<term name="translator" form="verb">traduit par</term>
|
||||
<term name="editortranslator" form="verb">édité et traduit par</term>
|
||||
|
||||
<!-- SHORT VERB ROLE FORMS -->
|
||||
<term name="director" form="verb-short">réal. par</term>
|
||||
<term name="editor" form="verb-short">éd. par</term>
|
||||
<term name="editorial-director" form="verb-short">ss la dir. de</term>
|
||||
<term name="illustrator" form="verb-short">ill. par</term>
|
||||
<term name="translator" form="verb-short">trad. par</term>
|
||||
<term name="editortranslator" form="verb-short">éd. et trad. par</term>
|
||||
|
||||
<!-- LONG MONTH FORMS -->
|
||||
<term name="month-01" gender="masculine">janvier</term>
|
||||
<term name="month-02" gender="masculine">février</term>
|
||||
<term name="month-03" gender="masculine">mars</term>
|
||||
<term name="month-04" gender="masculine">avril</term>
|
||||
<term name="month-05" gender="masculine">mai</term>
|
||||
<term name="month-06" gender="masculine">juin</term>
|
||||
<term name="month-07" gender="masculine">juillet</term>
|
||||
<term name="month-08" gender="masculine">août</term>
|
||||
<term name="month-09" gender="masculine">septembre</term>
|
||||
<term name="month-10" gender="masculine">octobre</term>
|
||||
<term name="month-11" gender="masculine">novembre</term>
|
||||
<term name="month-12" gender="masculine">décembre</term>
|
||||
|
||||
<!-- SHORT MONTH FORMS -->
|
||||
<term name="month-01" form="short">janv.</term>
|
||||
<term name="month-02" form="short">févr.</term>
|
||||
<term name="month-03" form="short">mars</term>
|
||||
<term name="month-04" form="short">avr.</term>
|
||||
<term name="month-05" form="short">mai</term>
|
||||
<term name="month-06" form="short">juin</term>
|
||||
<term name="month-07" form="short">juill.</term>
|
||||
<term name="month-08" form="short">août</term>
|
||||
<term name="month-09" form="short">sept.</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">printemps</term>
|
||||
<term name="season-02">été</term>
|
||||
<term name="season-03">automne</term>
|
||||
<term name="season-04">hiver</term>
|
||||
</terms>
|
||||
</locale>
|
||||
Vendored
+317
@@ -0,0 +1,317 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="fr-FR">
|
||||
<info>
|
||||
<translator>
|
||||
<name>Grégoire Colly</name>
|
||||
</translator>
|
||||
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
|
||||
<updated>2012-07-04T23:31:02+00:00</updated>
|
||||
</info>
|
||||
<style-options punctuation-in-quote="false" limit-day-ordinals-to-day-1="true"/>
|
||||
<date form="text">
|
||||
<date-part name="day" suffix=" "/>
|
||||
<date-part name="month" suffix=" "/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<date form="numeric">
|
||||
<date-part name="day" form="numeric-leading-zeros" suffix="/"/>
|
||||
<date-part name="month" form="numeric-leading-zeros" suffix="/"/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<terms>
|
||||
<term name="accessed">consulté le</term>
|
||||
<term name="and">et</term>
|
||||
<term name="and others">et autres</term>
|
||||
<term name="anonymous">anonyme</term>
|
||||
<term name="anonymous" form="short">anon.</term>
|
||||
<term name="at">sur</term>
|
||||
<term name="available at">disponible sur</term>
|
||||
<term name="by">par</term>
|
||||
<term name="circa">vers</term>
|
||||
<term name="circa" form="short">v.</term>
|
||||
<term name="cited">cité</term>
|
||||
<term name="edition" gender="feminine">
|
||||
<single>édition</single>
|
||||
<multiple>éditions</multiple>
|
||||
</term>
|
||||
<term name="edition" form="short">éd.</term>
|
||||
<term name="et-al">et al.</term>
|
||||
<term name="forthcoming">à paraître</term>
|
||||
<term name="from">à l'adresse</term>
|
||||
<term name="ibid">ibid.</term>
|
||||
<term name="in">in</term>
|
||||
<term name="in press">sous presse</term>
|
||||
<term name="internet">Internet</term>
|
||||
<term name="interview">entretien</term>
|
||||
<term name="letter">lettre</term>
|
||||
<term name="no date">sans date</term>
|
||||
<term name="no date" form="short">s. d.</term>
|
||||
<term name="online">en ligne</term>
|
||||
<term name="presented at">présenté à</term>
|
||||
<term name="reference">
|
||||
<single>référence</single>
|
||||
<multiple>références</multiple>
|
||||
</term>
|
||||
<term name="reference" form="short">
|
||||
<single>réf.</single>
|
||||
<multiple>réf.</multiple>
|
||||
</term>
|
||||
<term name="retrieved">consulté</term>
|
||||
<term name="scale">échelle</term>
|
||||
<term name="version">version</term>
|
||||
|
||||
<!-- ANNO DOMINI; BEFORE CHRIST -->
|
||||
<term name="ad">apr. J.-C.</term>
|
||||
<term name="bc">av. J.-C.</term>
|
||||
|
||||
<!-- PUNCTUATION -->
|
||||
<term name="open-quote">« </term>
|
||||
<term name="close-quote"> »</term>
|
||||
<term name="open-inner-quote">“</term>
|
||||
<term name="close-inner-quote">”</term>
|
||||
<term name="page-range-delimiter">‑</term> <!-- non-breaking hyphen -->
|
||||
|
||||
<!-- ORDINALS -->
|
||||
<term name="ordinal">ᵉ</term>
|
||||
<term name="ordinal-01" gender-form="feminine" match="whole-number">ʳᵉ</term>
|
||||
<term name="ordinal-01" gender-form="masculine" match="whole-number">ᵉʳ</term>
|
||||
|
||||
<!-- LONG ORDINALS -->
|
||||
<term name="long-ordinal-01">premier</term>
|
||||
<term name="long-ordinal-02">deuxième</term>
|
||||
<term name="long-ordinal-03">troisième</term>
|
||||
<term name="long-ordinal-04">quatrième</term>
|
||||
<term name="long-ordinal-05">cinquième</term>
|
||||
<term name="long-ordinal-06">sixième</term>
|
||||
<term name="long-ordinal-07">septième</term>
|
||||
<term name="long-ordinal-08">huitième</term>
|
||||
<term name="long-ordinal-09">neuvième</term>
|
||||
<term name="long-ordinal-10">dixième</term>
|
||||
|
||||
<!-- LONG LOCATOR FORMS -->
|
||||
<term name="book">
|
||||
<single>livre</single>
|
||||
<multiple>livres</multiple>
|
||||
</term>
|
||||
<term name="chapter">
|
||||
<single>chapitre</single>
|
||||
<multiple>chapitres</multiple>
|
||||
</term>
|
||||
<term name="column">
|
||||
<single>colonne</single>
|
||||
<multiple>colonnes</multiple>
|
||||
</term>
|
||||
<term name="figure">
|
||||
<single>figure</single>
|
||||
<multiple>figures</multiple>
|
||||
</term>
|
||||
<term name="folio">
|
||||
<single>folio</single>
|
||||
<multiple>folios</multiple>
|
||||
</term>
|
||||
<term name="issue" gender="masculine">
|
||||
<single>numéro</single>
|
||||
<multiple>numéros</multiple>
|
||||
</term>
|
||||
<term name="line">
|
||||
<single>ligne</single>
|
||||
<multiple>lignes</multiple>
|
||||
</term>
|
||||
<term name="note">
|
||||
<single>note</single>
|
||||
<multiple>notes</multiple>
|
||||
</term>
|
||||
<term name="opus">
|
||||
<single>opus</single>
|
||||
<multiple>opus</multiple>
|
||||
</term>
|
||||
<term name="page">
|
||||
<single>page</single>
|
||||
<multiple>pages</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages">
|
||||
<single>page</single>
|
||||
<multiple>pages</multiple>
|
||||
</term>
|
||||
<term name="paragraph">
|
||||
<single>paragraphe</single>
|
||||
<multiple>paragraphes</multiple>
|
||||
</term>
|
||||
<term name="part">
|
||||
<single>partie</single>
|
||||
<multiple>parties</multiple>
|
||||
</term>
|
||||
<term name="section">
|
||||
<single>section</single>
|
||||
<multiple>sections</multiple>
|
||||
</term>
|
||||
<term name="sub verbo">
|
||||
<single>sub verbo</single>
|
||||
<multiple>sub verbis</multiple>
|
||||
</term>
|
||||
<term name="verse">
|
||||
<single>verset</single>
|
||||
<multiple>versets</multiple>
|
||||
</term>
|
||||
<term name="volume" gender="masculine">
|
||||
<single>volume</single>
|
||||
<multiple>volumes</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT LOCATOR FORMS -->
|
||||
<term name="book" form="short">liv.</term>
|
||||
<term name="chapter" form="short">chap.</term>
|
||||
<term name="column" form="short">col.</term>
|
||||
<term name="figure" form="short">fig.</term>
|
||||
<term name="folio" form="short">
|
||||
<single>fᵒ</single>
|
||||
<multiple>fᵒˢ</multiple>
|
||||
</term>
|
||||
<term name="issue" form="short">
|
||||
<single>nᵒ</single>
|
||||
<multiple>nᵒˢ</multiple>
|
||||
</term>
|
||||
<term name="line" form="short">l.</term>
|
||||
<term name="note" form="short">n.</term>
|
||||
<term name="opus" form="short">op.</term>
|
||||
<term name="page" form="short">
|
||||
<single>p.</single>
|
||||
<multiple>p.</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages" form="short">
|
||||
<single>p.</single>
|
||||
<multiple>p.</multiple>
|
||||
</term>
|
||||
<term name="paragraph" form="short">paragr.</term>
|
||||
<term name="part" form="short">part.</term>
|
||||
<term name="section" form="short">sect.</term>
|
||||
<term name="sub verbo" form="short">
|
||||
<single>s. v.</single>
|
||||
<multiple>s. vv.</multiple>
|
||||
</term>
|
||||
<term name="verse" form="short">
|
||||
<single>v.</single>
|
||||
<multiple>v.</multiple>
|
||||
</term>
|
||||
<term name="volume" form="short">
|
||||
<single>vol.</single>
|
||||
<multiple>vol.</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>§</single>
|
||||
<multiple>§</multiple>
|
||||
</term>
|
||||
<term name="section" form="symbol">
|
||||
<single>§</single>
|
||||
<multiple>§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="director">
|
||||
<single>réalisateur</single>
|
||||
<multiple>réalisateurs</multiple>
|
||||
</term>
|
||||
<term name="editor">
|
||||
<single>éditeur</single>
|
||||
<multiple>éditeurs</multiple>
|
||||
</term>
|
||||
<term name="editorial-director">
|
||||
<single>directeur</single>
|
||||
<multiple>directeurs</multiple>
|
||||
</term>
|
||||
<term name="illustrator">
|
||||
<single>illustrateur</single>
|
||||
<multiple>illustrateurs</multiple>
|
||||
</term>
|
||||
<term name="translator">
|
||||
<single>traducteur</single>
|
||||
<multiple>traducteurs</multiple>
|
||||
</term>
|
||||
<term name="editortranslator">
|
||||
<single>éditeur et traducteur</single>
|
||||
<multiple>éditeurs et traducteurs</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="director" form="short">
|
||||
<single>réal.</single>
|
||||
<multiple>réal.</multiple>
|
||||
</term>
|
||||
<term name="editor" form="short">
|
||||
<single>éd.</single>
|
||||
<multiple>éd.</multiple>
|
||||
</term>
|
||||
<term name="editorial-director" form="short">
|
||||
<single>dir.</single>
|
||||
<multiple>dir.</multiple>
|
||||
</term>
|
||||
<term name="illustrator" form="short">
|
||||
<single>ill.</single>
|
||||
<multiple>ill.</multiple>
|
||||
</term>
|
||||
<term name="translator" form="short">
|
||||
<single>trad.</single>
|
||||
<multiple>trad.</multiple>
|
||||
</term>
|
||||
<term name="editortranslator" form="short">
|
||||
<single>éd. et trad.</single>
|
||||
<multiple>éd. et trad.</multiple>
|
||||
</term>
|
||||
|
||||
<!-- VERB ROLE FORMS -->
|
||||
<term name="container-author" form="verb">par</term>
|
||||
<term name="director" form="verb">réalisé par</term>
|
||||
<term name="editor" form="verb">édité par</term>
|
||||
<term name="editorial-director" form="verb">sous la direction de</term>
|
||||
<term name="illustrator" form="verb">illustré par</term>
|
||||
<term name="interviewer" form="verb">entretien réalisé par</term>
|
||||
<term name="recipient" form="verb">à</term>
|
||||
<term name="reviewed-author" form="verb">par</term>
|
||||
<term name="translator" form="verb">traduit par</term>
|
||||
<term name="editortranslator" form="verb">édité et traduit par</term>
|
||||
|
||||
<!-- SHORT VERB ROLE FORMS -->
|
||||
<term name="director" form="verb-short">réal. par</term>
|
||||
<term name="editor" form="verb-short">éd. par</term>
|
||||
<term name="editorial-director" form="verb-short">ss la dir. de</term>
|
||||
<term name="illustrator" form="verb-short">ill. par</term>
|
||||
<term name="translator" form="verb-short">trad. par</term>
|
||||
<term name="editortranslator" form="verb-short">éd. et trad. par</term>
|
||||
|
||||
<!-- LONG MONTH FORMS -->
|
||||
<term name="month-01" gender="masculine">janvier</term>
|
||||
<term name="month-02" gender="masculine">février</term>
|
||||
<term name="month-03" gender="masculine">mars</term>
|
||||
<term name="month-04" gender="masculine">avril</term>
|
||||
<term name="month-05" gender="masculine">mai</term>
|
||||
<term name="month-06" gender="masculine">juin</term>
|
||||
<term name="month-07" gender="masculine">juillet</term>
|
||||
<term name="month-08" gender="masculine">août</term>
|
||||
<term name="month-09" gender="masculine">septembre</term>
|
||||
<term name="month-10" gender="masculine">octobre</term>
|
||||
<term name="month-11" gender="masculine">novembre</term>
|
||||
<term name="month-12" gender="masculine">décembre</term>
|
||||
|
||||
<!-- SHORT MONTH FORMS -->
|
||||
<term name="month-01" form="short">janv.</term>
|
||||
<term name="month-02" form="short">févr.</term>
|
||||
<term name="month-03" form="short">mars</term>
|
||||
<term name="month-04" form="short">avr.</term>
|
||||
<term name="month-05" form="short">mai</term>
|
||||
<term name="month-06" form="short">juin</term>
|
||||
<term name="month-07" form="short">juill.</term>
|
||||
<term name="month-08" form="short">août</term>
|
||||
<term name="month-09" form="short">sept.</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">printemps</term>
|
||||
<term name="season-02">été</term>
|
||||
<term name="season-03">automne</term>
|
||||
<term name="season-04">hiver</term>
|
||||
</terms>
|
||||
</locale>
|
||||
Vendored
+315
@@ -0,0 +1,315 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="he-IL">
|
||||
<info>
|
||||
<translator>
|
||||
<name>roypeled1</name>
|
||||
</translator>
|
||||
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
|
||||
<updated>2012-07-04T23:31:02+00:00</updated>
|
||||
</info>
|
||||
<style-options punctuation-in-quote="false"/>
|
||||
<date form="text">
|
||||
<date-part name="day" suffix=" "/>
|
||||
<date-part name="month" suffix=" "/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<date form="numeric">
|
||||
<date-part name="day" form="numeric-leading-zeros" suffix="/"/>
|
||||
<date-part name="month" form="numeric-leading-zeros" suffix="/"/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<terms>
|
||||
<term name="accessed">נבדק לאחרונה</term>
|
||||
<term name="and">ו</term>
|
||||
<term name="and others">ואחרים</term>
|
||||
<term name="anonymous">אלמוני</term>
|
||||
<term name="anonymous" form="short">anon</term>
|
||||
<term name="at">-ב</term>
|
||||
<term name="available at">זמין ב</term>
|
||||
<term name="by">על-ידי</term>
|
||||
<term name="circa">לערך</term>
|
||||
<term name="circa" form="short">c.</term>
|
||||
<term name="cited">מצוטט ב</term>
|
||||
<term name="edition">
|
||||
<single>מהדורה</single>
|
||||
<multiple>מהדורות</multiple>
|
||||
</term>
|
||||
<term name="edition" form="short">ed</term>
|
||||
<term name="et-al">ואחרים</term>
|
||||
<term name="forthcoming">צפוי</term>
|
||||
<term name="from">מתוך</term>
|
||||
<term name="ibid">שם</term>
|
||||
<term name="in">בתוך</term>
|
||||
<term name="in press">בהדפסה</term>
|
||||
<term name="internet">אינטרנט</term>
|
||||
<term name="interview">ראיון</term>
|
||||
<term name="letter">מכתב</term>
|
||||
<term name="no date">אין נתונים</term>
|
||||
<term name="no date" form="short">nd</term>
|
||||
<term name="online">מקוון</term>
|
||||
<term name="presented at">הוצג ב</term>
|
||||
<term name="reference">
|
||||
<single>הפניה</single>
|
||||
<multiple>הפניות</multiple>
|
||||
</term>
|
||||
<term name="reference" form="short">
|
||||
<single>ref.</single>
|
||||
<multiple>refs.</multiple>
|
||||
</term>
|
||||
<term name="retrieved">אוחזר</term>
|
||||
<term name="scale">scale</term>
|
||||
<term name="version">גירסה</term>
|
||||
|
||||
<!-- ANNO DOMINI; BEFORE CHRIST -->
|
||||
<term name="ad">לספירה</term>
|
||||
<term name="bc">לפני הספירה</term>
|
||||
|
||||
<!-- PUNCTUATION -->
|
||||
<term name="open-quote">“</term>
|
||||
<term name="close-quote">”</term>
|
||||
<term name="open-inner-quote">‘</term>
|
||||
<term name="close-inner-quote">’</term>
|
||||
<term name="page-range-delimiter">–</term>
|
||||
|
||||
<!-- ORDINALS -->
|
||||
<term name="ordinal">th</term>
|
||||
<term name="ordinal-01">st</term>
|
||||
<term name="ordinal-02">nd</term>
|
||||
<term name="ordinal-03">rd</term>
|
||||
<term name="ordinal-11">th</term>
|
||||
<term name="ordinal-12">th</term>
|
||||
<term name="ordinal-13">th</term>
|
||||
|
||||
<!-- LONG ORDINALS -->
|
||||
<term name="long-ordinal-01">ראשון</term>
|
||||
<term name="long-ordinal-02">שני</term>
|
||||
<term name="long-ordinal-03">שלישי</term>
|
||||
<term name="long-ordinal-04">רביעי</term>
|
||||
<term name="long-ordinal-05">חמישי</term>
|
||||
<term name="long-ordinal-06">שישי</term>
|
||||
<term name="long-ordinal-07">שביעי</term>
|
||||
<term name="long-ordinal-08">שמיני</term>
|
||||
<term name="long-ordinal-09">תשיעי</term>
|
||||
<term name="long-ordinal-10">עשירי</term>
|
||||
|
||||
<!-- LONG LOCATOR FORMS -->
|
||||
<term name="book">
|
||||
<single>ספר</single>
|
||||
<multiple>ספרים</multiple>
|
||||
</term>
|
||||
<term name="chapter">
|
||||
<single>פרק</single>
|
||||
<multiple>פרקים</multiple>
|
||||
</term>
|
||||
<term name="column">
|
||||
<single>טור</single>
|
||||
<multiple>טורים</multiple>
|
||||
</term>
|
||||
<term name="figure">
|
||||
<single>figure</single>
|
||||
<multiple>figures</multiple>
|
||||
</term>
|
||||
<term name="folio">
|
||||
<single>פוליו</single>
|
||||
<multiple>פוליו</multiple>
|
||||
</term>
|
||||
<term name="issue">
|
||||
<single>מספר</single>
|
||||
<multiple>מספרים</multiple>
|
||||
</term>
|
||||
<term name="line">
|
||||
<single>שורה</single>
|
||||
<multiple>שורות</multiple>
|
||||
</term>
|
||||
<term name="note">
|
||||
<single>הערה</single>
|
||||
<multiple>הערות</multiple>
|
||||
</term>
|
||||
<term name="opus">
|
||||
<single>אופוס</single>
|
||||
<multiple>אופרה</multiple>
|
||||
</term>
|
||||
<term name="page">
|
||||
<single>עמוד</single>
|
||||
<multiple>עמודים</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages">
|
||||
<single>עמוד</single>
|
||||
<multiple>עמודים</multiple>
|
||||
</term>
|
||||
<term name="paragraph">
|
||||
<single>פיסקה</single>
|
||||
<multiple>פיסקאות</multiple>
|
||||
</term>
|
||||
<term name="part">
|
||||
<single>חלק</single>
|
||||
<multiple>חלקים</multiple>
|
||||
</term>
|
||||
<term name="section">
|
||||
<single>סעיף</single>
|
||||
<multiple>סעיפים</multiple>
|
||||
</term>
|
||||
<term name="sub verbo">
|
||||
<single>sub verbo</single>
|
||||
<multiple>sub verbis</multiple>
|
||||
</term>
|
||||
<term name="verse">
|
||||
<single>בית</single>
|
||||
<multiple>בתים</multiple>
|
||||
</term>
|
||||
<term name="volume">
|
||||
<single>כרך</single>
|
||||
<multiple>כרכים</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="line" form="short">l.</term>
|
||||
<term name="note" form="short">n.</term>
|
||||
<term name="opus" form="short">op</term>
|
||||
<term name="page" form="short">
|
||||
<single>'עמ</single>
|
||||
<multiple>'עמ</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages" form="short">
|
||||
<single>'עמ</single>
|
||||
<multiple>'עמ</multiple>
|
||||
</term>
|
||||
<term name="paragraph" form="short">para</term>
|
||||
<term name="part" form="short">pt</term>
|
||||
<term name="section" form="short">ס'</term>
|
||||
<term name="sub verbo" form="short">
|
||||
<single>s.v.</single>
|
||||
<multiple>s.vv.</multiple>
|
||||
</term>
|
||||
<term name="verse" form="short">
|
||||
<single>v</single>
|
||||
<multiple>vv</multiple>
|
||||
</term>
|
||||
<term name="volume" form="short">
|
||||
<single>vol</single>
|
||||
<multiple>vols</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶¶</multiple>
|
||||
</term>
|
||||
<term name="section" form="symbol">
|
||||
<single>§</single>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="director">
|
||||
<single>במאי</single>
|
||||
<multiple>במאים</multiple>
|
||||
</term>
|
||||
<term name="editor">
|
||||
<single>עורך</single>
|
||||
<multiple>עורכים</multiple>
|
||||
</term>
|
||||
<term name="editorial-director">
|
||||
<single>עורך ראשי</single>
|
||||
<multiple>עורכים ראשיים</multiple>
|
||||
</term>
|
||||
<term name="illustrator">
|
||||
<single>מאייר</single>
|
||||
<multiple>מאיירים</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="director" form="short">
|
||||
<single>dir.</single>
|
||||
<multiple>dirs.</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="illustrator" form="short">
|
||||
<single>ill.</single>
|
||||
<multiple>ills.</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="container-author" form="verb">by</term>
|
||||
<term name="director" form="verb">בוים ע"י</term>
|
||||
<term name="editor" form="verb">נערך ע"י</term>
|
||||
<term name="editorial-director" form="verb">בוים ע"י</term>
|
||||
<term name="illustrator" form="verb">אויר ע"י</term>
|
||||
<term name="interviewer" form="verb">רואיין ע"י</term>
|
||||
<term name="recipient" form="verb">אל</term>
|
||||
<term name="reviewed-author" form="verb">ע"י</term>
|
||||
<term name="translator" form="verb">תורגם ע"י</term>
|
||||
<term name="editortranslator" form="verb">edited & translated by</term>
|
||||
|
||||
<!-- SHORT VERB ROLE FORMS -->
|
||||
<term name="director" form="verb-short">dir.</term>
|
||||
<term name="editor" form="verb-short">ed</term>
|
||||
<term name="editorial-director" form="verb-short">ed.</term>
|
||||
<term name="illustrator" form="verb-short">illus.</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>
|
||||
<term name="month-04">אפריל</term>
|
||||
<term name="month-05">מאי</term>
|
||||
<term name="month-06">יוני</term>
|
||||
<term name="month-07">יולי</term>
|
||||
<term name="month-08">אוגוסט</term>
|
||||
<term name="month-09">ספטמבר</term>
|
||||
<term name="month-10">אוקטובר</term>
|
||||
<term name="month-11">נובמבר</term>
|
||||
<term name="month-12">דצמבר</term>
|
||||
|
||||
<!-- SHORT MONTH FORMS -->
|
||||
<term name="month-01" form="short">Jan</term>
|
||||
<term name="month-02" form="short">Feb</term>
|
||||
<term name="month-03" form="short">Mar</term>
|
||||
<term name="month-04" form="short">Apr</term>
|
||||
<term name="month-05" form="short">May</term>
|
||||
<term name="month-06" form="short">Jun</term>
|
||||
<term name="month-07" form="short">Jul</term>
|
||||
<term name="month-08" form="short">Aug</term>
|
||||
<term name="month-09" form="short">Sep</term>
|
||||
<term name="month-10" form="short">Oct</term>
|
||||
<term name="month-11" form="short">Nov</term>
|
||||
<term name="month-12" form="short">Dec</term>
|
||||
|
||||
<!-- SEASONS -->
|
||||
<term name="season-01">Spring</term>
|
||||
<term name="season-02">Summer</term>
|
||||
<term name="season-03">Autumn</term>
|
||||
<term name="season-04">Winter</term>
|
||||
</terms>
|
||||
</locale>
|
||||
Vendored
+309
@@ -0,0 +1,309 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="hr-HR">
|
||||
<info>
|
||||
<translator>
|
||||
<name>tvrbanec</name>
|
||||
</translator>
|
||||
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
|
||||
<updated>2012-07-04T23:31:02+00:00</updated>
|
||||
</info>
|
||||
<style-options punctuation-in-quote="false"/>
|
||||
<date form="text">
|
||||
<date-part name="day" form="numeric-leading-zeros" suffix=". "/>
|
||||
<date-part name="month" suffix=" "/>
|
||||
<date-part name="year" suffix="."/>
|
||||
</date>
|
||||
<date form="numeric">
|
||||
<date-part name="year"/>
|
||||
<date-part name="month" form="numeric-leading-zeros" prefix="-" range-delimiter="/"/>
|
||||
<date-part name="day" form="numeric-leading-zeros" prefix="-" range-delimiter="/"/>
|
||||
</date>
|
||||
<terms>
|
||||
<term name="accessed">pristupljeno</term>
|
||||
<term name="and">i</term>
|
||||
<term name="and others">i ostali</term>
|
||||
<term name="anonymous">anonimno</term>
|
||||
<term name="anonymous" form="short">anon.</term>
|
||||
<term name="at">na</term>
|
||||
<term name="available at">dostupno na</term>
|
||||
<term name="by">od</term>
|
||||
<term name="circa">oko</term>
|
||||
<term name="circa" form="short">oko</term>
|
||||
<term name="cited">citirano</term>
|
||||
<term name="edition">
|
||||
<single>izdanje</single>
|
||||
<multiple>izdanja</multiple>
|
||||
</term>
|
||||
<term name="edition" form="short">izd.</term>
|
||||
<term name="et-al">i ostali</term>
|
||||
<term name="forthcoming">u pripremi</term>
|
||||
<term name="from">od</term>
|
||||
<term name="ibid">ibid.</term>
|
||||
<term name="in">u</term>
|
||||
<term name="in press">u tisku</term>
|
||||
<term name="internet">internet</term>
|
||||
<term name="interview">intervju</term>
|
||||
<term name="letter">pismo</term>
|
||||
<term name="no date">bez datuma</term>
|
||||
<term name="no date" form="short">bez dat.</term>
|
||||
<term name="online">na internetu</term>
|
||||
<term name="presented at">predstavljeno na</term>
|
||||
<term name="reference">
|
||||
<single>reference</single>
|
||||
<multiple>reference</multiple>
|
||||
</term>
|
||||
<term name="reference" form="short">
|
||||
<single>ref.</single>
|
||||
<multiple>ref.</multiple>
|
||||
</term>
|
||||
<term name="retrieved">preuzeto</term>
|
||||
<term name="scale">skala</term>
|
||||
<term name="version">verzija</term>
|
||||
|
||||
<!-- ANNO DOMINI; BEFORE CHRIST -->
|
||||
<term name="ad"></term>
|
||||
<term name="bc">pr. Kr.</term>
|
||||
|
||||
<!-- PUNCTUATION -->
|
||||
<term name="open-quote">„</term>
|
||||
<term name="close-quote">“</term>
|
||||
<term name="open-inner-quote">‚</term>
|
||||
<term name="close-inner-quote">‘</term>
|
||||
<term name="page-range-delimiter">–</term>
|
||||
|
||||
<!-- ORDINALS -->
|
||||
<term name="ordinal">.</term>
|
||||
|
||||
<!-- LONG ORDINALS -->
|
||||
<term name="long-ordinal-01">prvi</term>
|
||||
<term name="long-ordinal-02">drugi</term>
|
||||
<term name="long-ordinal-03">treći</term>
|
||||
<term name="long-ordinal-04">četvrti</term>
|
||||
<term name="long-ordinal-05">peti</term>
|
||||
<term name="long-ordinal-06">šesti</term>
|
||||
<term name="long-ordinal-07">sedmi</term>
|
||||
<term name="long-ordinal-08">osmi</term>
|
||||
<term name="long-ordinal-09">deveti</term>
|
||||
<term name="long-ordinal-10">deseti</term>
|
||||
|
||||
<!-- LONG LOCATOR FORMS -->
|
||||
<term name="book">
|
||||
<single>knjiga</single>
|
||||
<multiple>knjige</multiple>
|
||||
</term>
|
||||
<term name="chapter">
|
||||
<single>poglavlje</single>
|
||||
<multiple>poglavlja</multiple>
|
||||
</term>
|
||||
<term name="column">
|
||||
<single>stupac</single>
|
||||
<multiple>stupci</multiple>
|
||||
</term>
|
||||
<term name="figure">
|
||||
<single>crtež</single>
|
||||
<multiple>crteži</multiple>
|
||||
</term>
|
||||
<term name="folio">
|
||||
<single>folija</single>
|
||||
<multiple>folije</multiple>
|
||||
</term>
|
||||
<term name="issue">
|
||||
<single>izdanje</single>
|
||||
<multiple>izdanja</multiple>
|
||||
</term>
|
||||
<term name="line">
|
||||
<single>red</single>
|
||||
<multiple>redovi</multiple>
|
||||
</term>
|
||||
<term name="note">
|
||||
<single>bilješka</single>
|
||||
<multiple>bilješke</multiple>
|
||||
</term>
|
||||
<term name="opus">
|
||||
<single>djelo</single>
|
||||
<multiple>djela</multiple>
|
||||
</term>
|
||||
<term name="page">
|
||||
<single>stranica</single>
|
||||
<multiple>stranice</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages">
|
||||
<single>stranica</single>
|
||||
<multiple>stranice</multiple>
|
||||
</term>
|
||||
<term name="paragraph">
|
||||
<single>pasus</single>
|
||||
<multiple>pasusi</multiple>
|
||||
</term>
|
||||
<term name="part">
|
||||
<single>dio</single>
|
||||
<multiple>dijelova</multiple>
|
||||
</term>
|
||||
<term name="section">
|
||||
<single>odjeljak</single>
|
||||
<multiple>odjeljci</multiple>
|
||||
</term>
|
||||
<term name="sub verbo">
|
||||
<single>sub verbo</single>
|
||||
<multiple>sub verbis</multiple>
|
||||
</term>
|
||||
<term name="verse">
|
||||
<single>stih</single>
|
||||
<multiple>stihovi</multiple>
|
||||
</term>
|
||||
<term name="volume">
|
||||
<single>svezak</single>
|
||||
<multiple>svesci</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT LOCATOR FORMS -->
|
||||
<term name="book" form="short">knj.</term>
|
||||
<term name="chapter" form="short">pogl.</term>
|
||||
<term name="column" form="short">stup.</term>
|
||||
<term name="figure" form="short">crt.</term>
|
||||
<term name="folio" form="short">fol.</term>
|
||||
<term name="issue" form="short">izd.</term>
|
||||
<term name="line" form="short">red</term>
|
||||
<term name="note" form="short">bilj.</term>
|
||||
<term name="opus" form="short">sv.</term>
|
||||
<term name="page" form="short">
|
||||
<single>str.</single>
|
||||
<multiple>str.</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages" form="short">
|
||||
<single>str.</single>
|
||||
<multiple>str.</multiple>
|
||||
</term>
|
||||
<term name="paragraph" form="short">par.</term>
|
||||
<term name="part" form="short">dio</term>
|
||||
<term name="section" form="short">od.</term>
|
||||
<term name="sub verbo" form="short">
|
||||
<single>s.v.</single>
|
||||
<multiple>s.vv.</multiple>
|
||||
</term>
|
||||
<term name="verse" form="short">
|
||||
<single>st.</single>
|
||||
<multiple>st.</multiple>
|
||||
</term>
|
||||
<term name="volume" form="short">
|
||||
<single>sv.</single>
|
||||
<multiple>sv.</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶¶</multiple>
|
||||
</term>
|
||||
<term name="section" form="symbol">
|
||||
<single>§</single>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="director">
|
||||
<single>voditelj</single>
|
||||
<multiple>voditelji</multiple>
|
||||
</term>
|
||||
<term name="editor">
|
||||
<single>urednik</single>
|
||||
<multiple>urednici</multiple>
|
||||
</term>
|
||||
<term name="editorial-director">
|
||||
<single>urednik</single>
|
||||
<multiple>urednici</multiple>
|
||||
</term>
|
||||
<term name="illustrator">
|
||||
<single>ilustrator</single>
|
||||
<multiple>ilustratori</multiple>
|
||||
</term>
|
||||
<term name="translator">
|
||||
<single>prevoditelj</single>
|
||||
<multiple>prevoditelji</multiple>
|
||||
</term>
|
||||
<term name="editortranslator">
|
||||
<single>urednik & prevoditelj</single>
|
||||
<multiple>urednici & prevoditelji</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="director" form="short">
|
||||
<single>vod.</single>
|
||||
<multiple>vod.</multiple>
|
||||
</term>
|
||||
<term name="editor" form="short">
|
||||
<single>ur.</single>
|
||||
<multiple>ur.</multiple>
|
||||
</term>
|
||||
<term name="editorial-director" form="short">
|
||||
<single>ur.-vod.</single>
|
||||
<multiple>ur.-vod.</multiple>
|
||||
</term>
|
||||
<term name="illustrator" form="short">
|
||||
<single>il.</single>
|
||||
<multiple>il.</multiple>
|
||||
</term>
|
||||
<term name="translator" form="short">
|
||||
<single>prev.</single>
|
||||
<multiple>prev.</multiple>
|
||||
</term>
|
||||
<term name="editortranslator" form="short">
|
||||
<single>ur. & prev.</single>
|
||||
<multiple>ur. & prev.</multiple>
|
||||
</term>
|
||||
|
||||
<!-- VERB ROLE FORMS -->
|
||||
<term name="container-author" form="verb">od</term>
|
||||
<term name="director" form="verb">vodio</term>
|
||||
<term name="editor" form="verb">uredio</term>
|
||||
<term name="editorial-director" form="verb">uredio</term>
|
||||
<term name="illustrator" form="verb">ilustrirao</term>
|
||||
<term name="interviewer" form="verb">intervjuirao</term>
|
||||
<term name="recipient" form="verb">primatelj</term>
|
||||
<term name="reviewed-author" form="verb">pregledao</term>
|
||||
<term name="translator" form="verb">preveo</term>
|
||||
<term name="editortranslator" form="verb">uredio & preveo</term>
|
||||
|
||||
<!-- SHORT VERB ROLE FORMS -->
|
||||
<term name="director" form="verb-short">vod.</term>
|
||||
<term name="editor" form="verb-short">ur.</term>
|
||||
<term name="editorial-director" form="verb-short">ur. vod.</term>
|
||||
<term name="illustrator" form="verb-short">ilus.</term>
|
||||
<term name="translator" form="verb-short">prev.</term>
|
||||
<term name="editortranslator" form="verb-short">ur. & prev.</term>
|
||||
|
||||
<!-- LONG MONTH FORMS -->
|
||||
<term name="month-01">siječanj</term>
|
||||
<term name="month-02">veljača</term>
|
||||
<term name="month-03">ožujak</term>
|
||||
<term name="month-04">travanj</term>
|
||||
<term name="month-05">svibanj</term>
|
||||
<term name="month-06">lipanj</term>
|
||||
<term name="month-07">srpanj</term>
|
||||
<term name="month-08">kolovoz</term>
|
||||
<term name="month-09">rujan</term>
|
||||
<term name="month-10">listopad</term>
|
||||
<term name="month-11">studeni</term>
|
||||
<term name="month-12">prosinac</term>
|
||||
|
||||
<!-- SHORT MONTH FORMS -->
|
||||
<term name="month-01" form="short">sij.</term>
|
||||
<term name="month-02" form="short">velj.</term>
|
||||
<term name="month-03" form="short">ožu.</term>
|
||||
<term name="month-04" form="short">tra.</term>
|
||||
<term name="month-05" form="short">svi.</term>
|
||||
<term name="month-06" form="short">lip.</term>
|
||||
<term name="month-07" form="short">srp.</term>
|
||||
<term name="month-08" form="short">kol.</term>
|
||||
<term name="month-09" form="short">ruj.</term>
|
||||
<term name="month-10" form="short">lis.</term>
|
||||
<term name="month-11" form="short">stu.</term>
|
||||
<term name="month-12" form="short">pros.</term>
|
||||
|
||||
<!-- SEASONS -->
|
||||
<term name="season-01">proljeće</term>
|
||||
<term name="season-02">ljeto</term>
|
||||
<term name="season-03">jesen</term>
|
||||
<term name="season-04">zima</term>
|
||||
</terms>
|
||||
</locale>
|
||||
Vendored
+313
@@ -0,0 +1,313 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="hu-HU">
|
||||
<info>
|
||||
<translator>
|
||||
<name>Miklos Vajna</name>
|
||||
</translator>
|
||||
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
|
||||
<updated>2014-06-17T09:56:35+02:00</updated>
|
||||
</info>
|
||||
<style-options punctuation-in-quote="false"/>
|
||||
<date form="text">
|
||||
<date-part name="year"/>
|
||||
<date-part name="month" prefix=". "/>
|
||||
<date-part name="day" prefix=" " suffix="."/>
|
||||
</date>
|
||||
<date form="numeric">
|
||||
<date-part name="year"/>
|
||||
<date-part name="month" form="numeric-leading-zeros" prefix="."/>
|
||||
<date-part name="day" form="numeric-leading-zeros" prefix="."/>
|
||||
</date>
|
||||
<terms>
|
||||
<term name="accessed">elérés</term>
|
||||
<term name="and">és</term>
|
||||
<term name="and others">és mások</term>
|
||||
<term name="anonymous">szerző nélkül</term>
|
||||
<term name="anonymous" form="short">sz. n.</term>
|
||||
<term name="at"></term>
|
||||
<term name="available at">elérhető</term>
|
||||
<term name="by">by</term>
|
||||
<term name="circa">körülbelül</term>
|
||||
<term name="circa" form="short">kb.</term>
|
||||
<term name="cited">idézi</term>
|
||||
<term name="edition">
|
||||
<single>kiadás</single>
|
||||
<multiple>kiadás</multiple>
|
||||
</term>
|
||||
<term name="edition" form="short">kiad.</term>
|
||||
<term name="et-al">és mtsai.</term>
|
||||
<term name="forthcoming">megjelenés alatt</term>
|
||||
<term name="from">forrás</term>
|
||||
<term name="ibid">uo.</term>
|
||||
<term name="in">in</term>
|
||||
<term name="in press">nyomtatás alatt</term>
|
||||
<term name="internet">internet</term>
|
||||
<term name="interview">interjú</term>
|
||||
<term name="letter">levél</term>
|
||||
<term name="no date">évszám nélkül</term>
|
||||
<term name="no date" form="short">é. n.</term>
|
||||
<term name="online">online</term>
|
||||
<term name="presented at">előadás</term>
|
||||
<term name="reference">
|
||||
<single>hivatkozás</single>
|
||||
<multiple>hivatkozás</multiple>
|
||||
</term>
|
||||
<term name="reference" form="short">
|
||||
<single>hiv.</single>
|
||||
<multiple>hiv.</multiple>
|
||||
</term>
|
||||
<term name="retrieved">elérés</term>
|
||||
<term name="scale">skála</term>
|
||||
<term name="version">verzió</term>
|
||||
|
||||
<!-- ANNO DOMINI; BEFORE CHRIST -->
|
||||
<term name="ad">Kr. u.</term>
|
||||
<term name="bc">Kr. e.</term>
|
||||
|
||||
<!-- ANNO DOMINI; BEFORE CHRIST -->
|
||||
<term name="ad">i. sz.</term>
|
||||
<term name="bc">i. e.</term>
|
||||
|
||||
<!-- PUNCTUATION -->
|
||||
<term name="open-quote">„</term>
|
||||
<term name="close-quote">”</term>
|
||||
<term name="open-inner-quote">»</term>
|
||||
<term name="close-inner-quote">«</term>
|
||||
<term name="page-range-delimiter">–</term>
|
||||
|
||||
<!-- ORDINALS -->
|
||||
<term name="ordinal">.</term>
|
||||
|
||||
<!-- LONG ORDINALS -->
|
||||
<term name="long-ordinal-01">első</term>
|
||||
<term name="long-ordinal-02">második</term>
|
||||
<term name="long-ordinal-03">harmadik</term>
|
||||
<term name="long-ordinal-04">negyedik</term>
|
||||
<term name="long-ordinal-05">ötödik</term>
|
||||
<term name="long-ordinal-06">hatodik</term>
|
||||
<term name="long-ordinal-07">hetedik</term>
|
||||
<term name="long-ordinal-08">nyolcadik</term>
|
||||
<term name="long-ordinal-09">kilencedik</term>
|
||||
<term name="long-ordinal-10">tizedik</term>
|
||||
|
||||
<!-- LONG LOCATOR FORMS -->
|
||||
<term name="book">
|
||||
<single>könyv</single>
|
||||
<multiple>könyv</multiple>
|
||||
</term>
|
||||
<term name="chapter">
|
||||
<single>fejezet</single>
|
||||
<multiple>fejezet</multiple>
|
||||
</term>
|
||||
<term name="column">
|
||||
<single>oszlop</single>
|
||||
<multiple>oszlop</multiple>
|
||||
</term>
|
||||
<term name="figure">
|
||||
<single>ábra</single>
|
||||
<multiple>ábra</multiple>
|
||||
</term>
|
||||
<term name="folio">
|
||||
<single>fóliáns</single>
|
||||
<multiple>fóliáns</multiple>
|
||||
</term>
|
||||
<term name="issue">
|
||||
<single>szám</single>
|
||||
<multiple>szám</multiple>
|
||||
</term>
|
||||
<term name="line">
|
||||
<single>sor</single>
|
||||
<multiple>sor</multiple>
|
||||
</term>
|
||||
<term name="note">
|
||||
<single>jegyzet</single>
|
||||
<multiple>jegyzet</multiple>
|
||||
</term>
|
||||
<term name="opus">
|
||||
<single>mű</single>
|
||||
<multiple>mű</multiple>
|
||||
</term>
|
||||
<term name="page">
|
||||
<single>oldal</single>
|
||||
<multiple>oldal</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages">
|
||||
<single>oldal</single>
|
||||
<multiple>oldal</multiple>
|
||||
</term>
|
||||
<term name="paragraph">
|
||||
<single>bekezdés</single>
|
||||
<multiple>bekezdés</multiple>
|
||||
</term>
|
||||
<term name="part">
|
||||
<single>rész</single>
|
||||
<multiple>rész</multiple>
|
||||
</term>
|
||||
<term name="section">
|
||||
<single>szakasz</single>
|
||||
<multiple>szakasz</multiple>
|
||||
</term>
|
||||
<term name="sub verbo">
|
||||
<single>sub verbo</single>
|
||||
<multiple>sub verbis</multiple>
|
||||
</term>
|
||||
<term name="verse">
|
||||
<single>versszak</single>
|
||||
<multiple>versszak</multiple>
|
||||
</term>
|
||||
<term name="volume">
|
||||
<single>kötet</single>
|
||||
<multiple>kötet</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT LOCATOR FORMS -->
|
||||
<term name="book" form="short">könyv</term>
|
||||
<term name="chapter" form="short">fej.</term>
|
||||
<term name="column" form="short">oszl.</term>
|
||||
<term name="figure" form="short">ábr.</term>
|
||||
<term name="folio" form="short">fol.</term>
|
||||
<term name="issue" form="short">sz.</term>
|
||||
<term name="line" form="short">s.</term>
|
||||
<term name="note" form="short">j.</term>
|
||||
<term name="opus" form="short">op.</term>
|
||||
<term name="page" form="short">
|
||||
<single>o.</single>
|
||||
<multiple>o.</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages" form="short">
|
||||
<single>o.</single>
|
||||
<multiple>o.</multiple>
|
||||
</term>
|
||||
<term name="paragraph" form="short">bek.</term>
|
||||
<term name="part" form="short">rész</term>
|
||||
<term name="section" form="short">szak.</term>
|
||||
<term name="sub verbo" form="short">
|
||||
<single>s. v.</single>
|
||||
<multiple>s. vv.</multiple>
|
||||
</term>
|
||||
<term name="verse" form="short">
|
||||
<single>vsz.</single>
|
||||
<multiple>vsz.</multiple>
|
||||
</term>
|
||||
<term name="volume" form="short">
|
||||
<single>köt.</single>
|
||||
<multiple>köt.</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶¶</multiple>
|
||||
</term>
|
||||
<term name="section" form="symbol">
|
||||
<single>§</single>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="director">
|
||||
<single>igazgató</single>
|
||||
<multiple>igazgató</multiple>
|
||||
</term>
|
||||
<term name="editor">
|
||||
<single>szerkesztő</single>
|
||||
<multiple>szerkesztő</multiple>
|
||||
</term>
|
||||
<term name="editorial-director">
|
||||
<single>szerkesztőségi igazgató</single>
|
||||
<multiple>szerkesztőségi igazgató</multiple>
|
||||
</term>
|
||||
<term name="illustrator">
|
||||
<single>illusztrátor</single>
|
||||
<multiple>illusztrátor</multiple>
|
||||
</term>
|
||||
<term name="translator">
|
||||
<single>fordító</single>
|
||||
<multiple>fordító</multiple>
|
||||
</term>
|
||||
<term name="editortranslator">
|
||||
<single>szerkesztő & fordító</single>
|
||||
<multiple>szerkesztő & fordító</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="director" form="short">
|
||||
<single>ig.</single>
|
||||
<multiple>ig.</multiple>
|
||||
</term>
|
||||
<term name="editor" form="short">
|
||||
<single>szerk.</single>
|
||||
<multiple>szerk.</multiple>
|
||||
</term>
|
||||
<term name="editorial-director" form="short">
|
||||
<single>szerk. ig.</single>
|
||||
<multiple>szerk. ig.</multiple>
|
||||
</term>
|
||||
<term name="illustrator" form="short">
|
||||
<single>ill.</single>
|
||||
<multiple>ill.</multiple>
|
||||
</term>
|
||||
<term name="translator" form="short">
|
||||
<single>ford.</single>
|
||||
<multiple>ford.</multiple>
|
||||
</term>
|
||||
<term name="editortranslator" form="short">
|
||||
<single>szerk. & ford.</single>
|
||||
<multiple>szerk. & ford.</multiple>
|
||||
</term>
|
||||
|
||||
<!-- VERB ROLE FORMS -->
|
||||
<term name="container-author" form="verb">by</term>
|
||||
<term name="director" form="verb">directed by</term>
|
||||
<term name="editor" form="verb">szerkesztette</term>
|
||||
<term name="editorial-director" form="verb">edited by</term>
|
||||
<term name="illustrator" form="verb">illusztrálta</term>
|
||||
<term name="interviewer" form="verb">interjúkészítő</term>
|
||||
<term name="recipient" form="verb">címzett</term>
|
||||
<term name="reviewed-author" form="verb">by</term>
|
||||
<term name="translator" form="verb">fordította</term>
|
||||
<term name="editortranslator" form="verb">szerkesztette & fordította</term>
|
||||
|
||||
<!-- SHORT VERB ROLE FORMS -->
|
||||
<term name="director" form="verb-short">ig.</term>
|
||||
<term name="editor" form="verb-short">szerk.</term>
|
||||
<term name="editorial-director" form="verb-short">ed.</term>
|
||||
<term name="illustrator" form="verb-short">ill.</term>
|
||||
<term name="translator" form="verb-short">ford.</term>
|
||||
<term name="editortranslator" form="verb-short">szerk. & ford.</term>
|
||||
|
||||
<!-- LONG MONTH FORMS -->
|
||||
<term name="month-01">január</term>
|
||||
<term name="month-02">február</term>
|
||||
<term name="month-03">március</term>
|
||||
<term name="month-04">április</term>
|
||||
<term name="month-05">május</term>
|
||||
<term name="month-06">június</term>
|
||||
<term name="month-07">július</term>
|
||||
<term name="month-08">augusztus</term>
|
||||
<term name="month-09">szeptember</term>
|
||||
<term name="month-10">október</term>
|
||||
<term name="month-11">november</term>
|
||||
<term name="month-12">december</term>
|
||||
|
||||
<!-- SHORT MONTH FORMS -->
|
||||
<term name="month-01" form="short">jan.</term>
|
||||
<term name="month-02" form="short">febr.</term>
|
||||
<term name="month-03" form="short">márc.</term>
|
||||
<term name="month-04" form="short">ápr.</term>
|
||||
<term name="month-05" form="short">máj.</term>
|
||||
<term name="month-06" form="short">jún.</term>
|
||||
<term name="month-07" form="short">júl.</term>
|
||||
<term name="month-08" form="short">aug.</term>
|
||||
<term name="month-09" form="short">szept.</term>
|
||||
<term name="month-10" form="short">okt.</term>
|
||||
<term name="month-11" form="short">nov.</term>
|
||||
<term name="month-12" form="short">dec.</term>
|
||||
|
||||
<!-- SEASONS -->
|
||||
<term name="season-01">tavasz</term>
|
||||
<term name="season-02">nyár</term>
|
||||
<term name="season-03">ősz</term>
|
||||
<term name="season-04">tél</term>
|
||||
</terms>
|
||||
</locale>
|
||||
Vendored
+321
@@ -0,0 +1,321 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="id-ID">
|
||||
<info>
|
||||
<translator>
|
||||
<name>faizhabibullah</name>
|
||||
</translator>
|
||||
<translator>
|
||||
<name>Deden Habibi</name>
|
||||
</translator>
|
||||
<translator>
|
||||
<name>xbypass</name>
|
||||
</translator>
|
||||
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
|
||||
<updated>2015-08-05T23:31:02+00:00</updated>
|
||||
</info>
|
||||
<style-options punctuation-in-quote="true"/>
|
||||
<date form="text">
|
||||
<date-part name="day" suffix=" "/>
|
||||
<date-part name="month" suffix=" "/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<date form="numeric">
|
||||
<date-part name="day" form="numeric-leading-zeros" suffix="-"/>
|
||||
<date-part name="month" form="numeric-leading-zeros" suffix="-"/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<terms>
|
||||
<term name="accessed">diakses</term>
|
||||
<term name="and">dan</term>
|
||||
<term name="and others">dan lainnya</term>
|
||||
<term name="anonymous">anonim</term>
|
||||
<term name="anonymous" form="short">anon.</term>
|
||||
<term name="at">pada</term>
|
||||
<term name="available at">tersedia pada</term>
|
||||
<term name="by">oleh</term>
|
||||
<term name="circa">circa</term>
|
||||
<term name="circa" form="short">ca.</term>
|
||||
<term name="cited">dikutip</term>
|
||||
<term name="edition">
|
||||
<single>edisi</single>
|
||||
<multiple>edisi</multiple>
|
||||
</term>
|
||||
<term name="edition" form="short">ed.</term>
|
||||
<term name="et-al">dkk.</term>
|
||||
<term name="forthcoming">mendatang</term>
|
||||
<term name="from">dari</term>
|
||||
<term name="ibid">ibid.</term>
|
||||
<term name="in">dalam</term>
|
||||
<term name="in press">dalam proses cetakan</term>
|
||||
<term name="internet">internet</term>
|
||||
<term name="interview">wawancara</term>
|
||||
<term name="letter">surat</term>
|
||||
<term name="no date">tanpa tanggal</term>
|
||||
<term name="no date" form="short">t.t.</term>
|
||||
<term name="online">daring</term>
|
||||
<term name="presented at">dipresentasikan pada</term>
|
||||
<term name="reference">
|
||||
<single>referensi</single>
|
||||
<multiple>referensi</multiple>
|
||||
</term>
|
||||
<term name="reference" form="short">
|
||||
<single>ref.</single>
|
||||
<multiple>ref.</multiple>
|
||||
</term>
|
||||
<term name="retrieved">diambil</term>
|
||||
<term name="scale">skala</term>
|
||||
<term name="version">versi</term>
|
||||
|
||||
<!-- ANNO DOMINI; BEFORE CHRIST -->
|
||||
<term name="ad">M</term>
|
||||
<term name="bc">SM</term>
|
||||
|
||||
<!-- PUNCTUATION -->
|
||||
<term name="open-quote">“</term>
|
||||
<term name="close-quote">”</term>
|
||||
<term name="open-inner-quote">‘</term>
|
||||
<term name="close-inner-quote">’</term>
|
||||
<term name="page-range-delimiter">–</term>
|
||||
|
||||
<!-- ORDINALS -->
|
||||
<term name="ordinal"></term>
|
||||
<term name="ordinal-01"></term>
|
||||
<term name="ordinal-02"></term>
|
||||
<term name="ordinal-03"></term>
|
||||
<term name="ordinal-11"></term>
|
||||
<term name="ordinal-12"></term>
|
||||
<term name="ordinal-13"></term>
|
||||
|
||||
<!-- LONG ORDINALS -->
|
||||
<term name="long-ordinal-01">pertama</term>
|
||||
<term name="long-ordinal-02">kedua</term>
|
||||
<term name="long-ordinal-03">ketiga</term>
|
||||
<term name="long-ordinal-04">keempat</term>
|
||||
<term name="long-ordinal-05">kelima</term>
|
||||
<term name="long-ordinal-06">keenam</term>
|
||||
<term name="long-ordinal-07">ketujuh</term>
|
||||
<term name="long-ordinal-08">kedelapan</term>
|
||||
<term name="long-ordinal-09">kesembilan</term>
|
||||
<term name="long-ordinal-10">kesepuluh</term>
|
||||
|
||||
<!-- LONG LOCATOR FORMS -->
|
||||
<term name="book">
|
||||
<single>buku</single>
|
||||
<multiple>buku</multiple>
|
||||
</term>
|
||||
<term name="chapter">
|
||||
<single>bab</single>
|
||||
<multiple>bab</multiple>
|
||||
</term>
|
||||
<term name="column">
|
||||
<single>kolom</single>
|
||||
<multiple>kolom</multiple>
|
||||
</term>
|
||||
<term name="figure">
|
||||
<single>gambar</single>
|
||||
<multiple>gambar</multiple>
|
||||
</term>
|
||||
<term name="folio">
|
||||
<single>folio</single>
|
||||
<multiple>folio</multiple>
|
||||
</term>
|
||||
<term name="issue">
|
||||
<single>nomor</single>
|
||||
<multiple>nomor</multiple>
|
||||
</term>
|
||||
<term name="line">
|
||||
<single>baris</single>
|
||||
<multiple>baris</multiple>
|
||||
</term>
|
||||
<term name="note">
|
||||
<single>catatan</single>
|
||||
<multiple>catatan</multiple>
|
||||
</term>
|
||||
<term name="opus">
|
||||
<single>opus</single>
|
||||
<multiple>opera</multiple>
|
||||
</term>
|
||||
<term name="page">
|
||||
<single>halaman</single>
|
||||
<multiple>halaman</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages">
|
||||
<single>halaman</single>
|
||||
<multiple>halaman</multiple>
|
||||
</term>
|
||||
<term name="paragraph">
|
||||
<single>paragraf</single>
|
||||
<multiple>paragraf</multiple>
|
||||
</term>
|
||||
<term name="part">
|
||||
<single>bagian</single>
|
||||
<multiple>bagian</multiple>
|
||||
</term>
|
||||
<term name="section">
|
||||
<single>bagian</single>
|
||||
<multiple>bagian</multiple>
|
||||
</term>
|
||||
<term name="sub verbo">
|
||||
<single>sub verbo</single>
|
||||
<multiple>sub verbis</multiple>
|
||||
</term>
|
||||
<term name="verse">
|
||||
<single>ayat</single>
|
||||
<multiple>ayat</multiple>
|
||||
</term>
|
||||
<term name="volume">
|
||||
<single>volume</single>
|
||||
<multiple>volume</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT LOCATOR FORMS -->
|
||||
<term name="book" form="short">bk.</term>
|
||||
<term name="chapter" form="short">bb.</term>
|
||||
<term name="column" form="short">kol.</term>
|
||||
<term name="figure" form="short">gbr.</term>
|
||||
<term name="folio" form="short">fol.</term>
|
||||
<term name="issue" form="short">no.</term>
|
||||
<term name="line" form="short">brs.</term>
|
||||
<term name="note" form="short">ctt.</term>
|
||||
<term name="opus" form="short">op.</term>
|
||||
<term name="page" form="short">
|
||||
<single>hlm.</single>
|
||||
<multiple>hlm.</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages" form="short">
|
||||
<single>hlm.</single>
|
||||
<multiple>hlm.</multiple>
|
||||
</term>
|
||||
<term name="paragraph" form="short">para.</term>
|
||||
<term name="part" form="short">bag.</term>
|
||||
<term name="section" form="short">bag.</term>
|
||||
<term name="sub verbo" form="short">
|
||||
<single>s.v.</single>
|
||||
<multiple>s.vv.</multiple>
|
||||
</term>
|
||||
<term name="verse" form="short">
|
||||
<single>a.</single>
|
||||
<multiple>a.</multiple>
|
||||
</term>
|
||||
<term name="volume" form="short">
|
||||
<single>vol.</single>
|
||||
<multiple>vol.</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶¶</multiple>
|
||||
</term>
|
||||
<term name="section" form="symbol">
|
||||
<single>§</single>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="director">
|
||||
<single>direktur</single>
|
||||
<multiple>direktur</multiple>
|
||||
</term>
|
||||
<term name="editor">
|
||||
<single>editor</single>
|
||||
<multiple>editor</multiple>
|
||||
</term>
|
||||
<term name="editorial-director">
|
||||
<single>editor</single>
|
||||
<multiple>editor</multiple>
|
||||
</term>
|
||||
<term name="illustrator">
|
||||
<single>ilustrator</single>
|
||||
<multiple>ilustrator</multiple>
|
||||
</term>
|
||||
<term name="translator">
|
||||
<single>penerjemah</single>
|
||||
<multiple>penerjemah</multiple>
|
||||
</term>
|
||||
<term name="editortranslator">
|
||||
<single>editor & penerjemah</single>
|
||||
<multiple>editor & penerjemah</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="director" form="short">
|
||||
<single>dir.</single>
|
||||
<multiple>dir.</multiple>
|
||||
</term>
|
||||
<term name="editor" form="short">
|
||||
<single>ed.</single>
|
||||
<multiple>ed.</multiple>
|
||||
</term>
|
||||
<term name="editorial-director" form="short">
|
||||
<single>ed.</single>
|
||||
<multiple>ed.</multiple>
|
||||
</term>
|
||||
<term name="illustrator" form="short">
|
||||
<single>il.</single>
|
||||
<multiple>il.</multiple>
|
||||
</term>
|
||||
<term name="translator" form="short">
|
||||
<single>penerj.</single>
|
||||
<multiple>penerj.</multiple>
|
||||
</term>
|
||||
<term name="editortranslator" form="short">
|
||||
<single>ed. & penerj.</single>
|
||||
<multiple>ed. & penerj.</multiple>
|
||||
</term>
|
||||
|
||||
<!-- VERB ROLE FORMS -->
|
||||
<term name="container-author" form="verb">oleh</term>
|
||||
<term name="director" form="verb">diarahkan oleh</term>
|
||||
<term name="editor" form="verb">disunting oleh</term>
|
||||
<term name="editorial-director" form="verb">disunting oleh</term>
|
||||
<term name="illustrator" form="verb">diilustrasi oleh</term>
|
||||
<term name="interviewer" form="verb">diwawancara oleh</term>
|
||||
<term name="recipient" form="verb">kepada</term>
|
||||
<term name="reviewed-author" form="verb">oleh</term>
|
||||
<term name="translator" form="verb">diterjemahkan oleh</term>
|
||||
<term name="editortranslator" form="verb">disunting & diterjemahkan oleh</term>
|
||||
|
||||
<!-- SHORT VERB ROLE FORMS -->
|
||||
<term name="director" form="verb-short">dir. oleh</term>
|
||||
<term name="editor" form="verb-short">ed. oleh</term>
|
||||
<term name="editorial-director" form="verb-short">ed. oleh</term>
|
||||
<term name="illustrator" form="verb-short">illus. oleh</term>
|
||||
<term name="translator" form="verb-short">trans. oleh</term>
|
||||
<term name="editortranslator" form="verb-short">ed. & penerj. oleh</term>
|
||||
|
||||
<!-- LONG MONTH FORMS -->
|
||||
<term name="month-01">Januari</term>
|
||||
<term name="month-02">Februari</term>
|
||||
<term name="month-03">Maret</term>
|
||||
<term name="month-04">April</term>
|
||||
<term name="month-05">Mei</term>
|
||||
<term name="month-06">Juni</term>
|
||||
<term name="month-07">Juli</term>
|
||||
<term name="month-08">Agustus</term>
|
||||
<term name="month-09">September</term>
|
||||
<term name="month-10">Oktober</term>
|
||||
<term name="month-11">November</term>
|
||||
<term name="month-12">Desember</term>
|
||||
|
||||
<!-- SHORT MONTH FORMS -->
|
||||
<term name="month-01" form="short">Jan</term>
|
||||
<term name="month-02" form="short">Feb</term>
|
||||
<term name="month-03" form="short">Mar</term>
|
||||
<term name="month-04" form="short">Apr</term>
|
||||
<term name="month-05" form="short">Mei</term>
|
||||
<term name="month-06" form="short">Jun</term>
|
||||
<term name="month-07" form="short">Jul</term>
|
||||
<term name="month-08" form="short">Agu</term>
|
||||
<term name="month-09" form="short">Sep</term>
|
||||
<term name="month-10" form="short">Okt</term>
|
||||
<term name="month-11" form="short">Nov</term>
|
||||
<term name="month-12" form="short">Des</term>
|
||||
|
||||
<!-- SEASONS -->
|
||||
<term name="season-01">Semi</term>
|
||||
<term name="season-02">Panas</term>
|
||||
<term name="season-03">Gugur</term>
|
||||
<term name="season-04">Dingin</term>
|
||||
</terms>
|
||||
</locale>
|
||||
Vendored
+312
@@ -0,0 +1,312 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="is-IS">
|
||||
<info>
|
||||
<translator>
|
||||
<name>dadamaster</name>
|
||||
</translator>
|
||||
<translator>
|
||||
<name>styrmirm</name>
|
||||
</translator>
|
||||
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
|
||||
<updated>2012-07-04T23:31:02+00:00</updated>
|
||||
</info>
|
||||
<style-options punctuation-in-quote="false"/>
|
||||
<date form="text">
|
||||
<date-part name="day" suffix=". "/>
|
||||
<date-part name="month" suffix=" "/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<date form="numeric">
|
||||
<date-part name="day" form="ordinal" suffix=" "/>
|
||||
<date-part name="month" suffix="."/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<terms>
|
||||
<term name="accessed">sótt</term>
|
||||
<term name="and">og</term>
|
||||
<term name="and others">og fleiri</term>
|
||||
<term name="anonymous">nafnlaus</term>
|
||||
<term name="anonymous" form="short">nafnl.</term>
|
||||
<term name="at">af</term>
|
||||
<term name="available at">aðgengilegt á</term>
|
||||
<term name="by">eftir</term>
|
||||
<term name="circa">sirka</term>
|
||||
<term name="circa" form="short">u.þ.b.</term>
|
||||
<term name="cited">tilvitnun</term>
|
||||
<term name="edition">
|
||||
<single>útgáfa</single>
|
||||
<multiple>útgáfur</multiple>
|
||||
</term>
|
||||
<term name="edition" form="short">útg.</term>
|
||||
<term name="et-al">o.fl.</term>
|
||||
<term name="forthcoming">óbirt</term>
|
||||
<term name="from">af</term>
|
||||
<term name="ibid">sama heimild</term>
|
||||
<term name="in">í</term>
|
||||
<term name="in press">í prentun</term>
|
||||
<term name="internet">rafrænt</term>
|
||||
<term name="interview">viðtal</term>
|
||||
<term name="letter">bréf</term>
|
||||
<term name="no date">engin dagsetning</term>
|
||||
<term name="no date" form="short">e.d.</term>
|
||||
<term name="online">rafrænt</term>
|
||||
<term name="presented at">flutt á</term>
|
||||
<term name="reference">
|
||||
<single>tilvitnun</single>
|
||||
<multiple>tilvitnanir</multiple>
|
||||
</term>
|
||||
<term name="reference" form="short">
|
||||
<single>tilv.</single>
|
||||
<multiple>tilv.</multiple>
|
||||
</term>
|
||||
<term name="retrieved">sótt</term>
|
||||
<term name="scale">scale</term>
|
||||
<term name="version">útgáfa</term>
|
||||
|
||||
<!-- ANNO DOMINI; BEFORE CHRIST -->
|
||||
<term name="ad">e.Kr.</term>
|
||||
<term name="bc">f.Kr.</term>
|
||||
|
||||
<!-- PUNCTUATION -->
|
||||
<term name="open-quote">„</term>
|
||||
<term name="close-quote">“</term>
|
||||
<term name="open-inner-quote">‘</term>
|
||||
<term name="close-inner-quote">’</term>
|
||||
<term name="page-range-delimiter">–</term>
|
||||
|
||||
<!-- ORDINALS -->
|
||||
<term name="ordinal">.</term>
|
||||
|
||||
<!-- LONG ORDINALS -->
|
||||
<term name="long-ordinal-01">fyrsti</term>
|
||||
<term name="long-ordinal-02">annar</term>
|
||||
<term name="long-ordinal-03">þriðji</term>
|
||||
<term name="long-ordinal-04">fjórði</term>
|
||||
<term name="long-ordinal-05">fimmti</term>
|
||||
<term name="long-ordinal-06">sjötti</term>
|
||||
<term name="long-ordinal-07">sjöundi</term>
|
||||
<term name="long-ordinal-08">áttundi</term>
|
||||
<term name="long-ordinal-09">níundi</term>
|
||||
<term name="long-ordinal-10">tíundi</term>
|
||||
|
||||
<!-- LONG LOCATOR FORMS -->
|
||||
<term name="book">
|
||||
<single>bók</single>
|
||||
<multiple>bækur</multiple>
|
||||
</term>
|
||||
<term name="chapter">
|
||||
<single>kafli</single>
|
||||
<multiple>kaflar</multiple>
|
||||
</term>
|
||||
<term name="column">
|
||||
<single>dálkur</single>
|
||||
<multiple>dálkar</multiple>
|
||||
</term>
|
||||
<term name="figure">
|
||||
<single>mynd</single>
|
||||
<multiple>myndir</multiple>
|
||||
</term>
|
||||
<term name="folio">
|
||||
<single>handrit</single>
|
||||
<multiple>handrit</multiple>
|
||||
</term>
|
||||
<term name="issue">
|
||||
<single>tölublað</single>
|
||||
<multiple>tölublöð</multiple>
|
||||
</term>
|
||||
<term name="line">
|
||||
<single>lína</single>
|
||||
<multiple>línur</multiple>
|
||||
</term>
|
||||
<term name="note">
|
||||
<single>athugasemd</single>
|
||||
<multiple>athugasemdir</multiple>
|
||||
</term>
|
||||
<term name="opus">
|
||||
<single>tónverk</single>
|
||||
<multiple>tónverk</multiple>
|
||||
</term>
|
||||
<term name="page">
|
||||
<single>blaðsíða</single>
|
||||
<multiple>blaðsíður</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages">
|
||||
<single>blaðsíða</single>
|
||||
<multiple>blaðsíður</multiple>
|
||||
</term>
|
||||
<term name="paragraph">
|
||||
<single>málsgrein</single>
|
||||
<multiple>málsgreinar</multiple>
|
||||
</term>
|
||||
<term name="part">
|
||||
<single>hluti</single>
|
||||
<multiple>hlutar</multiple>
|
||||
</term>
|
||||
<term name="section">
|
||||
<single>hluti</single>
|
||||
<multiple>hlutar</multiple>
|
||||
</term>
|
||||
<term name="sub verbo">
|
||||
<single>sub verbo</single>
|
||||
<multiple>sub verbis</multiple>
|
||||
</term>
|
||||
<term name="verse">
|
||||
<single>vers</single>
|
||||
<multiple>vers</multiple>
|
||||
</term>
|
||||
<term name="volume">
|
||||
<single>bindi</single>
|
||||
<multiple>bindi</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT LOCATOR FORMS -->
|
||||
<term name="book" form="short">bók</term>
|
||||
<term name="chapter" form="short">k.</term>
|
||||
<term name="column" form="short">d.</term>
|
||||
<term name="figure" form="short">mynd.</term>
|
||||
<term name="folio" form="short">handr.</term>
|
||||
<term name="issue" form="short">tbl.</term>
|
||||
<term name="line" form="short">l.</term>
|
||||
<term name="note" form="short">ath.</term>
|
||||
<term name="opus" form="short">tónv.</term>
|
||||
<term name="page" form="short">
|
||||
<single>bls.</single>
|
||||
<multiple>bls.</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages" form="short">
|
||||
<single>bls.</single>
|
||||
<multiple>bls.</multiple>
|
||||
</term>
|
||||
<term name="paragraph" form="short">málsgr.</term>
|
||||
<term name="part" form="short">hl.</term>
|
||||
<term name="section" form="short">hl.</term>
|
||||
<term name="sub verbo" form="short">
|
||||
<single>s.v.</single>
|
||||
<multiple>s.vv.</multiple>
|
||||
</term>
|
||||
<term name="verse" form="short">
|
||||
<single>v.</single>
|
||||
<multiple>v.</multiple>
|
||||
</term>
|
||||
<term name="volume" form="short">
|
||||
<single>b.</single>
|
||||
<multiple>b.</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶¶</multiple>
|
||||
</term>
|
||||
<term name="section" form="symbol">
|
||||
<single>§</single>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="director">
|
||||
<single>leikstjóri</single>
|
||||
<multiple>leikstjórar</multiple>
|
||||
</term>
|
||||
<term name="editor">
|
||||
<single>ritstjóri</single>
|
||||
<multiple>ritstjórar</multiple>
|
||||
</term>
|
||||
<term name="editorial-director">
|
||||
<single>ritstjóri</single>
|
||||
<multiple>ritstjórar</multiple>
|
||||
</term>
|
||||
<term name="illustrator">
|
||||
<single>höfundur myndskreytinga</single>
|
||||
<multiple>höfundar myndskreytinga</multiple>
|
||||
</term>
|
||||
<term name="translator">
|
||||
<single>þýðandi</single>
|
||||
<multiple>þýðendur</multiple>
|
||||
</term>
|
||||
<term name="editortranslator">
|
||||
<single>ritstjóri og þýðandi</single>
|
||||
<multiple>ritstjórar og þýðendur</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="director" form="short">
|
||||
<single>leikstj.</single>
|
||||
<multiple>leikstj.</multiple>
|
||||
</term>
|
||||
<term name="editor" form="short">
|
||||
<single>ritstj.</single>
|
||||
<multiple>ritstj.</multiple>
|
||||
</term>
|
||||
<term name="editorial-director" form="short">
|
||||
<single>ritstj.</single>
|
||||
<multiple>ritstj.</multiple>
|
||||
</term>
|
||||
<term name="illustrator" form="short">
|
||||
<single>höf. mynd.</single>
|
||||
<multiple>höf. mynd.</multiple>
|
||||
</term>
|
||||
<term name="translator" form="short">
|
||||
<single>þýð.</single>
|
||||
<multiple>þýð.</multiple>
|
||||
</term>
|
||||
<term name="editortranslator" form="short">
|
||||
<single>ritstj. og þýð.</single>
|
||||
<multiple>ritstj. og þýð.</multiple>
|
||||
</term>
|
||||
|
||||
<!-- VERB ROLE FORMS -->
|
||||
<term name="container-author" form="verb">eftir</term>
|
||||
<term name="director" form="verb">leikstýrt af</term>
|
||||
<term name="editor" form="verb">ritstýrt af</term>
|
||||
<term name="editorial-director" form="verb">ritstýrt af</term>
|
||||
<term name="illustrator" form="verb">myndskreytt af</term>
|
||||
<term name="interviewer" form="verb">viðtal tók</term>
|
||||
<term name="recipient" form="verb">til</term>
|
||||
<term name="reviewed-author" form="verb">by</term>
|
||||
<term name="translator" form="verb">þýddi</term>
|
||||
<term name="editortranslator" form="verb">ritstýrt og þýtt af</term>
|
||||
|
||||
<!-- SHORT VERB ROLE FORMS -->
|
||||
<term name="director" form="verb-short">leikstj.</term>
|
||||
<term name="editor" form="verb-short">ritstj.</term>
|
||||
<term name="editorial-director" form="verb-short">ritstj.</term>
|
||||
<term name="illustrator" form="verb-short">myndskr.</term>
|
||||
<term name="translator" form="verb-short">þýð.</term>
|
||||
<term name="editortranslator" form="verb-short">ritstj. og þýð.</term>
|
||||
|
||||
<!-- LONG MONTH FORMS -->
|
||||
<term name="month-01">janúar</term>
|
||||
<term name="month-02">febrúar</term>
|
||||
<term name="month-03">mars</term>
|
||||
<term name="month-04">apríl</term>
|
||||
<term name="month-05">maí</term>
|
||||
<term name="month-06">júní</term>
|
||||
<term name="month-07">júlí</term>
|
||||
<term name="month-08">ágúst</term>
|
||||
<term name="month-09">september</term>
|
||||
<term name="month-10">október</term>
|
||||
<term name="month-11">nóvember</term>
|
||||
<term name="month-12">desember</term>
|
||||
|
||||
<!-- SHORT MONTH FORMS -->
|
||||
<term name="month-01" form="short">jan.</term>
|
||||
<term name="month-02" form="short">feb.</term>
|
||||
<term name="month-03" form="short">mar.</term>
|
||||
<term name="month-04" form="short">apr.</term>
|
||||
<term name="month-05" form="short">maí</term>
|
||||
<term name="month-06" form="short">jún.</term>
|
||||
<term name="month-07" form="short">júl.</term>
|
||||
<term name="month-08" form="short">ágú.</term>
|
||||
<term name="month-09" form="short">sep.</term>
|
||||
<term name="month-10" form="short">okt.</term>
|
||||
<term name="month-11" form="short">nóv.</term>
|
||||
<term name="month-12" form="short">des.</term>
|
||||
|
||||
<!-- SEASONS -->
|
||||
<term name="season-01">vor</term>
|
||||
<term name="season-02">sumar</term>
|
||||
<term name="season-03">haust</term>
|
||||
<term name="season-04">vetur</term>
|
||||
</terms>
|
||||
</locale>
|
||||
Vendored
+309
@@ -0,0 +1,309 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="it-IT">
|
||||
<info>
|
||||
<translator>
|
||||
<name>FI App Development</name>
|
||||
</translator>
|
||||
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
|
||||
<updated>2012-07-04T23:31:02+00:00</updated>
|
||||
</info>
|
||||
<style-options punctuation-in-quote="false"/>
|
||||
<date form="text">
|
||||
<date-part name="day" suffix=" "/>
|
||||
<date-part name="month" suffix=" "/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<date form="numeric">
|
||||
<date-part name="day" form="numeric-leading-zeros" suffix="/"/>
|
||||
<date-part name="month" form="numeric-leading-zeros" suffix="/"/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<terms>
|
||||
<term name="accessed">consultato</term>
|
||||
<term name="and">e</term>
|
||||
<term name="and others">e altri</term>
|
||||
<term name="anonymous">anonimo</term>
|
||||
<term name="anonymous" form="short">anon.</term>
|
||||
<term name="at">a</term>
|
||||
<term name="available at">available at</term>
|
||||
<term name="by">di</term>
|
||||
<term name="circa">circa</term>
|
||||
<term name="circa" form="short">c.</term>
|
||||
<term name="cited">citato</term>
|
||||
<term name="edition">
|
||||
<single>edizione</single>
|
||||
<multiple>edizioni</multiple>
|
||||
</term>
|
||||
<term name="edition" form="short">ed.</term>
|
||||
<term name="et-al">et al.</term>
|
||||
<term name="forthcoming">futuro</term>
|
||||
<term name="from">da</term>
|
||||
<term name="ibid">ibid.</term>
|
||||
<term name="in">in</term>
|
||||
<term name="in press">in stampa</term>
|
||||
<term name="internet">internet</term>
|
||||
<term name="interview">intervista</term>
|
||||
<term name="letter">lettera</term>
|
||||
<term name="no date">senza data</term>
|
||||
<term name="no date" form="short">s.d.</term>
|
||||
<term name="online">in linea</term>
|
||||
<term name="presented at">presentato al</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="retrieved">recuperato</term>
|
||||
<term name="scale">scale</term>
|
||||
<term name="version">version</term>
|
||||
|
||||
<!-- ANNO DOMINI; BEFORE CHRIST -->
|
||||
<term name="ad">d.C.</term>
|
||||
<term name="bc">a.C.</term>
|
||||
|
||||
<!-- PUNCTUATION -->
|
||||
<term name="open-quote">«</term>
|
||||
<term name="close-quote">»</term>
|
||||
<term name="open-inner-quote">“</term>
|
||||
<term name="close-inner-quote">”</term>
|
||||
<term name="page-range-delimiter">–</term>
|
||||
|
||||
<!-- ORDINALS -->
|
||||
<term name="ordinal">º</term>
|
||||
|
||||
<!-- LONG ORDINALS -->
|
||||
<term name="long-ordinal-01">prima</term>
|
||||
<term name="long-ordinal-02">seconda</term>
|
||||
<term name="long-ordinal-03">terza</term>
|
||||
<term name="long-ordinal-04">quarta</term>
|
||||
<term name="long-ordinal-05">quinta</term>
|
||||
<term name="long-ordinal-06">sesta</term>
|
||||
<term name="long-ordinal-07">settima</term>
|
||||
<term name="long-ordinal-08">ottava</term>
|
||||
<term name="long-ordinal-09">nona</term>
|
||||
<term name="long-ordinal-10">decima</term>
|
||||
|
||||
<!-- LONG LOCATOR FORMS -->
|
||||
<term name="book">
|
||||
<single>libro</single>
|
||||
<multiple>libri</multiple>
|
||||
</term>
|
||||
<term name="chapter">
|
||||
<single>capitolo</single>
|
||||
<multiple>capitoli</multiple>
|
||||
</term>
|
||||
<term name="column">
|
||||
<single>colonna</single>
|
||||
<multiple>colonne</multiple>
|
||||
</term>
|
||||
<term name="figure">
|
||||
<single>figura</single>
|
||||
<multiple>figure</multiple>
|
||||
</term>
|
||||
<term name="folio">
|
||||
<single>foglio</single>
|
||||
<multiple>fogli</multiple>
|
||||
</term>
|
||||
<term name="issue">
|
||||
<single>numero</single>
|
||||
<multiple>numeri</multiple>
|
||||
</term>
|
||||
<term name="line">
|
||||
<single>riga</single>
|
||||
<multiple>righe</multiple>
|
||||
</term>
|
||||
<term name="note">
|
||||
<single>nota</single>
|
||||
<multiple>note</multiple>
|
||||
</term>
|
||||
<term name="opus">
|
||||
<single>opera</single>
|
||||
<multiple>opere</multiple>
|
||||
</term>
|
||||
<term name="page">
|
||||
<single>pagina</single>
|
||||
<multiple>pagine</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages">
|
||||
<single>pagina</single>
|
||||
<multiple>pagine</multiple>
|
||||
</term>
|
||||
<term name="paragraph">
|
||||
<single>capoverso</single>
|
||||
<multiple>capoversi</multiple>
|
||||
</term>
|
||||
<term name="part">
|
||||
<single>parte</single>
|
||||
<multiple>parti</multiple>
|
||||
</term>
|
||||
<term name="section">
|
||||
<single>paragrafo</single>
|
||||
<multiple>paragrafi</multiple>
|
||||
</term>
|
||||
<term name="sub verbo">
|
||||
<single>sub verbo</single>
|
||||
<multiple>sub verbis</multiple>
|
||||
</term>
|
||||
<term name="verse">
|
||||
<single>verso</single>
|
||||
<multiple>versi</multiple>
|
||||
</term>
|
||||
<term name="volume">
|
||||
<single>volume</single>
|
||||
<multiple>volumi</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT LOCATOR FORMS -->
|
||||
<term name="book" form="short">lib.</term>
|
||||
<term name="chapter" form="short">cap.</term>
|
||||
<term name="column" form="short">col.</term>
|
||||
<term name="figure" form="short">fig.</term>
|
||||
<term name="folio" form="short">fgl.</term>
|
||||
<term name="issue" form="short">n.</term>
|
||||
<term name="line" form="short">l.</term>
|
||||
<term name="note" form="short">n.</term>
|
||||
<term name="opus" form="short">op.</term>
|
||||
<term name="page" form="short">
|
||||
<single>pag.</single>
|
||||
<multiple>pagg.</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages" form="short">
|
||||
<single>pag.</single>
|
||||
<multiple>pagg.</multiple>
|
||||
</term>
|
||||
<term name="paragraph" form="short">cpv.</term>
|
||||
<term name="part" form="short">pt.</term>
|
||||
<term name="section" form="short">par.</term>
|
||||
<term name="sub verbo" form="short">
|
||||
<single>s.v.</single>
|
||||
<multiple>s.vv.</multiple>
|
||||
</term>
|
||||
<term name="verse" form="short">
|
||||
<single>v.</single>
|
||||
<multiple>vv.</multiple>
|
||||
</term>
|
||||
<term name="volume" form="short">
|
||||
<single>vol.</single>
|
||||
<multiple>vol.</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶¶</multiple>
|
||||
</term>
|
||||
<term name="section" form="symbol">
|
||||
<single>§</single>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="director">
|
||||
<single>director</single>
|
||||
<multiple>directors</multiple>
|
||||
</term>
|
||||
<term name="editor">
|
||||
<single>curatore</single>
|
||||
<multiple>curatori</multiple>
|
||||
</term>
|
||||
<term name="editorial-director">
|
||||
<single>editor</single>
|
||||
<multiple>editors</multiple>
|
||||
</term>
|
||||
<term name="illustrator">
|
||||
<single>illustrator</single>
|
||||
<multiple>illustrators</multiple>
|
||||
</term>
|
||||
<term name="translator">
|
||||
<single>traduttore</single>
|
||||
<multiple>traduttori</multiple>
|
||||
</term>
|
||||
<term name="editortranslator">
|
||||
<single>curatore e traduttore</single>
|
||||
<multiple>curatori e tradutori</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="director" form="short">
|
||||
<single>dir.</single>
|
||||
<multiple>dirs.</multiple>
|
||||
</term>
|
||||
<term name="editor" form="short">
|
||||
<single>a c. di</single>
|
||||
<multiple>a c. di</multiple>
|
||||
</term>
|
||||
<term name="editorial-director" form="short">
|
||||
<single>ed.</single>
|
||||
<multiple>eds.</multiple>
|
||||
</term>
|
||||
<term name="illustrator" form="short">
|
||||
<single>ill.</single>
|
||||
<multiple>ills.</multiple>
|
||||
</term>
|
||||
<term name="translator" form="short">
|
||||
<single>trad.</single>
|
||||
<multiple>trad.</multiple>
|
||||
</term>
|
||||
<term name="editortranslator" form="short">
|
||||
<single>a c. di e trad. da</single>
|
||||
<multiple>a c. di e trad. da</multiple>
|
||||
</term>
|
||||
|
||||
<!-- VERB ROLE FORMS -->
|
||||
<term name="container-author" form="verb">di</term>
|
||||
<term name="director" form="verb">directed by</term>
|
||||
<term name="editor" form="verb">a cura di</term>
|
||||
<term name="editorial-director" form="verb">edited by</term>
|
||||
<term name="illustrator" form="verb">illustrated by</term>
|
||||
<term name="interviewer" form="verb">intervista di</term>
|
||||
<term name="recipient" form="verb">a</term>
|
||||
<term name="reviewed-author" form="verb">by</term>
|
||||
<term name="translator" form="verb">tradotto da</term>
|
||||
<term name="editortranslator" form="verb">a cura di e tradotto da</term>
|
||||
|
||||
<!-- SHORT VERB ROLE FORMS -->
|
||||
<term name="director" form="verb-short">dir.</term>
|
||||
<term name="editor" form="verb-short">a c. di</term>
|
||||
<term name="editorial-director" form="verb-short">ed.</term>
|
||||
<term name="illustrator" form="verb-short">illus.</term>
|
||||
<term name="translator" form="verb-short">trad. da</term>
|
||||
<term name="editortranslator" form="verb-short">a c. di e trad. da</term>
|
||||
|
||||
<!-- LONG MONTH FORMS -->
|
||||
<term name="month-01">gennaio</term>
|
||||
<term name="month-02">febbraio</term>
|
||||
<term name="month-03">marzo</term>
|
||||
<term name="month-04">aprile</term>
|
||||
<term name="month-05">maggio</term>
|
||||
<term name="month-06">giugno</term>
|
||||
<term name="month-07">luglio</term>
|
||||
<term name="month-08">agosto</term>
|
||||
<term name="month-09">settembre</term>
|
||||
<term name="month-10">ottobre</term>
|
||||
<term name="month-11">novembre</term>
|
||||
<term name="month-12">dicembre</term>
|
||||
|
||||
<!-- SHORT MONTH FORMS -->
|
||||
<term name="month-01" form="short">gen.</term>
|
||||
<term name="month-02" form="short">feb.</term>
|
||||
<term name="month-03" form="short">mar.</term>
|
||||
<term name="month-04" form="short">apr.</term>
|
||||
<term name="month-05" form="short">mag.</term>
|
||||
<term name="month-06" form="short">giu.</term>
|
||||
<term name="month-07" form="short">lug.</term>
|
||||
<term name="month-08" form="short">ago.</term>
|
||||
<term name="month-09" form="short">set.</term>
|
||||
<term name="month-10" form="short">ott.</term>
|
||||
<term name="month-11" form="short">nov.</term>
|
||||
<term name="month-12" form="short">dic.</term>
|
||||
|
||||
<!-- SEASONS -->
|
||||
<term name="season-01">primavera</term>
|
||||
<term name="season-02">estate</term>
|
||||
<term name="season-03">autunno</term>
|
||||
<term name="season-04">inverno</term>
|
||||
</terms>
|
||||
</locale>
|
||||
Vendored
+315
@@ -0,0 +1,315 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="ja-JP">
|
||||
<info>
|
||||
<translator>
|
||||
<name>Shoji Takahashi</name>
|
||||
</translator>
|
||||
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
|
||||
<updated>2012-07-04T23:31:02+00:00</updated>
|
||||
</info>
|
||||
<style-options punctuation-in-quote="false"/>
|
||||
<date form="text">
|
||||
<date-part name="year" suffix="年"/>
|
||||
<date-part name="month" form="numeric" suffix="月"/>
|
||||
<date-part name="day" suffix="日"/>
|
||||
</date>
|
||||
<date form="numeric">
|
||||
<date-part name="year" suffix="年"/>
|
||||
<date-part name="month" form="numeric" suffix="月"/>
|
||||
<date-part name="day" suffix="日"/>
|
||||
</date>
|
||||
<terms>
|
||||
<term name="accessed">参照</term>
|
||||
<term name="and">と</term>
|
||||
<term name="and others">and others</term>
|
||||
<term name="anonymous">anonymous</term>
|
||||
<term name="anonymous" form="short">anon</term>
|
||||
<term name="at">at</term>
|
||||
<term name="available at">available at</term>
|
||||
<term name="by">by</term>
|
||||
<term name="circa">circa</term>
|
||||
<term name="circa" form="short">c.</term>
|
||||
<term name="cited">cited</term>
|
||||
<term name="edition">
|
||||
<single>版</single>
|
||||
<multiple>版</multiple>
|
||||
</term>
|
||||
<term name="edition" form="short">版</term>
|
||||
<term name="et-al">ほか</term>
|
||||
<term name="forthcoming">近刊</term>
|
||||
<term name="from">から</term>
|
||||
<term name="ibid">前掲</term>
|
||||
<term name="in"></term>
|
||||
<term name="in press">in press</term>
|
||||
<term name="internet">internet</term>
|
||||
<term name="interview">interview</term>
|
||||
<term name="letter">letter</term>
|
||||
<term name="no date">no date</term>
|
||||
<term name="no date" form="short">日付なし</term>
|
||||
<term name="online">online</term>
|
||||
<term name="presented at">presented at the</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="retrieved">読み込み</term>
|
||||
<term name="scale">scale</term>
|
||||
<term name="version">version</term>
|
||||
|
||||
<!-- ANNO DOMINI; BEFORE CHRIST -->
|
||||
<term name="ad">AD</term>
|
||||
<term name="bc">BC</term>
|
||||
|
||||
<!-- PUNCTUATION -->
|
||||
<term name="open-quote">「</term>
|
||||
<term name="close-quote">」</term>
|
||||
<term name="open-inner-quote">『</term>
|
||||
<term name="close-inner-quote">』</term>
|
||||
<term name="page-range-delimiter">–</term>
|
||||
|
||||
<!-- ORDINALS -->
|
||||
<term name="ordinal">th</term>
|
||||
<term name="ordinal-01">st</term>
|
||||
<term name="ordinal-02">nd</term>
|
||||
<term name="ordinal-03">rd</term>
|
||||
<term name="ordinal-11">th</term>
|
||||
<term name="ordinal-12">th</term>
|
||||
<term name="ordinal-13">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>
|
||||
|
||||
<!-- LONG LOCATOR FORMS -->
|
||||
<term name="book">
|
||||
<single>book</single>
|
||||
<multiple>books</multiple>
|
||||
</term>
|
||||
<term name="chapter">
|
||||
<single>chapter</single>
|
||||
<multiple>chapters</multiple>
|
||||
</term>
|
||||
<term name="column">
|
||||
<single>column</single>
|
||||
<multiple>columns</multiple>
|
||||
</term>
|
||||
<term name="figure">
|
||||
<single>figure</single>
|
||||
<multiple>figures</multiple>
|
||||
</term>
|
||||
<term name="folio">
|
||||
<single>folio</single>
|
||||
<multiple>folios</multiple>
|
||||
</term>
|
||||
<term name="issue">
|
||||
<single>number</single>
|
||||
<multiple>numbers</multiple>
|
||||
</term>
|
||||
<term name="line">
|
||||
<single>行</single>
|
||||
<multiple>行</multiple>
|
||||
</term>
|
||||
<term name="note">
|
||||
<single>note</single>
|
||||
<multiple>notes</multiple>
|
||||
</term>
|
||||
<term name="opus">
|
||||
<single>opus</single>
|
||||
<multiple>opera</multiple>
|
||||
</term>
|
||||
<term name="page">
|
||||
<single>ページ</single>
|
||||
<multiple>ページ</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages">
|
||||
<single>ページ</single>
|
||||
<multiple>ページ</multiple>
|
||||
</term>
|
||||
<term name="paragraph">
|
||||
<single>段落</single>
|
||||
<multiple>段落</multiple>
|
||||
</term>
|
||||
<term name="part">
|
||||
<single>part</single>
|
||||
<multiple>parts</multiple>
|
||||
</term>
|
||||
<term name="section">
|
||||
<single>section</single>
|
||||
<multiple>sections</multiple>
|
||||
</term>
|
||||
<term name="sub verbo">
|
||||
<single>sub verbo</single>
|
||||
<multiple>sub verbis</multiple>
|
||||
</term>
|
||||
<term name="verse">
|
||||
<single>verse</single>
|
||||
<multiple>verses</multiple>
|
||||
</term>
|
||||
<term name="volume">
|
||||
<single>volume</single>
|
||||
<multiple>volumes</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="line" form="short">l.</term>
|
||||
<term name="note" form="short">n.</term>
|
||||
<term name="opus" form="short">op.</term>
|
||||
<term name="page" form="short">
|
||||
<single>p.</single>
|
||||
<multiple>pp.</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages" form="short">
|
||||
<single>p.</single>
|
||||
<multiple>pp.</multiple>
|
||||
</term>
|
||||
<term name="paragraph" form="short">para.</term>
|
||||
<term name="part" form="short">pt.</term>
|
||||
<term name="section" form="short">sec.</term>
|
||||
<term name="sub verbo" form="short">
|
||||
<single>s.v.</single>
|
||||
<multiple>s.vv.</multiple>
|
||||
</term>
|
||||
<term name="verse" form="short">
|
||||
<single>v.</single>
|
||||
<multiple>vv.</multiple>
|
||||
</term>
|
||||
<term name="volume" form="short">
|
||||
<single>vol.</single>
|
||||
<multiple>vols.</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶¶</multiple>
|
||||
</term>
|
||||
<term name="section" form="symbol">
|
||||
<single>§</single>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="director">
|
||||
<single>director</single>
|
||||
<multiple>directors</multiple>
|
||||
</term>
|
||||
<term name="editor">
|
||||
<single>編</single>
|
||||
<multiple>編</multiple>
|
||||
</term>
|
||||
<term name="editorial-director">
|
||||
<single>editor</single>
|
||||
<multiple>editors</multiple>
|
||||
</term>
|
||||
<term name="illustrator">
|
||||
<single>illustrator</single>
|
||||
<multiple>illustrators</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="director" form="short">
|
||||
<single>dir.</single>
|
||||
<multiple>dirs.</multiple>
|
||||
</term>
|
||||
<term name="editor" form="short">
|
||||
<single>編</single>
|
||||
<multiple>編</multiple>
|
||||
</term>
|
||||
<term name="editorial-director" form="short">
|
||||
<single>ed.</single>
|
||||
<multiple>eds.</multiple>
|
||||
</term>
|
||||
<term name="illustrator" form="short">
|
||||
<single>ill.</single>
|
||||
<multiple>ills.</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="container-author" form="verb">by</term>
|
||||
<term name="director" form="verb">directed by</term>
|
||||
<term name="editor" form="verb">編集者:</term>
|
||||
<term name="editorial-director" form="verb">edited by</term>
|
||||
<term name="illustrator" form="verb">illustrated by</term>
|
||||
<term name="interviewer" form="verb">interview by</term>
|
||||
<term name="recipient" form="verb">to</term>
|
||||
<term name="reviewed-author" form="verb">by</term>
|
||||
<term name="translator" form="verb">翻訳者:</term>
|
||||
<term name="editortranslator" form="verb">edited & translated by</term>
|
||||
|
||||
<!-- SHORT VERB ROLE FORMS -->
|
||||
<term name="director" form="verb-short">dir.</term>
|
||||
<term name="editor" form="verb-short">編集者:</term>
|
||||
<term name="editorial-director" form="verb-short">ed.</term>
|
||||
<term name="illustrator" form="verb-short">illus.</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">1月</term>
|
||||
<term name="month-02">2月</term>
|
||||
<term name="month-03">3月</term>
|
||||
<term name="month-04">4月</term>
|
||||
<term name="month-05">5月</term>
|
||||
<term name="month-06">6月</term>
|
||||
<term name="month-07">7月</term>
|
||||
<term name="month-08">8月</term>
|
||||
<term name="month-09">9月</term>
|
||||
<term name="month-10">10月</term>
|
||||
<term name="month-11">11月</term>
|
||||
<term name="month-12">12月</term>
|
||||
|
||||
<!-- SHORT MONTH FORMS -->
|
||||
<term name="month-01" form="short">1月</term>
|
||||
<term name="month-02" form="short">2月</term>
|
||||
<term name="month-03" form="short">3月</term>
|
||||
<term name="month-04" form="short">4月</term>
|
||||
<term name="month-05" form="short">5月</term>
|
||||
<term name="month-06" form="short">6月</term>
|
||||
<term name="month-07" form="short">7月</term>
|
||||
<term name="month-08" form="short">8月</term>
|
||||
<term name="month-09" form="short">9月</term>
|
||||
<term name="month-10" form="short">10月</term>
|
||||
<term name="month-11" form="short">11月</term>
|
||||
<term name="month-12" form="short">12月</term>
|
||||
|
||||
<!-- SEASONS -->
|
||||
<term name="season-01">Spring</term>
|
||||
<term name="season-02">Summer</term>
|
||||
<term name="season-03">Autumn</term>
|
||||
<term name="season-04">Winter</term>
|
||||
</terms>
|
||||
</locale>
|
||||
Vendored
+312
@@ -0,0 +1,312 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="km-KH">
|
||||
<info>
|
||||
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
|
||||
<updated>2012-07-04T23:31:02+00:00</updated>
|
||||
</info>
|
||||
<style-options punctuation-in-quote="false"/>
|
||||
<date form="text">
|
||||
<date-part name="day" form="numeric" suffix=""/>
|
||||
<date-part name="month" suffix=""/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<date form="numeric">
|
||||
<date-part name="day" form="numeric-leading-zeros" suffix="/"/>
|
||||
<date-part name="month" form="numeric-leading-zeros" suffix="/"/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<terms>
|
||||
<term name="accessed">accessed</term>
|
||||
<term name="and">and</term>
|
||||
<term name="and others">and others</term>
|
||||
<term name="anonymous">anonymous</term>
|
||||
<term name="anonymous" form="short">anon.</term>
|
||||
<term name="at">at</term>
|
||||
<term name="available at">available at</term>
|
||||
<term name="by">by</term>
|
||||
<term name="circa">circa</term>
|
||||
<term name="circa" form="short">c.</term>
|
||||
<term name="cited">cited</term>
|
||||
<term name="edition">
|
||||
<single>edition</single>
|
||||
<multiple>editions</multiple>
|
||||
</term>
|
||||
<term name="edition" form="short">ed.</term>
|
||||
<term name="et-al">et al.</term>
|
||||
<term name="forthcoming">forthcoming</term>
|
||||
<term name="from">from</term>
|
||||
<term name="ibid">ibid</term>
|
||||
<term name="in">in</term>
|
||||
<term name="in press">in press</term>
|
||||
<term name="internet">internet</term>
|
||||
<term name="interview">interview</term>
|
||||
<term name="letter">letter</term>
|
||||
<term name="no date">no date</term>
|
||||
<term name="no date" form="short">n.d.</term>
|
||||
<term name="online">online</term>
|
||||
<term name="presented at">presented at the</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="retrieved">retrieved</term>
|
||||
<term name="scale">scale</term>
|
||||
<term name="version">version</term>
|
||||
|
||||
<!-- ANNO DOMINI; BEFORE CHRIST -->
|
||||
<term name="ad">AD</term>
|
||||
<term name="bc">BC</term>
|
||||
|
||||
<!-- PUNCTUATION -->
|
||||
<term name="open-quote">“</term>
|
||||
<term name="close-quote">”</term>
|
||||
<term name="open-inner-quote">‘</term>
|
||||
<term name="close-inner-quote">’</term>
|
||||
<term name="page-range-delimiter">–</term>
|
||||
|
||||
<!-- ORDINALS -->
|
||||
<term name="ordinal">th</term>
|
||||
<term name="ordinal-01">st</term>
|
||||
<term name="ordinal-02">nd</term>
|
||||
<term name="ordinal-03">rd</term>
|
||||
<term name="ordinal-11">th</term>
|
||||
<term name="ordinal-12">th</term>
|
||||
<term name="ordinal-13">th</term>
|
||||
|
||||
<!-- LONG ORDINALS -->
|
||||
<term name="long-ordinal-01">ទីមួយ</term>
|
||||
<term name="long-ordinal-02">ទីពីរ</term>
|
||||
<term name="long-ordinal-03">ទីបី</term>
|
||||
<term name="long-ordinal-04">ទីបួន</term>
|
||||
<term name="long-ordinal-05">ទីប្រាំ</term>
|
||||
<term name="long-ordinal-06">ទីប្រាំមួយ</term>
|
||||
<term name="long-ordinal-07">ទីប្រាំពីរ</term>
|
||||
<term name="long-ordinal-08">ទីប្រាំបី</term>
|
||||
<term name="long-ordinal-09">ទីប្រាំបួន</term>
|
||||
<term name="long-ordinal-10">ទីដប់មួយ</term>
|
||||
|
||||
<!-- LONG LOCATOR FORMS -->
|
||||
<term name="book">
|
||||
<single>សៀវភៅ</single>
|
||||
<multiple>សៀវភៅ</multiple>
|
||||
</term>
|
||||
<term name="chapter">
|
||||
<single>ជំពូក</single>
|
||||
<multiple>ជំពូក</multiple>
|
||||
</term>
|
||||
<term name="column">
|
||||
<single>កាឡោន</single>
|
||||
<multiple>កាឡោន</multiple>
|
||||
</term>
|
||||
<term name="figure">
|
||||
<single>តួលេខ</single>
|
||||
<multiple>តួលេខ</multiple>
|
||||
</term>
|
||||
<term name="folio">
|
||||
<single>folio</single>
|
||||
<multiple>folios</multiple>
|
||||
</term>
|
||||
<term name="issue">
|
||||
<single>ចំនួន</single>
|
||||
<multiple>ចំនួន</multiple>
|
||||
</term>
|
||||
<term name="line">
|
||||
<single>បន្ទាត់</single>
|
||||
<multiple>បន្ទាត់</multiple>
|
||||
</term>
|
||||
<term name="note">
|
||||
<single>កំណត់ចំណាំ</single>
|
||||
<multiple>កំណត់ចំណាំ</multiple>
|
||||
</term>
|
||||
<term name="opus">
|
||||
<single>opus</single>
|
||||
<multiple>opera</multiple>
|
||||
</term>
|
||||
<term name="page">
|
||||
<single>ទំព័រ</single>
|
||||
<multiple>ទំព័រ</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages">
|
||||
<single>ទំព័រ</single>
|
||||
<multiple>ទំព័រ</multiple>
|
||||
</term>
|
||||
<term name="paragraph">
|
||||
<single>កថាខណ្ឌ</single>
|
||||
<multiple>កថាខណ្ឌ</multiple>
|
||||
</term>
|
||||
<term name="part">
|
||||
<single>ជំពូក</single>
|
||||
<multiple>ជំពូក</multiple>
|
||||
</term>
|
||||
<term name="section">
|
||||
<single>ផ្នែក</single>
|
||||
<multiple>ផ្នែក</multiple>
|
||||
</term>
|
||||
<term name="sub verbo">
|
||||
<single>sub verbo</single>
|
||||
<multiple>sub verbis</multiple>
|
||||
</term>
|
||||
<term name="verse">
|
||||
<single>verse</single>
|
||||
<multiple>verses</multiple>
|
||||
</term>
|
||||
<term name="volume">
|
||||
<single>វ៉ុល</single>
|
||||
<multiple>វ៉ុល</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="line" form="short">l.</term>
|
||||
<term name="note" form="short">n.</term>
|
||||
<term name="opus" form="short">op.</term>
|
||||
<term name="page" form="short">
|
||||
<single>p.</single>
|
||||
<multiple>pp.</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages" form="short">
|
||||
<single>p.</single>
|
||||
<multiple>pp.</multiple>
|
||||
</term>
|
||||
<term name="paragraph" form="short">para.</term>
|
||||
<term name="part" form="short">pt.</term>
|
||||
<term name="section" form="short">sec.</term>
|
||||
<term name="sub verbo" form="short">
|
||||
<single>s.v.</single>
|
||||
<multiple>s.vv.</multiple>
|
||||
</term>
|
||||
<term name="verse" form="short">
|
||||
<single>v.</single>
|
||||
<multiple>vv.</multiple>
|
||||
</term>
|
||||
<term name="volume" form="short">
|
||||
<single>vol.</single>
|
||||
<multiple>vols.</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶¶</multiple>
|
||||
</term>
|
||||
<term name="section" form="symbol">
|
||||
<single>§</single>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="director">
|
||||
<single>director</single>
|
||||
<multiple>directors</multiple>
|
||||
</term>
|
||||
<term name="editor">
|
||||
<single>editor</single>
|
||||
<multiple>editors</multiple>
|
||||
</term>
|
||||
<term name="editorial-director">
|
||||
<single></single>
|
||||
<multiple>editors</multiple>
|
||||
</term>
|
||||
<term name="illustrator">
|
||||
<single>illustrator</single>
|
||||
<multiple>illustrators</multiple>
|
||||
</term>
|
||||
<term name="translator">
|
||||
<single>translator</single>
|
||||
<multiple>translator</multiple>
|
||||
</term>
|
||||
<term name="editortranslator">
|
||||
<single>editor & translator</single>
|
||||
<multiple>editors & translators</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="director" form="short">
|
||||
<single>dir.</single>
|
||||
<multiple>dirs.</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="illustrator" form="short">
|
||||
<single>ill.</single>
|
||||
<multiple>ills.</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="container-author" form="verb">by</term>
|
||||
<term name="director" form="verb">directed by</term>
|
||||
<term name="editor" form="verb">edited by</term>
|
||||
<term name="editorial-director" form="verb">edited by</term>
|
||||
<term name="illustrator" form="verb">illustrated by</term>
|
||||
<term name="interviewer" form="verb">interview by</term>
|
||||
<term name="recipient" form="verb">to</term>
|
||||
<term name="reviewed-author" form="verb">by</term>
|
||||
<term name="translator" form="verb">translated by</term>
|
||||
<term name="editortranslator" form="verb">edited & translated by</term>
|
||||
|
||||
<!-- SHORT VERB ROLE FORMS -->
|
||||
<term name="director" form="verb-short">dir.</term>
|
||||
<term name="editor" form="verb-short">ed.</term>
|
||||
<term name="editorial-director" form="verb-short">ed.</term>
|
||||
<term name="illustrator" form="verb-short">illus.</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>
|
||||
<term name="month-04">មេសា</term>
|
||||
<term name="month-05">ឧសភា</term>
|
||||
<term name="month-06">មិថុនា</term>
|
||||
<term name="month-07">កក្កដា</term>
|
||||
<term name="month-08">សីហា</term>
|
||||
<term name="month-09">កញ្ញា</term>
|
||||
<term name="month-10">តុលា</term>
|
||||
<term name="month-11">វិច្ឆិកា</term>
|
||||
<term name="month-12">ធ្នូ</term>
|
||||
|
||||
<!-- SHORT MONTH FORMS -->
|
||||
<term name="month-01" form="short">Jan.</term>
|
||||
<term name="month-02" form="short">Feb.</term>
|
||||
<term name="month-03" form="short">Mar.</term>
|
||||
<term name="month-04" form="short">Apr.</term>
|
||||
<term name="month-05" form="short">May</term>
|
||||
<term name="month-06" form="short">Jun.</term>
|
||||
<term name="month-07" form="short">Jul.</term>
|
||||
<term name="month-08" form="short">Aug.</term>
|
||||
<term name="month-09" form="short">Sep.</term>
|
||||
<term name="month-10" form="short">Oct.</term>
|
||||
<term name="month-11" form="short">Nov.</term>
|
||||
<term name="month-12" form="short">Dec.</term>
|
||||
|
||||
<!-- SEASONS -->
|
||||
<term name="season-01">Spring</term>
|
||||
<term name="season-02">Summer</term>
|
||||
<term name="season-03">Autumn</term>
|
||||
<term name="season-04">Winter</term>
|
||||
</terms>
|
||||
</locale>
|
||||
Vendored
+312
@@ -0,0 +1,312 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="ko-KR">
|
||||
<info>
|
||||
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
|
||||
<updated>2012-07-04T23:31:02+00:00</updated>
|
||||
</info>
|
||||
<style-options punctuation-in-quote="false"/>
|
||||
<date form="text">
|
||||
<date-part name="year" suffix="년"/>
|
||||
<date-part name="month" form="numeric" prefix=" " suffix="월"/>
|
||||
<date-part name="day" prefix=" " suffix="일"/>
|
||||
</date>
|
||||
<date form="numeric">
|
||||
<date-part name="year"/>
|
||||
<date-part name="month" form="numeric-leading-zeros" prefix="/"/>
|
||||
<date-part name="day" form="numeric-leading-zeros" prefix="/"/>
|
||||
</date>
|
||||
<terms>
|
||||
<term name="accessed">접근된</term>
|
||||
<term name="and">와/과</term>
|
||||
<term name="and others">and others</term>
|
||||
<term name="anonymous">anonymous</term>
|
||||
<term name="anonymous" form="short">anon</term>
|
||||
<term name="at">at</term>
|
||||
<term name="available at">available at</term>
|
||||
<term name="by">by</term>
|
||||
<term name="circa">circa</term>
|
||||
<term name="circa" form="short">c.</term>
|
||||
<term name="cited">cited</term>
|
||||
<term name="edition">
|
||||
<single>edition</single>
|
||||
<multiple>editions</multiple>
|
||||
</term>
|
||||
<term name="edition" form="short">ed</term>
|
||||
<term name="et-al">기타</term>
|
||||
<term name="forthcoming">근간</term>
|
||||
<term name="from">(으)로부터</term>
|
||||
<term name="ibid">ibid.</term>
|
||||
<term name="in">in</term>
|
||||
<term name="in press">in press</term>
|
||||
<term name="internet">internet</term>
|
||||
<term name="interview">interview</term>
|
||||
<term name="letter">letter</term>
|
||||
<term name="no date">no date</term>
|
||||
<term name="no date" form="short">일자 없음</term>
|
||||
<term name="online">online</term>
|
||||
<term name="presented at">presented at the</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="retrieved">retrieved</term>
|
||||
<term name="scale">scale</term>
|
||||
<term name="version">version</term>
|
||||
|
||||
<!-- ANNO DOMINI; BEFORE CHRIST -->
|
||||
<term name="ad">AD</term>
|
||||
<term name="bc">BC</term>
|
||||
|
||||
<!-- PUNCTUATION -->
|
||||
<term name="open-quote">“</term>
|
||||
<term name="close-quote">”</term>
|
||||
<term name="open-inner-quote">‘</term>
|
||||
<term name="close-inner-quote">’</term>
|
||||
<term name="page-range-delimiter">–</term>
|
||||
|
||||
<!-- ORDINALS -->
|
||||
<term name="ordinal">th</term>
|
||||
<term name="ordinal-01">st</term>
|
||||
<term name="ordinal-02">nd</term>
|
||||
<term name="ordinal-03">rd</term>
|
||||
<term name="ordinal-11">th</term>
|
||||
<term name="ordinal-12">th</term>
|
||||
<term name="ordinal-13">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>
|
||||
|
||||
<!-- LONG LOCATOR FORMS -->
|
||||
<term name="book">
|
||||
<single>book</single>
|
||||
<multiple>books</multiple>
|
||||
</term>
|
||||
<term name="chapter">
|
||||
<single>chapter</single>
|
||||
<multiple>chapters</multiple>
|
||||
</term>
|
||||
<term name="column">
|
||||
<single>column</single>
|
||||
<multiple>columns</multiple>
|
||||
</term>
|
||||
<term name="figure">
|
||||
<single>figure</single>
|
||||
<multiple>figures</multiple>
|
||||
</term>
|
||||
<term name="folio">
|
||||
<single>folio</single>
|
||||
<multiple>folios</multiple>
|
||||
</term>
|
||||
<term name="issue">
|
||||
<single>number</single>
|
||||
<multiple>numbers</multiple>
|
||||
</term>
|
||||
<term name="line">
|
||||
<single>행</single>
|
||||
<multiple>행</multiple>
|
||||
</term>
|
||||
<term name="note">
|
||||
<single>note</single>
|
||||
<multiple>notes</multiple>
|
||||
</term>
|
||||
<term name="opus">
|
||||
<single>opus</single>
|
||||
<multiple>opera</multiple>
|
||||
</term>
|
||||
<term name="page">
|
||||
<single>페이지</single>
|
||||
<multiple>페이지</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages">
|
||||
<single>페이지</single>
|
||||
<multiple>페이지</multiple>
|
||||
</term>
|
||||
<term name="paragraph">
|
||||
<single>단락</single>
|
||||
<multiple>단락</multiple>
|
||||
</term>
|
||||
<term name="part">
|
||||
<single>part</single>
|
||||
<multiple>parts</multiple>
|
||||
</term>
|
||||
<term name="section">
|
||||
<single>section</single>
|
||||
<multiple>sections</multiple>
|
||||
</term>
|
||||
<term name="sub verbo">
|
||||
<single>sub verbo</single>
|
||||
<multiple>sub verbis</multiple>
|
||||
</term>
|
||||
<term name="verse">
|
||||
<single>verse</single>
|
||||
<multiple>verses</multiple>
|
||||
</term>
|
||||
<term name="volume">
|
||||
<single>volume</single>
|
||||
<multiple>volumes</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT LOCATOR FORMS -->
|
||||
<term name="book" form="short">bk</term>
|
||||
<term name="chapter" form="short">chap</term>
|
||||
<term name="column" form="short">col</term>
|
||||
<term name="figure" form="short">fig</term>
|
||||
<term name="folio" form="short">f</term>
|
||||
<term name="issue" form="short">호</term>
|
||||
<term name="line" form="short">l.</term>
|
||||
<term name="note" form="short">n.</term>
|
||||
<term name="opus" form="short">op</term>
|
||||
<term name="page" form="short">
|
||||
<single>p</single>
|
||||
<multiple>pp</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages" form="short">
|
||||
<single>p</single>
|
||||
<multiple>pp</multiple>
|
||||
</term>
|
||||
<term name="paragraph" form="short">para</term>
|
||||
<term name="part" form="short">pt</term>
|
||||
<term name="section" form="short">sec</term>
|
||||
<term name="sub verbo" form="short">
|
||||
<single>s.v.</single>
|
||||
<multiple>s.vv.</multiple>
|
||||
</term>
|
||||
<term name="verse" form="short">
|
||||
<single>v</single>
|
||||
<multiple>vv</multiple>
|
||||
</term>
|
||||
<term name="volume" form="short">
|
||||
<single>vol</single>
|
||||
<multiple>vols</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶¶</multiple>
|
||||
</term>
|
||||
<term name="section" form="symbol">
|
||||
<single>§</single>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="director">
|
||||
<single>director</single>
|
||||
<multiple>directors</multiple>
|
||||
</term>
|
||||
<term name="editor">
|
||||
<single>편집자</single>
|
||||
<multiple>편집자</multiple>
|
||||
</term>
|
||||
<term name="editorial-director">
|
||||
<single>editor</single>
|
||||
<multiple>editors</multiple>
|
||||
</term>
|
||||
<term name="illustrator">
|
||||
<single>illustrator</single>
|
||||
<multiple>illustrators</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="director" form="short">
|
||||
<single>dir.</single>
|
||||
<multiple>dirs.</multiple>
|
||||
</term>
|
||||
<term name="editor" form="short">
|
||||
<single>편집자</single>
|
||||
<multiple>편집자</multiple>
|
||||
</term>
|
||||
<term name="editorial-director" form="short">
|
||||
<single>ed.</single>
|
||||
<multiple>eds.</multiple>
|
||||
</term>
|
||||
<term name="illustrator" form="short">
|
||||
<single>ill.</single>
|
||||
<multiple>ills.</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="container-author" form="verb">by</term>
|
||||
<term name="director" form="verb">directed by</term>
|
||||
<term name="editor" form="verb">편집자:</term>
|
||||
<term name="editorial-director" form="verb">edited by</term>
|
||||
<term name="illustrator" form="verb">illustrated by</term>
|
||||
<term name="interviewer" form="verb">interview by</term>
|
||||
<term name="recipient" form="verb">to</term>
|
||||
<term name="reviewed-author" form="verb">by</term>
|
||||
<term name="translator" form="verb">번역자:</term>
|
||||
<term name="editortranslator" form="verb">edited & translated by</term>
|
||||
|
||||
<!-- SHORT VERB ROLE FORMS -->
|
||||
<term name="director" form="verb-short">dir.</term>
|
||||
<term name="editor" form="verb-short">ed</term>
|
||||
<term name="editorial-director" form="verb-short">ed.</term>
|
||||
<term name="illustrator" form="verb-short">illus.</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>
|
||||
<term name="month-04">4월</term>
|
||||
<term name="month-05">5월</term>
|
||||
<term name="month-06">6월</term>
|
||||
<term name="month-07">7월</term>
|
||||
<term name="month-08">8월</term>
|
||||
<term name="month-09">9월</term>
|
||||
<term name="month-10">10월</term>
|
||||
<term name="month-11">11월</term>
|
||||
<term name="month-12">12월</term>
|
||||
|
||||
<!-- SHORT MONTH FORMS -->
|
||||
<term name="month-01" form="short">1</term>
|
||||
<term name="month-02" form="short">2</term>
|
||||
<term name="month-03" form="short">3</term>
|
||||
<term name="month-04" form="short">4</term>
|
||||
<term name="month-05" form="short">5</term>
|
||||
<term name="month-06" form="short">6</term>
|
||||
<term name="month-07" form="short">7</term>
|
||||
<term name="month-08" form="short">8</term>
|
||||
<term name="month-09" form="short">9</term>
|
||||
<term name="month-10" form="short">10</term>
|
||||
<term name="month-11" form="short">11</term>
|
||||
<term name="month-12" form="short">12</term>
|
||||
|
||||
<!-- SEASONS -->
|
||||
<term name="season-01">Spring</term>
|
||||
<term name="season-02">Summer</term>
|
||||
<term name="season-03">Autumn</term>
|
||||
<term name="season-04">Winter</term>
|
||||
</terms>
|
||||
</locale>
|
||||
Vendored
+309
@@ -0,0 +1,309 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="la">
|
||||
<info>
|
||||
<translator>
|
||||
<name>Andrew Dunning</name>
|
||||
</translator>
|
||||
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
|
||||
<updated>2019-01-21T13:33:33+00:00</updated>
|
||||
</info>
|
||||
<style-options punctuation-in-quote="false"/>
|
||||
<date form="text">
|
||||
<date-part name="day" suffix=" "/>
|
||||
<date-part name="month" suffix=" "/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<date form="numeric">
|
||||
<date-part name="day" form="numeric-leading-zeros" suffix="/"/>
|
||||
<date-part name="month" form="numeric-leading-zeros" suffix="/"/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<terms>
|
||||
<term name="accessed">consultatus</term>
|
||||
<term name="and">et</term>
|
||||
<term name="and others">et alii</term>
|
||||
<term name="anonymous">anonymus</term>
|
||||
<term name="anonymous" form="short">anon.</term>
|
||||
<term name="at">ad</term>
|
||||
<term name="available at">praestatus ad</term>
|
||||
<term name="by">a</term>
|
||||
<term name="circa">circa</term>
|
||||
<term name="circa" form="short">c.</term>
|
||||
<term name="cited">citatus</term>
|
||||
<term name="edition">
|
||||
<single>editio</single>
|
||||
<multiple>editiones</multiple>
|
||||
</term>
|
||||
<term name="edition" form="short">ed.</term>
|
||||
<term name="et-al">et al.</term>
|
||||
<term name="forthcoming">futurus</term>
|
||||
<term name="from">ab</term>
|
||||
<term name="ibid">ibid.</term>
|
||||
<term name="in">in</term>
|
||||
<term name="in press">impressorio</term>
|
||||
<term name="internet">interrete</term>
|
||||
<term name="interview">congressus</term>
|
||||
<term name="letter">epistula</term>
|
||||
<term name="no date">sine die</term>
|
||||
<term name="no date" form="short">s.d.</term>
|
||||
<term name="online">in linea</term>
|
||||
<term name="presented at">praebitus ad</term>
|
||||
<term name="reference">
|
||||
<single>relatio</single>
|
||||
<multiple>relationes</multiple>
|
||||
</term>
|
||||
<term name="reference" form="short">
|
||||
<single>rel.</single>
|
||||
<multiple>rell.</multiple>
|
||||
</term>
|
||||
<term name="retrieved">recuperatus</term>
|
||||
<term name="scale">scala</term>
|
||||
<term name="version">uersio</term>
|
||||
|
||||
<!-- ANNO DOMINI; BEFORE CHRIST -->
|
||||
<term name="ad">A.D.</term>
|
||||
<term name="bc">A.C.</term>
|
||||
|
||||
<!-- PUNCTUATION -->
|
||||
<term name="open-quote">‘</term>
|
||||
<term name="close-quote">’</term>
|
||||
<term name="open-inner-quote">“</term>
|
||||
<term name="close-inner-quote">”</term>
|
||||
<term name="page-range-delimiter">–</term>
|
||||
|
||||
<!-- ORDINALS -->
|
||||
<term name="ordinal">º</term>
|
||||
|
||||
<!-- LONG ORDINALS -->
|
||||
<term name="long-ordinal-01">primus</term>
|
||||
<term name="long-ordinal-02">secundus</term>
|
||||
<term name="long-ordinal-03">tertius</term>
|
||||
<term name="long-ordinal-04">quartus</term>
|
||||
<term name="long-ordinal-05">quintus</term>
|
||||
<term name="long-ordinal-06">sextus</term>
|
||||
<term name="long-ordinal-07">septimus</term>
|
||||
<term name="long-ordinal-08">octauus</term>
|
||||
<term name="long-ordinal-09">nonus</term>
|
||||
<term name="long-ordinal-10">decimus</term>
|
||||
|
||||
<!-- LONG LOCATOR FORMS -->
|
||||
<term name="book">
|
||||
<single>liber</single>
|
||||
<multiple>libri</multiple>
|
||||
</term>
|
||||
<term name="chapter">
|
||||
<single>capitulum</single>
|
||||
<multiple>capitula</multiple>
|
||||
</term>
|
||||
<term name="column">
|
||||
<single>columna</single>
|
||||
<multiple>columnae</multiple>
|
||||
</term>
|
||||
<term name="figure">
|
||||
<single>figura</single>
|
||||
<multiple>figurae</multiple>
|
||||
</term>
|
||||
<term name="folio">
|
||||
<single>folium</single>
|
||||
<multiple>folii</multiple>
|
||||
</term>
|
||||
<term name="issue">
|
||||
<single>numerus</single>
|
||||
<multiple>numeri</multiple>
|
||||
</term>
|
||||
<term name="line">
|
||||
<single>linea</single>
|
||||
<multiple>lineae</multiple>
|
||||
</term>
|
||||
<term name="note">
|
||||
<single>nota</single>
|
||||
<multiple>notae</multiple>
|
||||
</term>
|
||||
<term name="opus">
|
||||
<single>opus</single>
|
||||
<multiple>opera</multiple>
|
||||
</term>
|
||||
<term name="page">
|
||||
<single>pagina</single>
|
||||
<multiple>paginae</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages">
|
||||
<single>pagina</single>
|
||||
<multiple>paginae</multiple>
|
||||
</term>
|
||||
<term name="paragraph">
|
||||
<single>paragraphus</single>
|
||||
<multiple>paragraphi</multiple>
|
||||
</term>
|
||||
<term name="part">
|
||||
<single>pars</single>
|
||||
<multiple>partes</multiple>
|
||||
</term>
|
||||
<term name="section">
|
||||
<single>paragraphus</single>
|
||||
<multiple>paragraphi</multiple>
|
||||
</term>
|
||||
<term name="sub verbo">
|
||||
<single>sub uerbo</single>
|
||||
<multiple>sub uerbis</multiple>
|
||||
</term>
|
||||
<term name="verse">
|
||||
<single>versus</single>
|
||||
<multiple>versus</multiple>
|
||||
</term>
|
||||
<term name="volume">
|
||||
<single>tomus</single>
|
||||
<multiple>tomi</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT LOCATOR FORMS -->
|
||||
<term name="book" form="short">lib.</term>
|
||||
<term name="chapter" form="short">cap.</term>
|
||||
<term name="column" form="short">col.</term>
|
||||
<term name="figure" form="short">fig.</term>
|
||||
<term name="folio" form="short">fol.</term>
|
||||
<term name="issue" form="short">n.</term>
|
||||
<term name="line" form="short">l.</term>
|
||||
<term name="note" form="short">n.</term>
|
||||
<term name="opus" form="short">op.</term>
|
||||
<term name="page" form="short">
|
||||
<single>p.</single>
|
||||
<multiple>pp.</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages" form="short">
|
||||
<single>p.</single>
|
||||
<multiple>pp.</multiple>
|
||||
</term>
|
||||
<term name="paragraph" form="short">par.</term>
|
||||
<term name="part" form="short">pr.</term>
|
||||
<term name="section" form="short">par.</term>
|
||||
<term name="sub verbo" form="short">
|
||||
<single>s.u.</single>
|
||||
<multiple>s.uu.</multiple>
|
||||
</term>
|
||||
<term name="verse" form="short">
|
||||
<single>u.</single>
|
||||
<multiple>uu.</multiple>
|
||||
</term>
|
||||
<term name="volume" form="short">
|
||||
<single>t.</single>
|
||||
<multiple>tt.</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶¶</multiple>
|
||||
</term>
|
||||
<term name="section" form="symbol">
|
||||
<single>§</single>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="director">
|
||||
<single>director</single>
|
||||
<multiple>directores</multiple>
|
||||
</term>
|
||||
<term name="editor">
|
||||
<single>curator</single>
|
||||
<multiple>curatores</multiple>
|
||||
</term>
|
||||
<term name="editorial-director">
|
||||
<single>editor</single>
|
||||
<multiple>editores</multiple>
|
||||
</term>
|
||||
<term name="illustrator">
|
||||
<single>illustrator</single>
|
||||
<multiple>illustratores</multiple>
|
||||
</term>
|
||||
<term name="translator">
|
||||
<single>interpres</single>
|
||||
<multiple>interpretes</multiple>
|
||||
</term>
|
||||
<term name="editortranslator">
|
||||
<single>curator et interpres</single>
|
||||
<multiple>curatores et interpretes</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="director" form="short">
|
||||
<single>dir.</single>
|
||||
<multiple>dirs.</multiple>
|
||||
</term>
|
||||
<term name="editor" form="short">
|
||||
<single>cur.</single>
|
||||
<multiple>curs.</multiple>
|
||||
</term>
|
||||
<term name="editorial-director" form="short">
|
||||
<single>ed.</single>
|
||||
<multiple>eds.</multiple>
|
||||
</term>
|
||||
<term name="illustrator" form="short">
|
||||
<single>ill.</single>
|
||||
<multiple>ills.</multiple>
|
||||
</term>
|
||||
<term name="translator" form="short">
|
||||
<single>interp.</single>
|
||||
<multiple>interps.</multiple>
|
||||
</term>
|
||||
<term name="editortranslator" form="short">
|
||||
<single>cur. et interp.</single>
|
||||
<multiple>curs. et interps.</multiple>
|
||||
</term>
|
||||
|
||||
<!-- VERB ROLE FORMS -->
|
||||
<term name="container-author" form="verb">a</term>
|
||||
<term name="director" form="verb">a directione</term>
|
||||
<term name="editor" form="verb">a cura</term>
|
||||
<term name="editorial-director" form="verb">ab editione</term>
|
||||
<term name="illustrator" form="verb">ab illustratione</term>
|
||||
<term name="interviewer" form="verb">a congressione</term>
|
||||
<term name="recipient" form="verb">a</term>
|
||||
<term name="reviewed-author" form="verb">a</term>
|
||||
<term name="translator" form="verb">a interpretatione</term>
|
||||
<term name="editortranslator" form="verb">a cura et interpretatione</term>
|
||||
|
||||
<!-- SHORT VERB ROLE FORMS -->
|
||||
<term name="director" form="verb-short">dir.</term>
|
||||
<term name="editor" form="verb-short">cur.</term>
|
||||
<term name="editorial-director" form="verb-short">ed.</term>
|
||||
<term name="illustrator" form="verb-short">illus.</term>
|
||||
<term name="translator" form="verb-short">interp.</term>
|
||||
<term name="editortranslator" form="verb-short">a cur. et interp.</term>
|
||||
|
||||
<!-- LONG MONTH FORMS -->
|
||||
<term name="month-01">ianuarius</term>
|
||||
<term name="month-02">februarius</term>
|
||||
<term name="month-03">martius</term>
|
||||
<term name="month-04">aprilis</term>
|
||||
<term name="month-05">maius</term>
|
||||
<term name="month-06">iunius</term>
|
||||
<term name="month-07">iulius</term>
|
||||
<term name="month-08">augustus</term>
|
||||
<term name="month-09">september</term>
|
||||
<term name="month-10">october</term>
|
||||
<term name="month-11">nouember</term>
|
||||
<term name="month-12">december</term>
|
||||
|
||||
<!-- SHORT MONTH FORMS -->
|
||||
<term name="month-01" form="short">ian.</term>
|
||||
<term name="month-02" form="short">feb.</term>
|
||||
<term name="month-03" form="short">mar.</term>
|
||||
<term name="month-04" form="short">apr.</term>
|
||||
<term name="month-05" form="short">mai.</term>
|
||||
<term name="month-06" form="short">iun.</term>
|
||||
<term name="month-07" form="short">iul.</term>
|
||||
<term name="month-08" form="short">aug.</term>
|
||||
<term name="month-09" form="short">sep.</term>
|
||||
<term name="month-10" form="short">oct.</term>
|
||||
<term name="month-11" form="short">nou.</term>
|
||||
<term name="month-12" form="short">dec.</term>
|
||||
|
||||
<!-- SEASONS -->
|
||||
<term name="season-01">uer</term>
|
||||
<term name="season-02">aestas</term>
|
||||
<term name="season-03">autumnus</term>
|
||||
<term name="season-04">hiems</term>
|
||||
</terms>
|
||||
</locale>
|
||||
Vendored
+328
@@ -0,0 +1,328 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="lt-LT">
|
||||
<info>
|
||||
<translator>
|
||||
<name>Valdemaras Klumbys</name>
|
||||
</translator>
|
||||
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
|
||||
<updated>2017-01-18T10:31:02+00:00</updated>
|
||||
</info>
|
||||
<style-options punctuation-in-quote="false"/>
|
||||
<date form="text" delimiter=" ">
|
||||
<!-- "2011 m. lapkričio 1 d." -->
|
||||
<date-part name="year" suffix=" m."/>
|
||||
<date-part name="month"/>
|
||||
<date-part name="day" form="numeric" suffix=" d."/>
|
||||
</date>
|
||||
<date form="numeric" delimiter="-">
|
||||
<!-- "2011-11-01" -->
|
||||
<date-part name="year"/>
|
||||
<date-part name="month" form="numeric-leading-zeros"/>
|
||||
<date-part name="day" form="numeric-leading-zeros"/>
|
||||
</date>
|
||||
<terms>
|
||||
<term name="accessed">žiūrėta</term>
|
||||
<term name="and">ir</term>
|
||||
<term name="and others">ir kt.</term>
|
||||
<term name="anonymous">anonimas</term>
|
||||
<term name="anonymous" form="short">anon.</term>
|
||||
<term name="at"></term>
|
||||
<term name="available at">adresas</term>
|
||||
<term name="by"></term>
|
||||
<term name="circa">apie</term>
|
||||
<term name="circa" form="short">apie</term>
|
||||
<term name="cited">žiūrėta</term>
|
||||
<term name="edition" gender="masculine">
|
||||
<single>leidimas</single>
|
||||
<multiple>leidimai</multiple>
|
||||
</term>
|
||||
<term name="edition" form="short">leid.</term>
|
||||
<term name="et-al">ir kt.</term>
|
||||
<term name="forthcoming">ruošiamas</term>
|
||||
<term name="from"></term>
|
||||
<term name="ibid">ten pat</term>
|
||||
<term name="in"></term>
|
||||
<term name="in press">priimta spaudai</term>
|
||||
<term name="internet">prieiga per internetą</term>
|
||||
<term name="interview">interviu</term>
|
||||
<term name="letter">laiškas</term>
|
||||
<term name="no date">sine anno</term>
|
||||
<term name="no date" form="short">s.a.</term>
|
||||
<term name="online">interaktyvus</term>
|
||||
<term name="presented at">pristatytas</term>
|
||||
<term name="reference">
|
||||
<single>nuoroda</single>
|
||||
<multiple>nuorodos</multiple>
|
||||
</term>
|
||||
<term name="reference" form="short">
|
||||
<single>nuor.</single>
|
||||
<multiple>nuor.</multiple>
|
||||
</term>
|
||||
<term name="retrieved">gauta</term>
|
||||
<term name="scale">mastelis</term>
|
||||
<term name="version">versija</term>
|
||||
|
||||
<!-- ANNO DOMINI; BEFORE CHRIST -->
|
||||
<term name="ad">po Kr.</term>
|
||||
<term name="bc">pr. Kr.</term>
|
||||
|
||||
<!-- PUNCTUATION -->
|
||||
<term name="open-quote">„</term>
|
||||
<term name="close-quote">“</term>
|
||||
<term name="open-inner-quote">,</term>
|
||||
<term name="close-inner-quote">‘</term>
|
||||
<term name="page-range-delimiter">–</term>
|
||||
|
||||
<!-- ORDINALS -->
|
||||
<term name="ordinal">-asis</term>
|
||||
<term name="ordinal" gender-form="masculine">-asis</term>
|
||||
<term name="ordinal" gender-form="feminine">-oji</term>
|
||||
<term name="ordinal-03" gender-form="masculine">-iasis</term>
|
||||
<term name="ordinal-13" gender-form="masculine">-asis</term>
|
||||
<term name="ordinal-03" gender-form="feminine">-ioji</term>
|
||||
<term name="ordinal-13" gender-form="feminine">-oji</term>
|
||||
|
||||
<!-- LONG ORDINALS -->
|
||||
<term name="long-ordinal-01">pirmasis</term>
|
||||
<term name="long-ordinal-02">antrasis</term>
|
||||
<term name="long-ordinal-03">trečiasis</term>
|
||||
<term name="long-ordinal-04">ketvirtasis</term>
|
||||
<term name="long-ordinal-05">penktasis</term>
|
||||
<term name="long-ordinal-06">šeštasis</term>
|
||||
<term name="long-ordinal-07">septintasis</term>
|
||||
<term name="long-ordinal-08">aštuntasis</term>
|
||||
<term name="long-ordinal-09">devintasis</term>
|
||||
<term name="long-ordinal-10">dešimtasis</term>
|
||||
|
||||
<term name="long-ordinal-01" gender-form="feminine">pirmoji</term>
|
||||
<term name="long-ordinal-02" gender-form="feminine">antroji</term>
|
||||
<term name="long-ordinal-03" gender-form="feminine">trečioji</term>
|
||||
<term name="long-ordinal-04" gender-form="feminine">ketvirtoji</term>
|
||||
<term name="long-ordinal-05" gender-form="feminine">penktoji</term>
|
||||
<term name="long-ordinal-06" gender-form="feminine">šeštoji</term>
|
||||
<term name="long-ordinal-07" gender-form="feminine">septintoji</term>
|
||||
<term name="long-ordinal-08" gender-form="feminine">aštuntoji</term>
|
||||
<term name="long-ordinal-09" gender-form="feminine">devintoji</term>
|
||||
<term name="long-ordinal-10" gender-form="feminine">dešimtoji</term>
|
||||
|
||||
<!-- LONG LOCATOR FORMS -->
|
||||
<term name="book">
|
||||
<single>knyga</single>
|
||||
<multiple>knygos</multiple>
|
||||
</term>
|
||||
<term name="chapter">
|
||||
<single>skyrius</single>
|
||||
<multiple>skyriai</multiple>
|
||||
</term>
|
||||
<term name="column">
|
||||
<single>skiltis</single>
|
||||
<multiple>skiltys</multiple>
|
||||
</term>
|
||||
<term name="figure">
|
||||
<single>iliustracija</single>
|
||||
<multiple>iliustracijos</multiple>
|
||||
</term>
|
||||
<term name="folio">
|
||||
<single>lapas</single>
|
||||
<multiple>lapai</multiple>
|
||||
</term>
|
||||
<term name="issue" gender="masculine">
|
||||
<single>numeris</single>
|
||||
<multiple>numeriai</multiple>
|
||||
</term>
|
||||
<term name="line">
|
||||
<single>eilutė</single>
|
||||
<multiple>eilutės</multiple>
|
||||
</term>
|
||||
<term name="note">
|
||||
<single>pastaba</single>
|
||||
<multiple>pastabos</multiple>
|
||||
</term>
|
||||
<term name="opus">
|
||||
<single>kūrinys</single>
|
||||
<multiple>kūriniai</multiple>
|
||||
</term>
|
||||
<term name="page">
|
||||
<single>puslapis</single>
|
||||
<multiple>puslapiai</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages" gender="masculine">
|
||||
<single>puslapis</single>
|
||||
<multiple>puslapiai</multiple>
|
||||
</term>
|
||||
<term name="paragraph">
|
||||
<single>pastraipa</single>
|
||||
<multiple>pastraipos</multiple>
|
||||
</term>
|
||||
<term name="part">
|
||||
<single>dalis</single>
|
||||
<multiple>dalys</multiple>
|
||||
</term>
|
||||
<term name="section">
|
||||
<single>poskyris</single>
|
||||
<multiple>poskyriai</multiple>
|
||||
</term>
|
||||
<term name="sub verbo">
|
||||
<single>žiūrėk</single>
|
||||
<multiple>žiūrėk</multiple>
|
||||
</term>
|
||||
<term name="verse">
|
||||
<single>eilėraštis</single>
|
||||
<multiple>eilėraščiai</multiple>
|
||||
</term>
|
||||
<term name="volume" gender="masculine">
|
||||
<single>tomas</single>
|
||||
<multiple>tomai</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT LOCATOR FORMS -->
|
||||
<term name="book" form="short">kn.</term>
|
||||
<term name="chapter" form="short">sk.</term>
|
||||
<term name="column" form="short">skilt.</term>
|
||||
<term name="figure" form="short">il.</term>
|
||||
<term name="folio" form="short">l.</term>
|
||||
<term name="issue" form="short">nr.</term>
|
||||
<term name="line" form="short">eil.</term>
|
||||
<term name="note" form="short">pstb.</term>
|
||||
<term name="opus" form="short">kūr.</term>
|
||||
<term name="page" form="short">
|
||||
<single>p.</single>
|
||||
<multiple>p.</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages" form="short">
|
||||
<single>p.</single>
|
||||
<multiple>p.</multiple>
|
||||
</term>
|
||||
<term name="paragraph" form="short">pastr.</term>
|
||||
<term name="part" form="short">d.</term>
|
||||
<term name="section" form="short">posk.</term>
|
||||
<term name="sub verbo" form="short">
|
||||
<single>žr.</single>
|
||||
<multiple>žr.</multiple>
|
||||
</term>
|
||||
<term name="verse" form="short">
|
||||
<single>eilėr.</single>
|
||||
<multiple>eilėr.</multiple>
|
||||
</term>
|
||||
<term name="volume" form="short">
|
||||
<single>t.</single>
|
||||
<multiple>t.</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶¶</multiple>
|
||||
</term>
|
||||
<term name="section" form="symbol">
|
||||
<single>§</single>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="director">
|
||||
<single>vadovas</single>
|
||||
<multiple>vadovai</multiple>
|
||||
</term>
|
||||
<term name="editor">
|
||||
<single>sudarytojas</single>
|
||||
<multiple>sudarytojai</multiple>
|
||||
</term>
|
||||
<term name="editorial-director">
|
||||
<single>atsakingasis redaktorius</single>
|
||||
<multiple>atsakingieji redaktoriai</multiple>
|
||||
</term>
|
||||
<term name="illustrator">
|
||||
<single>iliustratorius</single>
|
||||
<multiple>iliustratoriai</multiple>
|
||||
</term>
|
||||
<term name="translator">
|
||||
<single>vertėjas</single>
|
||||
<multiple>vertėjai</multiple>
|
||||
</term>
|
||||
<term name="editortranslator">
|
||||
<single>sudarytojas ir vertėjas</single>
|
||||
<multiple>sudarytojai ir vertėjai</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="director" form="short">
|
||||
<single>vad.</single>
|
||||
<multiple>vad.</multiple>
|
||||
</term>
|
||||
<term name="editor" form="short">
|
||||
<single>sud.</single>
|
||||
<multiple>sud.</multiple>
|
||||
</term>
|
||||
<term name="editorial-director" form="short">
|
||||
<single>ats. red.</single>
|
||||
<multiple>ats. red.</multiple>
|
||||
</term>
|
||||
<term name="illustrator" form="short">
|
||||
<single>iliustr.</single>
|
||||
<multiple>iliustr.</multiple>
|
||||
</term>
|
||||
<term name="translator" form="short">
|
||||
<single>vert.</single>
|
||||
<multiple>vert.</multiple>
|
||||
</term>
|
||||
<term name="editortranslator" form="short">
|
||||
<single>sud. ir vert.</single>
|
||||
<multiple>sud. ir vert.</multiple>
|
||||
</term>
|
||||
|
||||
<!-- VERB ROLE FORMS -->
|
||||
<term name="container-author" form="verb"></term>
|
||||
<term name="director" form="verb">vadovavo</term>
|
||||
<term name="editor" form="verb">sudarė</term>
|
||||
<term name="editorial-director" form="verb">parengė</term>
|
||||
<term name="illustrator" form="verb">iliustravo</term>
|
||||
<term name="interviewer" form="verb">interviu ėmė</term>
|
||||
<term name="recipient" form="verb">gavo</term>
|
||||
<term name="reviewed-author" form="verb">recenzavo</term>
|
||||
<term name="translator" form="verb">vertė</term>
|
||||
<term name="editortranslator" form="verb">sudarė ir vertė</term>
|
||||
|
||||
<!-- SHORT VERB ROLE FORMS -->
|
||||
<term name="director" form="verb-short">vad.</term>
|
||||
<term name="editor" form="verb-short">sud.</term>
|
||||
<term name="editorial-director" form="verb-short">pareng.</term>
|
||||
<term name="illustrator" form="verb-short">iliustr.</term>
|
||||
<term name="translator" form="verb-short">vert.</term>
|
||||
<term name="editortranslator" form="verb-short">sud. ir vert.</term>
|
||||
|
||||
<!-- LONG MONTH FORMS -->
|
||||
<term name="month-01">sausio</term>
|
||||
<term name="month-02">vasario</term>
|
||||
<term name="month-03">kovo</term>
|
||||
<term name="month-04">balandžio</term>
|
||||
<term name="month-05">gegužės</term>
|
||||
<term name="month-06">birželio</term>
|
||||
<term name="month-07">liepos</term>
|
||||
<term name="month-08">rugpjūčio</term>
|
||||
<term name="month-09">rugsėjo</term>
|
||||
<term name="month-10">spalio</term>
|
||||
<term name="month-11">lapkričio</term>
|
||||
<term name="month-12">gruodžio</term>
|
||||
|
||||
<!-- SHORT MONTH FORMS -->
|
||||
<term name="month-01" form="short">saus.</term>
|
||||
<term name="month-02" form="short">vas.</term>
|
||||
<term name="month-03" form="short">kovo</term>
|
||||
<term name="month-04" form="short">bal.</term>
|
||||
<term name="month-05" form="short">geg.</term>
|
||||
<term name="month-06" form="short">birž.</term>
|
||||
<term name="month-07" form="short">liep.</term>
|
||||
<term name="month-08" form="short">rugpj.</term>
|
||||
<term name="month-09" form="short">rugs.</term>
|
||||
<term name="month-10" form="short">spal.</term>
|
||||
<term name="month-11" form="short">lapkr.</term>
|
||||
<term name="month-12" form="short">gruodž.</term>
|
||||
|
||||
<!-- SEASONS -->
|
||||
<term name="season-01">pavasaris</term>
|
||||
<term name="season-02">vasara</term>
|
||||
<term name="season-03">ruduo</term>
|
||||
<term name="season-04">žiema</term>
|
||||
</terms>
|
||||
</locale>
|
||||
Vendored
+361
@@ -0,0 +1,361 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="lv-LV">
|
||||
<info>
|
||||
<translator>
|
||||
<name>Andris Lupgins</name>
|
||||
</translator>
|
||||
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
|
||||
<updated>2012-12-27T11:40:58+02:00</updated>
|
||||
</info>
|
||||
<style-options punctuation-in-quote="false"/>
|
||||
<date form="text" delimiter=" ">
|
||||
<!-- "2012. gada 28. martā" -->
|
||||
<date-part name="year" suffix=". gada"/>
|
||||
<date-part name="day" form="numeric" suffix="."/>
|
||||
<date-part name="month"/>
|
||||
</date>
|
||||
<date form="numeric" delimiter=".">
|
||||
<!-- "28.03.2012." -->
|
||||
<date-part name="day" form="numeric"/>
|
||||
<date-part name="month" form="numeric"/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<terms>
|
||||
<term name="accessed">skatīts</term>
|
||||
<term name="ad">m.ē.</term>
|
||||
<term name="and">un</term>
|
||||
<term name="and others">un citi</term>
|
||||
<term name="anonymous">anonīms</term>
|
||||
<term name="anonymous" form="short">anon.</term>
|
||||
<term name="at"></term>
|
||||
<term name="available at">pieejams</term>
|
||||
<term name="bc">p.m.ē.</term>
|
||||
<term name="by"></term>
|
||||
<term name="circa">apmēram</term>
|
||||
<term name="circa" form="short">apm.</term>
|
||||
<term name="cited">citēts</term>
|
||||
<term name="edition" gender="feminine">
|
||||
<single>redakcija</single>
|
||||
<multiple>redakcijas</multiple>
|
||||
</term>
|
||||
<term name="edition" form="short">red.</term>
|
||||
<term name="et-al">u.c.</term>
|
||||
<term name="forthcoming">gaidāms</term>
|
||||
<term name="from">no</term>
|
||||
<term name="ibid">turpat</term>
|
||||
<term name="in">no</term>
|
||||
<term name="in press">presē</term>
|
||||
<term name="internet">internets</term>
|
||||
<term name="interview">intervija</term>
|
||||
<term name="letter">vēstule</term>
|
||||
<term name="no date">bez datuma</term>
|
||||
<term name="no date" form="short">b.g.</term>
|
||||
<term name="online">tiešsaiste</term>
|
||||
<term name="presented at">iesniegts</term>
|
||||
<term name="reference">
|
||||
<single>atsauce</single>
|
||||
<multiple>atsauces</multiple>
|
||||
</term>
|
||||
<term name="reference" form="short">
|
||||
<single>ats.</single>
|
||||
<multiple>ats.</multiple>
|
||||
</term>
|
||||
<term name="retrieved">iegūts</term>
|
||||
<term name="scale">mērogs</term>
|
||||
<term name="version">versija</term>
|
||||
|
||||
<!-- PUNCTUATION -->
|
||||
<term name="open-quote">"</term>
|
||||
<term name="close-quote">"</term>
|
||||
<term name="open-inner-quote">"</term>
|
||||
<term name="close-inner-quote">"</term>
|
||||
<term name="page-range-delimiter">–</term>
|
||||
|
||||
<!-- ORDINALS -->
|
||||
<term name="ordinal">-ais</term>
|
||||
<term name="ordinal" gender-form="feminine">-ā</term>
|
||||
|
||||
<!-- LONG ORDINALS -->
|
||||
<term name="long-ordinal-01">pirmais</term>
|
||||
<term name="long-ordinal-02">otrais</term>
|
||||
<term name="long-ordinal-03">trešais</term>
|
||||
<term name="long-ordinal-04">ceturtais</term>
|
||||
<term name="long-ordinal-05">piektais</term>
|
||||
<term name="long-ordinal-06">sestais</term>
|
||||
<term name="long-ordinal-07">septītais</term>
|
||||
<term name="long-ordinal-08">astotais</term>
|
||||
<term name="long-ordinal-09">devītais</term>
|
||||
<term name="long-ordinal-10">desmitais</term>
|
||||
|
||||
<term name="long-ordinal-01" gender-form="feminine">pirmā</term>
|
||||
<term name="long-ordinal-02" gender-form="feminine">otrā</term>
|
||||
<term name="long-ordinal-03" gender-form="feminine">trešā</term>
|
||||
<term name="long-ordinal-04" gender-form="feminine">ceturtā</term>
|
||||
<term name="long-ordinal-05" gender-form="feminine">piektā</term>
|
||||
<term name="long-ordinal-06" gender-form="feminine">sestā</term>
|
||||
<term name="long-ordinal-07" gender-form="feminine">septītā</term>
|
||||
<term name="long-ordinal-08" gender-form="feminine">astotā</term>
|
||||
<term name="long-ordinal-09" gender-form="feminine">devītā</term>
|
||||
<term name="long-ordinal-10" gender-form="feminine">desmitā</term>
|
||||
|
||||
<!-- LONG LOCATOR FORMS -->
|
||||
<term name="book">
|
||||
<single>grāmata</single>
|
||||
<multiple>grāmatas</multiple>
|
||||
</term>
|
||||
<term name="chapter">
|
||||
<single>nodaļa</single>
|
||||
<multiple>nodaļas</multiple>
|
||||
</term>
|
||||
<term name="column">
|
||||
<single>sleja</single>
|
||||
<multiple>slejas</multiple>
|
||||
</term>
|
||||
<term name="figure">
|
||||
<single>ilustrācija</single>
|
||||
<multiple>ilustrācijas</multiple>
|
||||
</term>
|
||||
<term name="folio">
|
||||
<single>folio</single>
|
||||
<multiple>folio</multiple>
|
||||
</term>
|
||||
<term name="issue">
|
||||
<single>numurs</single>
|
||||
<multiple>numuri</multiple>
|
||||
</term>
|
||||
<term name="line">
|
||||
<single>rinda</single>
|
||||
<multiple>rindas</multiple>
|
||||
</term>
|
||||
<term name="note">
|
||||
<single>piezīme</single>
|
||||
<multiple>piezīmes</multiple>
|
||||
</term>
|
||||
<term name="opus">
|
||||
<single>opuss</single>
|
||||
<multiple>opusi</multiple>
|
||||
</term>
|
||||
<term name="page">
|
||||
<single>lappuse</single>
|
||||
<multiple>lappuses</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages">
|
||||
<single>lappuse</single>
|
||||
<multiple>lappuses</multiple>
|
||||
</term>
|
||||
<term name="paragraph">
|
||||
<single>rindkopa</single>
|
||||
<multiple>rindkopas</multiple>
|
||||
</term>
|
||||
<term name="part">
|
||||
<single>daļa</single>
|
||||
<multiple>daļas</multiple>
|
||||
</term>
|
||||
<term name="section">
|
||||
<single>apakšnodaļa</single>
|
||||
<multiple>apakšnodaļas</multiple>
|
||||
</term>
|
||||
<term name="sub verbo">
|
||||
<single>skatīt</single>
|
||||
<multiple>skatīt</multiple>
|
||||
</term>
|
||||
<term name="verse">
|
||||
<single>pants</single>
|
||||
<multiple>panti</multiple>
|
||||
</term>
|
||||
<term name="volume">
|
||||
<single>sējums</single>
|
||||
<multiple>sējumi</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT LOCATOR FORMS -->
|
||||
<term name="book" form="short">grām.</term>
|
||||
<term name="chapter" form="short">nod.</term>
|
||||
<term name="column" form="short">sl.</term>
|
||||
<term name="figure" form="short">il.</term>
|
||||
<term name="folio" form="short">fo.</term>
|
||||
<term name="issue" form="short">nr.</term>
|
||||
<term name="line" form="short">r.</term>
|
||||
<term name="note" form="short">piez.</term>
|
||||
<term name="opus" form="short">op.</term>
|
||||
<term name="page" form="short">
|
||||
<single>lpp.</single>
|
||||
<multiple>lpp.</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages" form="short">
|
||||
<single>lpp.</single>
|
||||
<multiple>lpp.</multiple>
|
||||
</term>
|
||||
<term name="paragraph" form="short">rindk.</term>
|
||||
<term name="part" form="short">d.</term>
|
||||
<term name="section" form="short">apakšnod.</term>
|
||||
<term name="sub verbo" form="short">
|
||||
<single>sk.</single>
|
||||
<multiple>sk.</multiple>
|
||||
</term>
|
||||
<term name="verse" form="short">
|
||||
<single>p.</single>
|
||||
<multiple>p.</multiple>
|
||||
</term>
|
||||
<term name="volume" form="short">
|
||||
<single>sēj.</single>
|
||||
<multiple>sēj.</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶¶</multiple>
|
||||
</term>
|
||||
<term name="section" form="symbol">
|
||||
<single>§</single>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="collection-editor">
|
||||
<single>krājuma redaktors</single>
|
||||
<multiple>krājuma redaktori</multiple>
|
||||
</term>
|
||||
<term name="composer">
|
||||
<single>sastādītājs</single>
|
||||
<multiple>sastādītāji</multiple>
|
||||
</term>
|
||||
<term name="container-author">
|
||||
<single>pamatmateriāla autors</single>
|
||||
<multiple>pamatmateriāla autori</multiple>
|
||||
</term>
|
||||
<term name="director">
|
||||
<single>vadītājs</single>
|
||||
<multiple>vadītāji</multiple>
|
||||
</term>
|
||||
<term name="editor">
|
||||
<single>redaktors</single>
|
||||
<multiple>redaktors</multiple>
|
||||
</term>
|
||||
<term name="editorial-director">
|
||||
<single>galvenais redaktors</single>
|
||||
<multiple>galvenie redaktori</multiple>
|
||||
</term>
|
||||
<term name="editortranslator">
|
||||
<single>redaktors un tulkotājs</single>
|
||||
<multiple>redaktors un tulkotājs</multiple>
|
||||
</term>
|
||||
<term name="illustrator">
|
||||
<single>ilustrators</single>
|
||||
<multiple>ilustratori</multiple>
|
||||
</term>
|
||||
<term name="interviewer">
|
||||
<single>intervētājs</single>
|
||||
<multiple>intervētāji</multiple>
|
||||
</term>
|
||||
<term name="recipient">
|
||||
<single>saņēmējs</single>
|
||||
<multiple>saņēmēji</multiple>
|
||||
</term>
|
||||
<term name="translator">
|
||||
<single>tulkotājs</single>
|
||||
<multiple>tulkotāji</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="collection-editor" form="short">
|
||||
<single>kr. red.</single>
|
||||
<multiple>kr. red.</multiple>
|
||||
</term>
|
||||
<term name="composer" form="short">
|
||||
<single>sast.</single>
|
||||
<multiple>sast.</multiple>
|
||||
</term>
|
||||
<term name="container-author" form="short">
|
||||
<single>pamatmat. aut.</single>
|
||||
<multiple>pamatmat. aut.</multiple>
|
||||
</term>
|
||||
<term name="director" form="short">
|
||||
<single>vad.</single>
|
||||
<multiple>vad.</multiple>
|
||||
</term>
|
||||
<term name="editor" form="short">
|
||||
<single>red.</single>
|
||||
<multiple>red.</multiple>
|
||||
</term>
|
||||
<term name="editorial-director" form="short">
|
||||
<single>galv. red.</single>
|
||||
<multiple>galv. red.</multiple>
|
||||
</term>
|
||||
<term name="editortranslator" form="short">
|
||||
<single>red. un tulk.</single>
|
||||
<multiple>red. un tulk.</multiple>
|
||||
</term>
|
||||
<term name="illustrator" form="short">
|
||||
<single>ilustr.</single>
|
||||
<multiple>ilustr.</multiple>
|
||||
</term>
|
||||
<term name="interviewer" form="short">
|
||||
<single>interv.</single>
|
||||
<multiple>interv.</multiple>
|
||||
</term>
|
||||
<term name="recipient" form="short">
|
||||
<single>saņ.</single>
|
||||
<multiple>saņ.</multiple>
|
||||
</term>
|
||||
<term name="translator" form="short">
|
||||
<single>tulk.</single>
|
||||
<multiple>tulk.</multiple>
|
||||
</term>
|
||||
|
||||
<!-- VERB ROLE FORMS -->
|
||||
<term name="container-author" form="verb"></term>
|
||||
<term name="composer" form="verb">sastādīja</term>
|
||||
<term name="director" form="verb">vadīja</term>
|
||||
<term name="editor" form="verb">sagatavoja</term>
|
||||
<term name="editorial-director" form="verb">sagatavoja</term>
|
||||
<term name="editortranslator" form="verb">sagatavoja un tulkoja</term>
|
||||
<term name="illustrator" form="verb">ilustrēja</term>
|
||||
<term name="interviewer" form="verb">intervēja</term>
|
||||
<term name="recipient" form="verb">saņēma</term>
|
||||
<term name="translator" form="verb">tulkoja</term>
|
||||
|
||||
<!-- SHORT VERB ROLE FORMS -->
|
||||
<term name="director" form="verb-short">sast.</term>
|
||||
<term name="editor" form="verb-short">sag.</term>
|
||||
<term name="editorial-director" form="verb-short">sag.</term>
|
||||
<term name="illustrator" form="verb-short">ilustr.</term>
|
||||
<term name="translator" form="verb-short">tulk.</term>
|
||||
<term name="editortranslator" form="verb-short">sag. un tulk.</term>
|
||||
|
||||
<!-- LONG MONTH FORMS -->
|
||||
<term name="month-01">janvārī</term>
|
||||
<term name="month-02">februārī</term>
|
||||
<term name="month-03">martā</term>
|
||||
<term name="month-04">aprīlī</term>
|
||||
<term name="month-05">maijā</term>
|
||||
<term name="month-06">jūnijā</term>
|
||||
<term name="month-07">jūlijā</term>
|
||||
<term name="month-08">augustā</term>
|
||||
<term name="month-09">septembrī</term>
|
||||
<term name="month-10">oktobrī</term>
|
||||
<term name="month-11">novembrī</term>
|
||||
<term name="month-12">decembrī</term>
|
||||
|
||||
<!-- SHORT MONTH FORMS -->
|
||||
<term name="month-01" form="short">janv.</term>
|
||||
<term name="month-02" form="short">febr.</term>
|
||||
<term name="month-03" form="short">mar.</term>
|
||||
<term name="month-04" form="short">apr.</term>
|
||||
<term name="month-05" form="short">mai.</term>
|
||||
<term name="month-06" form="short">jūn.</term>
|
||||
<term name="month-07" form="short">jūl.</term>
|
||||
<term name="month-08" form="short">aug.</term>
|
||||
<term name="month-09" form="short">sept.</term>
|
||||
<term name="month-10" form="short">okt.</term>
|
||||
<term name="month-11" form="short">nov.</term>
|
||||
<term name="month-12" form="short">dec.</term>
|
||||
|
||||
<!-- SEASONS -->
|
||||
<term name="season-01">pavasaris</term>
|
||||
<term name="season-02">vasara</term>
|
||||
<term name="season-03">rudens</term>
|
||||
<term name="season-04">ziema</term>
|
||||
</terms>
|
||||
</locale>
|
||||
Vendored
+306
@@ -0,0 +1,306 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="mn-MN">
|
||||
<info>
|
||||
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
|
||||
<updated>2012-07-04T23:31:02+00:00</updated>
|
||||
</info>
|
||||
<style-options punctuation-in-quote="false"/>
|
||||
<date form="text">
|
||||
<date-part name="day" suffix=" "/>
|
||||
<date-part name="month" suffix=" "/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<date form="numeric">
|
||||
<date-part name="year"/>
|
||||
<date-part name="month" form="numeric-leading-zeros" prefix="."/>
|
||||
<date-part name="day" form="numeric-leading-zeros" prefix="."/>
|
||||
</date>
|
||||
<terms>
|
||||
<term name="accessed">accessed</term>
|
||||
<term name="and">and</term>
|
||||
<term name="and others">and others</term>
|
||||
<term name="anonymous">anonymous</term>
|
||||
<term name="anonymous" form="short">anon</term>
|
||||
<term name="at">at</term>
|
||||
<term name="available at">available at</term>
|
||||
<term name="by">by</term>
|
||||
<term name="circa">circa</term>
|
||||
<term name="circa" form="short">c.</term>
|
||||
<term name="cited">cited</term>
|
||||
<term name="edition">
|
||||
<single>edition</single>
|
||||
<multiple>editions</multiple>
|
||||
</term>
|
||||
<term name="edition" form="short">ed</term>
|
||||
<term name="et-al">et al.</term>
|
||||
<term name="forthcoming">forthcoming</term>
|
||||
<term name="from">from</term>
|
||||
<term name="ibid">ibid.</term>
|
||||
<term name="in">in</term>
|
||||
<term name="in press">in press</term>
|
||||
<term name="internet">internet</term>
|
||||
<term name="interview">interview</term>
|
||||
<term name="letter">letter</term>
|
||||
<term name="no date">no date</term>
|
||||
<term name="no date" form="short">n.d.</term>
|
||||
<term name="online">online</term>
|
||||
<term name="presented at">presented at the</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="retrieved">retrieved</term>
|
||||
<term name="scale">scale</term>
|
||||
<term name="version">version</term>
|
||||
|
||||
<!-- ANNO DOMINI; BEFORE CHRIST -->
|
||||
<term name="ad">AD</term>
|
||||
<term name="bc">BC</term>
|
||||
|
||||
<!-- PUNCTUATION -->
|
||||
<term name="open-quote">«</term>
|
||||
<term name="close-quote">»</term>
|
||||
<term name="open-inner-quote">„</term>
|
||||
<term name="close-inner-quote">“</term>
|
||||
<term name="page-range-delimiter">–</term>
|
||||
|
||||
<!-- ORDINALS -->
|
||||
<term name="ordinal">-p</term>
|
||||
|
||||
<!-- LONG ORDINALS -->
|
||||
<term name="long-ordinal-01">нэгдүгээр</term>
|
||||
<term name="long-ordinal-02">хоёрдугаар</term>
|
||||
<term name="long-ordinal-03">гуравдугаар</term>
|
||||
<term name="long-ordinal-04">дөрөвдүгээр</term>
|
||||
<term name="long-ordinal-05">тавдугаар</term>
|
||||
<term name="long-ordinal-06">зургаадугаар</term>
|
||||
<term name="long-ordinal-07">долоодугаар</term>
|
||||
<term name="long-ordinal-08">наймдугаар</term>
|
||||
<term name="long-ordinal-09">есдүгээр</term>
|
||||
<term name="long-ordinal-10">аравдугаар</term>
|
||||
|
||||
<!-- LONG LOCATOR FORMS -->
|
||||
<term name="book">
|
||||
<single>ном</single>
|
||||
<multiple>номнууд</multiple>
|
||||
</term>
|
||||
<term name="chapter">
|
||||
<single>chapter</single>
|
||||
<multiple>chapters</multiple>
|
||||
</term>
|
||||
<term name="column">
|
||||
<single>багана</single>
|
||||
<multiple>баганууд</multiple>
|
||||
</term>
|
||||
<term name="figure">
|
||||
<single>figure</single>
|
||||
<multiple>figures</multiple>
|
||||
</term>
|
||||
<term name="folio">
|
||||
<single>folio</single>
|
||||
<multiple>folios</multiple>
|
||||
</term>
|
||||
<term name="issue">
|
||||
<single>тоо</single>
|
||||
<multiple>тоонууд</multiple>
|
||||
</term>
|
||||
<term name="line">
|
||||
<single>шугам</single>
|
||||
<multiple>шугамнууд</multiple>
|
||||
</term>
|
||||
<term name="note">
|
||||
<single>note</single>
|
||||
<multiple>notes</multiple>
|
||||
</term>
|
||||
<term name="opus">
|
||||
<single>opus</single>
|
||||
<multiple>opera</multiple>
|
||||
</term>
|
||||
<term name="page">
|
||||
<single>хуудас</single>
|
||||
<multiple>хуудаснууд</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages">
|
||||
<single>хуудас</single>
|
||||
<multiple>хуудаснууд</multiple>
|
||||
</term>
|
||||
<term name="paragraph">
|
||||
<single>paragraph</single>
|
||||
<multiple>paragraph</multiple>
|
||||
</term>
|
||||
<term name="part">
|
||||
<single>part</single>
|
||||
<multiple>parts</multiple>
|
||||
</term>
|
||||
<term name="section">
|
||||
<single>section</single>
|
||||
<multiple>sections</multiple>
|
||||
</term>
|
||||
<term name="sub verbo">
|
||||
<single>sub verbo</single>
|
||||
<multiple>sub verbis</multiple>
|
||||
</term>
|
||||
<term name="verse">
|
||||
<single>verse</single>
|
||||
<multiple>verses</multiple>
|
||||
</term>
|
||||
<term name="volume">
|
||||
<single>volume</single>
|
||||
<multiple>volumes</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="line" form="short">l.</term>
|
||||
<term name="note" form="short">n.</term>
|
||||
<term name="opus" form="short">op</term>
|
||||
<term name="page" form="short">
|
||||
<single>p</single>
|
||||
<multiple>pp</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages" form="short">
|
||||
<single>p</single>
|
||||
<multiple>pp</multiple>
|
||||
</term>
|
||||
<term name="paragraph" form="short">para</term>
|
||||
<term name="part" form="short">pt</term>
|
||||
<term name="section" form="short">sec</term>
|
||||
<term name="sub verbo" form="short">
|
||||
<single>s.v.</single>
|
||||
<multiple>s.vv.</multiple>
|
||||
</term>
|
||||
<term name="verse" form="short">
|
||||
<single>v</single>
|
||||
<multiple>vv</multiple>
|
||||
</term>
|
||||
<term name="volume" form="short">
|
||||
<single>vol</single>
|
||||
<multiple>vols</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶¶</multiple>
|
||||
</term>
|
||||
<term name="section" form="symbol">
|
||||
<single>§</single>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="director">
|
||||
<single>director</single>
|
||||
<multiple>directors</multiple>
|
||||
</term>
|
||||
<term name="editor">
|
||||
<single>редактор</single>
|
||||
<multiple>редакторууд</multiple>
|
||||
</term>
|
||||
<term name="editorial-director">
|
||||
<single>редактор</single>
|
||||
<multiple>редакторууд</multiple>
|
||||
</term>
|
||||
<term name="illustrator">
|
||||
<single>illustrator</single>
|
||||
<multiple>illustrators</multiple>
|
||||
</term>
|
||||
<term name="translator">
|
||||
<single>орчуулагч</single>
|
||||
<multiple>орчуулагчид</multiple>
|
||||
</term>
|
||||
<term name="editortranslator">
|
||||
<single>редактор ба орчуулагч</single>
|
||||
<multiple>редакторууд ба орчуулагчид</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="director" form="short">
|
||||
<single>dir.</single>
|
||||
<multiple>dirs.</multiple>
|
||||
</term>
|
||||
<term name="editor" form="short">
|
||||
<single>ред.</single>
|
||||
<multiple>ред.</multiple>
|
||||
</term>
|
||||
<term name="editorial-director" form="short">
|
||||
<single>ред.</single>
|
||||
<multiple>ред.</multiple>
|
||||
</term>
|
||||
<term name="illustrator" form="short">
|
||||
<single>ill.</single>
|
||||
<multiple>ills.</multiple>
|
||||
</term>
|
||||
<term name="translator" form="short">
|
||||
<single>орч</single>
|
||||
<multiple>орч</multiple>
|
||||
</term>
|
||||
<term name="editortranslator" form="short">
|
||||
<single>ред. ба орч.</single>
|
||||
<multiple>ред. ба орч.</multiple>
|
||||
</term>
|
||||
|
||||
<!-- VERB ROLE FORMS -->
|
||||
<term name="container-author" form="verb">by</term>
|
||||
<term name="director" form="verb">directed by</term>
|
||||
<term name="editor" form="verb">edited by</term>
|
||||
<term name="editorial-director" form="verb">edited by</term>
|
||||
<term name="illustrator" form="verb">illustrated by</term>
|
||||
<term name="interviewer" form="verb">interview by</term>
|
||||
<term name="recipient" form="verb">to</term>
|
||||
<term name="reviewed-author" form="verb">by</term>
|
||||
<term name="translator" form="verb">translated by</term>
|
||||
<term name="editortranslator" form="verb">edited & translated by</term>
|
||||
|
||||
<!-- SHORT VERB ROLE FORMS -->
|
||||
<term name="director" form="verb-short">dir.</term>
|
||||
<term name="editor" form="verb-short">ed</term>
|
||||
<term name="editorial-director" form="verb-short">ed.</term>
|
||||
<term name="illustrator" form="verb-short">illus.</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>
|
||||
<term name="month-04">Дөрөвдүгээр сар</term>
|
||||
<term name="month-05">Тавдугаар сар</term>
|
||||
<term name="month-06">Зургаадугаар сар</term>
|
||||
<term name="month-07">Долдугаар сар</term>
|
||||
<term name="month-08">Наймдугаар сар</term>
|
||||
<term name="month-09">Есдүгээр сар</term>
|
||||
<term name="month-10">Аравдугаар сар</term>
|
||||
<term name="month-11">Арван нэгдүгээр сар</term>
|
||||
<term name="month-12">Арван хоёрдугаар сар</term>
|
||||
|
||||
<!-- SHORT MONTH FORMS -->
|
||||
<term name="month-01" form="short">1-р сар</term>
|
||||
<term name="month-02" form="short">2-р сар</term>
|
||||
<term name="month-03" form="short">3-р сар</term>
|
||||
<term name="month-04" form="short">4-р сар</term>
|
||||
<term name="month-05" form="short">5-р сар</term>
|
||||
<term name="month-06" form="short">6-р сар</term>
|
||||
<term name="month-07" form="short">7-р сар</term>
|
||||
<term name="month-08" form="short">8-р сар</term>
|
||||
<term name="month-09" form="short">9-р сар</term>
|
||||
<term name="month-10" form="short">10-р сар</term>
|
||||
<term name="month-11" form="short">11-р сар</term>
|
||||
<term name="month-12" form="short">12-р сар</term>
|
||||
|
||||
<!-- SEASONS -->
|
||||
<term name="season-01">Хавар</term>
|
||||
<term name="season-02">Зун</term>
|
||||
<term name="season-03">Намар</term>
|
||||
<term name="season-04">Өвөл</term>
|
||||
</terms>
|
||||
</locale>
|
||||
Vendored
+309
@@ -0,0 +1,309 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="nb-NO">
|
||||
<info>
|
||||
<translator>
|
||||
<name>Guttorm Flatabø</name>
|
||||
</translator>
|
||||
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
|
||||
<updated>2013-03-01T12:20:00+01:00</updated>
|
||||
</info>
|
||||
<style-options punctuation-in-quote="false"/>
|
||||
<date form="text">
|
||||
<date-part name="day" form="ordinal" suffix=" "/>
|
||||
<date-part name="month" suffix=" "/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<date form="numeric">
|
||||
<date-part name="year"/>
|
||||
<date-part name="month" form="numeric-leading-zeros" prefix="-" range-delimiter="/"/>
|
||||
<date-part name="day" form="numeric-leading-zeros" prefix="-" range-delimiter="/"/>
|
||||
</date>
|
||||
<terms>
|
||||
<term name="accessed">åpnet</term>
|
||||
<term name="and">og</term>
|
||||
<term name="and others">med flere</term>
|
||||
<term name="anonymous">anonym</term>
|
||||
<term name="anonymous" form="short">anon.</term>
|
||||
<term name="at">på</term>
|
||||
<term name="available at">tilgjengelig på</term>
|
||||
<term name="by">av</term>
|
||||
<term name="circa">circa</term>
|
||||
<term name="circa" form="short">ca.</term>
|
||||
<term name="cited">sitert</term>
|
||||
<term name="edition">
|
||||
<single>utgave</single>
|
||||
<multiple>utgaver</multiple>
|
||||
</term>
|
||||
<term name="edition" form="short">utg.</term>
|
||||
<term name="et-al">mfl.</term>
|
||||
<term name="forthcoming">kommende</term>
|
||||
<term name="from">fra</term>
|
||||
<term name="ibid">ibid.</term>
|
||||
<term name="in">i</term>
|
||||
<term name="in press">i trykk</term>
|
||||
<term name="internet">Internett</term>
|
||||
<term name="interview">intervju</term>
|
||||
<term name="letter">brev</term>
|
||||
<term name="no date">ingen dato</term>
|
||||
<term name="no date" form="short">u.å.</term>
|
||||
<term name="online">online</term>
|
||||
<term name="presented at">presentert på</term>
|
||||
<term name="reference">
|
||||
<single>referanse</single>
|
||||
<multiple>referanser</multiple>
|
||||
</term>
|
||||
<term name="reference" form="short">
|
||||
<single>ref.</single>
|
||||
<multiple>refr.</multiple>
|
||||
</term>
|
||||
<term name="retrieved">hentet</term>
|
||||
<term name="scale">målestokk</term>
|
||||
<term name="version">versjon</term>
|
||||
|
||||
<!-- ANNO DOMINI; BEFORE CHRIST -->
|
||||
<term name="ad">fvt.</term>
|
||||
<term name="bc">evt.</term>
|
||||
|
||||
<!-- PUNCTUATION -->
|
||||
<term name="open-quote">«</term>
|
||||
<term name="close-quote">»</term>
|
||||
<term name="open-inner-quote">‘</term>
|
||||
<term name="close-inner-quote">’</term>
|
||||
<term name="page-range-delimiter">–</term>
|
||||
|
||||
<!-- ORDINALS -->
|
||||
<term name="ordinal">.</term>
|
||||
|
||||
<!-- LONG ORDINALS -->
|
||||
<term name="long-ordinal-01">første</term>
|
||||
<term name="long-ordinal-02">andre</term>
|
||||
<term name="long-ordinal-03">tredje</term>
|
||||
<term name="long-ordinal-04">fjerde</term>
|
||||
<term name="long-ordinal-05">femte</term>
|
||||
<term name="long-ordinal-06">sjette</term>
|
||||
<term name="long-ordinal-07">sjuende</term>
|
||||
<term name="long-ordinal-08">åttende</term>
|
||||
<term name="long-ordinal-09">niende</term>
|
||||
<term name="long-ordinal-10">tiende</term>
|
||||
|
||||
<!-- LONG LOCATOR FORMS -->
|
||||
<term name="book">
|
||||
<single>bok</single>
|
||||
<multiple>bøker</multiple>
|
||||
</term>
|
||||
<term name="chapter">
|
||||
<single>kapittel</single>
|
||||
<multiple>kapitler</multiple>
|
||||
</term>
|
||||
<term name="column">
|
||||
<single>kolonne</single>
|
||||
<multiple>kolonner</multiple>
|
||||
</term>
|
||||
<term name="figure">
|
||||
<single>figur</single>
|
||||
<multiple>figurer</multiple>
|
||||
</term>
|
||||
<term name="folio">
|
||||
<single>folio</single>
|
||||
<multiple>folioer</multiple>
|
||||
</term>
|
||||
<term name="issue">
|
||||
<single>nummer</single>
|
||||
<multiple>numre</multiple>
|
||||
</term>
|
||||
<term name="line">
|
||||
<single>linje</single>
|
||||
<multiple>linjer</multiple>
|
||||
</term>
|
||||
<term name="note">
|
||||
<single>note</single>
|
||||
<multiple>noter</multiple>
|
||||
</term>
|
||||
<term name="opus">
|
||||
<single>opus</single>
|
||||
<multiple>opus</multiple>
|
||||
</term>
|
||||
<term name="page">
|
||||
<single>side</single>
|
||||
<multiple>side</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages">
|
||||
<single>side</single>
|
||||
<multiple>sider</multiple>
|
||||
</term>
|
||||
<term name="paragraph">
|
||||
<single>avsnitt</single>
|
||||
<multiple>avsnitt</multiple>
|
||||
</term>
|
||||
<term name="part">
|
||||
<single>del</single>
|
||||
<multiple>deler</multiple>
|
||||
</term>
|
||||
<term name="section">
|
||||
<single>paragraf</single>
|
||||
<multiple>paragrafer</multiple>
|
||||
</term>
|
||||
<term name="sub verbo">
|
||||
<single>sub verbo</single>
|
||||
<multiple>sub verbis</multiple>
|
||||
</term>
|
||||
<term name="verse">
|
||||
<single>vers</single>
|
||||
<multiple>vers</multiple>
|
||||
</term>
|
||||
<term name="volume">
|
||||
<single>bind</single>
|
||||
<multiple>bind</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT LOCATOR FORMS -->
|
||||
<term name="book" form="short">b.</term>
|
||||
<term name="chapter" form="short">kap.</term>
|
||||
<term name="column" form="short">kol.</term>
|
||||
<term name="figure" form="short">fig.</term>
|
||||
<term name="folio" form="short">fol.</term>
|
||||
<term name="issue" form="short">nr.</term>
|
||||
<term name="line" form="short">l.</term>
|
||||
<term name="note" form="short">n.</term>
|
||||
<term name="opus" form="short">op.</term>
|
||||
<term name="page" form="short">
|
||||
<single>s.</single>
|
||||
<multiple>s.</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages" form="short">
|
||||
<single>s.</single>
|
||||
<multiple>s.</multiple>
|
||||
</term>
|
||||
<term name="paragraph" form="short">avsn.</term>
|
||||
<term name="part" form="short">d.</term>
|
||||
<term name="section" form="short">pargr.</term>
|
||||
<term name="sub verbo" form="short">
|
||||
<single>s.v.</single>
|
||||
<multiple>s.vv.</multiple>
|
||||
</term>
|
||||
<term name="verse" form="short">
|
||||
<single>v.</single>
|
||||
<multiple>v.</multiple>
|
||||
</term>
|
||||
<term name="volume" form="short">
|
||||
<single>bd.</single>
|
||||
<multiple>bd.</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶¶</multiple>
|
||||
</term>
|
||||
<term name="section" form="symbol">
|
||||
<single>§</single>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="director">
|
||||
<single>regissør</single>
|
||||
<multiple>regissører</multiple>
|
||||
</term>
|
||||
<term name="editor">
|
||||
<single>redaktør</single>
|
||||
<multiple>redaktører</multiple>
|
||||
</term>
|
||||
<term name="editorial-director">
|
||||
<single>redaktør</single>
|
||||
<multiple>redaktører</multiple>
|
||||
</term>
|
||||
<term name="illustrator">
|
||||
<single>illustratør</single>
|
||||
<multiple>illustratører</multiple>
|
||||
</term>
|
||||
<term name="translator">
|
||||
<single>oversetter</single>
|
||||
<multiple>oversettere</multiple>
|
||||
</term>
|
||||
<term name="editortranslator">
|
||||
<single>redaktør & oversetter</single>
|
||||
<multiple>redaktører & oversettere</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="director" form="short">
|
||||
<single>regi</single>
|
||||
<multiple>regi</multiple>
|
||||
</term>
|
||||
<term name="editor" form="short">
|
||||
<single>red.</single>
|
||||
<multiple>red.</multiple>
|
||||
</term>
|
||||
<term name="editorial-director" form="short">
|
||||
<single>red.</single>
|
||||
<multiple>red.</multiple>
|
||||
</term>
|
||||
<term name="illustrator" form="short">
|
||||
<single>ill.</single>
|
||||
<multiple>ills.</multiple>
|
||||
</term>
|
||||
<term name="translator" form="short">
|
||||
<single>overs.</single>
|
||||
<multiple>overs.</multiple>
|
||||
</term>
|
||||
<term name="editortranslator" form="short">
|
||||
<single>red. & overs.</single>
|
||||
<multiple>red. & overs.</multiple>
|
||||
</term>
|
||||
|
||||
<!-- VERB ROLE FORMS -->
|
||||
<term name="container-author" form="verb">av</term>
|
||||
<term name="director" form="verb">regissert av</term>
|
||||
<term name="editor" form="verb">redigert av</term>
|
||||
<term name="editorial-director" form="verb">redigert av</term>
|
||||
<term name="illustrator" form="verb">illustrert av</term>
|
||||
<term name="interviewer" form="verb">intervjuet av</term>
|
||||
<term name="recipient" form="verb">til</term>
|
||||
<term name="reviewed-author" form="verb">av</term>
|
||||
<term name="translator" form="verb">oversatt av</term>
|
||||
<term name="editortranslator" form="verb">redigert & oversatt av</term>
|
||||
|
||||
<!-- SHORT VERB ROLE FORMS -->
|
||||
<term name="director" form="verb-short">regi</term>
|
||||
<term name="editor" form="verb-short">red.</term>
|
||||
<term name="editorial-director" form="verb-short">red.</term>
|
||||
<term name="illustrator" form="verb-short">illus.</term>
|
||||
<term name="translator" form="verb-short">overs.</term>
|
||||
<term name="editortranslator" form="verb-short">red. & overs. av</term>
|
||||
|
||||
<!-- LONG MONTH FORMS -->
|
||||
<term name="month-01">januar</term>
|
||||
<term name="month-02">februar</term>
|
||||
<term name="month-03">mars</term>
|
||||
<term name="month-04">april</term>
|
||||
<term name="month-05">mai</term>
|
||||
<term name="month-06">juni</term>
|
||||
<term name="month-07">juli</term>
|
||||
<term name="month-08">august</term>
|
||||
<term name="month-09">september</term>
|
||||
<term name="month-10">oktober</term>
|
||||
<term name="month-11">november</term>
|
||||
<term name="month-12">desember</term>
|
||||
|
||||
<!-- SHORT MONTH FORMS -->
|
||||
<term name="month-01" form="short">jan.</term>
|
||||
<term name="month-02" form="short">feb.</term>
|
||||
<term name="month-03" form="short">mar.</term>
|
||||
<term name="month-04" form="short">apr.</term>
|
||||
<term name="month-05" form="short">mai</term>
|
||||
<term name="month-06" form="short">jun.</term>
|
||||
<term name="month-07" form="short">jul.</term>
|
||||
<term name="month-08" form="short">aug.</term>
|
||||
<term name="month-09" form="short">sep.</term>
|
||||
<term name="month-10" form="short">okt.</term>
|
||||
<term name="month-11" form="short">nov.</term>
|
||||
<term name="month-12" form="short">des.</term>
|
||||
|
||||
<!-- SEASONS -->
|
||||
<term name="season-01">vår</term>
|
||||
<term name="season-02">sommer</term>
|
||||
<term name="season-03">høst</term>
|
||||
<term name="season-04">vinter</term>
|
||||
</terms>
|
||||
</locale>
|
||||
Vendored
+328
@@ -0,0 +1,328 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="nl-NL">
|
||||
<info>
|
||||
<translator>
|
||||
<name>Rintze M. Zelle</name>
|
||||
<uri>http://twitter.com/rintzezelle</uri>
|
||||
</translator>
|
||||
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
|
||||
<updated>2017-04-01T12:00:00+00:00</updated>
|
||||
</info>
|
||||
<style-options punctuation-in-quote="false"/>
|
||||
<date form="text">
|
||||
<date-part name="day" suffix=" "/>
|
||||
<date-part name="month" suffix=" "/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<date form="numeric">
|
||||
<date-part name="day" suffix="-" range-delimiter="/"/>
|
||||
<date-part name="month" form="numeric" suffix="-" range-delimiter="/"/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<terms>
|
||||
<term name="accessed">geraadpleegd</term>
|
||||
<term name="and">en</term>
|
||||
<term name="and others">en anderen</term>
|
||||
<term name="anonymous">anoniem</term>
|
||||
<term name="anonymous" form="short">anon.</term>
|
||||
<term name="at">bij</term>
|
||||
<term name="available at">beschikbaar op</term>
|
||||
<term name="by">door</term>
|
||||
<term name="circa">circa</term>
|
||||
<term name="circa" form="short">c.</term>
|
||||
<term name="cited">geciteerd</term>
|
||||
<term name="edition">
|
||||
<single>druk</single>
|
||||
<multiple>drukken</multiple>
|
||||
</term>
|
||||
<term name="edition" form="short">dr.</term>
|
||||
<term name="et-al">e.a.</term>
|
||||
<term name="forthcoming">in voorbereiding</term>
|
||||
<term name="from">van</term>
|
||||
<term name="ibid">ibid.</term>
|
||||
<term name="in">in</term>
|
||||
<term name="in press">in druk</term>
|
||||
<term name="internet">internet</term>
|
||||
<term name="interview">interview</term>
|
||||
<term name="letter">brief</term>
|
||||
<term name="no date">zonder datum</term>
|
||||
<term name="no date" form="short">z.d.</term>
|
||||
<term name="online">online</term>
|
||||
<term name="presented at">gepresenteerd bij</term>
|
||||
<term name="reference">
|
||||
<single>referentie</single>
|
||||
<multiple>referenties</multiple>
|
||||
</term>
|
||||
<term name="reference" form="short">
|
||||
<single>ref.</single>
|
||||
<multiple>refs.</multiple>
|
||||
</term>
|
||||
<term name="retrieved">geraadpleegd</term>
|
||||
<term name="scale">schaal</term>
|
||||
<term name="version">versie</term>
|
||||
|
||||
<!-- ANNO DOMINI; BEFORE CHRIST -->
|
||||
<term name="ad">AD</term>
|
||||
<term name="bc">BC</term>
|
||||
|
||||
<!-- PUNCTUATION -->
|
||||
<term name="open-quote">“</term>
|
||||
<term name="close-quote">”</term>
|
||||
<term name="open-inner-quote">‘</term>
|
||||
<term name="close-inner-quote">’</term>
|
||||
<term name="page-range-delimiter">–</term>
|
||||
|
||||
<!-- ORDINALS -->
|
||||
<term name="ordinal">ste</term>
|
||||
<term name="ordinal-00" match="whole-number">de</term>
|
||||
<term name="ordinal-02" match="last-two-digits">de</term>
|
||||
<term name="ordinal-03" match="last-two-digits">de</term>
|
||||
<term name="ordinal-04" match="last-two-digits">de</term>
|
||||
<term name="ordinal-05" match="last-two-digits">de</term>
|
||||
<term name="ordinal-06" match="last-two-digits">de</term>
|
||||
<term name="ordinal-07" match="last-two-digits">de</term>
|
||||
<term name="ordinal-09" match="last-two-digits">de</term>
|
||||
<term name="ordinal-10">de</term>
|
||||
<term name="ordinal-11">de</term>
|
||||
<term name="ordinal-12">de</term>
|
||||
<term name="ordinal-13">de</term>
|
||||
<term name="ordinal-14">de</term>
|
||||
<term name="ordinal-15">de</term>
|
||||
<term name="ordinal-16">de</term>
|
||||
<term name="ordinal-17">de</term>
|
||||
<term name="ordinal-18">de</term>
|
||||
<term name="ordinal-19">de</term>
|
||||
|
||||
<!-- LONG ORDINALS -->
|
||||
<term name="long-ordinal-01">eerste</term>
|
||||
<term name="long-ordinal-02">tweede</term>
|
||||
<term name="long-ordinal-03">derde</term>
|
||||
<term name="long-ordinal-04">vierde</term>
|
||||
<term name="long-ordinal-05">vijfde</term>
|
||||
<term name="long-ordinal-06">zesde</term>
|
||||
<term name="long-ordinal-07">zevende</term>
|
||||
<term name="long-ordinal-08">achtste</term>
|
||||
<term name="long-ordinal-09">negende</term>
|
||||
<term name="long-ordinal-10">tiende</term>
|
||||
|
||||
<!-- LONG LOCATOR FORMS -->
|
||||
<term name="book">
|
||||
<single>boek</single>
|
||||
<multiple>boeken</multiple>
|
||||
</term>
|
||||
<term name="chapter">
|
||||
<single>hoofdstuk</single>
|
||||
<multiple>hoofdstukken</multiple>
|
||||
</term>
|
||||
<term name="column">
|
||||
<single>column</single>
|
||||
<multiple>columns</multiple>
|
||||
</term>
|
||||
<term name="figure">
|
||||
<single>figuur</single>
|
||||
<multiple>figuren</multiple>
|
||||
</term>
|
||||
<term name="folio">
|
||||
<single>folio</single>
|
||||
<multiple>folio's</multiple>
|
||||
</term>
|
||||
<term name="issue">
|
||||
<single>nummer</single>
|
||||
<multiple>nummers</multiple>
|
||||
</term>
|
||||
<term name="line">
|
||||
<single>regel</single>
|
||||
<multiple>regels</multiple>
|
||||
</term>
|
||||
<term name="note">
|
||||
<single>aantekening</single>
|
||||
<multiple>aantekeningen</multiple>
|
||||
</term>
|
||||
<term name="opus">
|
||||
<single>opus</single>
|
||||
<multiple>opera</multiple>
|
||||
</term>
|
||||
<term name="page">
|
||||
<single>pagina</single>
|
||||
<multiple>pagina's</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages">
|
||||
<single>pagina</single>
|
||||
<multiple>pagina's</multiple>
|
||||
</term>
|
||||
<term name="paragraph">
|
||||
<single>paragraaf</single>
|
||||
<multiple>paragrafen</multiple>
|
||||
</term>
|
||||
<term name="part">
|
||||
<single>deel</single>
|
||||
<multiple>delen</multiple>
|
||||
</term>
|
||||
<term name="section">
|
||||
<single>sectie</single>
|
||||
<multiple>secties</multiple>
|
||||
</term>
|
||||
<term name="sub verbo">
|
||||
<single>sub verbo</single>
|
||||
<multiple>sub verbis</multiple>
|
||||
</term>
|
||||
<term name="verse">
|
||||
<single>vers</single>
|
||||
<multiple>versen</multiple>
|
||||
</term>
|
||||
<term name="volume">
|
||||
<single>volume</single>
|
||||
<multiple>volumes</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT LOCATOR FORMS -->
|
||||
<term name="book" form="short">bk.</term>
|
||||
<term name="chapter" form="short">hfdst.</term>
|
||||
<term name="column" form="short">col.</term>
|
||||
<term name="figure" form="short">fig.</term>
|
||||
<term name="folio" form="short">f.</term>
|
||||
<term name="issue" form="short">nr.</term>
|
||||
<term name="line" form="short">l.</term>
|
||||
<term name="note" form="short">n.</term>
|
||||
<term name="opus" form="short">op.</term>
|
||||
<term name="page" form="short">
|
||||
<single>p.</single>
|
||||
<multiple>pp.</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages" form="short">
|
||||
<single>p.</single>
|
||||
<multiple>pp.</multiple>
|
||||
</term>
|
||||
<term name="paragraph" form="short">par.</term>
|
||||
<term name="part" form="short">deel</term>
|
||||
<term name="section" form="short">sec.</term>
|
||||
<term name="sub verbo" form="short">
|
||||
<single>s.v.</single>
|
||||
<multiple>s.vv.</multiple>
|
||||
</term>
|
||||
<term name="verse" form="short">
|
||||
<single>v.</single>
|
||||
<multiple>vv.</multiple>
|
||||
</term>
|
||||
<term name="volume" form="short">
|
||||
<single>vol.</single>
|
||||
<multiple>vols.</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶¶</multiple>
|
||||
</term>
|
||||
<term name="section" form="symbol">
|
||||
<single>§</single>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="director">
|
||||
<single>regisseur</single>
|
||||
<multiple>regisseurs</multiple>
|
||||
</term>
|
||||
<term name="editor">
|
||||
<single>redacteur</single>
|
||||
<multiple>redacteuren</multiple>
|
||||
</term>
|
||||
<term name="editorial-director">
|
||||
<single>redacteur</single>
|
||||
<multiple>redacteuren</multiple>
|
||||
</term>
|
||||
<term name="illustrator">
|
||||
<single>illustrator</single>
|
||||
<multiple>illustrators</multiple>
|
||||
</term>
|
||||
<term name="translator">
|
||||
<single>vertaler</single>
|
||||
<multiple>vertalers</multiple>
|
||||
</term>
|
||||
<term name="editortranslator">
|
||||
<single>redacteur & vertaler</single>
|
||||
<multiple>redacteuren & vertalers</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="director" form="short">
|
||||
<single>reg.</single>
|
||||
<multiple>reg.</multiple>
|
||||
</term>
|
||||
<term name="editor" form="short">
|
||||
<single>red.</single>
|
||||
<multiple>red.</multiple>
|
||||
</term>
|
||||
<term name="editorial-director" form="short">
|
||||
<single>red.</single>
|
||||
<multiple>red.</multiple>
|
||||
</term>
|
||||
<term name="illustrator" form="short">
|
||||
<single>ill.</single>
|
||||
<multiple>ill.</multiple>
|
||||
</term>
|
||||
<term name="translator" form="short">
|
||||
<single>vert.</single>
|
||||
<multiple>vert.</multiple>
|
||||
</term>
|
||||
<term name="editortranslator" form="short">
|
||||
<single>red. & vert.</single>
|
||||
<multiple>red. & vert.</multiple>
|
||||
</term>
|
||||
|
||||
<!-- VERB ROLE FORMS -->
|
||||
<term name="container-author" form="verb">door</term>
|
||||
<term name="director" form="verb">geregisseerd door</term>
|
||||
<term name="editor" form="verb">onder redactie van</term>
|
||||
<term name="editorial-director" form="verb">onder redactie van</term>
|
||||
<term name="illustrator" form="verb">geïllustreerd door</term>
|
||||
<term name="interviewer" form="verb">geïnterviewd door</term>
|
||||
<term name="recipient" form="verb">ontvangen door</term>
|
||||
<term name="reviewed-author" form="verb">door</term>
|
||||
<term name="translator" form="verb">vertaald door</term>
|
||||
<term name="editortranslator" form="verb">bewerkt & vertaald door</term>
|
||||
|
||||
<!-- SHORT VERB ROLE FORMS -->
|
||||
<term name="director" form="verb-short">geregisseerd door</term>
|
||||
<term name="editor" form="verb-short">onder redactie van</term>
|
||||
<term name="editorial-director" form="verb-short">bewerkt door</term>
|
||||
<term name="illustrator" form="verb-short">geïllustreerd door</term>
|
||||
<term name="translator" form="verb-short">vertaald door</term>
|
||||
<term name="editortranslator" form="verb-short">bewerkt & vertaald door</term>
|
||||
|
||||
<!-- LONG MONTH FORMS -->
|
||||
<term name="month-01">januari</term>
|
||||
<term name="month-02">februari</term>
|
||||
<term name="month-03">maart</term>
|
||||
<term name="month-04">april</term>
|
||||
<term name="month-05">mei</term>
|
||||
<term name="month-06">juni</term>
|
||||
<term name="month-07">juli</term>
|
||||
<term name="month-08">augustus</term>
|
||||
<term name="month-09">september</term>
|
||||
<term name="month-10">oktober</term>
|
||||
<term name="month-11">november</term>
|
||||
<term name="month-12">december</term>
|
||||
|
||||
<!-- SHORT MONTH FORMS -->
|
||||
<term name="month-01" form="short">jan.</term>
|
||||
<term name="month-02" form="short">feb.</term>
|
||||
<term name="month-03" form="short">mrt.</term>
|
||||
<term name="month-04" form="short">apr.</term>
|
||||
<term name="month-05" form="short">mei</term>
|
||||
<term name="month-06" form="short">jun.</term>
|
||||
<term name="month-07" form="short">jul.</term>
|
||||
<term name="month-08" form="short">aug.</term>
|
||||
<term name="month-09" form="short">sep.</term>
|
||||
<term name="month-10" form="short">okt.</term>
|
||||
<term name="month-11" form="short">nov.</term>
|
||||
<term name="month-12" form="short">dec.</term>
|
||||
|
||||
<!-- SEASONS -->
|
||||
<term name="season-01">lente</term>
|
||||
<term name="season-02">zomer</term>
|
||||
<term name="season-03">herst</term>
|
||||
<term name="season-04">winter</term>
|
||||
</terms>
|
||||
</locale>
|
||||
Vendored
+309
@@ -0,0 +1,309 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="nn-NO">
|
||||
<info>
|
||||
<translator>
|
||||
<name>Guttorm Flatabø</name>
|
||||
</translator>
|
||||
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
|
||||
<updated>2013-03-01T12:20:00+01:00</updated>
|
||||
</info>
|
||||
<style-options punctuation-in-quote="false"/>
|
||||
<date form="text">
|
||||
<date-part name="day" form="ordinal" suffix=" "/>
|
||||
<date-part name="month" suffix=" "/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<date form="numeric">
|
||||
<date-part name="year"/>
|
||||
<date-part name="month" form="numeric-leading-zeros" prefix="-" range-delimiter="/"/>
|
||||
<date-part name="day" form="numeric-leading-zeros" prefix="-" range-delimiter="/"/>
|
||||
</date>
|
||||
<terms>
|
||||
<term name="accessed">vitja</term>
|
||||
<term name="and">og</term>
|
||||
<term name="and others">med fleire</term>
|
||||
<term name="anonymous">anonym</term>
|
||||
<term name="anonymous" form="short">anon.</term>
|
||||
<term name="at">på</term>
|
||||
<term name="available at">tilgjengeleg på</term>
|
||||
<term name="by">av</term>
|
||||
<term name="circa">circa</term>
|
||||
<term name="circa" form="short">ca.</term>
|
||||
<term name="cited">sitert</term>
|
||||
<term name="edition">
|
||||
<single>utgåve</single>
|
||||
<multiple>utgåver</multiple>
|
||||
</term>
|
||||
<term name="edition" form="short">utg.</term>
|
||||
<term name="et-al">mfl.</term>
|
||||
<term name="forthcoming">kommande</term>
|
||||
<term name="from">frå</term>
|
||||
<term name="ibid">ibid.</term>
|
||||
<term name="in">i</term>
|
||||
<term name="in press">i trykk</term>
|
||||
<term name="internet">Internett</term>
|
||||
<term name="interview">intervju</term>
|
||||
<term name="letter">brev</term>
|
||||
<term name="no date">ingen dato</term>
|
||||
<term name="no date" form="short">u.å.</term>
|
||||
<term name="online">online</term>
|
||||
<term name="presented at">presentert på</term>
|
||||
<term name="reference">
|
||||
<single>referanse</single>
|
||||
<multiple>referansar</multiple>
|
||||
</term>
|
||||
<term name="reference" form="short">
|
||||
<single>ref.</single>
|
||||
<multiple>refr.</multiple>
|
||||
</term>
|
||||
<term name="retrieved">henta</term>
|
||||
<term name="scale">målestokk</term>
|
||||
<term name="version">versjon</term>
|
||||
|
||||
<!-- ANNO DOMINI; BEFORE CHRIST -->
|
||||
<term name="ad">fvt.</term>
|
||||
<term name="bc">evt.</term>
|
||||
|
||||
<!-- PUNCTUATION -->
|
||||
<term name="open-quote">«</term>
|
||||
<term name="close-quote">»</term>
|
||||
<term name="open-inner-quote">‘</term>
|
||||
<term name="close-inner-quote">’</term>
|
||||
<term name="page-range-delimiter">–</term>
|
||||
|
||||
<!-- ORDINALS -->
|
||||
<term name="ordinal">.</term>
|
||||
|
||||
<!-- LONG ORDINALS -->
|
||||
<term name="long-ordinal-01">første</term>
|
||||
<term name="long-ordinal-02">andre</term>
|
||||
<term name="long-ordinal-03">tredje</term>
|
||||
<term name="long-ordinal-04">fjerde</term>
|
||||
<term name="long-ordinal-05">femte</term>
|
||||
<term name="long-ordinal-06">sjette</term>
|
||||
<term name="long-ordinal-07">sjuande</term>
|
||||
<term name="long-ordinal-08">åttande</term>
|
||||
<term name="long-ordinal-09">niande</term>
|
||||
<term name="long-ordinal-10">tiande</term>
|
||||
|
||||
<!-- LONG LOCATOR FORMS -->
|
||||
<term name="book">
|
||||
<single>bok</single>
|
||||
<multiple>bøker</multiple>
|
||||
</term>
|
||||
<term name="chapter">
|
||||
<single>kapittel</single>
|
||||
<multiple>kapittel</multiple>
|
||||
</term>
|
||||
<term name="column">
|
||||
<single>kolonne</single>
|
||||
<multiple>kolonner</multiple>
|
||||
</term>
|
||||
<term name="figure">
|
||||
<single>figur</single>
|
||||
<multiple>figurar</multiple>
|
||||
</term>
|
||||
<term name="folio">
|
||||
<single>folio</single>
|
||||
<multiple>folioar</multiple>
|
||||
</term>
|
||||
<term name="issue">
|
||||
<single>nummer</single>
|
||||
<multiple>nummer</multiple>
|
||||
</term>
|
||||
<term name="line">
|
||||
<single>linje</single>
|
||||
<multiple>linjer</multiple>
|
||||
</term>
|
||||
<term name="note">
|
||||
<single>note</single>
|
||||
<multiple>notar</multiple>
|
||||
</term>
|
||||
<term name="opus">
|
||||
<single>opus</single>
|
||||
<multiple>opus</multiple>
|
||||
</term>
|
||||
<term name="page">
|
||||
<single>side</single>
|
||||
<multiple>side</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages">
|
||||
<single>side</single>
|
||||
<multiple>sider</multiple>
|
||||
</term>
|
||||
<term name="paragraph">
|
||||
<single>avsnitt</single>
|
||||
<multiple>avsnitt</multiple>
|
||||
</term>
|
||||
<term name="part">
|
||||
<single>del</single>
|
||||
<multiple>deler</multiple>
|
||||
</term>
|
||||
<term name="section">
|
||||
<single>paragraf</single>
|
||||
<multiple>paragrafar</multiple>
|
||||
</term>
|
||||
<term name="sub verbo">
|
||||
<single>sub verbo</single>
|
||||
<multiple>sub verbis</multiple>
|
||||
</term>
|
||||
<term name="verse">
|
||||
<single>vers</single>
|
||||
<multiple>vers</multiple>
|
||||
</term>
|
||||
<term name="volume">
|
||||
<single>bind</single>
|
||||
<multiple>bind</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT LOCATOR FORMS -->
|
||||
<term name="book" form="short">b.</term>
|
||||
<term name="chapter" form="short">kap.</term>
|
||||
<term name="column" form="short">kol.</term>
|
||||
<term name="figure" form="short">fig.</term>
|
||||
<term name="folio" form="short">fol.</term>
|
||||
<term name="issue" form="short">nr.</term>
|
||||
<term name="line" form="short">l.</term>
|
||||
<term name="note" form="short">n.</term>
|
||||
<term name="opus" form="short">op.</term>
|
||||
<term name="page" form="short">
|
||||
<single>s.</single>
|
||||
<multiple>s.</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages" form="short">
|
||||
<single>s.</single>
|
||||
<multiple>s.</multiple>
|
||||
</term>
|
||||
<term name="paragraph" form="short">avsn.</term>
|
||||
<term name="part" form="short">d.</term>
|
||||
<term name="section" form="short">par.</term>
|
||||
<term name="sub verbo" form="short">
|
||||
<single>s.v.</single>
|
||||
<multiple>s.vv.</multiple>
|
||||
</term>
|
||||
<term name="verse" form="short">
|
||||
<single>v.</single>
|
||||
<multiple>v.</multiple>
|
||||
</term>
|
||||
<term name="volume" form="short">
|
||||
<single>bd.</single>
|
||||
<multiple>bd.</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶¶</multiple>
|
||||
</term>
|
||||
<term name="section" form="symbol">
|
||||
<single>§</single>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="director">
|
||||
<single>regissør</single>
|
||||
<multiple>regissørar</multiple>
|
||||
</term>
|
||||
<term name="editor">
|
||||
<single>redaktør</single>
|
||||
<multiple>redaktørar</multiple>
|
||||
</term>
|
||||
<term name="editorial-director">
|
||||
<single>redaktør</single>
|
||||
<multiple>redaktørar</multiple>
|
||||
</term>
|
||||
<term name="illustrator">
|
||||
<single>illustratør</single>
|
||||
<multiple>illustratørar</multiple>
|
||||
</term>
|
||||
<term name="translator">
|
||||
<single>omsetjar</single>
|
||||
<multiple>omsetjarar</multiple>
|
||||
</term>
|
||||
<term name="editortranslator">
|
||||
<single>redaktør & omsetjar</single>
|
||||
<multiple>redaktørar & omsetjarar</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="director" form="short">
|
||||
<single>regi</single>
|
||||
<multiple>regi</multiple>
|
||||
</term>
|
||||
<term name="editor" form="short">
|
||||
<single>red.</single>
|
||||
<multiple>red.</multiple>
|
||||
</term>
|
||||
<term name="editorial-director" form="short">
|
||||
<single>red.</single>
|
||||
<multiple>red.</multiple>
|
||||
</term>
|
||||
<term name="illustrator" form="short">
|
||||
<single>ill.</single>
|
||||
<multiple>ills.</multiple>
|
||||
</term>
|
||||
<term name="translator" form="short">
|
||||
<single>oms.</single>
|
||||
<multiple>oms.</multiple>
|
||||
</term>
|
||||
<term name="editortranslator" form="short">
|
||||
<single>red. & oms.</single>
|
||||
<multiple>red. & oms.</multiple>
|
||||
</term>
|
||||
|
||||
<!-- VERB ROLE FORMS -->
|
||||
<term name="container-author" form="verb">av</term>
|
||||
<term name="director" form="verb">regissert av</term>
|
||||
<term name="editor" form="verb">redigert av</term>
|
||||
<term name="editorial-director" form="verb">redigert av</term>
|
||||
<term name="illustrator" form="verb">illustrert av</term>
|
||||
<term name="interviewer" form="verb">intervjua av</term>
|
||||
<term name="recipient" form="verb">til</term>
|
||||
<term name="reviewed-author" form="verb">av</term>
|
||||
<term name="translator" form="verb">omsett av</term>
|
||||
<term name="editortranslator" form="verb">redigert & omsett av</term>
|
||||
|
||||
<!-- SHORT VERB ROLE FORMS -->
|
||||
<term name="director" form="verb-short">regi</term>
|
||||
<term name="editor" form="verb-short">red.</term>
|
||||
<term name="editorial-director" form="verb-short">red.</term>
|
||||
<term name="illustrator" form="verb-short">illus.</term>
|
||||
<term name="translator" form="verb-short">oms.</term>
|
||||
<term name="editortranslator" form="verb-short">red. & oms. av</term>
|
||||
|
||||
<!-- LONG MONTH FORMS -->
|
||||
<term name="month-01">januar</term>
|
||||
<term name="month-02">februar</term>
|
||||
<term name="month-03">mars</term>
|
||||
<term name="month-04">april</term>
|
||||
<term name="month-05">mai</term>
|
||||
<term name="month-06">juni</term>
|
||||
<term name="month-07">juli</term>
|
||||
<term name="month-08">august</term>
|
||||
<term name="month-09">september</term>
|
||||
<term name="month-10">oktober</term>
|
||||
<term name="month-11">november</term>
|
||||
<term name="month-12">desember</term>
|
||||
|
||||
<!-- SHORT MONTH FORMS -->
|
||||
<term name="month-01" form="short">jan.</term>
|
||||
<term name="month-02" form="short">feb.</term>
|
||||
<term name="month-03" form="short">mar.</term>
|
||||
<term name="month-04" form="short">apr.</term>
|
||||
<term name="month-05" form="short">mai</term>
|
||||
<term name="month-06" form="short">jun.</term>
|
||||
<term name="month-07" form="short">jul.</term>
|
||||
<term name="month-08" form="short">aug.</term>
|
||||
<term name="month-09" form="short">sep.</term>
|
||||
<term name="month-10" form="short">okt.</term>
|
||||
<term name="month-11" form="short">nov.</term>
|
||||
<term name="month-12" form="short">des.</term>
|
||||
|
||||
<!-- SEASONS -->
|
||||
<term name="season-01">vår</term>
|
||||
<term name="season-02">sommar</term>
|
||||
<term name="season-03">haust</term>
|
||||
<term name="season-04">vinter</term>
|
||||
</terms>
|
||||
</locale>
|
||||
Vendored
+312
@@ -0,0 +1,312 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="pl-PL">
|
||||
<info>
|
||||
<translator>
|
||||
<name>pAo</name>
|
||||
</translator>
|
||||
<translator>
|
||||
<name>Michal</name>
|
||||
</translator>
|
||||
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
|
||||
<updated>2012-07-04T23:31:02+00:00</updated>
|
||||
</info>
|
||||
<style-options punctuation-in-quote="false"/>
|
||||
<date form="text">
|
||||
<date-part name="day" suffix=" "/>
|
||||
<date-part name="month" suffix=" "/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<date form="numeric">
|
||||
<date-part name="day" form="numeric-leading-zeros" suffix="."/>
|
||||
<date-part name="month" form="numeric-leading-zeros" suffix="."/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<terms>
|
||||
<term name="accessed">udostępniono</term>
|
||||
<term name="and">i</term>
|
||||
<term name="and others">i inni</term>
|
||||
<term name="anonymous">anonim</term>
|
||||
<term name="anonymous" form="short">anon.</term>
|
||||
<term name="at">na</term>
|
||||
<term name="available at">dostępne na</term>
|
||||
<term name="by">przez</term>
|
||||
<term name="circa">około</term>
|
||||
<term name="circa" form="short">ok</term>
|
||||
<term name="cited">cytowane</term>
|
||||
<term name="edition">
|
||||
<single>wydanie</single>
|
||||
<multiple>wydania</multiple>
|
||||
</term>
|
||||
<term name="edition" form="short">wyd.</term>
|
||||
<term name="et-al">i in.</term>
|
||||
<term name="forthcoming">w przygotowaniu</term>
|
||||
<term name="from">z</term>
|
||||
<term name="ibid">ibid.</term>
|
||||
<term name="in">w</term>
|
||||
<term name="in press">w druku</term>
|
||||
<term name="internet">internet</term>
|
||||
<term name="interview">wywiad</term>
|
||||
<term name="letter">list</term>
|
||||
<term name="no date">brak daty</term>
|
||||
<term name="no date" form="short">b.d.</term>
|
||||
<term name="online">online</term>
|
||||
<term name="presented at">zaprezentowano na</term>
|
||||
<term name="reference">
|
||||
<single>referencja</single>
|
||||
<multiple>referencje</multiple>
|
||||
</term>
|
||||
<term name="reference" form="short">
|
||||
<single>ref.</single>
|
||||
<multiple>ref.</multiple>
|
||||
</term>
|
||||
<term name="retrieved">pobrano</term>
|
||||
<term name="scale">skala</term>
|
||||
<term name="version">wersja</term>
|
||||
|
||||
<!-- ANNO DOMINI; BEFORE CHRIST -->
|
||||
<term name="ad">n.e.</term>
|
||||
<term name="bc">p.n.e.</term>
|
||||
|
||||
<!-- PUNCTUATION -->
|
||||
<term name="open-quote">„</term>
|
||||
<term name="close-quote">”</term>
|
||||
<term name="open-inner-quote">«</term>
|
||||
<term name="close-inner-quote">»</term>
|
||||
<term name="page-range-delimiter">–</term>
|
||||
|
||||
<!-- ORDINALS -->
|
||||
<term name="ordinal">.</term>
|
||||
|
||||
<!-- LONG ORDINALS -->
|
||||
<term name="long-ordinal-01">pierwszy</term>
|
||||
<term name="long-ordinal-02">drugi</term>
|
||||
<term name="long-ordinal-03">trzeci</term>
|
||||
<term name="long-ordinal-04">czwarty</term>
|
||||
<term name="long-ordinal-05">piąty</term>
|
||||
<term name="long-ordinal-06">szósty</term>
|
||||
<term name="long-ordinal-07">siódmy</term>
|
||||
<term name="long-ordinal-08">ósmy</term>
|
||||
<term name="long-ordinal-09">dziewiąty</term>
|
||||
<term name="long-ordinal-10">dziesiąty</term>
|
||||
|
||||
<!-- LONG LOCATOR FORMS -->
|
||||
<term name="book">
|
||||
<single>książka</single>
|
||||
<multiple>książki</multiple>
|
||||
</term>
|
||||
<term name="chapter">
|
||||
<single>rozdział</single>
|
||||
<multiple>rozdziały</multiple>
|
||||
</term>
|
||||
<term name="column">
|
||||
<single>kolumna</single>
|
||||
<multiple>kolumny</multiple>
|
||||
</term>
|
||||
<term name="figure">
|
||||
<single>rycina</single>
|
||||
<multiple>ryciny</multiple>
|
||||
</term>
|
||||
<term name="folio">
|
||||
<single>folio</single>
|
||||
<multiple>folio</multiple>
|
||||
</term>
|
||||
<term name="issue">
|
||||
<single>numer</single>
|
||||
<multiple>numery</multiple>
|
||||
</term>
|
||||
<term name="line">
|
||||
<single>wiersz</single>
|
||||
<multiple>wiersze</multiple>
|
||||
</term>
|
||||
<term name="note">
|
||||
<single>notatka</single>
|
||||
<multiple>notatki</multiple>
|
||||
</term>
|
||||
<term name="opus">
|
||||
<single>opus</single>
|
||||
<multiple>opera</multiple>
|
||||
</term>
|
||||
<term name="page">
|
||||
<single>strona</single>
|
||||
<multiple>strony</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages">
|
||||
<single>strona</single>
|
||||
<multiple>strony</multiple>
|
||||
</term>
|
||||
<term name="paragraph">
|
||||
<single>akapit</single>
|
||||
<multiple>akapity</multiple>
|
||||
</term>
|
||||
<term name="part">
|
||||
<single>część</single>
|
||||
<multiple>części</multiple>
|
||||
</term>
|
||||
<term name="section">
|
||||
<single>sekcja</single>
|
||||
<multiple>sekcje</multiple>
|
||||
</term>
|
||||
<term name="sub verbo">
|
||||
<single>sub verbo</single>
|
||||
<multiple>sub verbis</multiple>
|
||||
</term>
|
||||
<term name="verse">
|
||||
<single>wers</single>
|
||||
<multiple>wersy</multiple>
|
||||
</term>
|
||||
<term name="volume">
|
||||
<single>tom</single>
|
||||
<multiple>tomy</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">kol.</term>
|
||||
<term name="figure" form="short">ryc.</term>
|
||||
<term name="folio" form="short">fol.</term>
|
||||
<term name="issue" form="short">nr</term>
|
||||
<term name="line" form="short">l.</term>
|
||||
<term name="note" form="short">n.</term>
|
||||
<term name="opus" form="short">op.</term>
|
||||
<term name="page" form="short">
|
||||
<single>s.</single>
|
||||
<multiple>s.</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages" form="short">
|
||||
<single>s.</single>
|
||||
<multiple>ss.</multiple>
|
||||
</term>
|
||||
<term name="paragraph" form="short">akap.</term>
|
||||
<term name="part" form="short">cz.</term>
|
||||
<term name="section" form="short">sekc.</term>
|
||||
<term name="sub verbo" form="short">
|
||||
<single>s.v.</single>
|
||||
<multiple>s.vv.</multiple>
|
||||
</term>
|
||||
<term name="verse" form="short">
|
||||
<single>w.</single>
|
||||
<multiple>w.</multiple>
|
||||
</term>
|
||||
<term name="volume" form="short">
|
||||
<single>t.</single>
|
||||
<multiple>t.</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶¶</multiple>
|
||||
</term>
|
||||
<term name="section" form="symbol">
|
||||
<single>§</single>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="director">
|
||||
<single>reżyser</single>
|
||||
<multiple>reżyserzy</multiple>
|
||||
</term>
|
||||
<term name="editor">
|
||||
<single>redaktor</single>
|
||||
<multiple>redaktorzy</multiple>
|
||||
</term>
|
||||
<term name="editorial-director">
|
||||
<single>edytor</single>
|
||||
<multiple>edytorzy</multiple>
|
||||
</term>
|
||||
<term name="illustrator">
|
||||
<single>ilustrator</single>
|
||||
<multiple>ilustratorzy</multiple>
|
||||
</term>
|
||||
<term name="translator">
|
||||
<single>tłumacz</single>
|
||||
<multiple>tłumacze</multiple>
|
||||
</term>
|
||||
<term name="editortranslator">
|
||||
<single>redaktor & tłumacz</single>
|
||||
<multiple>redaktorzy & tłumacze</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="director" form="short">
|
||||
<single>reż.</single>
|
||||
<multiple>reż.</multiple>
|
||||
</term>
|
||||
<term name="editor" form="short">
|
||||
<single>red.</single>
|
||||
<multiple>red.</multiple>
|
||||
</term>
|
||||
<term name="editorial-director" form="short">
|
||||
<single>red.</single>
|
||||
<multiple>red.</multiple>
|
||||
</term>
|
||||
<term name="illustrator" form="short">
|
||||
<single>il.</single>
|
||||
<multiple>il.</multiple>
|
||||
</term>
|
||||
<term name="translator" form="short">
|
||||
<single>tłum.</single>
|
||||
<multiple>tłum.</multiple>
|
||||
</term>
|
||||
<term name="editortranslator" form="short">
|
||||
<single>red.tłum.</single>
|
||||
<multiple>red.tłum.</multiple>
|
||||
</term>
|
||||
|
||||
<!-- VERB ROLE FORMS -->
|
||||
<term name="container-author" form="verb">przez</term>
|
||||
<term name="director" form="verb">reżyserowane przez</term>
|
||||
<term name="editor" form="verb">zredagowane przez</term>
|
||||
<term name="editorial-director" form="verb">zredagowane przez</term>
|
||||
<term name="illustrator" form="verb">ilustrowane przez</term>
|
||||
<term name="interviewer" form="verb">przeprowadzony przez</term>
|
||||
<term name="recipient" form="verb">dla</term>
|
||||
<term name="reviewed-author" form="verb">przez</term>
|
||||
<term name="translator" form="verb">przetłumaczone przez</term>
|
||||
<term name="editortranslator" form="verb">zredagowane i przetłumaczone przez</term>
|
||||
|
||||
<!-- SHORT VERB ROLE FORMS -->
|
||||
<term name="director" form="verb-short">reż.</term>
|
||||
<term name="editor" form="verb-short">red.</term>
|
||||
<term name="editorial-director" form="verb-short">red.</term>
|
||||
<term name="illustrator" form="verb-short">il.</term>
|
||||
<term name="translator" form="verb-short">tłum.</term>
|
||||
<term name="editortranslator" form="verb-short">red.tłum.</term>
|
||||
|
||||
<!-- LONG MONTH FORMS -->
|
||||
<term name="month-01">styczeń</term>
|
||||
<term name="month-02">luty</term>
|
||||
<term name="month-03">marzec</term>
|
||||
<term name="month-04">kwiecień</term>
|
||||
<term name="month-05">maj</term>
|
||||
<term name="month-06">czerwiec</term>
|
||||
<term name="month-07">lipiec</term>
|
||||
<term name="month-08">sierpień</term>
|
||||
<term name="month-09">wrzesień</term>
|
||||
<term name="month-10">październik</term>
|
||||
<term name="month-11">listopad</term>
|
||||
<term name="month-12">grudzień</term>
|
||||
|
||||
<!-- SHORT MONTH FORMS -->
|
||||
<term name="month-01" form="short">sty.</term>
|
||||
<term name="month-02" form="short">luty</term>
|
||||
<term name="month-03" form="short">mar.</term>
|
||||
<term name="month-04" form="short">kwi.</term>
|
||||
<term name="month-05" form="short">maj</term>
|
||||
<term name="month-06" form="short">cze.</term>
|
||||
<term name="month-07" form="short">lip.</term>
|
||||
<term name="month-08" form="short">sie.</term>
|
||||
<term name="month-09" form="short">wrz.</term>
|
||||
<term name="month-10" form="short">paź.</term>
|
||||
<term name="month-11" form="short">lis.</term>
|
||||
<term name="month-12" form="short">grudz.</term>
|
||||
|
||||
<!-- SEASONS -->
|
||||
<term name="season-01">wiosna</term>
|
||||
<term name="season-02">lato</term>
|
||||
<term name="season-03">jesień</term>
|
||||
<term name="season-04">zima</term>
|
||||
</terms>
|
||||
</locale>
|
||||
Vendored
+324
@@ -0,0 +1,324 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="pt-BR">
|
||||
<info>
|
||||
<translator>
|
||||
<name>José Antonio Meira da Rocha</name>
|
||||
</translator>
|
||||
<translator>
|
||||
<name>Meira da Rocha</name>
|
||||
</translator>
|
||||
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
|
||||
<updated>2016-05-16T00:00:00+03:00</updated>
|
||||
</info>
|
||||
<style-options punctuation-in-quote="false" limit-day-ordinals-to-day-1="true"/>
|
||||
<date form="text">
|
||||
<date-part name="day" form="ordinal" suffix=" de "/>
|
||||
<date-part name="month" suffix=" de "/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<date form="numeric">
|
||||
<date-part name="day" form="numeric-leading-zeros" suffix="/"/>
|
||||
<date-part name="month" form="numeric-leading-zeros" suffix="/"/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<terms>
|
||||
<term name="accessed">acessado</term>
|
||||
<term name="and">e</term>
|
||||
<term name="and others">e outros</term>
|
||||
<term name="anonymous">anônimo</term>
|
||||
<term name="anonymous" form="short">anon</term>
|
||||
<term name="at">em</term>
|
||||
<term name="available at">disponível em</term>
|
||||
<term name="by">por</term>
|
||||
<term name="circa">circa</term>
|
||||
<term name="circa" form="short">c.</term>
|
||||
<term name="cited">citado</term>
|
||||
<term name="edition">
|
||||
<single>edição</single>
|
||||
<multiple>edições</multiple>
|
||||
</term>
|
||||
<term name="edition" form="short">ed</term>
|
||||
<term name="et-al">et al.</term>
|
||||
<term name="forthcoming">a ser publicado</term>
|
||||
<term name="from">de</term>
|
||||
<term name="ibid">ibidem</term>
|
||||
<term name="in">in</term>
|
||||
<term name="in press">no prelo</term>
|
||||
<term name="internet">internet</term>
|
||||
<term name="interview">entrevista</term>
|
||||
<term name="letter">carta</term>
|
||||
<term name="no date">sem data</term>
|
||||
<term name="no date" form="short">[s.d.]</term>
|
||||
<term name="online">online</term>
|
||||
<term name="presented at">apresentado em</term>
|
||||
<term name="reference">
|
||||
<single>referência</single>
|
||||
<multiple>referências</multiple>
|
||||
</term>
|
||||
<term name="reference" form="short">
|
||||
<single>ref.</single>
|
||||
<multiple>refs.</multiple>
|
||||
</term>
|
||||
<term name="retrieved">recuperado</term>
|
||||
<term name="scale">escala</term>
|
||||
<term name="version">versão</term>
|
||||
|
||||
<!-- ANNO DOMINI; BEFORE CHRIST -->
|
||||
<term name="ad">DC</term>
|
||||
<term name="bc">AC</term>
|
||||
|
||||
<!-- PUNCTUATION -->
|
||||
<term name="open-quote">“</term>
|
||||
<term name="close-quote">”</term>
|
||||
<term name="open-inner-quote">‘</term>
|
||||
<term name="close-inner-quote">’</term>
|
||||
<term name="page-range-delimiter">–</term>
|
||||
|
||||
<!-- ORDINALS -->
|
||||
<term name="ordinal">º</term>
|
||||
<term name="ordinal-01" gender-form="feminine" match="whole-number">ª</term>
|
||||
<term name="ordinal-01" gender-form="masculine" match="whole-number">º</term>
|
||||
|
||||
<!-- LONG ORDINALS -->
|
||||
<term name="long-ordinal-01" gender-form="masculine">primeiro</term>
|
||||
<term name="long-ordinal-02" gender-form="masculine">segundo</term>
|
||||
<term name="long-ordinal-03" gender-form="masculine">terceiro</term>
|
||||
<term name="long-ordinal-04" gender-form="masculine">quarto</term>
|
||||
<term name="long-ordinal-05" gender-form="masculine">quinto</term>
|
||||
<term name="long-ordinal-06" gender-form="masculine">sexto</term>
|
||||
<term name="long-ordinal-07" gender-form="masculine">sétimo</term>
|
||||
<term name="long-ordinal-08" gender-form="masculine">oitavo</term>
|
||||
<term name="long-ordinal-09" gender-form="masculine">nono</term>
|
||||
<term name="long-ordinal-10" gender-form="masculine">décimo</term>
|
||||
<term name="long-ordinal-01" gender-form="feminine">primeira</term>
|
||||
<term name="long-ordinal-02" gender-form="feminine">segunda</term>
|
||||
<term name="long-ordinal-03" gender-form="feminine">terceira</term>
|
||||
<term name="long-ordinal-04" gender-form="feminine">quarta</term>
|
||||
<term name="long-ordinal-05" gender-form="feminine">quinta</term>
|
||||
<term name="long-ordinal-06" gender-form="feminine">sexta</term>
|
||||
<term name="long-ordinal-07" gender-form="feminine">sétima</term>
|
||||
<term name="long-ordinal-08" gender-form="feminine">oitava</term>
|
||||
<term name="long-ordinal-09" gender-form="feminine">nona</term>
|
||||
<term name="long-ordinal-10" gender-form="feminine">décima</term>
|
||||
|
||||
<!-- LONG LOCATOR FORMS -->
|
||||
<term name="book">
|
||||
<single>livro</single>
|
||||
<multiple>livros</multiple>
|
||||
</term>
|
||||
<term name="chapter">
|
||||
<single>capítulo</single>
|
||||
<multiple>capítulos</multiple>
|
||||
</term>
|
||||
<term name="column">
|
||||
<single>coluna</single>
|
||||
<multiple>colunas</multiple>
|
||||
</term>
|
||||
<term name="figure">
|
||||
<single>figura</single>
|
||||
<multiple>figuras</multiple>
|
||||
</term>
|
||||
<term name="folio">
|
||||
<single>folio</single>
|
||||
<multiple>folios</multiple>
|
||||
</term>
|
||||
<term name="issue">
|
||||
<single>número</single>
|
||||
<multiple>números</multiple>
|
||||
</term>
|
||||
<term name="line">
|
||||
<single>linha</single>
|
||||
<multiple>linhas</multiple>
|
||||
</term>
|
||||
<term name="note">
|
||||
<single>nota</single>
|
||||
<multiple>notas</multiple>
|
||||
</term>
|
||||
<term name="opus">
|
||||
<single>opus</single>
|
||||
<multiple>opera</multiple>
|
||||
</term>
|
||||
<term name="page">
|
||||
<single>página</single>
|
||||
<multiple>páginas</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages">
|
||||
<single>página</single>
|
||||
<multiple>páginas</multiple>
|
||||
</term>
|
||||
<term name="paragraph">
|
||||
<single>parágrafo</single>
|
||||
<multiple>parágrafos</multiple>
|
||||
</term>
|
||||
<term name="part">
|
||||
<single>parte</single>
|
||||
<multiple>partes</multiple>
|
||||
</term>
|
||||
<term name="section">
|
||||
<single>seção</single>
|
||||
<multiple>seções</multiple>
|
||||
</term>
|
||||
<term name="sub verbo">
|
||||
<single>sub verbo</single>
|
||||
<multiple>sub verbis</multiple>
|
||||
</term>
|
||||
<term name="verse">
|
||||
<single>verso</single>
|
||||
<multiple>versos</multiple>
|
||||
</term>
|
||||
<term name="volume">
|
||||
<single>volume</single>
|
||||
<multiple>volumes</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT LOCATOR FORMS -->
|
||||
<term name="book" form="short">liv.</term>
|
||||
<term name="chapter" form="short">cap.</term>
|
||||
<term name="column" form="short">col.</term>
|
||||
<term name="figure" form="short">fig.</term>
|
||||
<term name="folio" form="short">f.</term>
|
||||
<term name="issue" form="short">nº</term>
|
||||
<term name="line" form="short">l.</term>
|
||||
<term name="note" form="short">n.</term>
|
||||
<term name="opus" form="short">op.</term>
|
||||
<term name="page" form="short">
|
||||
<single>p.</single>
|
||||
<multiple>p.</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages" form="short">
|
||||
<single>p.</single>
|
||||
<multiple>p.</multiple>
|
||||
</term>
|
||||
<term name="paragraph" form="short">parag.</term>
|
||||
<term name="part" form="short">pt.</term>
|
||||
<term name="section" form="short">seç.</term>
|
||||
<term name="sub verbo" form="short">
|
||||
<single>s.v.</single>
|
||||
<multiple>s.vv.</multiple>
|
||||
</term>
|
||||
<term name="verse" form="short">
|
||||
<single>v.</single>
|
||||
<multiple>vv.</multiple>
|
||||
</term>
|
||||
<term name="volume" form="short">
|
||||
<single>vol.</single>
|
||||
<multiple>vols.</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶¶</multiple>
|
||||
</term>
|
||||
<term name="section" form="symbol">
|
||||
<single>§</single>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="director">
|
||||
<single>diretor</single>
|
||||
<multiple>diretores</multiple>
|
||||
</term>
|
||||
<term name="editor">
|
||||
<single>organizador</single>
|
||||
<multiple>organizadores</multiple>
|
||||
</term>
|
||||
<term name="editorial-director">
|
||||
<single>editor</single>
|
||||
<multiple>editores</multiple>
|
||||
</term>
|
||||
<term name="illustrator">
|
||||
<single>ilustrador</single>
|
||||
<multiple>ilustradores</multiple>
|
||||
</term>
|
||||
<term name="translator">
|
||||
<single>tradutor</single>
|
||||
<multiple>tradutores</multiple>
|
||||
</term>
|
||||
<term name="editortranslator">
|
||||
<single>editor e tradutor</single>
|
||||
<multiple>editores e tradutores</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="director" form="short">
|
||||
<single>dir.</single>
|
||||
<multiple>dirs.</multiple>
|
||||
</term>
|
||||
<term name="editor" form="short">
|
||||
<single>org.</single>
|
||||
<multiple>orgs.</multiple>
|
||||
</term>
|
||||
<term name="editorial-director" form="short">
|
||||
<single>ed.</single>
|
||||
<multiple>eds.</multiple>
|
||||
</term>
|
||||
<term name="illustrator" form="short">
|
||||
<single>il.</single>
|
||||
<multiple>ils.</multiple>
|
||||
</term>
|
||||
<term name="translator" form="short">
|
||||
<single>trad.</single>
|
||||
<multiple>trads.</multiple>
|
||||
</term>
|
||||
<term name="editortranslator" form="short">
|
||||
<single>ed. e trad.</single>
|
||||
<multiple>eds. e trads.</multiple>
|
||||
</term>
|
||||
|
||||
<!-- VERB ROLE FORMS -->
|
||||
<term name="container-author" form="verb">por</term>
|
||||
<term name="director" form="verb">dirigido por</term>
|
||||
<term name="editor" form="verb">organizado por</term>
|
||||
<term name="editorial-director" form="verb">editado por</term>
|
||||
<term name="illustrator" form="verb">ilustrado por</term>
|
||||
<term name="interviewer" form="verb">entrevista de</term>
|
||||
<term name="recipient" form="verb">para</term>
|
||||
<term name="reviewed-author" form="verb">por</term>
|
||||
<term name="translator" form="verb">traduzido por</term>
|
||||
<term name="editortranslator" form="verb">editado e traduzido por</term>
|
||||
|
||||
<!-- SHORT VERB ROLE FORMS -->
|
||||
<term name="director" form="verb-short">dir.</term>
|
||||
<term name="editor" form="verb-short">org.</term>
|
||||
<term name="editorial-director" form="verb-short">ed.</term>
|
||||
<term name="illustrator" form="verb-short">ilus.</term>
|
||||
<term name="translator" form="verb-short">trad.</term>
|
||||
<term name="editortranslator" form="verb-short">ed. e trad. por</term>
|
||||
|
||||
<!-- LONG MONTH FORMS -->
|
||||
<term name="month-01">janeiro</term>
|
||||
<term name="month-02">fevereiro</term>
|
||||
<term name="month-03">março</term>
|
||||
<term name="month-04">abril</term>
|
||||
<term name="month-05">maio</term>
|
||||
<term name="month-06">junho</term>
|
||||
<term name="month-07">julho</term>
|
||||
<term name="month-08">agosto</term>
|
||||
<term name="month-09">setembro</term>
|
||||
<term name="month-10">outubro</term>
|
||||
<term name="month-11">novembro</term>
|
||||
<term name="month-12">dezembro</term>
|
||||
|
||||
<!-- SHORT MONTH FORMS -->
|
||||
<term name="month-01" form="short">jan.</term>
|
||||
<term name="month-02" form="short">fev.</term>
|
||||
<term name="month-03" form="short">mar.</term>
|
||||
<term name="month-04" form="short">abr.</term>
|
||||
<term name="month-05" form="short">maio</term>
|
||||
<term name="month-06" form="short">jun.</term>
|
||||
<term name="month-07" form="short">jul.</term>
|
||||
<term name="month-08" form="short">ago.</term>
|
||||
<term name="month-09" form="short">set.</term>
|
||||
<term name="month-10" form="short">out.</term>
|
||||
<term name="month-11" form="short">nov.</term>
|
||||
<term name="month-12" form="short">dez.</term>
|
||||
|
||||
<!-- SEASONS -->
|
||||
<term name="season-01">Primavera</term>
|
||||
<term name="season-02">Verão</term>
|
||||
<term name="season-03">Outono</term>
|
||||
<term name="season-04">Inverno</term>
|
||||
</terms>
|
||||
</locale>
|
||||
Vendored
+320
@@ -0,0 +1,320 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="pt-PT">
|
||||
<info>
|
||||
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
|
||||
<updated>2013-09-20T23:31:02+00:00</updated>
|
||||
<translator>
|
||||
<name>Jonadabe PT</name>
|
||||
</translator>
|
||||
</info>
|
||||
<style-options punctuation-in-quote="false"/>
|
||||
<date form="text">
|
||||
<date-part name="day" suffix=" de "/>
|
||||
<date-part name="month" suffix=" de "/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<date form="numeric">
|
||||
<date-part name="day" form="numeric-leading-zeros" suffix="/"/>
|
||||
<date-part name="month" form="numeric-leading-zeros" suffix="/"/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<terms>
|
||||
<term name="accessed">acedido</term>
|
||||
<term name="and">e</term>
|
||||
<term name="and others">e outros</term>
|
||||
<term name="anonymous">anónimo</term>
|
||||
<term name="anonymous" form="short">anón.</term>
|
||||
<term name="at">em</term>
|
||||
<term name="available at">disponível em</term>
|
||||
<term name="by">por</term>
|
||||
<term name="circa">circa</term>
|
||||
<term name="circa" form="short">c.</term>
|
||||
<term name="cited">citado</term>
|
||||
<term name="edition">
|
||||
<single>edição</single>
|
||||
<multiple>edições</multiple>
|
||||
</term>
|
||||
<term name="edition" form="short">ed.</term>
|
||||
<term name="et-al">et al.</term>
|
||||
<term name="forthcoming">a publicar</term>
|
||||
<term name="from">de</term>
|
||||
<term name="ibid">ibid.</term>
|
||||
<term name="in">em</term>
|
||||
<term name="in press">no prelo</term>
|
||||
<term name="internet">internet</term>
|
||||
<term name="interview">entrevista</term>
|
||||
<term name="letter">carta</term>
|
||||
<term name="no date">sem data</term>
|
||||
<term name="no date" form="short">sem data</term>
|
||||
<term name="online">em linha</term>
|
||||
<term name="presented at">apresentado na</term>
|
||||
<term name="reference">
|
||||
<single>referência</single>
|
||||
<multiple>referências</multiple>
|
||||
</term>
|
||||
<term name="reference" form="short">
|
||||
<single>ref.</single>
|
||||
<multiple>refs.</multiple>
|
||||
</term>
|
||||
<term name="retrieved">obtido</term>
|
||||
<term name="scale">scale</term>
|
||||
<term name="version">versão</term>
|
||||
|
||||
<!-- ANNO DOMINI; BEFORE CHRIST -->
|
||||
<term name="ad">AD</term>
|
||||
<term name="bc">BC</term>
|
||||
|
||||
<!-- PUNCTUATION -->
|
||||
<term name="open-quote">«</term>
|
||||
<term name="close-quote">»</term>
|
||||
<term name="open-inner-quote">“</term>
|
||||
<term name="close-inner-quote">”</term>
|
||||
<term name="page-range-delimiter">–</term>
|
||||
|
||||
<!-- ORDINALS -->
|
||||
<term name="ordinal" gender-form="masculine" match="whole-number">.º</term>
|
||||
<term name="ordinal" gender-form="feminine" match="whole-number">.ª</term>
|
||||
|
||||
<!-- LONG ORDINALS -->
|
||||
<term name="long-ordinal-01" gender-form="masculine">primeiro</term>
|
||||
<term name="long-ordinal-01" gender-form="feminine">primeira</term>
|
||||
<term name="long-ordinal-02" gender-form="masculine">segundo</term>
|
||||
<term name="long-ordinal-02" gender-form="feminine">segunda</term>
|
||||
<term name="long-ordinal-03" gender-form="masculine">terceiro</term>
|
||||
<term name="long-ordinal-03" gender-form="feminine">terceira</term>
|
||||
<term name="long-ordinal-04" gender-form="masculine">quarto</term>
|
||||
<term name="long-ordinal-04" gender-form="feminine">quarta</term>
|
||||
<term name="long-ordinal-05" gender-form="masculine">quinto</term>
|
||||
<term name="long-ordinal-05" gender-form="feminine">quinta</term>
|
||||
<term name="long-ordinal-06" gender-form="masculine">sexto</term>
|
||||
<term name="long-ordinal-06" gender-form="feminine">sexta</term>
|
||||
<term name="long-ordinal-07" gender-form="masculine">sétimo</term>
|
||||
<term name="long-ordinal-07" gender-form="feminine">sétima</term>
|
||||
<term name="long-ordinal-08" gender-form="masculine">oitavo</term>
|
||||
<term name="long-ordinal-08" gender-form="feminine">oitava</term>
|
||||
<term name="long-ordinal-09" gender-form="masculine">nono</term>
|
||||
<term name="long-ordinal-09" gender-form="feminine">nona</term>
|
||||
<term name="long-ordinal-10" gender-form="masculine">décimo</term>
|
||||
<term name="long-ordinal-10" gender-form="feminine">décima</term>
|
||||
|
||||
<!-- LONG LOCATOR FORMS -->
|
||||
<term name="book">
|
||||
<single>livro</single>
|
||||
<multiple>livros</multiple>
|
||||
</term>
|
||||
<term name="chapter">
|
||||
<single>capítulo</single>
|
||||
<multiple>capítulos</multiple>
|
||||
</term>
|
||||
<term name="column">
|
||||
<single>coluna</single>
|
||||
<multiple>colunas</multiple>
|
||||
</term>
|
||||
<term name="figure">
|
||||
<single>figura</single>
|
||||
<multiple>figuras</multiple>
|
||||
</term>
|
||||
<term name="folio">
|
||||
<single>fólio</single>
|
||||
<multiple>fólios</multiple>
|
||||
</term>
|
||||
<term name="issue">
|
||||
<single>número</single>
|
||||
<multiple>números</multiple>
|
||||
</term>
|
||||
<term name="line">
|
||||
<single>linha</single>
|
||||
<multiple>linhas</multiple>
|
||||
</term>
|
||||
<term name="note">
|
||||
<single>nota</single>
|
||||
<multiple>notas</multiple>
|
||||
</term>
|
||||
<term name="opus">
|
||||
<single>opus</single>
|
||||
<multiple>opera</multiple>
|
||||
</term>
|
||||
<term name="page">
|
||||
<single>página</single>
|
||||
<multiple>páginas</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages">
|
||||
<single>página</single>
|
||||
<multiple>páginas</multiple>
|
||||
</term>
|
||||
<term name="paragraph">
|
||||
<single>parágrafo</single>
|
||||
<multiple>parágrafos</multiple>
|
||||
</term>
|
||||
<term name="part">
|
||||
<single>parte</single>
|
||||
<multiple>partes</multiple>
|
||||
</term>
|
||||
<term name="section">
|
||||
<single>secção</single>
|
||||
<multiple>secções</multiple>
|
||||
</term>
|
||||
<term name="sub verbo">
|
||||
<single>sub verbo</single>
|
||||
<multiple>sub verbis</multiple>
|
||||
</term>
|
||||
<term name="verse">
|
||||
<single>versículo</single>
|
||||
<multiple>versículos</multiple>
|
||||
</term>
|
||||
<term name="volume">
|
||||
<single>volume</single>
|
||||
<multiple>volumes</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT LOCATOR FORMS -->
|
||||
<term name="book" form="short">liv.</term>
|
||||
<term name="chapter" form="short">cap.</term>
|
||||
<term name="column" form="short">col.</term>
|
||||
<term name="figure" form="short">fig.</term>
|
||||
<term name="folio" form="short">f.</term>
|
||||
<term name="issue" form="short">n.</term>
|
||||
<term name="line" form="short">l.</term>
|
||||
<term name="note" form="short">n.</term>
|
||||
<term name="opus" form="short">op.</term>
|
||||
<term name="page" form="short">
|
||||
<single>p.</single>
|
||||
<multiple>pp.</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages" form="short">
|
||||
<single>p.</single>
|
||||
<multiple>pp.</multiple>
|
||||
</term>
|
||||
<term name="paragraph" form="short">par.</term>
|
||||
<term name="part" form="short">pt.</term>
|
||||
<term name="section" form="short">sec.</term>
|
||||
<term name="sub verbo" form="short">
|
||||
<single>s.v.</single>
|
||||
<multiple>s.vv.</multiple>
|
||||
</term>
|
||||
<term name="verse" form="short">
|
||||
<single>v</single>
|
||||
<multiple>vv</multiple>
|
||||
</term>
|
||||
<term name="volume" form="short">
|
||||
<single>vol.</single>
|
||||
<multiple>vols.</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶¶</multiple>
|
||||
</term>
|
||||
<term name="section" form="symbol">
|
||||
<single>§</single>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="director">
|
||||
<single>director</single>
|
||||
<multiple>directores</multiple>
|
||||
</term>
|
||||
<term name="editor">
|
||||
<single>editor</single>
|
||||
<multiple>editores</multiple>
|
||||
</term>
|
||||
<term name="editorial-director">
|
||||
<single>editor</single>
|
||||
<multiple>editores</multiple>
|
||||
</term>
|
||||
<term name="illustrator">
|
||||
<single>ilustrador</single>
|
||||
<multiple>ilustradores</multiple>
|
||||
</term>
|
||||
<term name="translator">
|
||||
<single>tradutor</single>
|
||||
<multiple>tradutores</multiple>
|
||||
</term>
|
||||
<term name="editortranslator">
|
||||
<single>editor & tradutor</single>
|
||||
<multiple>editores & tradutores</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="director" form="short">
|
||||
<single>dir.</single>
|
||||
<multiple>dirs.</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="illustrator" form="short">
|
||||
<single>il.</single>
|
||||
<multiple>ils.</multiple>
|
||||
</term>
|
||||
<term name="translator" form="short">
|
||||
<single>trad.</single>
|
||||
<multiple>trads.</multiple>
|
||||
</term>
|
||||
<term name="editortranslator" form="short">
|
||||
<single>ed. & trad.</single>
|
||||
<multiple>eds. & trads.</multiple>
|
||||
</term>
|
||||
|
||||
<!-- VERB ROLE FORMS -->
|
||||
<term name="container-author" form="verb">por</term>
|
||||
<term name="director" form="verb">dirigido por</term>
|
||||
<term name="editor" form="verb">editado por</term>
|
||||
<term name="editorial-director" form="verb">editorial de</term>
|
||||
<term name="illustrator" form="verb">ilustrado por</term>
|
||||
<term name="interviewer" form="verb">entrevistado por</term>
|
||||
<term name="recipient" form="verb">para</term>
|
||||
<term name="reviewed-author" form="verb">revisto por</term>
|
||||
<term name="translator" form="verb">traduzido por</term>
|
||||
<term name="editortranslator" form="verb">editado & traduzido por</term>
|
||||
|
||||
<!-- SHORT VERB ROLE FORMS -->
|
||||
<term name="director" form="verb-short">dir.</term>
|
||||
<term name="editor" form="verb-short">ed.</term>
|
||||
<term name="editorial-director" form="verb-short">ed.</term>
|
||||
<term name="illustrator" form="verb-short">ilus.</term>
|
||||
<term name="translator" form="verb-short">trad.</term>
|
||||
<term name="editortranslator" form="verb-short">ed. & trad. por</term>
|
||||
|
||||
<!-- LONG MONTH FORMS -->
|
||||
<term name="month-01">Janeiro</term>
|
||||
<term name="month-02">Fevereiro</term>
|
||||
<term name="month-03">Março</term>
|
||||
<term name="month-04">Abril</term>
|
||||
<term name="month-05">Maio</term>
|
||||
<term name="month-06">Junho</term>
|
||||
<term name="month-07">Julho</term>
|
||||
<term name="month-08">Agosto</term>
|
||||
<term name="month-09">Setembro</term>
|
||||
<term name="month-10">Outubro</term>
|
||||
<term name="month-11">Novembro</term>
|
||||
<term name="month-12">Dezembro</term>
|
||||
|
||||
<!-- SHORT MONTH FORMS -->
|
||||
<term name="month-01" form="short">Jan.</term>
|
||||
<term name="month-02" form="short">Fev.</term>
|
||||
<term name="month-03" form="short">Mar.</term>
|
||||
<term name="month-04" form="short">Abr.</term>
|
||||
<term name="month-05" form="short">Mai.</term>
|
||||
<term name="month-06" form="short">Jun.</term>
|
||||
<term name="month-07" form="short">Jul.</term>
|
||||
<term name="month-08" form="short">Ago.</term>
|
||||
<term name="month-09" form="short">Set.</term>
|
||||
<term name="month-10" form="short">Out.</term>
|
||||
<term name="month-11" form="short">Nov.</term>
|
||||
<term name="month-12" form="short">Dez.</term>
|
||||
|
||||
<!-- SEASONS -->
|
||||
<term name="season-01">Primavera</term>
|
||||
<term name="season-02">Verão</term>
|
||||
<term name="season-03">Outono</term>
|
||||
<term name="season-04">Inverno</term>
|
||||
</terms>
|
||||
</locale>
|
||||
Vendored
+311
@@ -0,0 +1,311 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="ro-RO">
|
||||
<info>
|
||||
<translator>
|
||||
<name>Nicolae Turcan</name>
|
||||
<email>nturcan@gmail.com</email>
|
||||
</translator>
|
||||
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
|
||||
<updated>2012-07-04T23:31:02+00:00</updated>
|
||||
</info>
|
||||
<style-options punctuation-in-quote="false"/>
|
||||
<date form="text">
|
||||
<date-part name="day" suffix=" "/>
|
||||
<date-part name="month" suffix=" "/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<date form="numeric">
|
||||
<date-part name="day" suffix="."/>
|
||||
<date-part name="month" form="numeric" suffix="."/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<terms>
|
||||
<term name="accessed">data accesării</term>
|
||||
<term name="and">și</term>
|
||||
<term name="and others">și alții</term>
|
||||
<term name="anonymous">anonim</term>
|
||||
<term name="anonymous" form="short">anon.</term>
|
||||
<term name="at">la</term>
|
||||
<term name="available at">disponibil la</term>
|
||||
<term name="by">de</term>
|
||||
<term name="circa">circa</term>
|
||||
<term name="circa" form="short">cca.</term>
|
||||
<term name="cited">citat</term>
|
||||
<term name="edition">
|
||||
<single>ediția</single>
|
||||
<multiple>edițiile</multiple>
|
||||
</term>
|
||||
<term name="edition" form="short">ed</term>
|
||||
<term name="et-al">et al.</term>
|
||||
<term name="forthcoming">în curs de apariție</term>
|
||||
<term name="from">din</term>
|
||||
<term name="ibid">ibidem</term>
|
||||
<term name="in">în</term>
|
||||
<term name="in press">sub tipar</term>
|
||||
<term name="internet">internet</term>
|
||||
<term name="interview">interviu</term>
|
||||
<term name="letter">scrisoare</term>
|
||||
<term name="no date">fără dată</term>
|
||||
<term name="no date" form="short">f.a.</term>
|
||||
<term name="online">online</term>
|
||||
<term name="presented at">prezentat la</term>
|
||||
<term name="reference">
|
||||
<single>referință</single>
|
||||
<multiple>referințe</multiple>
|
||||
</term>
|
||||
<term name="reference" form="short">
|
||||
<single>ref.</single>
|
||||
<multiple>ref.</multiple>
|
||||
</term>
|
||||
<term name="retrieved">preluat în</term>
|
||||
<term name="scale">scală</term>
|
||||
<term name="version">versiunea</term>
|
||||
|
||||
<!-- ANNO DOMINI; BEFORE CHRIST -->
|
||||
<term name="ad">d.Hr.</term>
|
||||
<term name="bc">î.Hr.</term>
|
||||
|
||||
<!-- PUNCTUATION -->
|
||||
<term name="open-quote">„</term>
|
||||
<term name="close-quote">”</term>
|
||||
<term name="open-inner-quote">«</term>
|
||||
<term name="close-inner-quote">»</term>
|
||||
<term name="page-range-delimiter">–</term>
|
||||
|
||||
<!-- ORDINALS -->
|
||||
<term name="ordinal">-lea</term>
|
||||
<term name="ordinal-01" match="whole-number"></term>
|
||||
|
||||
<!-- LONG ORDINALS -->
|
||||
<term name="long-ordinal-01">primul</term>
|
||||
<term name="long-ordinal-02">al doilea</term>
|
||||
<term name="long-ordinal-03">al treilea</term>
|
||||
<term name="long-ordinal-04">al patrulea</term>
|
||||
<term name="long-ordinal-05">al cincilea</term>
|
||||
<term name="long-ordinal-06">al șaselea</term>
|
||||
<term name="long-ordinal-07">al șaptelea</term>
|
||||
<term name="long-ordinal-08">al optulea</term>
|
||||
<term name="long-ordinal-09">al nouălea</term>
|
||||
<term name="long-ordinal-10">al zecelea</term>
|
||||
|
||||
<!-- LONG LOCATOR FORMS -->
|
||||
<term name="book">
|
||||
<single>cartea</single>
|
||||
<multiple>cărțile</multiple>
|
||||
</term>
|
||||
<term name="chapter">
|
||||
<single>capitolul</single>
|
||||
<multiple>capitolele</multiple>
|
||||
</term>
|
||||
<term name="column">
|
||||
<single>coloana</single>
|
||||
<multiple>coloanele</multiple>
|
||||
</term>
|
||||
<term name="figure">
|
||||
<single>figura</single>
|
||||
<multiple>figurile</multiple>
|
||||
</term>
|
||||
<term name="folio">
|
||||
<single>folio</single>
|
||||
<multiple>folio</multiple>
|
||||
</term>
|
||||
<term name="issue">
|
||||
<single>numărul</single>
|
||||
<multiple>numerele</multiple>
|
||||
</term>
|
||||
<term name="line">
|
||||
<single>linia</single>
|
||||
<multiple>liniile</multiple>
|
||||
</term>
|
||||
<term name="note">
|
||||
<single>nota</single>
|
||||
<multiple>notele</multiple>
|
||||
</term>
|
||||
<term name="opus">
|
||||
<single>opusul</single>
|
||||
<multiple>opusurile</multiple>
|
||||
</term>
|
||||
<term name="page">
|
||||
<single>pagina</single>
|
||||
<multiple>paginile</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages">
|
||||
<single>pagina</single>
|
||||
<multiple>paginile</multiple>
|
||||
</term>
|
||||
<term name="paragraph">
|
||||
<single>paragraful</single>
|
||||
<multiple>paragrafele</multiple>
|
||||
</term>
|
||||
<term name="part">
|
||||
<single>partea</single>
|
||||
<multiple>părțile</multiple>
|
||||
</term>
|
||||
<term name="section">
|
||||
<single>secțiunea</single>
|
||||
<multiple>secțiunile</multiple>
|
||||
</term>
|
||||
<term name="sub verbo">
|
||||
<single>sub verbo</single>
|
||||
<multiple>sub verbis</multiple>
|
||||
</term>
|
||||
<term name="verse">
|
||||
<single>versetul</single>
|
||||
<multiple>versetele</multiple>
|
||||
</term>
|
||||
<term name="volume">
|
||||
<single>volumul</single>
|
||||
<multiple>volumele</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT LOCATOR FORMS -->
|
||||
<term name="book" form="short">cart.</term>
|
||||
<term name="chapter" form="short">cap.</term>
|
||||
<term name="column" form="short">col.</term>
|
||||
<term name="figure" form="short">fig.</term>
|
||||
<term name="folio" form="short">fol.</term>
|
||||
<term name="issue" form="short">nr.</term>
|
||||
<term name="line" form="short">l.</term>
|
||||
<term name="note" form="short">n.</term>
|
||||
<term name="opus" form="short">op.</term>
|
||||
<term name="page" form="short">
|
||||
<single>p.</single>
|
||||
<multiple>pp.</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages" form="short">
|
||||
<single>p.</single>
|
||||
<multiple>pp.</multiple>
|
||||
</term>
|
||||
<term name="paragraph" form="short">par.</term>
|
||||
<term name="part" form="short">part.</term>
|
||||
<term name="section" form="short">sec.</term>
|
||||
<term name="sub verbo" form="short">
|
||||
<single>s.v.</single>
|
||||
<multiple>s.vv.</multiple>
|
||||
</term>
|
||||
<term name="verse" form="short">
|
||||
<single>v.</single>
|
||||
<multiple>vv.</multiple>
|
||||
</term>
|
||||
<term name="volume" form="short">
|
||||
<single>vol.</single>
|
||||
<multiple>vol.</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶¶</multiple>
|
||||
</term>
|
||||
<term name="section" form="symbol">
|
||||
<single>§</single>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="director">
|
||||
<single>director</single>
|
||||
<multiple>directori</multiple>
|
||||
</term>
|
||||
<term name="editor">
|
||||
<single>editor</single>
|
||||
<multiple>editori</multiple>
|
||||
</term>
|
||||
<term name="editorial-director">
|
||||
<single>coordonator</single>
|
||||
<multiple>coordonatori</multiple>
|
||||
</term>
|
||||
<term name="illustrator">
|
||||
<single>ilustrator</single>
|
||||
<multiple>ilustratori</multiple>
|
||||
</term>
|
||||
<term name="translator">
|
||||
<single>traducător</single>
|
||||
<multiple>traducători</multiple>
|
||||
</term>
|
||||
<term name="editortranslator">
|
||||
<single>editor și traducător</single>
|
||||
<multiple>editori și traducători</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="director" form="short">
|
||||
<single>dir.</single>
|
||||
<multiple>dir.</multiple>
|
||||
</term>
|
||||
<term name="editor" form="short">
|
||||
<single>ed.</single>
|
||||
<multiple>ed.</multiple>
|
||||
</term>
|
||||
<term name="editorial-director" form="short">
|
||||
<single>coord.</single>
|
||||
<multiple>coord.</multiple>
|
||||
</term>
|
||||
<term name="illustrator" form="short">
|
||||
<single>ilustr.</single>
|
||||
<multiple>ilustr.</multiple>
|
||||
</term>
|
||||
<term name="translator" form="short">
|
||||
<single>trad.</single>
|
||||
<multiple>trad.</multiple>
|
||||
</term>
|
||||
<term name="editortranslator" form="short">
|
||||
<single>ed. și trad.</single>
|
||||
<multiple>ed. și trad.</multiple>
|
||||
</term>
|
||||
|
||||
<!-- VERB ROLE FORMS -->
|
||||
<term name="container-author" form="verb">de</term>
|
||||
<term name="director" form="verb">coordonat de</term>
|
||||
<term name="editor" form="verb">ediție de</term>
|
||||
<term name="editorial-director" form="verb">coordonator</term>
|
||||
<term name="illustrator" form="verb">ilustrații de</term>
|
||||
<term name="interviewer" form="verb">interviu de</term>
|
||||
<term name="recipient" form="verb">în</term>
|
||||
<term name="reviewed-author" form="verb">de</term>
|
||||
<term name="translator" form="verb">traducere de</term>
|
||||
<term name="editortranslator" form="verb">ediție și traducere de</term>
|
||||
|
||||
<!-- SHORT VERB ROLE FORMS -->
|
||||
<term name="director" form="verb-short">dir.</term>
|
||||
<term name="editor" form="verb-short">ed.</term>
|
||||
<term name="editorial-director" form="verb-short">coord.</term>
|
||||
<term name="illustrator" form="verb-short">ilustr.</term>
|
||||
<term name="translator" form="verb-short">trad.</term>
|
||||
<term name="editortranslator" form="verb-short">ed. și trad. de</term>
|
||||
|
||||
<!-- LONG MONTH FORMS -->
|
||||
<term name="month-01">ianuarie</term>
|
||||
<term name="month-02">februarie</term>
|
||||
<term name="month-03">martie</term>
|
||||
<term name="month-04">aprilie</term>
|
||||
<term name="month-05">mai</term>
|
||||
<term name="month-06">iunie</term>
|
||||
<term name="month-07">iulie</term>
|
||||
<term name="month-08">august</term>
|
||||
<term name="month-09">septembrie</term>
|
||||
<term name="month-10">octombrie</term>
|
||||
<term name="month-11">noiembrie</term>
|
||||
<term name="month-12">decembrie</term>
|
||||
|
||||
<!-- SHORT MONTH FORMS -->
|
||||
<term name="month-01" form="short">ian.</term>
|
||||
<term name="month-02" form="short">feb.</term>
|
||||
<term name="month-03" form="short">mar.</term>
|
||||
<term name="month-04" form="short">apr.</term>
|
||||
<term name="month-05" form="short">mai</term>
|
||||
<term name="month-06" form="short">iun.</term>
|
||||
<term name="month-07" form="short">iul.</term>
|
||||
<term name="month-08" form="short">aug.</term>
|
||||
<term name="month-09" form="short">sep.</term>
|
||||
<term name="month-10" form="short">oct.</term>
|
||||
<term name="month-11" form="short">nov.</term>
|
||||
<term name="month-12" form="short">dec.</term>
|
||||
|
||||
<!-- SEASONS -->
|
||||
<term name="season-01">primăvara</term>
|
||||
<term name="season-02">vara</term>
|
||||
<term name="season-03">toamna</term>
|
||||
<term name="season-04">iarna</term>
|
||||
</terms>
|
||||
</locale>
|
||||
Vendored
+321
@@ -0,0 +1,321 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="ru-RU">
|
||||
<info>
|
||||
<translator>
|
||||
<name>Alexei Kouprianov</name>
|
||||
<email>alexei.kouprianov@gmail.com</email>
|
||||
</translator>
|
||||
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
|
||||
<updated>2012-07-04T23:31:02+00:00</updated>
|
||||
</info>
|
||||
<style-options punctuation-in-quote="false"/>
|
||||
<date form="text">
|
||||
<date-part name="day" suffix=" "/>
|
||||
<date-part name="month" suffix=" "/>
|
||||
<date-part name="year" suffix=" г."/>
|
||||
</date>
|
||||
<date form="numeric">
|
||||
<date-part name="day" form="numeric-leading-zeros" suffix="."/>
|
||||
<date-part name="month" form="numeric-leading-zeros" suffix="."/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<terms>
|
||||
<term name="accessed">просмотрено</term>
|
||||
<term name="and">и</term>
|
||||
<term name="and others">и др.</term>
|
||||
<term name="anonymous">аноним</term>
|
||||
<term name="anonymous" form="short">анон.</term>
|
||||
<term name="at">на</term>
|
||||
<term name="available at">доступно на</term>
|
||||
<term name="by"></term>
|
||||
<term name="circa">около</term>
|
||||
<term name="circa" form="short">ок.</term>
|
||||
<term name="cited">цитируется по</term>
|
||||
<term name="cited" form="short">цит. по</term>
|
||||
<term name="edition"> <!-- gender="neuter" -->
|
||||
<single>издание</single>
|
||||
<multiple>издания</multiple>
|
||||
</term>
|
||||
<term name="edition" form="short">изд.</term>
|
||||
<term name="et-al">и др.</term>
|
||||
<term name="forthcoming">ожидается</term>
|
||||
<term name="from">от</term>
|
||||
<term name="ibid">там же</term>
|
||||
<term name="in">в</term>
|
||||
<term name="in press">в печати</term>
|
||||
<term name="internet">Интернет</term>
|
||||
<term name="interview">интервью</term>
|
||||
<term name="letter">письмо</term>
|
||||
<term name="no date">без даты</term>
|
||||
<term name="no date" form="short">б. д.</term>
|
||||
<term name="online">онлайн</term>
|
||||
<term name="presented at">представлено на</term>
|
||||
<!-- Сложно подобрать один перевод для следующего термина. В зависимости от контекста это может быть "работа" или "источник" или вообще опускаться -->
|
||||
<term name="reference">
|
||||
<single>ссылка</single>
|
||||
<multiple>ссылки</multiple>
|
||||
</term>
|
||||
<!-- сокращения для "ссылка" не используются, но для некоторых случаев может подойти "ист." -->
|
||||
<term name="reference" form="short">
|
||||
<single>ссылка</single>
|
||||
<multiple>ссылки</multiple>
|
||||
</term>
|
||||
<term name="retrieved">извлечено</term>
|
||||
<term name="scale">масштаб</term>
|
||||
<term name="version">версия</term>
|
||||
|
||||
<!-- ANNO DOMINI; BEFORE CHRIST -->
|
||||
<term name="ad">н. э.</term>
|
||||
<term name="bc">до н. э.</term>
|
||||
|
||||
<!-- PUNCTUATION -->
|
||||
<term name="open-quote">«</term>
|
||||
<term name="close-quote">»</term>
|
||||
<term name="open-inner-quote">„</term>
|
||||
<term name="close-inner-quote">“</term>
|
||||
<term name="page-range-delimiter">–</term>
|
||||
|
||||
<!-- ORDINALS -->
|
||||
<term name="ordinal">-е</term>
|
||||
<term name="ordinal" gender-form="masculine">-й</term>
|
||||
<term name="ordinal" gender-form="feminine">-я</term>
|
||||
|
||||
<!-- LONG ORDINALS -->
|
||||
<term name="long-ordinal-01">первое</term>
|
||||
<term name="long-ordinal-02">второе</term>
|
||||
<term name="long-ordinal-03">третье</term>
|
||||
<term name="long-ordinal-04">четвертое</term>
|
||||
<term name="long-ordinal-05">пятое</term>
|
||||
<term name="long-ordinal-06">шестое</term>
|
||||
<term name="long-ordinal-07">седьмое</term>
|
||||
<term name="long-ordinal-08">восьмое</term>
|
||||
<term name="long-ordinal-09">девятое</term>
|
||||
<term name="long-ordinal-10">десятое</term>
|
||||
<term name="long-ordinal-01" gender-form="masculine">первый</term>
|
||||
<term name="long-ordinal-02" gender-form="masculine">второй</term>
|
||||
<term name="long-ordinal-03" gender-form="masculine">третий</term>
|
||||
<term name="long-ordinal-04" gender-form="masculine">четвертый</term>
|
||||
<term name="long-ordinal-05" gender-form="masculine">пятый</term>
|
||||
<term name="long-ordinal-06" gender-form="masculine">шестой</term>
|
||||
<term name="long-ordinal-07" gender-form="masculine">седьмой</term>
|
||||
<term name="long-ordinal-08" gender-form="masculine">восьмой</term>
|
||||
<term name="long-ordinal-09" gender-form="masculine">девятый</term>
|
||||
<term name="long-ordinal-10" gender-form="masculine">десятый</term>
|
||||
<term name="long-ordinal-01" gender-form="feminine">первая</term>
|
||||
<term name="long-ordinal-02" gender-form="feminine">вторая</term>
|
||||
<term name="long-ordinal-03" gender-form="feminine">третья</term>
|
||||
<term name="long-ordinal-04" gender-form="feminine">четвертая</term>
|
||||
<term name="long-ordinal-05" gender-form="feminine">пятая</term>
|
||||
<term name="long-ordinal-06" gender-form="feminine">шестая</term>
|
||||
<term name="long-ordinal-07" gender-form="feminine">седьмая</term>
|
||||
<term name="long-ordinal-08" gender-form="feminine">восьмая</term>
|
||||
<term name="long-ordinal-09" gender-form="feminine">девятая</term>
|
||||
<term name="long-ordinal-10" gender-form="feminine">десятая</term>
|
||||
<!-- LONG LOCATOR FORMS -->
|
||||
<!-- Currently only a few of locator terms are gender-assignable -->
|
||||
<term name="book">
|
||||
<single>книга</single>
|
||||
<multiple>книги</multiple>
|
||||
</term>
|
||||
<term name="chapter">
|
||||
<single>глава</single>
|
||||
<multiple>главы</multiple>
|
||||
</term>
|
||||
<term name="column">
|
||||
<single>столбец</single>
|
||||
<multiple>столбцы</multiple>
|
||||
</term>
|
||||
<term name="figure">
|
||||
<single>рисунок</single>
|
||||
<multiple>рисунки</multiple>
|
||||
</term>
|
||||
<term name="folio">
|
||||
<single>лист</single>
|
||||
<multiple>листы</multiple>
|
||||
</term>
|
||||
<term name="issue" gender="masculine">
|
||||
<single>выпуск</single>
|
||||
<multiple>выпуски</multiple>
|
||||
</term>
|
||||
<term name="line">
|
||||
<single>строка</single>
|
||||
<multiple>строки</multiple>
|
||||
</term>
|
||||
<term name="note">
|
||||
<single>примечание</single>
|
||||
<multiple>примечания</multiple>
|
||||
</term>
|
||||
<term name="opus">
|
||||
<single>сочинение</single>
|
||||
<multiple>сочинения</multiple>
|
||||
</term>
|
||||
<term name="page">
|
||||
<single>страница</single>
|
||||
<multiple>страницы</multiple>
|
||||
</term>
|
||||
<!-- для однообразности здесь тоже указали род, но использование кол-ва страниц с порядковым числительным маловероятно -->
|
||||
<term name="number-of-pages" gender="feminine">
|
||||
<single>страница</single>
|
||||
<multiple>страницы</multiple>
|
||||
</term>
|
||||
<term name="paragraph">
|
||||
<single>параграф</single>
|
||||
<multiple>параграфы</multiple>
|
||||
</term>
|
||||
<term name="part">
|
||||
<single>часть</single>
|
||||
<multiple>части</multiple>
|
||||
</term>
|
||||
<term name="section">
|
||||
<single>раздел</single>
|
||||
<multiple>разделы</multiple>
|
||||
</term>
|
||||
<term name="sub verbo">смотри</term>
|
||||
<term name="verse">
|
||||
<single>стих</single>
|
||||
<multiple>стихи</multiple>
|
||||
</term>
|
||||
<term name="volume" gender="masculine">
|
||||
<single>том</single>
|
||||
<multiple>тома</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT LOCATOR FORMS -->
|
||||
<!-- Ниже для всех однобуквенных сокращений приведены двухбуквенные варианты множественного числа. Если последние нежелательны (например, по ГОСТу для библиографии "С. 23-35") то это должно определяться в самом стиле (plural="never") -->
|
||||
<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">
|
||||
<single>л.</single>
|
||||
<multiple>лл.</multiple>
|
||||
</term>
|
||||
<term name="issue" form="short">вып.</term>
|
||||
<term name="line" form="short">стр.</term>
|
||||
<term name="note" form="short">прим.</term>
|
||||
<term name="opus" form="short">соч.</term>
|
||||
<term name="page" form="short">
|
||||
<single>с.</single>
|
||||
<multiple>сс.</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages" form="short">
|
||||
<single>с.</single>
|
||||
<multiple>сс.</multiple>
|
||||
</term>
|
||||
<term name="paragraph" form="short">
|
||||
<single>п.</single>
|
||||
<multiple>пп.</multiple>
|
||||
</term>
|
||||
<term name="part" form="short">
|
||||
<single>ч.</single>
|
||||
<multiple>чч.</multiple>
|
||||
</term>
|
||||
<term name="section" form="short">разд.</term>
|
||||
<term name="sub verbo" form="short">см.</term>
|
||||
<term name="verse" form="short">ст.</term>
|
||||
<term name="volume" form="short">
|
||||
<single>т.</single>
|
||||
<multiple>тт.</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶¶</multiple>
|
||||
</term>
|
||||
<term name="section" form="symbol">
|
||||
<single>§</single>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="director">
|
||||
<single>режиссер</single>
|
||||
<multiple>режиссеры</multiple>
|
||||
</term>
|
||||
<term name="editor">
|
||||
<single>редактор</single>
|
||||
<multiple>редакторы</multiple>
|
||||
</term>
|
||||
<term name="editorial-director">
|
||||
<single>ответственный редактор</single>
|
||||
<multiple>ответственные редакторы</multiple>
|
||||
</term>
|
||||
<term name="illustrator">
|
||||
<single>иллюстратор</single>
|
||||
<multiple>иллюстраторы</multiple>
|
||||
</term>
|
||||
<term name="translator">
|
||||
<single>переводчик</single>
|
||||
<multiple>переводчики</multiple>
|
||||
</term>
|
||||
<term name="editortranslator">
|
||||
<single>редактор и переводчик</single>
|
||||
<multiple>редакторы и переводчики</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="director" form="short">реж.</term>
|
||||
<term name="editor" form="short">ред.</term>
|
||||
<term name="editorial-director" form="short">отв. ред.</term>
|
||||
<term name="illustrator" form="short">ил.</term>
|
||||
<term name="translator" form="short">пер.</term>
|
||||
<term name="editortranslator" form="short">ред. и пер.</term>
|
||||
|
||||
<!-- VERB ROLE FORMS -->
|
||||
<!-- В этом и следующем разделе приведены наиболее широко используемые термины (например, "под редакцией" вместо "отредактировано"). Единственным недостатком является то, что разные термины требует разного падежа для последующих фамилий -->
|
||||
<term name="container-author" form="verb"></term>
|
||||
<term name="director" form="verb">режиссировано</term>
|
||||
<term name="editor" form="verb">под редакцией</term>
|
||||
<term name="editorial-director" form="verb">под ответственной редакцией</term>
|
||||
<term name="illustrator" form="verb">иллюстрировано</term>
|
||||
<term name="interviewer" form="verb">интервью проведено</term>
|
||||
<term name="recipient" form="verb">к</term>
|
||||
<term name="reviewed-author" form="verb"></term>
|
||||
<term name="translator" form="verb">переведено</term>
|
||||
<term name="editortranslator" form="verb">под редакцией и переведено</term>
|
||||
|
||||
<!-- SHORT VERB ROLE FORMS -->
|
||||
<term name="director" form="verb-short">реж.</term>
|
||||
<term name="editor" form="verb-short">под ред.</term>
|
||||
<term name="editorial-director" form="verb-short">под отв. ред.</term>
|
||||
<term name="illustrator" form="verb-short">ил.</term>
|
||||
<term name="translator" form="verb-short">пер.</term>
|
||||
<term name="editortranslator" form="verb-short">под ред. и пер.</term>
|
||||
|
||||
<!-- LONG MONTH FORMS -->
|
||||
<!-- род месяцев не указываем, поскольку даже если использовать порядковые числительные в дате, то они должны соответствовать среднему роду, например "второе февраля" -->
|
||||
<term name="month-01">январь</term>
|
||||
<term name="month-02">февраль</term>
|
||||
<term name="month-03">март</term>
|
||||
<term name="month-04">апрель</term>
|
||||
<term name="month-05">май</term>
|
||||
<term name="month-06">июнь</term>
|
||||
<term name="month-07">июль</term>
|
||||
<term name="month-08">август</term>
|
||||
<term name="month-09">сентябрь</term>
|
||||
<term name="month-10">октябрь</term>
|
||||
<term name="month-11">ноябрь</term>
|
||||
<term name="month-12">декабрь</term>
|
||||
|
||||
<!-- SHORT MONTH FORMS -->
|
||||
<term name="month-01" form="short">янв.</term>
|
||||
<term name="month-02" form="short">фев.</term>
|
||||
<term name="month-03" form="short">мар.</term>
|
||||
<term name="month-04" form="short">апр.</term>
|
||||
<term name="month-05" form="short">май</term>
|
||||
<term name="month-06" form="short">июн.</term>
|
||||
<term name="month-07" form="short">июл.</term>
|
||||
<term name="month-08" form="short">авг.</term>
|
||||
<term name="month-09" form="short">сен.</term>
|
||||
<term name="month-10" form="short">окт.</term>
|
||||
<term name="month-11" form="short">ноя.</term>
|
||||
<term name="month-12" form="short">дек.</term>
|
||||
|
||||
<!-- SEASONS -->
|
||||
<term name="season-01">весна</term>
|
||||
<term name="season-02">лето</term>
|
||||
<term name="season-03">осень</term>
|
||||
<term name="season-04">зима</term>
|
||||
</terms>
|
||||
</locale>
|
||||
Vendored
+318
@@ -0,0 +1,318 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="sk-SK">
|
||||
<info>
|
||||
<translator>
|
||||
<name>Tomáš Ferianc</name>
|
||||
</translator>
|
||||
<translator>
|
||||
<name>kohafan</name>
|
||||
</translator>
|
||||
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
|
||||
<updated>2014-03-09T22:23:31+00:00</updated>
|
||||
</info>
|
||||
<style-options punctuation-in-quote="false"/>
|
||||
<date form="text">
|
||||
<date-part name="day" form="numeric-leading-zeros" suffix=". "/>
|
||||
<date-part name="month" suffix=" "/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<date form="numeric">
|
||||
<date-part name="day" suffix="."/>
|
||||
<date-part name="month" form="numeric" suffix="."/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<terms>
|
||||
<term name="accessed">cit</term>
|
||||
<term name="and">a</term>
|
||||
<term name="and others">a ďalší</term>
|
||||
<term name="anonymous">anonym</term>
|
||||
<term name="anonymous" form="short">anon.</term>
|
||||
<term name="at">v</term>
|
||||
<term name="available at">available at</term>
|
||||
<term name="by">by</term>
|
||||
<term name="circa">circa</term>
|
||||
<term name="circa" form="short">cca.</term>
|
||||
<term name="cited">cit</term>
|
||||
<term name="edition">
|
||||
<single>vydanie</single>
|
||||
<multiple>vydania</multiple>
|
||||
</term>
|
||||
<term name="edition" form="short">vyd.</term>
|
||||
<term name="et-al">et al.</term>
|
||||
<term name="forthcoming">nadchádzajúci</term>
|
||||
<term name="from">z</term>
|
||||
<term name="ibid">ibid.</term>
|
||||
<term name="in">v</term>
|
||||
<term name="in press">v tlači</term>
|
||||
<term name="internet">internet</term>
|
||||
<term name="interview">osobná komunikácia</term>
|
||||
<term name="letter">list</term>
|
||||
<term name="no date">no date</term>
|
||||
<term name="no date" form="short">n.d.</term>
|
||||
<term name="online">online</term>
|
||||
<term name="presented at">prezentované na</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="retrieved">cit</term>
|
||||
<term name="scale">scale</term>
|
||||
<term name="version">version</term>
|
||||
|
||||
<!-- ANNO DOMINI; BEFORE CHRIST -->
|
||||
<term name="ad">po Kr.</term>
|
||||
<term name="bc">pred Kr.</term>
|
||||
|
||||
<!-- PUNCTUATION -->
|
||||
<term name="open-quote">“</term>
|
||||
<term name="close-quote">”</term>
|
||||
<term name="open-inner-quote">‘</term>
|
||||
<term name="close-inner-quote">’</term>
|
||||
<term name="page-range-delimiter">–</term>
|
||||
|
||||
<!-- ORDINALS -->
|
||||
<term name="ordinal">th</term>
|
||||
<term name="ordinal-01">st</term>
|
||||
<term name="ordinal-02">nd</term>
|
||||
<term name="ordinal-03">rd</term>
|
||||
<term name="ordinal-11">th</term>
|
||||
<term name="ordinal-12">th</term>
|
||||
<term name="ordinal-13">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>
|
||||
|
||||
<!-- LONG LOCATOR FORMS -->
|
||||
<term name="book">
|
||||
<single>kniha</single>
|
||||
<multiple>knihy</multiple>
|
||||
</term>
|
||||
<term name="chapter">
|
||||
<single>kapitola</single>
|
||||
<multiple>kapitoly</multiple>
|
||||
</term>
|
||||
<term name="column">
|
||||
<single>stĺpec</single>
|
||||
<multiple>stĺpce</multiple>
|
||||
</term>
|
||||
<term name="figure">
|
||||
<single>obrázok</single>
|
||||
<multiple>obrázky</multiple>
|
||||
</term>
|
||||
<term name="folio">
|
||||
<single>list</single>
|
||||
<multiple>listy</multiple>
|
||||
</term>
|
||||
<term name="issue">
|
||||
<single>číslo</single>
|
||||
<multiple>čísla</multiple>
|
||||
</term>
|
||||
<term name="line">
|
||||
<single>riadok</single>
|
||||
<multiple>riadky</multiple>
|
||||
</term>
|
||||
<term name="note">
|
||||
<single>poznámka</single>
|
||||
<multiple>poznámky</multiple>
|
||||
</term>
|
||||
<term name="opus">
|
||||
<single>opus</single>
|
||||
<multiple>opera</multiple>
|
||||
</term>
|
||||
<term name="page">
|
||||
<single>strana</single>
|
||||
<multiple>strany</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages">
|
||||
<single>strana</single>
|
||||
<multiple>strany</multiple>
|
||||
</term>
|
||||
<term name="paragraph">
|
||||
<single>odstavec</single>
|
||||
<multiple>odstavce</multiple>
|
||||
</term>
|
||||
<term name="part">
|
||||
<single>časť</single>
|
||||
<multiple>časti</multiple>
|
||||
</term>
|
||||
<term name="section">
|
||||
<single>sekcia</single>
|
||||
<multiple>sekcie</multiple>
|
||||
</term>
|
||||
<term name="sub verbo">
|
||||
<single>sub verbo</single>
|
||||
<multiple>sub verbis</multiple>
|
||||
</term>
|
||||
<term name="verse">
|
||||
<single>verš</single>
|
||||
<multiple>verše</multiple>
|
||||
</term>
|
||||
<term name="volume">
|
||||
<single>ročník</single>
|
||||
<multiple>ročníky</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT LOCATOR FORMS -->
|
||||
<term name="book" form="short">k.</term>
|
||||
<term name="chapter" form="short">kap.</term>
|
||||
<term name="column" form="short">stĺp.</term>
|
||||
<term name="figure" form="short">obr.</term>
|
||||
<term name="folio" form="short">l.</term>
|
||||
<term name="issue" form="short">č.</term>
|
||||
<term name="line" form="short">l.</term>
|
||||
<term name="note" form="short">n.</term>
|
||||
<term name="opus" form="short">op.</term>
|
||||
<term name="page" form="short">
|
||||
<single>s.</single>
|
||||
<multiple>s.</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages" form="short">
|
||||
<single>s.</single>
|
||||
<multiple>s.</multiple>
|
||||
</term>
|
||||
<term name="paragraph" form="short">par.</term>
|
||||
<term name="part" form="short">č.</term>
|
||||
<term name="section" form="short">sek.</term>
|
||||
<term name="sub verbo" form="short">
|
||||
<single>s.v.</single>
|
||||
<multiple>s.vv.</multiple>
|
||||
</term>
|
||||
<term name="verse" form="short">
|
||||
<single>v.</single>
|
||||
<multiple>v.</multiple>
|
||||
</term>
|
||||
<term name="volume" form="short">
|
||||
<single>roč.</single>
|
||||
<multiple>roč.</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶</multiple>
|
||||
</term>
|
||||
<term name="section" form="symbol">
|
||||
<single>§</single>
|
||||
<multiple>§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="director">
|
||||
<single>director</single>
|
||||
<multiple>directors</multiple>
|
||||
</term>
|
||||
<term name="editor">
|
||||
<single>editor</single>
|
||||
<multiple>editori</multiple>
|
||||
</term>
|
||||
<term name="editorial-director">
|
||||
<single>zostavovateľ</single>
|
||||
<multiple>zostavovatelia</multiple>
|
||||
</term>
|
||||
<term name="illustrator">
|
||||
<single>illustrator</single>
|
||||
<multiple>illustrators</multiple>
|
||||
</term>
|
||||
<term name="translator">
|
||||
<single>prekladateľ</single>
|
||||
<multiple>prekladatelia</multiple>
|
||||
</term>
|
||||
<term name="editortranslator">
|
||||
<single>zostavovateľ & prekladateľ</single>
|
||||
<multiple>zostavovatelia & prekladatelia</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="director" form="short">
|
||||
<single>dir.</single>
|
||||
<multiple>dirs.</multiple>
|
||||
</term>
|
||||
<term name="editor" form="short">
|
||||
<single>ed.</single>
|
||||
<multiple>ed.</multiple>
|
||||
</term>
|
||||
<term name="editorial-director" form="short">
|
||||
<single>zost.</single>
|
||||
<multiple>zost.</multiple>
|
||||
</term>
|
||||
<term name="illustrator" form="short">
|
||||
<single>ill.</single>
|
||||
<multiple>ills.</multiple>
|
||||
</term>
|
||||
<term name="translator" form="short">
|
||||
<single>prel.</single>
|
||||
<multiple>prel.</multiple>
|
||||
</term>
|
||||
<term name="editortranslator" form="short">
|
||||
<single>ed. & tran.</single>
|
||||
<multiple>eds. & trans.</multiple>
|
||||
</term>
|
||||
|
||||
<!-- VERB ROLE FORMS -->
|
||||
<term name="container-author" form="verb">by</term>
|
||||
<term name="director" form="verb">directed by</term>
|
||||
<term name="editor" form="verb">zostavil</term>
|
||||
<term name="editorial-director" form="verb">zostavil</term>
|
||||
<term name="illustrator" form="verb">illustrated by</term>
|
||||
<term name="interviewer" form="verb">rozhovor urobil</term>
|
||||
<term name="recipient" form="verb">adresát</term>
|
||||
<term name="reviewed-author" form="verb">by</term>
|
||||
<term name="translator" form="verb">preložil</term>
|
||||
<term name="editortranslator" form="verb">zostavil & preložil</term>
|
||||
|
||||
<!-- SHORT VERB ROLE FORMS -->
|
||||
<term name="director" form="verb-short">dir.</term>
|
||||
<term name="editor" form="verb-short">ed.</term>
|
||||
<term name="editorial-director" form="verb-short">ed.</term>
|
||||
<term name="illustrator" form="verb-short">illus.</term>
|
||||
<term name="translator" form="verb-short">prel.</term>
|
||||
<term name="editortranslator" form="verb-short">zost. & prel.</term>
|
||||
|
||||
<!-- LONG MONTH FORMS -->
|
||||
<term name="month-01">január</term>
|
||||
<term name="month-02">február</term>
|
||||
<term name="month-03">marec</term>
|
||||
<term name="month-04">apríl</term>
|
||||
<term name="month-05">máj</term>
|
||||
<term name="month-06">jún</term>
|
||||
<term name="month-07">júl</term>
|
||||
<term name="month-08">august</term>
|
||||
<term name="month-09">september</term>
|
||||
<term name="month-10">október</term>
|
||||
<term name="month-11">november</term>
|
||||
<term name="month-12">december</term>
|
||||
|
||||
<!-- SHORT MONTH FORMS -->
|
||||
<term name="month-01" form="short">jan.</term>
|
||||
<term name="month-02" form="short">feb.</term>
|
||||
<term name="month-03" form="short">mar.</term>
|
||||
<term name="month-04" form="short">apr.</term>
|
||||
<term name="month-05" form="short">máj.</term>
|
||||
<term name="month-06" form="short">jún.</term>
|
||||
<term name="month-07" form="short">júl.</term>
|
||||
<term name="month-08" form="short">aug.</term>
|
||||
<term name="month-09" form="short">sep.</term>
|
||||
<term name="month-10" form="short">okt.</term>
|
||||
<term name="month-11" form="short">nov.</term>
|
||||
<term name="month-12" form="short">dec.</term>
|
||||
|
||||
<!-- SEASONS -->
|
||||
<term name="season-01">Jar</term>
|
||||
<term name="season-02">Leto</term>
|
||||
<term name="season-03">Jeseň</term>
|
||||
<term name="season-04">Zima</term>
|
||||
</terms>
|
||||
</locale>
|
||||
Vendored
+312
@@ -0,0 +1,312 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="sl-SI">
|
||||
<info>
|
||||
<translator>
|
||||
<name>Kristof Ostir</name>
|
||||
</translator>
|
||||
<translator>
|
||||
<name>ratek1</name>
|
||||
</translator>
|
||||
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
|
||||
<updated>2014-11-06T09:41:02+00:00</updated>
|
||||
</info>
|
||||
<style-options punctuation-in-quote="false"/>
|
||||
<date form="text">
|
||||
<date-part name="day" form="numeric" suffix=". "/>
|
||||
<date-part name="month" suffix=" "/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<date form="numeric">
|
||||
<date-part name="day" form="numeric" suffix=". "/>
|
||||
<date-part name="month" form="numeric" suffix=". "/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<terms>
|
||||
<term name="accessed">pridobljeno</term>
|
||||
<term name="and">in</term>
|
||||
<term name="and others">in drugi</term>
|
||||
<term name="anonymous">anonimni</term>
|
||||
<term name="anonymous" form="short">anon.</term>
|
||||
<term name="at">pri</term>
|
||||
<term name="available at">dostopno na</term>
|
||||
<term name="by"></term>
|
||||
<term name="circa">približno</term>
|
||||
<term name="circa" form="short">prib.</term>
|
||||
<term name="cited">citirano</term>
|
||||
<term name="edition">
|
||||
<single>izdaja</single>
|
||||
<multiple>izdaje</multiple>
|
||||
</term>
|
||||
<term name="edition" form="short">izd.</term>
|
||||
<term name="et-al">idr.</term>
|
||||
<term name="forthcoming">pred izidom</term>
|
||||
<term name="from">od</term>
|
||||
<term name="ibid">isto</term>
|
||||
<term name="in">v</term>
|
||||
<term name="in press">v tisku</term>
|
||||
<term name="internet">internet</term>
|
||||
<term name="interview">intervju</term>
|
||||
<term name="letter">pismo</term>
|
||||
<term name="no date">brez datuma</term>
|
||||
<term name="no date" form="short">b. d.</term>
|
||||
<term name="online">na spletu</term>
|
||||
<term name="presented at">predstavljeno na</term>
|
||||
<term name="reference">
|
||||
<single>referenca</single>
|
||||
<multiple>reference</multiple>
|
||||
</term>
|
||||
<term name="reference" form="short">
|
||||
<single>ref.</single>
|
||||
<multiple>ref.</multiple>
|
||||
</term>
|
||||
<term name="retrieved">pridobljeno</term>
|
||||
<term name="scale">merilo</term>
|
||||
<term name="version">različica</term>
|
||||
|
||||
<!-- ANNO DOMINI; BEFORE CHRIST -->
|
||||
<term name="ad">n. št.</term>
|
||||
<term name="bc">pr. n. št.</term>
|
||||
|
||||
<!-- PUNCTUATION -->
|
||||
<term name="open-quote">„</term>
|
||||
<term name="close-quote">“</term>
|
||||
<term name="open-inner-quote">‚</term>
|
||||
<term name="close-inner-quote">‘</term>
|
||||
<term name="page-range-delimiter">–</term>
|
||||
|
||||
<!-- ORDINALS -->
|
||||
<term name="ordinal">.</term>
|
||||
|
||||
<!-- LONG ORDINALS -->
|
||||
<term name="long-ordinal-01">prva</term>
|
||||
<term name="long-ordinal-02">druga</term>
|
||||
<term name="long-ordinal-03">tretja</term>
|
||||
<term name="long-ordinal-04">četrta</term>
|
||||
<term name="long-ordinal-05">peta</term>
|
||||
<term name="long-ordinal-06">šesta</term>
|
||||
<term name="long-ordinal-07">sedma</term>
|
||||
<term name="long-ordinal-08">osma</term>
|
||||
<term name="long-ordinal-09">deveta</term>
|
||||
<term name="long-ordinal-10">deseta</term>
|
||||
|
||||
<!-- LONG LOCATOR FORMS -->
|
||||
<term name="book">
|
||||
<single>knjiga</single>
|
||||
<multiple>knjige</multiple>
|
||||
</term>
|
||||
<term name="chapter">
|
||||
<single>poglavje</single>
|
||||
<multiple>poglavja</multiple>
|
||||
</term>
|
||||
<term name="column">
|
||||
<single>stolpec</single>
|
||||
<multiple>stolpci</multiple>
|
||||
</term>
|
||||
<term name="figure">
|
||||
<single>slika</single>
|
||||
<multiple>slike</multiple>
|
||||
</term>
|
||||
<term name="folio">
|
||||
<single>folio</single>
|
||||
<multiple>folii</multiple>
|
||||
</term>
|
||||
<term name="issue">
|
||||
<single>številka</single>
|
||||
<multiple>številke</multiple>
|
||||
</term>
|
||||
<term name="line">
|
||||
<single>vrstica</single>
|
||||
<multiple>vrstice</multiple>
|
||||
</term>
|
||||
<term name="note">
|
||||
<single>opomba</single>
|
||||
<multiple>opombe</multiple>
|
||||
</term>
|
||||
<term name="opus">
|
||||
<single>opus</single>
|
||||
<multiple>opusi</multiple>
|
||||
</term>
|
||||
<term name="page">
|
||||
<single>stran</single>
|
||||
<multiple>strani</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages">
|
||||
<single>stran</single>
|
||||
<multiple>strani</multiple>
|
||||
</term>
|
||||
<term name="paragraph">
|
||||
<single>odstavek</single>
|
||||
<multiple>odstavki</multiple>
|
||||
</term>
|
||||
<term name="part">
|
||||
<single>del</single>
|
||||
<multiple>deli</multiple>
|
||||
</term>
|
||||
<term name="section">
|
||||
<single>odsek</single>
|
||||
<multiple>odseki</multiple>
|
||||
</term>
|
||||
<term name="sub verbo">
|
||||
<single>sub verbo</single>
|
||||
<multiple>sub verbis</multiple>
|
||||
</term>
|
||||
<term name="verse">
|
||||
<single>verz</single>
|
||||
<multiple>verzi</multiple>
|
||||
</term>
|
||||
<term name="volume">
|
||||
<single>letnik</single>
|
||||
<multiple>letniki</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT LOCATOR FORMS -->
|
||||
<term name="book" form="short">knj.</term>
|
||||
<term name="chapter" form="short">pogl.</term>
|
||||
<term name="column" form="short">stolp.</term>
|
||||
<term name="figure" form="short">sl.</term>
|
||||
<term name="folio" form="short">fol.</term>
|
||||
<term name="issue" form="short">št.</term>
|
||||
<term name="line" form="short">vrst.</term>
|
||||
<term name="note" form="short">op.</term>
|
||||
<term name="opus" form="short">opus</term>
|
||||
<term name="page" form="short">
|
||||
<single>str.</single>
|
||||
<multiple>str.</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages" form="short">
|
||||
<single>str.</single>
|
||||
<multiple>str.</multiple>
|
||||
</term>
|
||||
<term name="paragraph" form="short">odst.</term>
|
||||
<term name="part" form="short">del</term>
|
||||
<term name="section" form="short">ods.</term>
|
||||
<term name="sub verbo" form="short">
|
||||
<single>s. v.</single>
|
||||
<multiple>s. v.</multiple>
|
||||
</term>
|
||||
<term name="verse" form="short">
|
||||
<single>v.</single>
|
||||
<multiple>v.</multiple>
|
||||
</term>
|
||||
<term name="volume" form="short">
|
||||
<single>let.</single>
|
||||
<multiple>let.</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶¶</multiple>
|
||||
</term>
|
||||
<term name="section" form="symbol">
|
||||
<single>§</single>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="director">
|
||||
<single>režiser</single>
|
||||
<multiple>režiserji</multiple>
|
||||
</term>
|
||||
<term name="editor">
|
||||
<single>urednik</single>
|
||||
<multiple>uredniki</multiple>
|
||||
</term>
|
||||
<term name="editorial-director">
|
||||
<single>glavni urednik</single>
|
||||
<multiple>glavni uredniki</multiple>
|
||||
</term>
|
||||
<term name="illustrator">
|
||||
<single>ilustrator</single>
|
||||
<multiple>ilustratorji</multiple>
|
||||
</term>
|
||||
<term name="translator">
|
||||
<single>prevajalec</single>
|
||||
<multiple>prevajalci</multiple>
|
||||
</term>
|
||||
<term name="editortranslator">
|
||||
<single>urednik & prevajalec</single>
|
||||
<multiple>uredniki & prevajalci</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="director" form="short">
|
||||
<single>rež.</single>
|
||||
<multiple>rež.</multiple>
|
||||
</term>
|
||||
<term name="editor" form="short">
|
||||
<single>ur.</single>
|
||||
<multiple>ur.</multiple>
|
||||
</term>
|
||||
<term name="editorial-director" form="short">
|
||||
<single>gl. ur.</single>
|
||||
<multiple>gl. ur.</multiple>
|
||||
</term>
|
||||
<term name="illustrator" form="short">
|
||||
<single>ilus.</single>
|
||||
<multiple>ilus.</multiple>
|
||||
</term>
|
||||
<term name="translator" form="short">
|
||||
<single>prev.</single>
|
||||
<multiple>prev.</multiple>
|
||||
</term>
|
||||
<term name="editortranslator" form="short">
|
||||
<single>ur. & prev.</single>
|
||||
<multiple>ur. & prev.</multiple>
|
||||
</term>
|
||||
|
||||
<!-- VERB ROLE FORMS -->
|
||||
<term name="container-author" form="verb"></term>
|
||||
<term name="director" form="verb">režiral</term>
|
||||
<term name="editor" form="verb">uredil</term>
|
||||
<term name="editorial-director" form="verb">uredil</term>
|
||||
<term name="illustrator" form="verb">ilustriral</term>
|
||||
<term name="interviewer" form="verb">intervjuval</term>
|
||||
<term name="recipient" form="verb">za</term>
|
||||
<term name="reviewed-author" form="verb">od</term>
|
||||
<term name="translator" form="verb">prevedel</term>
|
||||
<term name="editortranslator" form="verb">uredil & prevedel</term>
|
||||
|
||||
<!-- SHORT VERB ROLE FORMS -->
|
||||
<term name="director" form="verb-short">rež.</term>
|
||||
<term name="editor" form="verb-short">ured.</term>
|
||||
<term name="editorial-director" form="verb-short">ured.</term>
|
||||
<term name="illustrator" form="verb-short">ilus.</term>
|
||||
<term name="translator" form="verb-short">prev.</term>
|
||||
<term name="editortranslator" form="verb-short">ured. & prev. by</term>
|
||||
|
||||
<!-- LONG MONTH FORMS -->
|
||||
<term name="month-01">januar</term>
|
||||
<term name="month-02">februar</term>
|
||||
<term name="month-03">marec</term>
|
||||
<term name="month-04">april</term>
|
||||
<term name="month-05">maj</term>
|
||||
<term name="month-06">junij</term>
|
||||
<term name="month-07">julij</term>
|
||||
<term name="month-08">avgust</term>
|
||||
<term name="month-09">september</term>
|
||||
<term name="month-10">oktober</term>
|
||||
<term name="month-11">november</term>
|
||||
<term name="month-12">december</term>
|
||||
|
||||
<!-- SHORT MONTH FORMS -->
|
||||
<term name="month-01" form="short">jan.</term>
|
||||
<term name="month-02" form="short">feb.</term>
|
||||
<term name="month-03" form="short">mar.</term>
|
||||
<term name="month-04" form="short">apr.</term>
|
||||
<term name="month-05" form="short">maj</term>
|
||||
<term name="month-06" form="short">jun.</term>
|
||||
<term name="month-07" form="short">jul.</term>
|
||||
<term name="month-08" form="short">avg.</term>
|
||||
<term name="month-09" form="short">sep.</term>
|
||||
<term name="month-10" form="short">okt.</term>
|
||||
<term name="month-11" form="short">nov.</term>
|
||||
<term name="month-12" form="short">dec.</term>
|
||||
|
||||
<!-- SEASONS -->
|
||||
<term name="season-01">pomlad</term>
|
||||
<term name="season-02">poletje</term>
|
||||
<term name="season-03">jesen</term>
|
||||
<term name="season-04">zima</term>
|
||||
</terms>
|
||||
</locale>
|
||||
Vendored
+312
@@ -0,0 +1,312 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="sr-RS">
|
||||
<info>
|
||||
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
|
||||
<updated>2012-07-04T23:31:02+00:00</updated>
|
||||
</info>
|
||||
<style-options punctuation-in-quote="false"/>
|
||||
<date form="text">
|
||||
<date-part name="day" form="numeric-leading-zeros" suffix=". "/>
|
||||
<date-part name="month" suffix=" "/>
|
||||
<date-part name="year" suffix="."/>
|
||||
</date>
|
||||
<date form="numeric">
|
||||
<date-part name="year"/>
|
||||
<date-part name="month" form="numeric-leading-zeros" prefix="-" range-delimiter="/"/>
|
||||
<date-part name="day" form="numeric-leading-zeros" prefix="-" range-delimiter="/"/>
|
||||
</date>
|
||||
<terms>
|
||||
<term name="accessed">приступљено</term>
|
||||
<term name="and">и</term>
|
||||
<term name="and others">и остали</term>
|
||||
<term name="anonymous">анонимна</term>
|
||||
<term name="anonymous" form="short">анон.</term>
|
||||
<term name="at">на</term>
|
||||
<term name="available at">available at</term>
|
||||
<term name="by">by</term>
|
||||
<term name="circa">circa</term>
|
||||
<term name="circa" form="short">c.</term>
|
||||
<term name="cited">цитирано</term>
|
||||
<term name="edition">
|
||||
<single>издање</single>
|
||||
<multiple>издања</multiple>
|
||||
</term>
|
||||
<term name="edition" form="short">изд.</term>
|
||||
<term name="et-al">и остали</term>
|
||||
<term name="forthcoming">долазећи</term>
|
||||
<term name="from">од</term>
|
||||
<term name="ibid">ibid.</term>
|
||||
<term name="in">у</term>
|
||||
<term name="in press">у штампи</term>
|
||||
<term name="internet">Интернет</term>
|
||||
<term name="interview">интервју</term>
|
||||
<term name="letter">писмо</term>
|
||||
<term name="no date">no date</term>
|
||||
<term name="no date" form="short">без датума</term>
|
||||
<term name="online">на Интернету</term>
|
||||
<term name="presented at">представљено на</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="retrieved">преузето</term>
|
||||
<term name="scale">scale</term>
|
||||
<term name="version">version</term>
|
||||
|
||||
<!-- ANNO DOMINI; BEFORE CHRIST -->
|
||||
<term name="ad">AD</term>
|
||||
<term name="bc">BC</term>
|
||||
|
||||
<!-- PUNCTUATION -->
|
||||
<term name="open-quote">„</term>
|
||||
<term name="close-quote">“</term>
|
||||
<term name="open-inner-quote">‚</term>
|
||||
<term name="close-inner-quote">‘</term>
|
||||
<term name="page-range-delimiter">–</term>
|
||||
|
||||
<!-- ORDINALS -->
|
||||
<term name="ordinal">th</term>
|
||||
<term name="ordinal-01">st</term>
|
||||
<term name="ordinal-02">nd</term>
|
||||
<term name="ordinal-03">rd</term>
|
||||
<term name="ordinal-11">th</term>
|
||||
<term name="ordinal-12">th</term>
|
||||
<term name="ordinal-13">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>
|
||||
|
||||
<!-- LONG LOCATOR FORMS -->
|
||||
<term name="book">
|
||||
<single>књига</single>
|
||||
<multiple>књиге</multiple>
|
||||
</term>
|
||||
<term name="chapter">
|
||||
<single>поглавље</single>
|
||||
<multiple>поглавља</multiple>
|
||||
</term>
|
||||
<term name="column">
|
||||
<single>колона</single>
|
||||
<multiple>колоне</multiple>
|
||||
</term>
|
||||
<term name="figure">
|
||||
<single>цртеж</single>
|
||||
<multiple>цртежи</multiple>
|
||||
</term>
|
||||
<term name="folio">
|
||||
<single>фолио</single>
|
||||
<multiple>фолији</multiple>
|
||||
</term>
|
||||
<term name="issue">
|
||||
<single>број</single>
|
||||
<multiple>бројеви</multiple>
|
||||
</term>
|
||||
<term name="line">
|
||||
<single>линија</single>
|
||||
<multiple>линије</multiple>
|
||||
</term>
|
||||
<term name="note">
|
||||
<single>белешка</single>
|
||||
<multiple>белешке</multiple>
|
||||
</term>
|
||||
<term name="opus">
|
||||
<single>опус</single>
|
||||
<multiple>опера</multiple>
|
||||
</term>
|
||||
<term name="page">
|
||||
<single>страница</single>
|
||||
<multiple>странице</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages">
|
||||
<single>страница</single>
|
||||
<multiple>странице</multiple>
|
||||
</term>
|
||||
<term name="paragraph">
|
||||
<single>параграф</single>
|
||||
<multiple>параграфи</multiple>
|
||||
</term>
|
||||
<term name="part">
|
||||
<single>део</single>
|
||||
<multiple>делова</multiple>
|
||||
</term>
|
||||
<term name="section">
|
||||
<single>одељак</single>
|
||||
<multiple>одељака</multiple>
|
||||
</term>
|
||||
<term name="sub verbo">
|
||||
<single>sub verbo</single>
|
||||
<multiple>sub verbis</multiple>
|
||||
</term>
|
||||
<term name="verse">
|
||||
<single>строфа</single>
|
||||
<multiple>строфе</multiple>
|
||||
</term>
|
||||
<term name="volume">
|
||||
<single>том</single>
|
||||
<multiple>томова</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT LOCATOR FORMS -->
|
||||
<term name="book" form="short">књига</term>
|
||||
<term name="chapter" form="short">Пог.</term>
|
||||
<term name="column" form="short">кол.</term>
|
||||
<term name="figure" form="short">црт.</term>
|
||||
<term name="folio" form="short">фолио</term>
|
||||
<term name="issue" form="short">изд.</term>
|
||||
<term name="line" form="short">l.</term>
|
||||
<term name="note" form="short">n.</term>
|
||||
<term name="opus" form="short">оп.</term>
|
||||
<term name="page" form="short">
|
||||
<single>стр.</single>
|
||||
<multiple>стр.</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages" form="short">
|
||||
<single>стр.</single>
|
||||
<multiple>стр.</multiple>
|
||||
</term>
|
||||
<term name="paragraph" form="short">пар.</term>
|
||||
<term name="part" form="short">део</term>
|
||||
<term name="section" form="short">од.</term>
|
||||
<term name="sub verbo" form="short">
|
||||
<single>s.v.</single>
|
||||
<multiple>s.vv.</multiple>
|
||||
</term>
|
||||
<term name="verse" form="short">
|
||||
<single>стр.</single>
|
||||
<multiple>стр.</multiple>
|
||||
</term>
|
||||
<term name="volume" form="short">
|
||||
<single>том</single>
|
||||
<multiple>томови</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶¶</multiple>
|
||||
</term>
|
||||
<term name="section" form="symbol">
|
||||
<single>§</single>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="director">
|
||||
<single>director</single>
|
||||
<multiple>directors</multiple>
|
||||
</term>
|
||||
<term name="editor">
|
||||
<single>уредник</single>
|
||||
<multiple>урединици</multiple>
|
||||
</term>
|
||||
<term name="editorial-director">
|
||||
<single>editor</single>
|
||||
<multiple>editors</multiple>
|
||||
</term>
|
||||
<term name="illustrator">
|
||||
<single>illustrator</single>
|
||||
<multiple>illustrators</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="director" form="short">
|
||||
<single>dir.</single>
|
||||
<multiple>dirs.</multiple>
|
||||
</term>
|
||||
<term name="editor" form="short">
|
||||
<single>ур.</single>
|
||||
<multiple>ур.</multiple>
|
||||
</term>
|
||||
<term name="editorial-director" form="short">
|
||||
<single>ed.</single>
|
||||
<multiple>eds.</multiple>
|
||||
</term>
|
||||
<term name="illustrator" form="short">
|
||||
<single>ill.</single>
|
||||
<multiple>ills.</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="container-author" form="verb">by</term>
|
||||
<term name="director" form="verb">directed by</term>
|
||||
<term name="editor" form="verb">уредио</term>
|
||||
<term name="editorial-director" form="verb">edited by</term>
|
||||
<term name="illustrator" form="verb">illustrated by</term>
|
||||
<term name="interviewer" form="verb">интервјуисао</term>
|
||||
<term name="recipient" form="verb">прима</term>
|
||||
<term name="reviewed-author" form="verb">by</term>
|
||||
<term name="translator" form="verb">превео</term>
|
||||
<term name="editortranslator" form="verb">edited & translated by</term>
|
||||
|
||||
<!-- SHORT VERB ROLE FORMS -->
|
||||
<term name="director" form="verb-short">dir.</term>
|
||||
<term name="editor" form="verb-short">ур.</term>
|
||||
<term name="editorial-director" form="verb-short">ed.</term>
|
||||
<term name="illustrator" form="verb-short">illus.</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>
|
||||
<term name="month-04">Април</term>
|
||||
<term name="month-05">Мај</term>
|
||||
<term name="month-06">Јуни</term>
|
||||
<term name="month-07">Јули</term>
|
||||
<term name="month-08">Август</term>
|
||||
<term name="month-09">Септембар</term>
|
||||
<term name="month-10">Октобар</term>
|
||||
<term name="month-11">Новембар</term>
|
||||
<term name="month-12">Децембар</term>
|
||||
|
||||
<!-- SHORT MONTH FORMS -->
|
||||
<term name="month-01" form="short">Јан.</term>
|
||||
<term name="month-02" form="short">Феб.</term>
|
||||
<term name="month-03" form="short">Март</term>
|
||||
<term name="month-04" form="short">Апр.</term>
|
||||
<term name="month-05" form="short">Мај</term>
|
||||
<term name="month-06" form="short">Јуни</term>
|
||||
<term name="month-07" form="short">Јули</term>
|
||||
<term name="month-08" form="short">Авг.</term>
|
||||
<term name="month-09" form="short">Сеп.</term>
|
||||
<term name="month-10" form="short">Окт.</term>
|
||||
<term name="month-11" form="short">Нов.</term>
|
||||
<term name="month-12" form="short">Дец.</term>
|
||||
|
||||
<!-- SEASONS -->
|
||||
<term name="season-01">Spring</term>
|
||||
<term name="season-02">Summer</term>
|
||||
<term name="season-03">Autumn</term>
|
||||
<term name="season-04">Winter</term>
|
||||
</terms>
|
||||
</locale>
|
||||
Vendored
+322
@@ -0,0 +1,322 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="sv-SE">
|
||||
<info>
|
||||
<translator>
|
||||
<name>torfeur</name>
|
||||
</translator>
|
||||
<translator>
|
||||
<name>Sylvester Keil</name>
|
||||
</translator>
|
||||
<translator>
|
||||
<name>Sebastian Karcher</name>
|
||||
</translator>
|
||||
<translator>
|
||||
<name>Ulf Harnhammar</name>
|
||||
</translator>
|
||||
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
|
||||
<updated>2012-07-04T23:31:02+00:00</updated>
|
||||
</info>
|
||||
<style-options punctuation-in-quote="false"/>
|
||||
<date form="text">
|
||||
<date-part name="day" form="numeric-leading-zeros" suffix=" "/>
|
||||
<date-part name="month" suffix=" "/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<date form="numeric">
|
||||
<date-part name="year"/>
|
||||
<date-part name="month" form="numeric-leading-zeros" prefix="-" range-delimiter="/"/>
|
||||
<date-part name="day" form="numeric-leading-zeros" prefix="-" range-delimiter="/"/>
|
||||
</date>
|
||||
<terms>
|
||||
<term name="accessed">åtkomstdatum</term>
|
||||
<term name="and">och</term>
|
||||
<term name="and others">och andra</term>
|
||||
<term name="anonymous">anonym</term>
|
||||
<term name="anonymous" form="short">anon.</term>
|
||||
<term name="at">vid</term>
|
||||
<term name="available at">tillgänglig vid</term>
|
||||
<term name="by">av</term>
|
||||
<term name="circa">cirka</term>
|
||||
<term name="circa" form="short">ca</term>
|
||||
<term name="cited">citerad</term>
|
||||
<term name="edition">
|
||||
<single>upplaga</single>
|
||||
<multiple>upplagor</multiple>
|
||||
</term>
|
||||
<term name="edition" form="short">uppl.</term>
|
||||
<term name="et-al">m.fl.</term>
|
||||
<term name="forthcoming">kommande</term>
|
||||
<term name="from">från</term>
|
||||
<term name="ibid">ibid.</term>
|
||||
<term name="in">i</term>
|
||||
<term name="in press">i tryck</term>
|
||||
<term name="internet">internet</term>
|
||||
<term name="interview">intervju</term>
|
||||
<term name="letter">brev</term>
|
||||
<term name="no date">utan årtal</term>
|
||||
<term name="no date" form="short">u.å.</term>
|
||||
<term name="online">online</term>
|
||||
<term name="presented at">presenterad vid</term>
|
||||
<term name="reference">
|
||||
<single>referens</single>
|
||||
<multiple>referenser</multiple>
|
||||
</term>
|
||||
<term name="reference" form="short">
|
||||
<single>ref.</single>
|
||||
<multiple>ref.</multiple>
|
||||
</term>
|
||||
<term name="retrieved">hämtad</term>
|
||||
<term name="scale">scale</term>
|
||||
<term name="version">version</term>
|
||||
|
||||
<!-- ANNO DOMINI; BEFORE CHRIST -->
|
||||
<term name="ad">e.Kr.</term>
|
||||
<term name="bc">f.Kr.</term>
|
||||
|
||||
<!-- PUNCTUATION -->
|
||||
<term name="open-quote">”</term>
|
||||
<term name="close-quote">”</term>
|
||||
<term name="open-inner-quote">’</term>
|
||||
<term name="close-inner-quote">’</term>
|
||||
<term name="page-range-delimiter">–</term>
|
||||
|
||||
<!-- ORDINALS -->
|
||||
<term name="ordinal">:e</term>
|
||||
<term name="ordinal-01">:a</term>
|
||||
<term name="ordinal-02">:a</term>
|
||||
<term name="ordinal-11">:e</term>
|
||||
<term name="ordinal-12">:e</term>
|
||||
|
||||
<!-- LONG ORDINALS -->
|
||||
<term name="long-ordinal-01">första</term>
|
||||
<term name="long-ordinal-02">andra</term>
|
||||
<term name="long-ordinal-03">tredje</term>
|
||||
<term name="long-ordinal-04">fjärde</term>
|
||||
<term name="long-ordinal-05">femte</term>
|
||||
<term name="long-ordinal-06">sjätte</term>
|
||||
<term name="long-ordinal-07">sjunde</term>
|
||||
<term name="long-ordinal-08">åttonde</term>
|
||||
<term name="long-ordinal-09">nionde</term>
|
||||
<term name="long-ordinal-10">tionde</term>
|
||||
|
||||
<!-- LONG LOCATOR FORMS -->
|
||||
<term name="book">
|
||||
<single>bok</single>
|
||||
<multiple>böcker</multiple>
|
||||
</term>
|
||||
<term name="chapter">
|
||||
<single>kapitel</single>
|
||||
<multiple>kapitel</multiple>
|
||||
</term>
|
||||
<term name="column">
|
||||
<single>kolumn</single>
|
||||
<multiple>kolumner</multiple>
|
||||
</term>
|
||||
<term name="figure">
|
||||
<single>figur</single>
|
||||
<multiple>figurer</multiple>
|
||||
</term>
|
||||
<term name="folio">
|
||||
<single>folio</single>
|
||||
<multiple>folios</multiple>
|
||||
</term>
|
||||
<term name="issue">
|
||||
<single>nummer</single>
|
||||
<multiple>nummer</multiple>
|
||||
</term>
|
||||
<term name="line">
|
||||
<single>rad</single>
|
||||
<multiple>rader</multiple>
|
||||
</term>
|
||||
<term name="note">
|
||||
<single>not</single>
|
||||
<multiple>noter</multiple>
|
||||
</term>
|
||||
<term name="opus">
|
||||
<single>opus</single>
|
||||
<multiple>opera</multiple>
|
||||
</term>
|
||||
<term name="page">
|
||||
<single>sida</single>
|
||||
<multiple>sidor</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages">
|
||||
<single>sida</single>
|
||||
<multiple>sidor</multiple>
|
||||
</term>
|
||||
<term name="paragraph">
|
||||
<single>stycke</single>
|
||||
<multiple>stycken</multiple>
|
||||
</term>
|
||||
<term name="part">
|
||||
<single>del</single>
|
||||
<multiple>delar</multiple>
|
||||
</term>
|
||||
<term name="section">
|
||||
<single>avsnitt</single>
|
||||
<multiple>avsnitt</multiple>
|
||||
</term>
|
||||
<term name="sub verbo">
|
||||
<single>sub verbo</single>
|
||||
<multiple>sub verbis</multiple>
|
||||
</term>
|
||||
<term name="verse">
|
||||
<single>vers</single>
|
||||
<multiple>verser</multiple>
|
||||
</term>
|
||||
<term name="volume">
|
||||
<single>volym</single>
|
||||
<multiple>volymer</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT LOCATOR FORMS -->
|
||||
<term name="book" form="short">bok</term>
|
||||
<term name="chapter" form="short">kap.</term>
|
||||
<term name="column" form="short">kol.</term>
|
||||
<term name="figure" form="short">fig.</term>
|
||||
<term name="folio" form="short">f.</term>
|
||||
<term name="issue" form="short">nr</term>
|
||||
<term name="line" form="short">l.</term>
|
||||
<term name="note" form="short">n.</term>
|
||||
<term name="opus" form="short">op.</term>
|
||||
<term name="page" form="short">
|
||||
<single>s.</single>
|
||||
<multiple>s.</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages" form="short">
|
||||
<single>s.</single>
|
||||
<multiple>s.</multiple>
|
||||
</term>
|
||||
<term name="paragraph" form="short">st.</term>
|
||||
<term name="part" form="short">del</term>
|
||||
<term name="section" form="short">avs.</term>
|
||||
<term name="sub verbo" form="short">
|
||||
<single>s.v.</single>
|
||||
<multiple>s.vv.</multiple>
|
||||
</term>
|
||||
<term name="verse" form="short">
|
||||
<single>vers</single>
|
||||
<multiple>verser</multiple>
|
||||
</term>
|
||||
<term name="volume" form="short">
|
||||
<single>vol.</single>
|
||||
<multiple>vol.</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶¶</multiple>
|
||||
</term>
|
||||
<term name="section" form="symbol">
|
||||
<single>§</single>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="director">
|
||||
<single>director</single>
|
||||
<multiple>directors</multiple>
|
||||
</term>
|
||||
<term name="editor">
|
||||
<single>redaktör</single>
|
||||
<multiple>redaktörer</multiple>
|
||||
</term>
|
||||
<term name="editorial-director">
|
||||
<single>editor</single>
|
||||
<multiple>editors</multiple>
|
||||
</term>
|
||||
<term name="illustrator">
|
||||
<single>illustratör</single>
|
||||
<multiple>illustratörer</multiple>
|
||||
</term>
|
||||
<term name="translator">
|
||||
<single>översättare</single>
|
||||
<multiple>översättare</multiple>
|
||||
</term>
|
||||
<term name="editortranslator">
|
||||
<single>redaktör & översättare</single>
|
||||
<multiple>redaktörer & översättare</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="director" form="short">
|
||||
<single>dir.</single>
|
||||
<multiple>dirs.</multiple>
|
||||
</term>
|
||||
<term name="editor" form="short">
|
||||
<single>red.</single>
|
||||
<multiple>red.</multiple>
|
||||
</term>
|
||||
<term name="editorial-director" form="short">
|
||||
<single>ed.</single>
|
||||
<multiple>eds.</multiple>
|
||||
</term>
|
||||
<term name="illustrator" form="short">
|
||||
<single>ill.</single>
|
||||
<multiple>ill.</multiple>
|
||||
</term>
|
||||
<term name="translator" form="short">
|
||||
<single>övers.</single>
|
||||
<multiple>övers.</multiple>
|
||||
</term>
|
||||
<term name="editortranslator" form="short">
|
||||
<single>red. & övers.</single>
|
||||
<multiple>red. & övers.</multiple>
|
||||
</term>
|
||||
|
||||
<!-- VERB ROLE FORMS -->
|
||||
<term name="container-author" form="verb">av</term>
|
||||
<term name="director" form="verb">directed by</term>
|
||||
<term name="editor" form="verb">redigerad av</term>
|
||||
<term name="editorial-director" form="verb">edited by</term>
|
||||
<term name="illustrator" form="verb">illustrerad av</term>
|
||||
<term name="interviewer" form="verb">intervjuad av</term>
|
||||
<term name="recipient" form="verb">till</term>
|
||||
<term name="reviewed-author" form="verb">by</term>
|
||||
<term name="translator" form="verb">översatt av</term>
|
||||
<term name="editortranslator" form="verb">redigerad & översatt av</term>
|
||||
|
||||
<!-- SHORT VERB ROLE FORMS -->
|
||||
<term name="director" form="verb-short">dir.</term>
|
||||
<term name="editor" form="verb-short">red.</term>
|
||||
<term name="editorial-director" form="verb-short">ed.</term>
|
||||
<term name="illustrator" form="verb-short">illus.</term>
|
||||
<term name="translator" form="verb-short">övers.</term>
|
||||
<term name="editortranslator" form="verb-short">red. & övers. av</term>
|
||||
|
||||
<!-- LONG MONTH FORMS -->
|
||||
<term name="month-01">januari</term>
|
||||
<term name="month-02">februari</term>
|
||||
<term name="month-03">mars</term>
|
||||
<term name="month-04">april</term>
|
||||
<term name="month-05">maj</term>
|
||||
<term name="month-06">juni</term>
|
||||
<term name="month-07">juli</term>
|
||||
<term name="month-08">augusti</term>
|
||||
<term name="month-09">september</term>
|
||||
<term name="month-10">oktober</term>
|
||||
<term name="month-11">november</term>
|
||||
<term name="month-12">december</term>
|
||||
|
||||
<!-- SHORT MONTH FORMS -->
|
||||
<term name="month-01" form="short">jan.</term>
|
||||
<term name="month-02" form="short">feb.</term>
|
||||
<term name="month-03" form="short">mar.</term>
|
||||
<term name="month-04" form="short">apr.</term>
|
||||
<term name="month-05" form="short">maj</term>
|
||||
<term name="month-06" form="short">juni</term>
|
||||
<term name="month-07" form="short">juli</term>
|
||||
<term name="month-08" form="short">aug.</term>
|
||||
<term name="month-09" form="short">sep.</term>
|
||||
<term name="month-10" form="short">okt.</term>
|
||||
<term name="month-11" form="short">nov.</term>
|
||||
<term name="month-12" form="short">dec.</term>
|
||||
|
||||
<!-- SEASONS -->
|
||||
<term name="season-01">vår</term>
|
||||
<term name="season-02">sommar</term>
|
||||
<term name="season-03">höst</term>
|
||||
<term name="season-04">vinter</term>
|
||||
</terms>
|
||||
</locale>
|
||||
Vendored
+309
@@ -0,0 +1,309 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="th-TH">
|
||||
<info>
|
||||
<translator>
|
||||
<name>Dusit Laohasinnarong</name>
|
||||
</translator>
|
||||
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
|
||||
<updated>2012-07-04T23:31:02+00:00</updated>
|
||||
</info>
|
||||
<style-options punctuation-in-quote="false"/>
|
||||
<date form="text">
|
||||
<date-part name="day" suffix=" "/>
|
||||
<date-part name="month" suffix=" "/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<date form="numeric">
|
||||
<date-part name="day" form="numeric-leading-zeros" suffix="/"/>
|
||||
<date-part name="month" form="numeric-leading-zeros" suffix="/"/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<terms>
|
||||
<term name="accessed">สืบค้น</term>
|
||||
<term name="and">และ</term>
|
||||
<term name="and others">และคณะ</term>
|
||||
<term name="anonymous">นิรนาม</term>
|
||||
<term name="anonymous" form="short">นิรนาม</term>
|
||||
<term name="at">ที่</term>
|
||||
<term name="available at">available at</term>
|
||||
<term name="by">โดย</term>
|
||||
<term name="circa">โดยประมาณ</term>
|
||||
<term name="circa" form="short">ประมาณ</term>
|
||||
<term name="cited">อ้างถึง</term>
|
||||
<term name="edition">
|
||||
<single>พิมพ์ครั้งที่</single>
|
||||
<multiple>พิมพ์ครั้งที่</multiple>
|
||||
</term>
|
||||
<term name="edition" form="short">พิมพ์ครั้งที่</term>
|
||||
<term name="et-al">และคณะ</term>
|
||||
<term name="forthcoming">เต็มใจให้ข้อมูล</term>
|
||||
<term name="from">จาก</term>
|
||||
<term name="ibid"> ในที่เดียวกัน</term>
|
||||
<term name="in">ใน</term>
|
||||
<term name="in press">กำลังรอตีพิมพ์</term>
|
||||
<term name="internet">อินเทอร์เน็ต</term>
|
||||
<term name="interview">การสัมภาษณ์</term>
|
||||
<term name="letter">จดหมาย</term>
|
||||
<term name="no date">ไม่ปรากฏปีที่พิมพ์</term>
|
||||
<term name="no date" form="short">ม.ป.ป.</term>
|
||||
<term name="online">ออนไลน์</term>
|
||||
<term name="presented at">นำเสนอที่</term>
|
||||
<term name="reference">
|
||||
<single>เอกสารอ้างอิง</single>
|
||||
<multiple>เอกสารอ้างอิง</multiple>
|
||||
</term>
|
||||
<term name="reference" form="short">
|
||||
<single>อ้างอิง</single>
|
||||
<multiple>อ้างอิง</multiple>
|
||||
</term>
|
||||
<term name="retrieved">สืบค้น</term>
|
||||
<term name="scale">scale</term>
|
||||
<term name="version">version</term>
|
||||
|
||||
<!-- ANNO DOMINI; BEFORE CHRIST -->
|
||||
<term name="ad">ค.ศ.</term>
|
||||
<term name="bc">พ.ศ.</term>
|
||||
|
||||
<!-- PUNCTUATION -->
|
||||
<term name="open-quote">“</term>
|
||||
<term name="close-quote">”</term>
|
||||
<term name="open-inner-quote">‘</term>
|
||||
<term name="close-inner-quote">’</term>
|
||||
<term name="page-range-delimiter">–</term>
|
||||
|
||||
<!-- ORDINALS -->
|
||||
<term name="ordinal"></term>
|
||||
|
||||
<!-- LONG ORDINALS -->
|
||||
<term name="long-ordinal-01">หนึ่ง</term>
|
||||
<term name="long-ordinal-02">สอง</term>
|
||||
<term name="long-ordinal-03">สาม</term>
|
||||
<term name="long-ordinal-04">สี่</term>
|
||||
<term name="long-ordinal-05">ห้า</term>
|
||||
<term name="long-ordinal-06">หก</term>
|
||||
<term name="long-ordinal-07">เจ็ด</term>
|
||||
<term name="long-ordinal-08">แปด</term>
|
||||
<term name="long-ordinal-09">เก้า</term>
|
||||
<term name="long-ordinal-10">สิบ</term>
|
||||
|
||||
<!-- LONG LOCATOR FORMS -->
|
||||
<term name="book">
|
||||
<single>หนังสือ</single>
|
||||
<multiple>หนังสือ</multiple>
|
||||
</term>
|
||||
<term name="chapter">
|
||||
<single>บทที่</single>
|
||||
<multiple>บทที่</multiple>
|
||||
</term>
|
||||
<term name="column">
|
||||
<single>สดมภ์</single>
|
||||
<multiple>สดมภ์</multiple>
|
||||
</term>
|
||||
<term name="figure">
|
||||
<single>รูปภาพ</single>
|
||||
<multiple>รูปภาพ</multiple>
|
||||
</term>
|
||||
<term name="folio">
|
||||
<single>หน้า</single>
|
||||
<multiple>หน้า</multiple>
|
||||
</term>
|
||||
<term name="issue">
|
||||
<single>ฉบับที่</single>
|
||||
<multiple>ฉบับที่</multiple>
|
||||
</term>
|
||||
<term name="line">
|
||||
<single>บรรทัดที่</single>
|
||||
<multiple>บรรทัดที่</multiple>
|
||||
</term>
|
||||
<term name="note">
|
||||
<single>บันทึก</single>
|
||||
<multiple>บันทึก</multiple>
|
||||
</term>
|
||||
<term name="opus">
|
||||
<single>บทประพันธ์</single>
|
||||
<multiple>บทประพันธ์</multiple>
|
||||
</term>
|
||||
<term name="page">
|
||||
<single>หน้า</single>
|
||||
<multiple>หน้า</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages">
|
||||
<single>หน้า</single>
|
||||
<multiple>หน้า</multiple>
|
||||
</term>
|
||||
<term name="paragraph">
|
||||
<single>ย่อหน้า</single>
|
||||
<multiple>ย่อหน้า</multiple>
|
||||
</term>
|
||||
<term name="part">
|
||||
<single>ส่วนย่อย</single>
|
||||
<multiple>ส่วนย่อย</multiple>
|
||||
</term>
|
||||
<term name="section">
|
||||
<single>หมวด</single>
|
||||
<multiple>หมวด</multiple>
|
||||
</term>
|
||||
<term name="sub verbo">
|
||||
<single>ใต้คำ</single>
|
||||
<multiple>ใต้คำ</multiple>
|
||||
</term>
|
||||
<term name="verse">
|
||||
<single>ร้อยกรอง</single>
|
||||
<multiple>ร้อยกรอง</multiple>
|
||||
</term>
|
||||
<term name="volume">
|
||||
<single>ปีที่</single>
|
||||
<multiple>ปีที่</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT LOCATOR FORMS -->
|
||||
<term name="book" form="short">หนังสือ</term>
|
||||
<term name="chapter" form="short">บทที่</term>
|
||||
<term name="column" form="short">สดมภ์</term>
|
||||
<term name="figure" form="short">รูปภาพ</term>
|
||||
<term name="folio" form="short">หน้า</term>
|
||||
<term name="issue" form="short">ฉบับที่</term>
|
||||
<term name="line" form="short">l.</term>
|
||||
<term name="note" form="short">n.</term>
|
||||
<term name="opus" form="short">บทประพันธ์</term>
|
||||
<term name="page" form="short">
|
||||
<single>น.</single>
|
||||
<multiple>น.</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages" form="short">
|
||||
<single>น.</single>
|
||||
<multiple>น.</multiple>
|
||||
</term>
|
||||
<term name="paragraph" form="short">ย่อหน้า</term>
|
||||
<term name="part" form="short">ส่วนย่อย</term>
|
||||
<term name="section" form="short">หมวด</term>
|
||||
<term name="sub verbo" form="short">
|
||||
<single>ใต้คำ</single>
|
||||
<multiple>ใต้คำ</multiple>
|
||||
</term>
|
||||
<term name="verse" form="short">
|
||||
<single>ร้อยกรอง</single>
|
||||
<multiple>ร้อยกรอง</multiple>
|
||||
</term>
|
||||
<term name="volume" form="short">
|
||||
<single>ปี</single>
|
||||
<multiple>ปี</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶¶</multiple>
|
||||
</term>
|
||||
<term name="section" form="symbol">
|
||||
<single>§</single>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="director">
|
||||
<single>director</single>
|
||||
<multiple>directors</multiple>
|
||||
</term>
|
||||
<term name="editor">
|
||||
<single>บรรณาธิการ</single>
|
||||
<multiple>บรรณาธิการ</multiple>
|
||||
</term>
|
||||
<term name="editorial-director">
|
||||
<single>ผู้อำนวยการบทบรรณาธิการ</single>
|
||||
<multiple>ผู้อำนวยการบทบรรณาธิการ</multiple>
|
||||
</term>
|
||||
<term name="illustrator">
|
||||
<single>illustrator</single>
|
||||
<multiple>illustrators</multiple>
|
||||
</term>
|
||||
<term name="translator">
|
||||
<single>ผู้แปล</single>
|
||||
<multiple>ผู้แปล</multiple>
|
||||
</term>
|
||||
<term name="editortranslator">
|
||||
<single>บรรณาธิการและผู้แปล</single>
|
||||
<multiple>บรรณาธิการและผู้แปล</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="director" form="short">
|
||||
<single>dir.</single>
|
||||
<multiple>dirs.</multiple>
|
||||
</term>
|
||||
<term name="editor" form="short">
|
||||
<single>บ.ก.</single>
|
||||
<multiple>บ.ก.</multiple>
|
||||
</term>
|
||||
<term name="editorial-director" form="short">
|
||||
<single>ผอ.บทบรรณาธิการ</single>
|
||||
<multiple>ผอ.บทบรรณาธิการ</multiple>
|
||||
</term>
|
||||
<term name="illustrator" form="short">
|
||||
<single>ill.</single>
|
||||
<multiple>ills.</multiple>
|
||||
</term>
|
||||
<term name="translator" form="short">
|
||||
<single>ผู้แปล</single>
|
||||
<multiple>ผู้แปล</multiple>
|
||||
</term>
|
||||
<term name="editortranslator" form="short">
|
||||
<single>บ.ก.</single>
|
||||
<multiple>บ.ก.</multiple>
|
||||
</term>
|
||||
|
||||
<!-- VERB ROLE FORMS -->
|
||||
<term name="container-author" form="verb">โดย</term>
|
||||
<term name="director" form="verb">directed by</term>
|
||||
<term name="editor" form="verb">เรียบเรียงโดย</term>
|
||||
<term name="editorial-director" form="verb">เรียบเรียงโดย</term>
|
||||
<term name="illustrator" form="verb">illustrated by</term>
|
||||
<term name="interviewer" form="verb">สัมภาษณ์โดย</term>
|
||||
<term name="recipient" form="verb">ถึง</term>
|
||||
<term name="reviewed-author" form="verb">by</term>
|
||||
<term name="translator" form="verb">แปลโดย</term>
|
||||
<term name="editortranslator" form="verb">แปลและเรียบเรียงโดย</term>
|
||||
|
||||
<!-- SHORT VERB ROLE FORMS -->
|
||||
<term name="director" form="verb-short">dir.</term>
|
||||
<term name="editor" form="verb-short">โดย</term>
|
||||
<term name="editorial-director" form="verb-short">โดย</term>
|
||||
<term name="illustrator" form="verb-short">illus.</term>
|
||||
<term name="translator" form="verb-short">แปล</term>
|
||||
<term name="editortranslator" form="verb-short">แปลและเรียบเรียงโดย</term>
|
||||
|
||||
<!-- LONG MONTH FORMS -->
|
||||
<term name="month-01">มกราคม</term>
|
||||
<term name="month-02">กุมภาพันธ์</term>
|
||||
<term name="month-03">มีนาคม</term>
|
||||
<term name="month-04">เมษายน</term>
|
||||
<term name="month-05">พฤษภาคม</term>
|
||||
<term name="month-06">มิถุนายน</term>
|
||||
<term name="month-07">กรกฎาคม</term>
|
||||
<term name="month-08">สิงหาคม</term>
|
||||
<term name="month-09">กันยายน</term>
|
||||
<term name="month-10">ตุลาคาม</term>
|
||||
<term name="month-11">พฤศจิกายน</term>
|
||||
<term name="month-12">ธันวาคม</term>
|
||||
|
||||
<!-- SHORT MONTH FORMS -->
|
||||
<term name="month-01" form="short">ม.ค.</term>
|
||||
<term name="month-02" form="short">ก.พ.</term>
|
||||
<term name="month-03" form="short">มี.ค.</term>
|
||||
<term name="month-04" form="short">เม.ย.</term>
|
||||
<term name="month-05" form="short">พ.ค.</term>
|
||||
<term name="month-06" form="short">มิ.ย.</term>
|
||||
<term name="month-07" form="short">ก.ค.</term>
|
||||
<term name="month-08" form="short">ส.ค.</term>
|
||||
<term name="month-09" form="short">ก.ย.</term>
|
||||
<term name="month-10" form="short">ต.ค.</term>
|
||||
<term name="month-11" form="short">พ.ย.</term>
|
||||
<term name="month-12" form="short">ธ.ค.</term>
|
||||
|
||||
<!-- SEASONS -->
|
||||
<term name="season-01">ฤดูใบไม้ผลิ</term>
|
||||
<term name="season-02">ฤดูร้อน</term>
|
||||
<term name="season-03">ฤดูใบไม้ร่วง</term>
|
||||
<term name="season-04">ฤดูหนาว</term>
|
||||
</terms>
|
||||
</locale>
|
||||
Vendored
+319
@@ -0,0 +1,319 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="tr-TR">
|
||||
<info>
|
||||
<translator>
|
||||
<name>ekizyener</name>
|
||||
</translator>
|
||||
<translator>
|
||||
<name>Binici</name>
|
||||
</translator>
|
||||
<translator>
|
||||
<name>cengiza</name>
|
||||
</translator>
|
||||
<translator>
|
||||
<name>Muhammet Tarakçı</name>
|
||||
<email>muhammettarakci@gmail.com</email>
|
||||
</translator>
|
||||
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
|
||||
<updated>2012-07-04T23:31:02+00:00</updated>
|
||||
</info>
|
||||
<style-options punctuation-in-quote="false"/>
|
||||
<date form="text">
|
||||
<date-part name="day" form="numeric-leading-zeros" suffix=" "/>
|
||||
<date-part name="month" suffix=" "/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<date form="numeric">
|
||||
<date-part name="day" form="numeric-leading-zeros" suffix="."/>
|
||||
<date-part name="month" form="numeric-leading-zeros" suffix="."/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<terms>
|
||||
<term name="accessed">erişim</term>
|
||||
<term name="and">ve</term>
|
||||
<term name="and others">ve diğerleri</term>
|
||||
<term name="anonymous">anonim</term>
|
||||
<term name="anonymous" form="short">anonim</term>
|
||||
<term name="at">de</term>
|
||||
<term name="available at">erişim adresi</term>
|
||||
<term name="by">by</term>
|
||||
<term name="circa">yaklaşık</term>
|
||||
<term name="circa" form="short">yakl.</term>
|
||||
<term name="cited">a.yer</term>
|
||||
<term name="edition">
|
||||
<single>baskı</single>
|
||||
<multiple>baskı</multiple>
|
||||
</term>
|
||||
<term name="edition" form="short">bs</term>
|
||||
<term name="et-al">vd.</term>
|
||||
<term name="forthcoming">gelecek</term>
|
||||
<term name="from">gönderen</term>
|
||||
<term name="ibid">a.g.e.</term>
|
||||
<term name="in">içinde</term>
|
||||
<term name="in press">basımda</term>
|
||||
<term name="internet">internet</term>
|
||||
<term name="interview">mülakat</term>
|
||||
<term name="letter">mektup</term>
|
||||
<term name="no date">tarih yok</term>
|
||||
<term name="no date" form="short">t.y.</term>
|
||||
<term name="online">çevrimiçi</term>
|
||||
<term name="presented at">program adı:</term>
|
||||
<term name="reference">
|
||||
<single>kaynak</single>
|
||||
<multiple>kaynaklar</multiple>
|
||||
</term>
|
||||
<term name="reference" form="short">
|
||||
<single>kay.</single>
|
||||
<multiple>kay.</multiple>
|
||||
</term>
|
||||
<term name="retrieved">geliş tarihi</term>
|
||||
<term name="scale">ölçek</term>
|
||||
<term name="version">versiyon</term>
|
||||
|
||||
<!-- ANNO DOMINI; BEFORE CHRIST -->
|
||||
<term name="ad">M.S.</term>
|
||||
<term name="bc">M.Ö.</term>
|
||||
|
||||
<!-- PUNCTUATION -->
|
||||
<term name="open-quote">“</term>
|
||||
<term name="close-quote">”</term>
|
||||
<term name="open-inner-quote">‘</term>
|
||||
<term name="close-inner-quote">’</term>
|
||||
<term name="page-range-delimiter">-</term>
|
||||
|
||||
<!-- ORDINALS -->
|
||||
<term name="ordinal">.</term>
|
||||
|
||||
<!-- LONG ORDINALS -->
|
||||
<term name="long-ordinal-01">birinci</term>
|
||||
<term name="long-ordinal-02">ikinci</term>
|
||||
<term name="long-ordinal-03">üçüncü</term>
|
||||
<term name="long-ordinal-04">dördüncü</term>
|
||||
<term name="long-ordinal-05">beşinci</term>
|
||||
<term name="long-ordinal-06">altıncı</term>
|
||||
<term name="long-ordinal-07">yedinci</term>
|
||||
<term name="long-ordinal-08">sekizinci</term>
|
||||
<term name="long-ordinal-09">dokuzuncu</term>
|
||||
<term name="long-ordinal-10">onuncu</term>
|
||||
|
||||
<!-- LONG LOCATOR FORMS -->
|
||||
<term name="book">
|
||||
<single>kitap</single>
|
||||
<multiple>kitaplar</multiple>
|
||||
</term>
|
||||
<term name="chapter">
|
||||
<single>bölüm</single>
|
||||
<multiple>bölümler</multiple>
|
||||
</term>
|
||||
<term name="column">
|
||||
<single>sütun</single>
|
||||
<multiple>sütunlar</multiple>
|
||||
</term>
|
||||
<term name="figure">
|
||||
<single>şekil</single>
|
||||
<multiple>şekiller</multiple>
|
||||
</term>
|
||||
<term name="folio">
|
||||
<single>folyo</single>
|
||||
<multiple>folyo</multiple>
|
||||
</term>
|
||||
<term name="issue">
|
||||
<single>sayı</single>
|
||||
<multiple>sayı</multiple>
|
||||
</term>
|
||||
<term name="line">
|
||||
<single>satır</single>
|
||||
<multiple>satırlar</multiple>
|
||||
</term>
|
||||
<term name="note">
|
||||
<single>not</single>
|
||||
<multiple>notlar</multiple>
|
||||
</term>
|
||||
<term name="opus">
|
||||
<single>eser</single>
|
||||
<multiple>eserler</multiple>
|
||||
</term>
|
||||
<term name="page">
|
||||
<single>sayfa</single>
|
||||
<multiple>sayfalar</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages">
|
||||
<single>sayfa sayısı</single>
|
||||
<multiple>sayfa sayıları</multiple>
|
||||
</term>
|
||||
<term name="paragraph">
|
||||
<single>paragraf</single>
|
||||
<multiple>paragraflar</multiple>
|
||||
</term>
|
||||
<term name="part">
|
||||
<single>kısım</single>
|
||||
<multiple>kısımlar</multiple>
|
||||
</term>
|
||||
<term name="section">
|
||||
<single>bölüm</single>
|
||||
<multiple>bölümler</multiple>
|
||||
</term>
|
||||
<term name="sub verbo">
|
||||
<single>madde</single>
|
||||
<multiple>maddeler</multiple>
|
||||
</term>
|
||||
<term name="verse">
|
||||
<single>ayet</single>
|
||||
<multiple>ayetler</multiple>
|
||||
</term>
|
||||
<term name="volume">
|
||||
<single>cilt</single>
|
||||
<multiple>ciltler</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT LOCATOR FORMS -->
|
||||
<term name="book" form="short">kit.</term>
|
||||
<term name="chapter" form="short">böl.</term>
|
||||
<term name="column" form="short">süt.</term>
|
||||
<term name="figure" form="short">şek.</term>
|
||||
<term name="folio" form="short">fl.</term>
|
||||
<term name="issue" form="short">sy</term>
|
||||
<term name="line" form="short">satır</term>
|
||||
<term name="note" form="short">n.</term>
|
||||
<term name="opus" form="short">a.yer</term>
|
||||
<term name="page" form="short">
|
||||
<single>s.</single>
|
||||
<multiple>ss.</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages" form="short">
|
||||
<single>s.</single>
|
||||
<multiple>ss.</multiple>
|
||||
</term>
|
||||
<term name="paragraph" form="short">par.</term>
|
||||
<term name="part" form="short">ksm.</term>
|
||||
<term name="section" form="short">blm.</term>
|
||||
<term name="sub verbo" form="short">
|
||||
<single>md.</single>
|
||||
<multiple>md.</multiple>
|
||||
</term>
|
||||
<term name="verse" form="short">
|
||||
<single>v.</single>
|
||||
<multiple>vv.</multiple>
|
||||
</term>
|
||||
<term name="volume" form="short">
|
||||
<single>c.</single>
|
||||
<multiple>c.</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶¶</multiple>
|
||||
</term>
|
||||
<term name="section" form="symbol">
|
||||
<single>§</single>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="director">
|
||||
<single>direktör</single>
|
||||
<multiple>direktörler</multiple>
|
||||
</term>
|
||||
<term name="editor">
|
||||
<single>editör</single>
|
||||
<multiple>editörler</multiple>
|
||||
</term>
|
||||
<term name="editorial-director">
|
||||
<single>sorumlu editör</single>
|
||||
<multiple>sorumlu editörler</multiple>
|
||||
</term>
|
||||
<term name="illustrator">
|
||||
<single>çizen</single>
|
||||
<multiple>çizenler</multiple>
|
||||
</term>
|
||||
<term name="translator">
|
||||
<single>çeviren</single>
|
||||
<multiple>çevirenler</multiple>
|
||||
</term>
|
||||
<term name="editortranslator">
|
||||
<single>editör & çeviren</single>
|
||||
<multiple>editörler & çevirenler</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="director" form="short">
|
||||
<single>dir.</single>
|
||||
<multiple>dir.</multiple>
|
||||
</term>
|
||||
<term name="editor" form="short">
|
||||
<single>ed.</single>
|
||||
<multiple>ed.</multiple>
|
||||
</term>
|
||||
<term name="editorial-director" form="short">
|
||||
<single>sor.ed.</single>
|
||||
<multiple>sor.ed.</multiple>
|
||||
</term>
|
||||
<term name="illustrator" form="short">
|
||||
<single>çzm.</single>
|
||||
<multiple>çzm.</multiple>
|
||||
</term>
|
||||
<term name="translator" form="short">
|
||||
<single>çev.</single>
|
||||
<multiple>çev.</multiple>
|
||||
</term>
|
||||
<term name="editortranslator" form="short">
|
||||
<single>ed. & çev.</single>
|
||||
<multiple>ed. & çev.</multiple>
|
||||
</term>
|
||||
|
||||
<!-- VERB ROLE FORMS -->
|
||||
<term name="container-author" form="verb">kitap editörü</term>
|
||||
<term name="director" form="verb">direktör</term>
|
||||
<term name="editor" form="verb">editör</term>
|
||||
<term name="editorial-director" form="verb">sorumlu editör</term>
|
||||
<term name="illustrator" form="verb">çizen</term>
|
||||
<term name="interviewer" form="verb">röportaj yapan</term>
|
||||
<term name="recipient" form="verb">alıcı</term>
|
||||
<term name="reviewed-author" form="verb">tanıtım yazarı</term>
|
||||
<term name="translator" form="verb">çeviren</term>
|
||||
<term name="editortranslator" form="verb">düzenleyen & çeviren by</term>
|
||||
|
||||
<!-- SHORT VERB ROLE FORMS -->
|
||||
<term name="director" form="verb-short">dir.</term>
|
||||
<term name="editor" form="verb-short">ed.</term>
|
||||
<term name="editorial-director" form="verb-short">sor.ed.</term>
|
||||
<term name="illustrator" form="verb-short">çizen</term>
|
||||
<term name="translator" form="verb-short">çev.</term>
|
||||
<term name="editortranslator" form="verb-short">ed. & çev.</term>
|
||||
|
||||
<!-- LONG MONTH FORMS -->
|
||||
<term name="month-01">Ocak</term>
|
||||
<term name="month-02">Şubat</term>
|
||||
<term name="month-03">Mart</term>
|
||||
<term name="month-04">Nisan</term>
|
||||
<term name="month-05">Mayıs</term>
|
||||
<term name="month-06">Haziran</term>
|
||||
<term name="month-07">Temmuz</term>
|
||||
<term name="month-08">Ağustos</term>
|
||||
<term name="month-09">Eylül</term>
|
||||
<term name="month-10">Ekim</term>
|
||||
<term name="month-11">Kasım</term>
|
||||
<term name="month-12">Aralık</term>
|
||||
|
||||
<!-- SHORT MONTH FORMS -->
|
||||
<term name="month-01" form="short">Oca.</term>
|
||||
<term name="month-02" form="short">Şub.</term>
|
||||
<term name="month-03" form="short">Mar.</term>
|
||||
<term name="month-04" form="short">Nis.</term>
|
||||
<term name="month-05" form="short">May.</term>
|
||||
<term name="month-06" form="short">Haz.</term>
|
||||
<term name="month-07" form="short">Tem.</term>
|
||||
<term name="month-08" form="short">Ağu.</term>
|
||||
<term name="month-09" form="short">Eyl.</term>
|
||||
<term name="month-10" form="short">Eki.</term>
|
||||
<term name="month-11" form="short">Kas.</term>
|
||||
<term name="month-12" form="short">Ara.</term>
|
||||
|
||||
<!-- SEASONS -->
|
||||
<term name="season-01">Bahar</term>
|
||||
<term name="season-02">Yaz</term>
|
||||
<term name="season-03">Sonbahar</term>
|
||||
<term name="season-04">Kış</term>
|
||||
</terms>
|
||||
</locale>
|
||||
Vendored
+249
@@ -0,0 +1,249 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="uk-UA">
|
||||
<info>
|
||||
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
|
||||
<updated>2018-09-17T21:00:00+02:00</updated>
|
||||
</info>
|
||||
<style-options punctuation-in-quote="false"/>
|
||||
<date form="text">
|
||||
<date-part name="day" form="numeric-leading-zeros" suffix=", "/>
|
||||
<date-part name="month" suffix=" "/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<date form="numeric">
|
||||
<date-part name="day" form="numeric-leading-zeros" suffix="/"/>
|
||||
<date-part name="month" form="numeric-leading-zeros" suffix="/"/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<terms>
|
||||
<term name="accessed">дата звернення</term>
|
||||
<term name="and">і</term>
|
||||
<term name="and others">та інші</term>
|
||||
<term name="anonymous">анонімний</term>
|
||||
<term name="anonymous" form="short">анон.</term>
|
||||
<term name="at">на</term>
|
||||
<term name="available at">доступний у</term>
|
||||
<term name="by">відповідно до</term>
|
||||
<term name="circa">близько</term>
|
||||
<term name="circa" form="short">c.</term>
|
||||
<term name="cited">цит. за</term>
|
||||
<term name="edition">видання</term>
|
||||
<term name="edition" form="short">вид.</term>
|
||||
<term name="et-al">et al.</term>
|
||||
<term name="forthcoming">майбутній</term>
|
||||
<term name="from">із</term>
|
||||
<term name="ibid">там само</term>
|
||||
<term name="in">в</term>
|
||||
<term name="in press">у пресі</term>
|
||||
<term name="internet">інтернет</term>
|
||||
<term name="interview">інтервю</term>
|
||||
<term name="letter">лист</term>
|
||||
<term name="no date">без дати</term>
|
||||
<term name="no date" form="short">б. д.</term>
|
||||
<term name="online">online</term>
|
||||
<term name="presented at">представлена на</term>
|
||||
<term name="reference">список використаних джерел</term>
|
||||
<term name="reference" form="short">джерела</term>
|
||||
<term name="retrieved">вилучено</term>
|
||||
<term name="scale">масштаб</term>
|
||||
<term name="version">версія</term>
|
||||
|
||||
<!-- ANNO DOMINI; BEFORE CHRIST -->
|
||||
<term name="ad">н. е.</term>
|
||||
<term name="bc">до н. е.</term>
|
||||
|
||||
<!-- PUNCTUATION -->
|
||||
<term name="open-quote">«</term>
|
||||
<term name="close-quote">»</term>
|
||||
<term name="open-inner-quote">‘</term>
|
||||
<term name="close-inner-quote">’</term>
|
||||
<term name="page-range-delimiter">–</term>
|
||||
|
||||
<!-- ORDINALS -->
|
||||
<term name="ordinal">ий</term>
|
||||
|
||||
<!-- LONG ORDINALS -->
|
||||
<term name="long-ordinal-01">перший</term>
|
||||
<term name="long-ordinal-02">другий</term>
|
||||
<term name="long-ordinal-03">третій</term>
|
||||
<term name="long-ordinal-04">четвертий</term>
|
||||
<term name="long-ordinal-05">п'ятий</term>
|
||||
<term name="long-ordinal-06">шостий</term>
|
||||
<term name="long-ordinal-07">сьомий</term>
|
||||
<term name="long-ordinal-08">восьмий</term>
|
||||
<term name="long-ordinal-09">дев'ятий</term>
|
||||
<term name="long-ordinal-10">десятий</term>
|
||||
|
||||
<!-- LONG LOCATOR FORMS -->
|
||||
<term name="book">
|
||||
<single>книга</single>
|
||||
<multiple>книги</multiple>
|
||||
</term>
|
||||
<term name="chapter">
|
||||
<single>розділ</single>
|
||||
<multiple>розділи</multiple>
|
||||
</term>
|
||||
<term name="column">
|
||||
<single>графа</single>
|
||||
<multiple>графи</multiple>
|
||||
</term>
|
||||
<term name="figure">
|
||||
<single>рисунок</single>
|
||||
<multiple>рисунки</multiple>
|
||||
</term>
|
||||
<term name="folio">
|
||||
<single>фоліант</single>
|
||||
<multiple>фоліанти</multiple>
|
||||
</term>
|
||||
<term name="issue">випуск</term>
|
||||
<term name="line">
|
||||
<single>Рядок</single>
|
||||
<multiple>Рядки</multiple>
|
||||
</term>
|
||||
<term name="note">
|
||||
<single>примітка</single>
|
||||
<multiple>примітки</multiple>
|
||||
</term>
|
||||
<term name="opus">
|
||||
<single>opus</single>
|
||||
<multiple>opera</multiple>
|
||||
</term>
|
||||
<term name="page">С.</term>
|
||||
<term name="number-of-pages">с.</term>
|
||||
<term name="paragraph">
|
||||
<single>параграф</single>
|
||||
<multiple>параграфи</multiple>
|
||||
</term>
|
||||
<term name="part">
|
||||
<single>частина</single>
|
||||
<multiple>частини</multiple>
|
||||
</term>
|
||||
<term name="section">
|
||||
<single>розділ</single>
|
||||
<multiple>розділи</multiple>
|
||||
</term>
|
||||
<term name="sub verbo">
|
||||
<single>sub verbo</single>
|
||||
<multiple>sub verbis</multiple>
|
||||
</term>
|
||||
<term name="verse">
|
||||
<single>verse</single>
|
||||
<multiple>verses</multiple>
|
||||
</term>
|
||||
<term name="volume">
|
||||
<single>Том</single>
|
||||
<multiple>Томи</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT LOCATOR FORMS -->
|
||||
<term name="book" form="short">кн.</term>
|
||||
<term name="chapter" form="short">розд.</term>
|
||||
<term name="column" form="short">ряд.</term>
|
||||
<term name="figure" form="short">рис.</term>
|
||||
<term name="folio" form="short">ф.</term>
|
||||
<term name="issue" form="short">вип.</term>
|
||||
<term name="line" form="short">л.</term>
|
||||
<term name="note" form="short">прим.</term>
|
||||
<term name="opus" form="short">оп.</term>
|
||||
<term name="page" form="short">с.</term>
|
||||
<term name="number-of-pages" form="short">с.</term>
|
||||
<term name="paragraph" form="short">пар.</term>
|
||||
<term name="part" form="short">ч.</term>
|
||||
<term name="section" form="short">сек.</term>
|
||||
<term name="sub verbo" form="short">
|
||||
<single>s.v.</single>
|
||||
<multiple>s.vv.</multiple>
|
||||
</term>
|
||||
<term name="verse" form="short">с.</term>
|
||||
<term name="volume" form="short">вип.</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶¶</multiple>
|
||||
</term>
|
||||
<term name="section" form="symbol">
|
||||
<single>§</single>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="director">
|
||||
<single>режисер</single>
|
||||
<multiple>режисери</multiple>
|
||||
</term>
|
||||
<term name="editor">за ред.</term>
|
||||
<term name="editorial-director">за ред.</term>
|
||||
<term name="illustrator">
|
||||
<single>ілюстратор</single>
|
||||
<multiple>ілюстратори</multiple>
|
||||
</term>
|
||||
<term name="translator">
|
||||
<single>перекладач</single>
|
||||
<multiple>перекладачі</multiple>
|
||||
</term>
|
||||
<term name="editortranslator">За ред. & переклад</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="director" form="short">реж.</term>
|
||||
<term name="editor" form="short">ред.</term>
|
||||
<term name="editorial-director" form="short">ред.</term>
|
||||
<term name="illustrator" form="short">іл.</term>
|
||||
<term name="translator" form="short">пер.</term>
|
||||
<term name="editortranslator" form="short">ред. & пер.</term>
|
||||
|
||||
<!-- VERB ROLE FORMS -->
|
||||
<term name="container-author" form="verb">by</term>
|
||||
<term name="director" form="verb">directed by</term>
|
||||
<term name="editor" form="verb">edited by</term>
|
||||
<term name="editorial-director" form="verb">edited by</term>
|
||||
<term name="illustrator" form="verb">illustrated by</term>
|
||||
<term name="interviewer" form="verb">interview by</term>
|
||||
<term name="recipient" form="verb">to</term>
|
||||
<term name="reviewed-author" form="verb">by</term>
|
||||
<term name="translator" form="verb">translated by</term>
|
||||
<term name="editortranslator" form="verb">edited & translated by</term>
|
||||
|
||||
<!-- SHORT VERB ROLE FORMS -->
|
||||
<term name="director" form="verb-short">dir.</term>
|
||||
<term name="editor" form="verb-short">ed</term>
|
||||
<term name="editorial-director" form="verb-short">ed.</term>
|
||||
<term name="illustrator" form="verb-short">illus.</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>
|
||||
<term name="month-04">Квітень</term>
|
||||
<term name="month-05">Травень</term>
|
||||
<term name="month-06">Червень</term>
|
||||
<term name="month-07">Липень</term>
|
||||
<term name="month-08">Серпень</term>
|
||||
<term name="month-09">Вересень</term>
|
||||
<term name="month-10">Жовтень</term>
|
||||
<term name="month-11">Листопад</term>
|
||||
<term name="month-12">Грудень</term>
|
||||
|
||||
<!-- SHORT MONTH FORMS -->
|
||||
<term name="month-01" form="short">Січ</term>
|
||||
<term name="month-02" form="short">Лют</term>
|
||||
<term name="month-03" form="short">Бер</term>
|
||||
<term name="month-04" form="short">Квіт</term>
|
||||
<term name="month-05" form="short">Трав</term>
|
||||
<term name="month-06" form="short">Чер</term>
|
||||
<term name="month-07" form="short">Лип</term>
|
||||
<term name="month-08" form="short">Сер</term>
|
||||
<term name="month-09" form="short">Вер</term>
|
||||
<term name="month-10" form="short">Жов</term>
|
||||
<term name="month-11" form="short">Лис</term>
|
||||
<term name="month-12" form="short">Груд</term>
|
||||
|
||||
<!-- SEASONS -->
|
||||
<term name="season-01">Spring</term>
|
||||
<term name="season-02">Summer</term>
|
||||
<term name="season-03">Autumn</term>
|
||||
<term name="season-04">Winter</term>
|
||||
</terms>
|
||||
</locale>
|
||||
Vendored
+315
@@ -0,0 +1,315 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="vi-VN">
|
||||
<info>
|
||||
<translator>
|
||||
<name>dowens76</name>
|
||||
</translator>
|
||||
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
|
||||
<updated>2012-07-04T23:31:02+00:00</updated>
|
||||
</info>
|
||||
<style-options punctuation-in-quote="false"/>
|
||||
<date form="text">
|
||||
<date-part name="day" suffix=" "/>
|
||||
<date-part name="month" suffix=" "/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<date form="numeric">
|
||||
<date-part name="day" form="numeric-leading-zeros" suffix="/"/>
|
||||
<date-part name="month" form="numeric-leading-zeros" suffix="/"/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<terms>
|
||||
<term name="accessed">truy cập</term>
|
||||
<term name="and">và</term>
|
||||
<term name="and others">and others</term>
|
||||
<term name="anonymous">vô danh</term>
|
||||
<term name="anonymous" form="short">v.d</term>
|
||||
<term name="at">tại</term>
|
||||
<term name="available at">available at</term>
|
||||
<term name="by">bởi</term>
|
||||
<term name="circa">circa</term>
|
||||
<term name="circa" form="short">c.</term>
|
||||
<term name="cited">cited</term>
|
||||
<term name="edition">
|
||||
<single>ấn bản</single>
|
||||
<multiple>ấn bản</multiple>
|
||||
</term>
|
||||
<term name="edition" form="short">a.b</term>
|
||||
<term name="et-al">và c.s.</term>
|
||||
<term name="forthcoming">sắp tới</term>
|
||||
<term name="from">từ</term>
|
||||
<term name="ibid">n.t.</term>
|
||||
<term name="in">trong</term>
|
||||
<term name="in press">in press</term>
|
||||
<term name="internet">internet</term>
|
||||
<term name="interview">interview</term>
|
||||
<term name="letter">letter</term>
|
||||
<term name="no date">không ngày</term>
|
||||
<term name="no date" form="short">không ngày</term>
|
||||
<term name="online">online</term>
|
||||
<term name="presented at">được trình bày tại</term>
|
||||
<term name="reference">
|
||||
<single>reference</single>
|
||||
<multiple>references</multiple>
|
||||
</term>
|
||||
<term name="reference" form="short">
|
||||
<single>ref.</single>
|
||||
<multiple>refs.</multiple>
|
||||
</term>
|
||||
<term name="retrieved">truy vấn</term>
|
||||
<term name="scale">scale</term>
|
||||
<term name="version">version</term>
|
||||
|
||||
<!-- ANNO DOMINI; BEFORE CHRIST -->
|
||||
<term name="ad">AD</term>
|
||||
<term name="bc">BC</term>
|
||||
|
||||
<!-- PUNCTUATION -->
|
||||
<term name="open-quote">“</term>
|
||||
<term name="close-quote">”</term>
|
||||
<term name="open-inner-quote">‘</term>
|
||||
<term name="close-inner-quote">’</term>
|
||||
<term name="page-range-delimiter">–</term>
|
||||
|
||||
<!-- ORDINALS -->
|
||||
<term name="ordinal">th</term>
|
||||
<term name="ordinal-01">st</term>
|
||||
<term name="ordinal-02">nd</term>
|
||||
<term name="ordinal-03">rd</term>
|
||||
<term name="ordinal-11">th</term>
|
||||
<term name="ordinal-12">th</term>
|
||||
<term name="ordinal-13">th</term>
|
||||
|
||||
<!-- LONG ORDINALS -->
|
||||
<term name="long-ordinal-01">thứ nhất</term>
|
||||
<term name="long-ordinal-02">thứ hai</term>
|
||||
<term name="long-ordinal-03">thứ ba</term>
|
||||
<term name="long-ordinal-04">thứ tư</term>
|
||||
<term name="long-ordinal-05">thứ năm</term>
|
||||
<term name="long-ordinal-06">thứ sáu</term>
|
||||
<term name="long-ordinal-07">thứ bảy</term>
|
||||
<term name="long-ordinal-08">thứ tám</term>
|
||||
<term name="long-ordinal-09">thứ chính</term>
|
||||
<term name="long-ordinal-10">thứ mười</term>
|
||||
|
||||
<!-- LONG LOCATOR FORMS -->
|
||||
<term name="book">
|
||||
<single>sách</single>
|
||||
<multiple>sách</multiple>
|
||||
</term>
|
||||
<term name="chapter">
|
||||
<single>chương</single>
|
||||
<multiple>chương</multiple>
|
||||
</term>
|
||||
<term name="column">
|
||||
<single>column</single>
|
||||
<multiple>columns</multiple>
|
||||
</term>
|
||||
<term name="figure">
|
||||
<single>figure</single>
|
||||
<multiple>figures</multiple>
|
||||
</term>
|
||||
<term name="folio">
|
||||
<single>folio</single>
|
||||
<multiple>folios</multiple>
|
||||
</term>
|
||||
<term name="issue">
|
||||
<single>số</single>
|
||||
<multiple>số</multiple>
|
||||
</term>
|
||||
<term name="line">
|
||||
<single>dòng</single>
|
||||
<multiple>dòng</multiple>
|
||||
</term>
|
||||
<term name="note">
|
||||
<single>ghi chú</single>
|
||||
<multiple>ghi chú</multiple>
|
||||
</term>
|
||||
<term name="opus">
|
||||
<single>opus</single>
|
||||
<multiple>opera</multiple>
|
||||
</term>
|
||||
<term name="page">
|
||||
<single>trang</single>
|
||||
<multiple>trang</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages">
|
||||
<single>trang</single>
|
||||
<multiple>trang</multiple>
|
||||
</term>
|
||||
<term name="paragraph">
|
||||
<single>đoạn văn</single>
|
||||
<multiple>đoạn văn</multiple>
|
||||
</term>
|
||||
<term name="part">
|
||||
<single>phần</single>
|
||||
<multiple>phần</multiple>
|
||||
</term>
|
||||
<term name="section">
|
||||
<single>section</single>
|
||||
<multiple>sections</multiple>
|
||||
</term>
|
||||
<term name="sub verbo">
|
||||
<single>sub verbo</single>
|
||||
<multiple>sub verbis</multiple>
|
||||
</term>
|
||||
<term name="verse">
|
||||
<single>câu</single>
|
||||
<multiple>câu</multiple>
|
||||
</term>
|
||||
<term name="volume">
|
||||
<single>tập</single>
|
||||
<multiple>tập</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT LOCATOR FORMS -->
|
||||
<term name="book" form="short">sách</term>
|
||||
<term name="chapter" form="short">ch</term>
|
||||
<term name="column" form="short">col</term>
|
||||
<term name="figure" form="short">fig</term>
|
||||
<term name="folio" form="short">f</term>
|
||||
<term name="issue" form="short">số p.h</term>
|
||||
<term name="line" form="short">d.</term>
|
||||
<term name="note" form="short">gc.</term>
|
||||
<term name="opus" form="short">op</term>
|
||||
<term name="page" form="short">
|
||||
<single>tr</single>
|
||||
<multiple>tr</multiple>
|
||||
</term>
|
||||
<term name="number-of-pages" form="short">
|
||||
<single>tr</single>
|
||||
<multiple>tr</multiple>
|
||||
</term>
|
||||
<term name="paragraph" form="short">para</term>
|
||||
<term name="part" form="short">ph</term>
|
||||
<term name="section" form="short">sec</term>
|
||||
<term name="sub verbo" form="short">
|
||||
<single>s.v.</single>
|
||||
<multiple>s.vv.</multiple>
|
||||
</term>
|
||||
<term name="verse" form="short">
|
||||
<single>v</single>
|
||||
<multiple>vv</multiple>
|
||||
</term>
|
||||
<term name="volume" form="short">
|
||||
<single>vol</single>
|
||||
<multiple>vols</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶¶</multiple>
|
||||
</term>
|
||||
<term name="section" form="symbol">
|
||||
<single>§</single>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="director">
|
||||
<single>director</single>
|
||||
<multiple>directors</multiple>
|
||||
</term>
|
||||
<term name="editor">
|
||||
<single>biên tập viên</single>
|
||||
<multiple>biên tập viên</multiple>
|
||||
</term>
|
||||
<term name="editorial-director">
|
||||
<single>biên tập viên</single>
|
||||
<multiple>biên tập viên</multiple>
|
||||
</term>
|
||||
<term name="illustrator">
|
||||
<single>họa sĩ</single>
|
||||
<multiple>họa sĩ</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>biên tập viên & biên dịch viên</single>
|
||||
<multiple>biên tập viên & biên dịch viên</multiple>
|
||||
</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="director" form="short">
|
||||
<single>dir.</single>
|
||||
<multiple>dirs.</multiple>
|
||||
</term>
|
||||
<term name="editor" form="short">
|
||||
<single>b.t.v</single>
|
||||
<multiple>b.t.v</multiple>
|
||||
</term>
|
||||
<term name="editorial-director" form="short">
|
||||
<single>b.t.v</single>
|
||||
<multiple>b.t.v</multiple>
|
||||
</term>
|
||||
<term name="illustrator" form="short">
|
||||
<single>h.s</single>
|
||||
<multiple>h.s</multiple>
|
||||
</term>
|
||||
<term name="translator" form="short">
|
||||
<single>b.d.v</single>
|
||||
<multiple>b.d.v</multiple>
|
||||
</term>
|
||||
<term name="editortranslator" form="short">
|
||||
<single>b.t.v & b.d.v</single>
|
||||
<multiple>b.t.v & b.d.v</multiple>
|
||||
</term>
|
||||
|
||||
<!-- VERB ROLE FORMS -->
|
||||
<term name="container-author" form="verb">bởi</term>
|
||||
<term name="director" form="verb">directed by</term>
|
||||
<term name="editor" form="verb">biên tập bởi</term>
|
||||
<term name="editorial-director" form="verb">biên tập bởi</term>
|
||||
<term name="illustrator" form="verb">illustrated by</term>
|
||||
<term name="interviewer" form="verb">interview by</term>
|
||||
<term name="recipient" form="verb">to</term>
|
||||
<term name="reviewed-author" form="verb">bởi</term>
|
||||
<term name="translator" form="verb">biên dịch bởi</term>
|
||||
<term name="editortranslator" form="verb">biên tập & biên dịch bởi</term>
|
||||
|
||||
<!-- SHORT VERB ROLE FORMS -->
|
||||
<term name="director" form="verb-short">dir.</term>
|
||||
<term name="editor" form="verb-short">b.t</term>
|
||||
<term name="editorial-director" form="verb-short">b.t</term>
|
||||
<term name="illustrator" form="verb-short">h.s</term>
|
||||
<term name="translator" form="verb-short">b.d</term>
|
||||
<term name="editortranslator" form="verb-short">b.t & b.d bởi</term>
|
||||
|
||||
<!-- LONG MONTH FORMS -->
|
||||
<term name="month-01">Tháng Giêng</term>
|
||||
<term name="month-02">Tháng Hai</term>
|
||||
<term name="month-03">Tháng Ba</term>
|
||||
<term name="month-04">Tháng Tư</term>
|
||||
<term name="month-05">Tháng Năm</term>
|
||||
<term name="month-06">Tháng Sáu</term>
|
||||
<term name="month-07">Tháng Bảy</term>
|
||||
<term name="month-08">Tháng Tám</term>
|
||||
<term name="month-09">Tháng Chín</term>
|
||||
<term name="month-10">Tháng Mười</term>
|
||||
<term name="month-11">Tháng Mười-Một</term>
|
||||
<term name="month-12">Tháng Chạp</term>
|
||||
|
||||
<!-- SHORT MONTH FORMS -->
|
||||
<term name="month-01" form="short">tháng 1</term>
|
||||
<term name="month-02" form="short">tháng 2</term>
|
||||
<term name="month-03" form="short">tháng 3</term>
|
||||
<term name="month-04" form="short">tháng 4</term>
|
||||
<term name="month-05" form="short">tháng 5</term>
|
||||
<term name="month-06" form="short">tháng 6</term>
|
||||
<term name="month-07" form="short">tháng 7</term>
|
||||
<term name="month-08" form="short">tháng 8</term>
|
||||
<term name="month-09" form="short">tháng 9</term>
|
||||
<term name="month-10" form="short">tháng 10</term>
|
||||
<term name="month-11" form="short">tháng 11</term>
|
||||
<term name="month-12" form="short">tháng 12</term>
|
||||
|
||||
<!-- SEASONS -->
|
||||
<term name="season-01">Mùa Xuân</term>
|
||||
<term name="season-02">Mùa Hè</term>
|
||||
<term name="season-03">Mùa Thu</term>
|
||||
<term name="season-04">Mùa Đông</term>
|
||||
</terms>
|
||||
</locale>
|
||||
Vendored
+205
@@ -0,0 +1,205 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="zh-CN">
|
||||
<info>
|
||||
<translator>
|
||||
<name>rongls</name>
|
||||
</translator>
|
||||
<translator>
|
||||
<name>sati-bodhi</name>
|
||||
</translator>
|
||||
<translator>
|
||||
<name>Heromyth</name>
|
||||
</translator>
|
||||
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
|
||||
<updated>2014-05-15T23:31:02+00:00</updated>
|
||||
</info>
|
||||
<style-options punctuation-in-quote="false"/>
|
||||
<date form="text">
|
||||
<date-part name="year" suffix="年"/>
|
||||
<date-part name="month" form="numeric" suffix="月"/>
|
||||
<date-part name="day" suffix="日"/>
|
||||
</date>
|
||||
<date form="numeric">
|
||||
<date-part name="year"/>
|
||||
<date-part name="month" form="numeric-leading-zeros" prefix="/"/>
|
||||
<date-part name="day" form="numeric-leading-zeros" prefix="/"/>
|
||||
</date>
|
||||
<terms>
|
||||
<term name="accessed">见于</term>
|
||||
<term name="and">和</term>
|
||||
<term name="and others">及其他</term>
|
||||
<term name="anonymous">作者不详</term>
|
||||
<term name="anonymous" form="short">无名氏</term>
|
||||
<term name="at">于</term>
|
||||
<term name="available at">载于</term>
|
||||
<term name="by">著</term>
|
||||
<term name="circa">介于</term>
|
||||
<term name="circa" form="short">约</term>
|
||||
<term name="cited">见引于</term>
|
||||
<term name="edition">版本</term>
|
||||
<term name="edition" form="short">本</term>
|
||||
<term name="et-al">等</term>
|
||||
<term name="forthcoming">即将出版</term>
|
||||
<term name="from">从</term>
|
||||
<term name="ibid">同上</term>
|
||||
<term name="in">收入</term>
|
||||
<term name="in press">送印中</term>
|
||||
<term name="internet">网际网络</term>
|
||||
<term name="interview">访谈</term>
|
||||
<term name="letter">信函</term>
|
||||
<term name="no date">日期不详</term>
|
||||
<term name="no date" form="short">不详</term>
|
||||
<term name="online">在线</term>
|
||||
<term name="presented at">发表于</term>
|
||||
<term name="reference">参考</term>
|
||||
<term name="reference" form="short">参</term>
|
||||
<term name="retrieved">取读于</term>
|
||||
<term name="scale">比例</term>
|
||||
<term name="version">版</term>
|
||||
|
||||
<!-- ANNO DOMINI; BEFORE CHRIST -->
|
||||
<term name="ad">公元</term>
|
||||
<term name="bc">公元前</term>
|
||||
|
||||
<!-- PUNCTUATION -->
|
||||
<term name="open-quote">《</term>
|
||||
<term name="close-quote">》</term>
|
||||
<term name="open-inner-quote">〈</term>
|
||||
<term name="close-inner-quote">〉</term>
|
||||
<term name="page-range-delimiter">–</term>
|
||||
|
||||
<!-- ORDINALS -->
|
||||
<term name="ordinal"></term>
|
||||
|
||||
<!-- LONG ORDINALS -->
|
||||
<term name="long-ordinal-01">一</term>
|
||||
<term name="long-ordinal-02">二</term>
|
||||
<term name="long-ordinal-03">三</term>
|
||||
<term name="long-ordinal-04">四</term>
|
||||
<term name="long-ordinal-05">五</term>
|
||||
<term name="long-ordinal-06">六</term>
|
||||
<term name="long-ordinal-07">七</term>
|
||||
<term name="long-ordinal-08">八</term>
|
||||
<term name="long-ordinal-09">九</term>
|
||||
<term name="long-ordinal-10">十</term>
|
||||
|
||||
<!-- LONG LOCATOR FORMS -->
|
||||
<term name="book">册</term>
|
||||
<term name="chapter">章</term>
|
||||
<term name="column">栏</term>
|
||||
<term name="figure">图表</term>
|
||||
<term name="folio">版</term>
|
||||
<term name="issue">期</term>
|
||||
<term name="line">行</term>
|
||||
<term name="note">注脚</term>
|
||||
<term name="opus">作品</term>
|
||||
<term name="page">页</term>
|
||||
<term name="number-of-pages"> 总页数</term>
|
||||
<term name="paragraph">段落</term>
|
||||
<term name="part">部分</term>
|
||||
<term name="section">节</term>
|
||||
<term name="sub verbo">另见</term>
|
||||
<term name="verse">篇</term>
|
||||
<term name="volume">卷</term>
|
||||
|
||||
<!-- SHORT LOCATOR FORMS -->
|
||||
<term name="book" form="short">册</term>
|
||||
<term name="chapter" form="short">章</term>
|
||||
<term name="column" form="short">栏</term>
|
||||
<term name="figure" form="short">图</term>
|
||||
<term name="folio" form="short">版</term>
|
||||
<term name="issue" form="short">期</term>
|
||||
<term name="line" form="short">行</term>
|
||||
<term name="note" form="short">注</term>
|
||||
<term name="opus" form="short">op.</term>
|
||||
<term name="page" form="short">页</term>
|
||||
<term name="number-of-pages" form="short">共</term>
|
||||
<term name="paragraph" form="short">段</term>
|
||||
<term name="part" form="short">部</term>
|
||||
<term name="section" form="short">节</term>
|
||||
<term name="sub verbo" form="short">另见</term>
|
||||
<term name="verse" form="short">篇</term>
|
||||
<term name="volume" form="short">卷</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶¶</multiple>
|
||||
</term>
|
||||
<term name="section" form="symbol">
|
||||
<single>§</single>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="director">导演</term>
|
||||
<term name="editor">编辑</term>
|
||||
<term name="editorial-director">主编</term>
|
||||
<term name="illustrator">绘图</term>
|
||||
<term name="translator">翻译</term>
|
||||
<term name="editortranslator">编译</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="director" form="short">导演</term>
|
||||
<term name="editor" form="short">编</term>
|
||||
<term name="editorial-director" form="short">主编</term>
|
||||
<term name="illustrator" form="short">绘</term>
|
||||
<term name="translator" form="short">译</term>
|
||||
<term name="editortranslator" form="short">编译</term>
|
||||
|
||||
<!-- VERB ROLE FORMS -->
|
||||
<term name="container-author" form="verb">著</term>
|
||||
<term name="director" form="verb">指导</term>
|
||||
<term name="editor" form="verb">编辑</term>
|
||||
<term name="editorial-director" form="verb">主编</term>
|
||||
<term name="illustrator" form="verb">绘图</term>
|
||||
<term name="interviewer" form="verb">采访</term>
|
||||
<term name="recipient" form="verb">受函</term>
|
||||
<term name="reviewed-author" form="verb">校订</term>
|
||||
<term name="translator" form="verb">翻译</term>
|
||||
<term name="editortranslator" form="verb">编译</term>
|
||||
|
||||
<!-- SHORT VERB ROLE FORMS -->
|
||||
<term name="director" form="verb-short">导</term>
|
||||
<term name="editor" form="verb-short">编</term>
|
||||
<term name="editorial-director" form="verb-short">主编</term>
|
||||
<term name="illustrator" form="verb-short">绘</term>
|
||||
<term name="translator" form="verb-short">译</term>
|
||||
<term name="editortranslator" form="verb-short">编译</term>
|
||||
<term name="reviewed-author" form="verb">校</term>
|
||||
|
||||
<!-- LONG MONTH FORMS -->
|
||||
<term name="month-01">一月</term>
|
||||
<term name="month-02">二月</term>
|
||||
<term name="month-03">三月</term>
|
||||
<term name="month-04">四月</term>
|
||||
<term name="month-05">五月</term>
|
||||
<term name="month-06">六月</term>
|
||||
<term name="month-07">七月</term>
|
||||
<term name="month-08">八月</term>
|
||||
<term name="month-09">九月</term>
|
||||
<term name="month-10">十月</term>
|
||||
<term name="month-11">十一月</term>
|
||||
<term name="month-12">十二月</term>
|
||||
|
||||
<!-- SHORT MONTH FORMS -->
|
||||
<term name="month-01" form="short">1月</term>
|
||||
<term name="month-02" form="short">2月</term>
|
||||
<term name="month-03" form="short">3月</term>
|
||||
<term name="month-04" form="short">4月</term>
|
||||
<term name="month-05" form="short">5月</term>
|
||||
<term name="month-06" form="short">6月</term>
|
||||
<term name="month-07" form="short">7月</term>
|
||||
<term name="month-08" form="short">8月</term>
|
||||
<term name="month-09" form="short">9月</term>
|
||||
<term name="month-10" form="short">10月</term>
|
||||
<term name="month-11" form="short">11月</term>
|
||||
<term name="month-12" form="short">12月</term>
|
||||
|
||||
<!-- SEASONS -->
|
||||
<term name="season-01">春</term>
|
||||
<term name="season-02">夏</term>
|
||||
<term name="season-03">秋</term>
|
||||
<term name="season-04">冬</term>
|
||||
</terms>
|
||||
</locale>
|
||||
Vendored
+209
@@ -0,0 +1,209 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="zh-TW">
|
||||
<info>
|
||||
<translator>
|
||||
<name>sati-bodhi</name>
|
||||
</translator>
|
||||
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
|
||||
<updated>2014-05-15T23:31:02+00:00</updated>
|
||||
</info>
|
||||
<style-options punctuation-in-quote="false"/>
|
||||
<date form="text">
|
||||
<date-part name="year" suffix="年"/>
|
||||
<date-part name="month" form="numeric" suffix="月"/>
|
||||
<date-part name="day" suffix="日"/>
|
||||
</date>
|
||||
<date form="numeric">
|
||||
<date-part name="year"/>
|
||||
<date-part name="month" form="numeric-leading-zeros" prefix="/"/>
|
||||
<date-part name="day" form="numeric-leading-zeros" prefix="/"/>
|
||||
</date>
|
||||
<terms>
|
||||
<term name="accessed">引見於</term>
|
||||
<term name="and">及</term>
|
||||
<term name="and others">及其他</term>
|
||||
<term name="anonymous">作者不詳</term>
|
||||
<term name="anonymous" form="short">無名氏</term>
|
||||
<term name="at">於</term>
|
||||
<term name="available at">載於</term>
|
||||
<term name="by">著</term>
|
||||
<term name="circa">介於</term>
|
||||
<term name="circa" form="short">約</term>
|
||||
<term name="cited">見引於</term>
|
||||
<term name="edition">版本</term>
|
||||
<term name="edition" form="short">本</term>
|
||||
<term name="et-al">等</term>
|
||||
<term name="forthcoming">即將出版</term>
|
||||
<term name="from">從</term>
|
||||
<term name="ibid">同上</term>
|
||||
<term name="in">收入</term>
|
||||
<term name="in press">印行中</term>
|
||||
<term name="internet">互聯網</term>
|
||||
<term name="interview">訪談</term>
|
||||
<term name="letter">信函</term>
|
||||
<term name="no date">日期不詳</term>
|
||||
<term name="no date" form="short">不詳</term>
|
||||
<term name="online">線上</term>
|
||||
<term name="presented at">發表於</term>
|
||||
<term name="reference">參考</term>
|
||||
<term name="reference" form="short">參</term>
|
||||
<term name="retrieved">讀取於</term>
|
||||
<term name="scale">比例</term>
|
||||
<term name="version">版</term>
|
||||
|
||||
<!-- ANNO DOMINI; BEFORE CHRIST -->
|
||||
<term name="ad">西元</term>
|
||||
<term name="bc">西元前</term>
|
||||
|
||||
<!-- PUNCTUATION -->
|
||||
<term name="open-quote">「</term>
|
||||
<term name="close-quote">」</term>
|
||||
<term name="open-inner-quote">『</term>
|
||||
<term name="close-inner-quote">』</term>
|
||||
<term name="page-range-delimiter">–</term>
|
||||
|
||||
<!-- ORDINALS -->
|
||||
<term name="ordinal"></term>
|
||||
|
||||
<!-- LONG ORDINALS -->
|
||||
<term name="long-ordinal-01">一</term>
|
||||
<term name="long-ordinal-02">二</term>
|
||||
<term name="long-ordinal-03">三</term>
|
||||
<term name="long-ordinal-04">四</term>
|
||||
<term name="long-ordinal-05">五</term>
|
||||
<term name="long-ordinal-06">六</term>
|
||||
<term name="long-ordinal-07">七</term>
|
||||
<term name="long-ordinal-08">八</term>
|
||||
<term name="long-ordinal-09">九</term>
|
||||
<term name="long-ordinal-10">十</term>
|
||||
|
||||
<!-- LONG LOCATOR FORMS -->
|
||||
<term name="book">冊</term>
|
||||
<term name="chapter">章</term>
|
||||
<term name="column">欄</term>
|
||||
<term name="figure">圖表</term>
|
||||
<term name="folio">版</term>
|
||||
<term name="issue">期</term>
|
||||
<term name="line">行</term>
|
||||
<term name="note">註腳</term>
|
||||
<term name="opus">作品</term>
|
||||
<term name="page">頁</term>
|
||||
<term name="number-of-pages">總頁數</term>
|
||||
<term name="paragraph">段落</term>
|
||||
<term name="part">部分</term>
|
||||
<term name="section">節</term>
|
||||
<term name="sub verbo">另見</term>
|
||||
<term name="verse">篇</term>
|
||||
<term name="volume">卷</term>
|
||||
|
||||
<!-- SHORT LOCATOR FORMS -->
|
||||
<term name="book" form="short">冊</term>
|
||||
<term name="chapter" form="short">章</term>
|
||||
<term name="column" form="short">欄</term>
|
||||
<term name="figure" form="short">圖</term>
|
||||
<term name="issue" form="short">期</term>
|
||||
<term name="line" form="short">行</term>
|
||||
<term name="note" form="short">註</term>
|
||||
<term name="opus" form="short">op.</term>
|
||||
<term name="page" form="short">頁</term>
|
||||
<term name="number-of-pages" form="short">共</term>
|
||||
<term name="paragraph" form="short">段</term>
|
||||
<term name="part" form="short">部</term>
|
||||
<term name="section" form="short">節</term>
|
||||
<term name="sub verbo" form="short">另見</term>
|
||||
<term name="verse" form="short">篇</term>
|
||||
<term name="volume" form="short">卷</term>
|
||||
|
||||
<!-- SYMBOL LOCATOR FORMS -->
|
||||
<term name="paragraph" form="symbol">
|
||||
<single>¶</single>
|
||||
<multiple>¶¶</multiple>
|
||||
</term>
|
||||
<term name="section" form="symbol">
|
||||
<single>§</single>
|
||||
<multiple>§§</multiple>
|
||||
</term>
|
||||
|
||||
<!-- LONG ROLE FORMS -->
|
||||
<term name="author">作者</term>
|
||||
<term name="director">導演</term>
|
||||
<term name="editor">編輯</term>
|
||||
<term name="editorial-director">主編</term>
|
||||
<term name="illustrator">繪圖師</term>
|
||||
<term name="interviewer">採訪員</term>
|
||||
<term name="recipient">收信人</term>
|
||||
<term name="translator">翻譯員</term>
|
||||
<term name="editortranslator">編譯員</term>
|
||||
<term name="reviewed-author">評論人</term>
|
||||
|
||||
<!-- SHORT ROLE FORMS -->
|
||||
<term name="author" form="short">作者</term>
|
||||
<term name="director" form="short">導演</term>
|
||||
<term name="editor" form="short">編輯</term>
|
||||
<term name="editorial-director" form="short">主編</term>
|
||||
<term name="illustrator" form="short">繪圖師</term>
|
||||
<term name="interviewer" form="short">採訪員</term>
|
||||
<term name="recipient" form="short">收信人</term>
|
||||
<term name="translator" form="short">翻譯員</term>
|
||||
<term name="editortranslator" form="short">編譯員</term>
|
||||
<term name="reviewed-author" form="short">評論人</term>
|
||||
|
||||
|
||||
<!-- VERB ROLE FORMS -->
|
||||
<term name="author" form="verb">著</term>
|
||||
<term name="container-author" form="verb">著</term>
|
||||
<term name="director" form="verb">指導</term>
|
||||
<term name="editor" form="verb">編輯</term>
|
||||
<term name="collection-editor" form="verb">點校</term>
|
||||
<term name="editorial-director" form="verb">主編</term>
|
||||
<term name="illustrator" form="verb">繪圖</term>
|
||||
<term name="interviewer" form="verb">採訪</term>
|
||||
<term name="recipient" form="verb">受函</term>
|
||||
<term name="reviewed-author" form="verb">點評</term>
|
||||
<term name="translator" form="verb">翻譯</term>
|
||||
<term name="editortranslator" form="verb">編譯</term>
|
||||
|
||||
<!-- SHORT VERB ROLE FORMS -->
|
||||
<term name="director" form="verb-short">導</term>
|
||||
<term name="editor" form="verb-short">編</term>
|
||||
<term name="collection-editor" form="verb-short">校</term>
|
||||
<term name="editorial-director" form="verb-short">編</term>
|
||||
<term name="illustrator" form="verb-short">繪</term>
|
||||
<term name="translator" form="verb-short">譯</term>
|
||||
<term name="reviewed-author" form="verb-short">評</term>
|
||||
|
||||
<!-- LONG MONTH FORMS -->
|
||||
<term name="month-01">一月</term>
|
||||
<term name="month-02">二月</term>
|
||||
<term name="month-03">三月</term>
|
||||
<term name="month-04">四月</term>
|
||||
<term name="month-05">五月</term>
|
||||
<term name="month-06">六月</term>
|
||||
<term name="month-07">七月</term>
|
||||
<term name="month-08">八月</term>
|
||||
<term name="month-09">九月</term>
|
||||
<term name="month-10">十月</term>
|
||||
<term name="month-11">十一月</term>
|
||||
<term name="month-12">十二月</term>
|
||||
|
||||
<!-- SHORT MONTH FORMS -->
|
||||
<term name="month-01" form="short">1月</term>
|
||||
<term name="month-02" form="short">2月</term>
|
||||
<term name="month-03" form="short">3月</term>
|
||||
<term name="month-04" form="short">4月</term>
|
||||
<term name="month-05" form="short">5月</term>
|
||||
<term name="month-06" form="short">6月</term>
|
||||
<term name="month-07" form="short">7月</term>
|
||||
<term name="month-08" form="short">8月</term>
|
||||
<term name="month-09" form="short">9月</term>
|
||||
<term name="month-10" form="short">10月</term>
|
||||
<term name="month-11" form="short">11月</term>
|
||||
<term name="month-12" form="short">12月</term>
|
||||
|
||||
<!-- SEASONS -->
|
||||
<term name="season-01">春</term>
|
||||
<term name="season-02">夏</term>
|
||||
<term name="season-03">秋</term>
|
||||
<term name="season-04">冬</term>
|
||||
</terms>
|
||||
</locale>
|
||||
Vendored
+263
@@ -0,0 +1,263 @@
|
||||
{
|
||||
"primary-dialects": {
|
||||
"af": "af-ZA",
|
||||
"ar": "ar",
|
||||
"bg": "bg-BG",
|
||||
"ca": "ca-AD",
|
||||
"cs": "cs-CZ",
|
||||
"cy": "cy-GB",
|
||||
"da": "da-DK",
|
||||
"de": "de-DE",
|
||||
"el": "el-GR",
|
||||
"en": "en-US",
|
||||
"es": "es-ES",
|
||||
"et": "et-EE",
|
||||
"eu": "eu",
|
||||
"fa": "fa-IR",
|
||||
"fi": "fi-FI",
|
||||
"fr": "fr-FR",
|
||||
"he": "he-IL",
|
||||
"hr": "hr-HR",
|
||||
"hu": "hu-HU",
|
||||
"id": "id-ID",
|
||||
"is": "is-IS",
|
||||
"it": "it-IT",
|
||||
"ja": "ja-JP",
|
||||
"km": "km-KH",
|
||||
"ko": "ko-KR",
|
||||
"la": "la",
|
||||
"lt": "lt-LT",
|
||||
"lv": "lv-LV",
|
||||
"mn": "mn-MN",
|
||||
"nb": "nb-NO",
|
||||
"nl": "nl-NL",
|
||||
"nn": "nn-NO",
|
||||
"pl": "pl-PL",
|
||||
"pt": "pt-PT",
|
||||
"ro": "ro-RO",
|
||||
"ru": "ru-RU",
|
||||
"sk": "sk-SK",
|
||||
"sl": "sl-SI",
|
||||
"sr": "sr-RS",
|
||||
"sv": "sv-SE",
|
||||
"th": "th-TH",
|
||||
"tr": "tr-TR",
|
||||
"uk": "uk-UA",
|
||||
"vi": "vi-VN",
|
||||
"zh": "zh-CN"
|
||||
},
|
||||
"language-names": {
|
||||
"af-ZA": [
|
||||
"Afrikaans",
|
||||
"Afrikaans"
|
||||
],
|
||||
"ar": [
|
||||
"العربية",
|
||||
"Arabic"
|
||||
],
|
||||
"bg-BG": [
|
||||
"Български",
|
||||
"Bulgarian"
|
||||
],
|
||||
"ca-AD": [
|
||||
"Català",
|
||||
"Catalan"
|
||||
],
|
||||
"cs-CZ": [
|
||||
"Čeština",
|
||||
"Czech"
|
||||
],
|
||||
"cy-GB": [
|
||||
"Cymraeg",
|
||||
"Welsh"
|
||||
],
|
||||
"da-DK": [
|
||||
"Dansk",
|
||||
"Danish"
|
||||
],
|
||||
"de-AT": [
|
||||
"Deutsch (Österreich)",
|
||||
"German (Austria)"
|
||||
],
|
||||
"de-CH": [
|
||||
"Deutsch (Schweiz)",
|
||||
"German (Switzerland)"
|
||||
],
|
||||
"de-DE": [
|
||||
"Deutsch (Deutschland)",
|
||||
"German (Germany)"
|
||||
],
|
||||
"el-GR": [
|
||||
"Ελληνικά",
|
||||
"Greek"
|
||||
],
|
||||
"en-GB": [
|
||||
"English (UK)",
|
||||
"English (UK)"
|
||||
],
|
||||
"en-US": [
|
||||
"English (US)",
|
||||
"English (US)"
|
||||
],
|
||||
"es-CL": [
|
||||
"Español (Chile)",
|
||||
"Spanish (Chile)"
|
||||
],
|
||||
"es-ES": [
|
||||
"Español (España)",
|
||||
"Spanish (Spain)"
|
||||
],
|
||||
"es-MX": [
|
||||
"Español (México)",
|
||||
"Spanish (Mexico)"
|
||||
],
|
||||
"et-EE": [
|
||||
"Eesti",
|
||||
"Estonian"
|
||||
],
|
||||
"eu": [
|
||||
"Euskara",
|
||||
"Basque"
|
||||
],
|
||||
"fa-IR": [
|
||||
"فارسی",
|
||||
"Persian"
|
||||
],
|
||||
"fi-FI": [
|
||||
"Suomi",
|
||||
"Finnish"
|
||||
],
|
||||
"fr-CA": [
|
||||
"Français (Canada)",
|
||||
"French (Canada)"
|
||||
],
|
||||
"fr-FR": [
|
||||
"Français (France)",
|
||||
"French (France)"
|
||||
],
|
||||
"he-IL": [
|
||||
"עברית",
|
||||
"Hebrew"
|
||||
],
|
||||
"hr-HR": [
|
||||
"Hrvatski",
|
||||
"Croatian"
|
||||
],
|
||||
"hu-HU": [
|
||||
"Magyar",
|
||||
"Hungarian"
|
||||
],
|
||||
"id-ID": [
|
||||
"Bahasa Indonesia",
|
||||
"Indonesian"
|
||||
],
|
||||
"is-IS": [
|
||||
"Íslenska",
|
||||
"Icelandic"
|
||||
],
|
||||
"it-IT": [
|
||||
"Italiano",
|
||||
"Italian"
|
||||
],
|
||||
"ja-JP": [
|
||||
"日本語",
|
||||
"Japanese"
|
||||
],
|
||||
"km-KH": [
|
||||
"ភាសាខ្មែរ",
|
||||
"Khmer"
|
||||
],
|
||||
"ko-KR": [
|
||||
"한국어",
|
||||
"Korean"
|
||||
],
|
||||
"la": [
|
||||
"Latina",
|
||||
"Latin"
|
||||
],
|
||||
"lt-LT": [
|
||||
"Lietuvių",
|
||||
"Lithuanian"
|
||||
],
|
||||
"lv-LV": [
|
||||
"Latviešu",
|
||||
"Latvian"
|
||||
],
|
||||
"mn-MN": [
|
||||
"Монгол",
|
||||
"Mongolian"
|
||||
],
|
||||
"nb-NO": [
|
||||
"Norsk bokmål",
|
||||
"Norwegian (Bokmål)"
|
||||
],
|
||||
"nl-NL": [
|
||||
"Nederlands",
|
||||
"Dutch"
|
||||
],
|
||||
"nn-NO": [
|
||||
"Norsk nynorsk",
|
||||
"Norwegian (Nynorsk)"
|
||||
],
|
||||
"pl-PL": [
|
||||
"Polski",
|
||||
"Polish"
|
||||
],
|
||||
"pt-BR": [
|
||||
"Português (Brasil)",
|
||||
"Portuguese (Brazil)"
|
||||
],
|
||||
"pt-PT": [
|
||||
"Português (Portugal)",
|
||||
"Portuguese (Portugal)"
|
||||
],
|
||||
"ro-RO": [
|
||||
"Română",
|
||||
"Romanian"
|
||||
],
|
||||
"ru-RU": [
|
||||
"Русский",
|
||||
"Russian"
|
||||
],
|
||||
"sk-SK": [
|
||||
"Slovenčina",
|
||||
"Slovak"
|
||||
],
|
||||
"sl-SI": [
|
||||
"Slovenščina",
|
||||
"Slovenian"
|
||||
],
|
||||
"sr-RS": [
|
||||
"Српски / Srpski",
|
||||
"Serbian"
|
||||
],
|
||||
"sv-SE": [
|
||||
"Svenska",
|
||||
"Swedish"
|
||||
],
|
||||
"th-TH": [
|
||||
"ไทย",
|
||||
"Thai"
|
||||
],
|
||||
"tr-TR": [
|
||||
"Türkçe",
|
||||
"Turkish"
|
||||
],
|
||||
"uk-UA": [
|
||||
"Українська",
|
||||
"Ukrainian"
|
||||
],
|
||||
"vi-VN": [
|
||||
"Tiếng Việt",
|
||||
"Vietnamese"
|
||||
],
|
||||
"zh-CN": [
|
||||
"中文 (中国大陆)",
|
||||
"Chinese (PRC)"
|
||||
],
|
||||
"zh-TW": [
|
||||
"中文 (台灣)",
|
||||
"Chinese (Taiwan)"
|
||||
]
|
||||
}
|
||||
}
|
||||
+44
@@ -0,0 +1,44 @@
|
||||
Locales.each_pair do |id, (filename, path, locale)|
|
||||
|
||||
describe "#{id}" do
|
||||
|
||||
it "is a valid CSL 1.0.1 locale" do
|
||||
expect(CSL.validate(path)).to eq([])
|
||||
end
|
||||
|
||||
it "has a conventional file name" do
|
||||
expect(filename).to match(/^locales-[a-z]{2}(-[A-Z]{2})?\.xml$/)
|
||||
end
|
||||
|
||||
it "was successfully parsed" do
|
||||
expect(locale).to be_a(CSL::Locale)
|
||||
end
|
||||
|
||||
unless locale.nil?
|
||||
it "has an info element" do
|
||||
expect(locale).to have_info
|
||||
end
|
||||
|
||||
it "has a language" do
|
||||
expect(locale.language).not_to be_empty
|
||||
end
|
||||
|
||||
it "has a region" do
|
||||
expect(locale.region).not_to be_empty
|
||||
end unless NO_REGIONS.include?(locale.language.to_s)
|
||||
|
||||
it "its language and region match the filename" do
|
||||
expect(locale.to_s).to eq(id[8,5])
|
||||
end
|
||||
|
||||
it "has and info/rights element" do
|
||||
expect(locale.info).to have_rights
|
||||
end
|
||||
|
||||
it "is licensed under a CC BY-SA license" do
|
||||
expect(locale.info).to be_default_license
|
||||
end
|
||||
end
|
||||
|
||||
end
|
||||
end
|
||||
+53
@@ -0,0 +1,53 @@
|
||||
describe "The file \"locales.json\"" do
|
||||
before(:all) do
|
||||
locales_file_path = File.join("#{LOCALE_ROOT}", "locales.json")
|
||||
@locales_file_exists = File.exist?(locales_file_path)
|
||||
|
||||
@locales_file_validates = false
|
||||
begin
|
||||
locales = JSON.parse(File.read(locales_file_path))
|
||||
@locales_file_validates = true
|
||||
rescue JSON::ParserError => e
|
||||
end
|
||||
|
||||
@primary_dialects = {}
|
||||
@language_names = {}
|
||||
|
||||
if @locales_file_validates
|
||||
@primary_dialects = locales["primary-dialects"]
|
||||
@language_names = locales["language-names"]
|
||||
end
|
||||
|
||||
# Store locales of locale files (based on their file names)
|
||||
@locale_file_locales = Dir[File.join(LOCALE_ROOT, 'locales-*.xml')].map { |path|
|
||||
filename = File.basename(path)
|
||||
locale = filename[8..-5]
|
||||
}
|
||||
@locale_file_languages = @locale_file_locales.map { |locale| language = locale[0..1] }
|
||||
@locale_file_languages.uniq!
|
||||
end
|
||||
|
||||
it "must be present" do
|
||||
expect(@locales_file_exists).to be true
|
||||
end
|
||||
|
||||
it "must be valid JSON" do
|
||||
if @locales_file_exists
|
||||
expect(@locales_file_validates).to be true
|
||||
end
|
||||
end
|
||||
|
||||
it "must define a primary dialect for every language (e.g. \"de-DE\" for \"de\")" do
|
||||
expect(@locale_file_languages - @primary_dialects.keys).to eq([])
|
||||
end
|
||||
|
||||
it "must define language names for every locale" do
|
||||
expect(@locale_file_locales - @language_names.keys).to eq([])
|
||||
end
|
||||
|
||||
it "must define two language names for every locale (in the language itself and in English)" do
|
||||
incorrect_entries = @language_names.select { |locale, descriptions| descriptions.length != 2 }
|
||||
expect(incorrect_entries).to eq({})
|
||||
end
|
||||
end
|
||||
|
||||
plugins/generic/citationStyleLanguage/lib/vendor/citation-style-language/locales/spec/spec_helper.rb
Vendored
+35
@@ -0,0 +1,35 @@
|
||||
require 'csl'
|
||||
require 'json'
|
||||
|
||||
LOCALE_ROOT = File.expand_path('../..', __FILE__)
|
||||
|
||||
NO_REGIONS = %w{
|
||||
eu ar la
|
||||
}
|
||||
|
||||
def load_locale(path)
|
||||
filename = File.basename(path)
|
||||
id = filename[0..-5]
|
||||
|
||||
begin
|
||||
locale = CSL::Locale.load(path)
|
||||
rescue
|
||||
# failed to parse the locale. we'll report the error later
|
||||
end
|
||||
|
||||
[id, [filename, path, locale]]
|
||||
end
|
||||
|
||||
CSL::Schema.default_license = 'http://creativecommons.org/licenses/by-sa/3.0/'
|
||||
CSL::Schema.default_rights_string =
|
||||
'This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License'
|
||||
|
||||
|
||||
print "\nLoading locales"
|
||||
|
||||
Locales = Hash[Dir[File.join(LOCALE_ROOT, '*.xml')].each_with_index.map { |path, i|
|
||||
print '.' if i % 5 == 0
|
||||
load_locale(path)
|
||||
}]
|
||||
|
||||
puts
|
||||
@@ -0,0 +1,572 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of Composer.
|
||||
*
|
||||
* (c) Nils Adermann <naderman@naderman.de>
|
||||
* Jordi Boggiano <j.boggiano@seld.be>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace Composer\Autoload;
|
||||
|
||||
/**
|
||||
* ClassLoader implements a PSR-0, PSR-4 and classmap class loader.
|
||||
*
|
||||
* $loader = new \Composer\Autoload\ClassLoader();
|
||||
*
|
||||
* // register classes with namespaces
|
||||
* $loader->add('Symfony\Component', __DIR__.'/component');
|
||||
* $loader->add('Symfony', __DIR__.'/framework');
|
||||
*
|
||||
* // activate the autoloader
|
||||
* $loader->register();
|
||||
*
|
||||
* // to enable searching the include path (eg. for PEAR packages)
|
||||
* $loader->setUseIncludePath(true);
|
||||
*
|
||||
* In this example, if you try to use a class in the Symfony\Component
|
||||
* namespace or one of its children (Symfony\Component\Console for instance),
|
||||
* the autoloader will first look for the class under the component/
|
||||
* directory, and it will then fallback to the framework/ directory if not
|
||||
* found before giving up.
|
||||
*
|
||||
* This class is loosely based on the Symfony UniversalClassLoader.
|
||||
*
|
||||
* @author Fabien Potencier <fabien@symfony.com>
|
||||
* @author Jordi Boggiano <j.boggiano@seld.be>
|
||||
* @see https://www.php-fig.org/psr/psr-0/
|
||||
* @see https://www.php-fig.org/psr/psr-4/
|
||||
*/
|
||||
class ClassLoader
|
||||
{
|
||||
/** @var ?string */
|
||||
private $vendorDir;
|
||||
|
||||
// PSR-4
|
||||
/**
|
||||
* @var array[]
|
||||
* @psalm-var array<string, array<string, int>>
|
||||
*/
|
||||
private $prefixLengthsPsr4 = array();
|
||||
/**
|
||||
* @var array[]
|
||||
* @psalm-var array<string, array<int, string>>
|
||||
*/
|
||||
private $prefixDirsPsr4 = array();
|
||||
/**
|
||||
* @var array[]
|
||||
* @psalm-var array<string, string>
|
||||
*/
|
||||
private $fallbackDirsPsr4 = array();
|
||||
|
||||
// PSR-0
|
||||
/**
|
||||
* @var array[]
|
||||
* @psalm-var array<string, array<string, string[]>>
|
||||
*/
|
||||
private $prefixesPsr0 = array();
|
||||
/**
|
||||
* @var array[]
|
||||
* @psalm-var array<string, string>
|
||||
*/
|
||||
private $fallbackDirsPsr0 = array();
|
||||
|
||||
/** @var bool */
|
||||
private $useIncludePath = false;
|
||||
|
||||
/**
|
||||
* @var string[]
|
||||
* @psalm-var array<string, string>
|
||||
*/
|
||||
private $classMap = array();
|
||||
|
||||
/** @var bool */
|
||||
private $classMapAuthoritative = false;
|
||||
|
||||
/**
|
||||
* @var bool[]
|
||||
* @psalm-var array<string, bool>
|
||||
*/
|
||||
private $missingClasses = array();
|
||||
|
||||
/** @var ?string */
|
||||
private $apcuPrefix;
|
||||
|
||||
/**
|
||||
* @var self[]
|
||||
*/
|
||||
private static $registeredLoaders = array();
|
||||
|
||||
/**
|
||||
* @param ?string $vendorDir
|
||||
*/
|
||||
public function __construct($vendorDir = null)
|
||||
{
|
||||
$this->vendorDir = $vendorDir;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return string[]
|
||||
*/
|
||||
public function getPrefixes()
|
||||
{
|
||||
if (!empty($this->prefixesPsr0)) {
|
||||
return call_user_func_array('array_merge', array_values($this->prefixesPsr0));
|
||||
}
|
||||
|
||||
return array();
|
||||
}
|
||||
|
||||
/**
|
||||
* @return array[]
|
||||
* @psalm-return array<string, array<int, string>>
|
||||
*/
|
||||
public function getPrefixesPsr4()
|
||||
{
|
||||
return $this->prefixDirsPsr4;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return array[]
|
||||
* @psalm-return array<string, string>
|
||||
*/
|
||||
public function getFallbackDirs()
|
||||
{
|
||||
return $this->fallbackDirsPsr0;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return array[]
|
||||
* @psalm-return array<string, string>
|
||||
*/
|
||||
public function getFallbackDirsPsr4()
|
||||
{
|
||||
return $this->fallbackDirsPsr4;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return string[] Array of classname => path
|
||||
* @psalm-return array<string, string>
|
||||
*/
|
||||
public function getClassMap()
|
||||
{
|
||||
return $this->classMap;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string[] $classMap Class to filename map
|
||||
* @psalm-param array<string, string> $classMap
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function addClassMap(array $classMap)
|
||||
{
|
||||
if ($this->classMap) {
|
||||
$this->classMap = array_merge($this->classMap, $classMap);
|
||||
} else {
|
||||
$this->classMap = $classMap;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Registers a set of PSR-0 directories for a given prefix, either
|
||||
* appending or prepending to the ones previously set for this prefix.
|
||||
*
|
||||
* @param string $prefix The prefix
|
||||
* @param string[]|string $paths The PSR-0 root directories
|
||||
* @param bool $prepend Whether to prepend the directories
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function add($prefix, $paths, $prepend = false)
|
||||
{
|
||||
if (!$prefix) {
|
||||
if ($prepend) {
|
||||
$this->fallbackDirsPsr0 = array_merge(
|
||||
(array) $paths,
|
||||
$this->fallbackDirsPsr0
|
||||
);
|
||||
} else {
|
||||
$this->fallbackDirsPsr0 = array_merge(
|
||||
$this->fallbackDirsPsr0,
|
||||
(array) $paths
|
||||
);
|
||||
}
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
$first = $prefix[0];
|
||||
if (!isset($this->prefixesPsr0[$first][$prefix])) {
|
||||
$this->prefixesPsr0[$first][$prefix] = (array) $paths;
|
||||
|
||||
return;
|
||||
}
|
||||
if ($prepend) {
|
||||
$this->prefixesPsr0[$first][$prefix] = array_merge(
|
||||
(array) $paths,
|
||||
$this->prefixesPsr0[$first][$prefix]
|
||||
);
|
||||
} else {
|
||||
$this->prefixesPsr0[$first][$prefix] = array_merge(
|
||||
$this->prefixesPsr0[$first][$prefix],
|
||||
(array) $paths
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Registers a set of PSR-4 directories for a given namespace, either
|
||||
* appending or prepending to the ones previously set for this namespace.
|
||||
*
|
||||
* @param string $prefix The prefix/namespace, with trailing '\\'
|
||||
* @param string[]|string $paths The PSR-4 base directories
|
||||
* @param bool $prepend Whether to prepend the directories
|
||||
*
|
||||
* @throws \InvalidArgumentException
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function addPsr4($prefix, $paths, $prepend = false)
|
||||
{
|
||||
if (!$prefix) {
|
||||
// Register directories for the root namespace.
|
||||
if ($prepend) {
|
||||
$this->fallbackDirsPsr4 = array_merge(
|
||||
(array) $paths,
|
||||
$this->fallbackDirsPsr4
|
||||
);
|
||||
} else {
|
||||
$this->fallbackDirsPsr4 = array_merge(
|
||||
$this->fallbackDirsPsr4,
|
||||
(array) $paths
|
||||
);
|
||||
}
|
||||
} elseif (!isset($this->prefixDirsPsr4[$prefix])) {
|
||||
// Register directories for a new namespace.
|
||||
$length = strlen($prefix);
|
||||
if ('\\' !== $prefix[$length - 1]) {
|
||||
throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator.");
|
||||
}
|
||||
$this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length;
|
||||
$this->prefixDirsPsr4[$prefix] = (array) $paths;
|
||||
} elseif ($prepend) {
|
||||
// Prepend directories for an already registered namespace.
|
||||
$this->prefixDirsPsr4[$prefix] = array_merge(
|
||||
(array) $paths,
|
||||
$this->prefixDirsPsr4[$prefix]
|
||||
);
|
||||
} else {
|
||||
// Append directories for an already registered namespace.
|
||||
$this->prefixDirsPsr4[$prefix] = array_merge(
|
||||
$this->prefixDirsPsr4[$prefix],
|
||||
(array) $paths
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Registers a set of PSR-0 directories for a given prefix,
|
||||
* replacing any others previously set for this prefix.
|
||||
*
|
||||
* @param string $prefix The prefix
|
||||
* @param string[]|string $paths The PSR-0 base directories
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function set($prefix, $paths)
|
||||
{
|
||||
if (!$prefix) {
|
||||
$this->fallbackDirsPsr0 = (array) $paths;
|
||||
} else {
|
||||
$this->prefixesPsr0[$prefix[0]][$prefix] = (array) $paths;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Registers a set of PSR-4 directories for a given namespace,
|
||||
* replacing any others previously set for this namespace.
|
||||
*
|
||||
* @param string $prefix The prefix/namespace, with trailing '\\'
|
||||
* @param string[]|string $paths The PSR-4 base directories
|
||||
*
|
||||
* @throws \InvalidArgumentException
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function setPsr4($prefix, $paths)
|
||||
{
|
||||
if (!$prefix) {
|
||||
$this->fallbackDirsPsr4 = (array) $paths;
|
||||
} else {
|
||||
$length = strlen($prefix);
|
||||
if ('\\' !== $prefix[$length - 1]) {
|
||||
throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator.");
|
||||
}
|
||||
$this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length;
|
||||
$this->prefixDirsPsr4[$prefix] = (array) $paths;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Turns on searching the include path for class files.
|
||||
*
|
||||
* @param bool $useIncludePath
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function setUseIncludePath($useIncludePath)
|
||||
{
|
||||
$this->useIncludePath = $useIncludePath;
|
||||
}
|
||||
|
||||
/**
|
||||
* Can be used to check if the autoloader uses the include path to check
|
||||
* for classes.
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
public function getUseIncludePath()
|
||||
{
|
||||
return $this->useIncludePath;
|
||||
}
|
||||
|
||||
/**
|
||||
* Turns off searching the prefix and fallback directories for classes
|
||||
* that have not been registered with the class map.
|
||||
*
|
||||
* @param bool $classMapAuthoritative
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function setClassMapAuthoritative($classMapAuthoritative)
|
||||
{
|
||||
$this->classMapAuthoritative = $classMapAuthoritative;
|
||||
}
|
||||
|
||||
/**
|
||||
* Should class lookup fail if not found in the current class map?
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
public function isClassMapAuthoritative()
|
||||
{
|
||||
return $this->classMapAuthoritative;
|
||||
}
|
||||
|
||||
/**
|
||||
* APCu prefix to use to cache found/not-found classes, if the extension is enabled.
|
||||
*
|
||||
* @param string|null $apcuPrefix
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function setApcuPrefix($apcuPrefix)
|
||||
{
|
||||
$this->apcuPrefix = function_exists('apcu_fetch') && filter_var(ini_get('apc.enabled'), FILTER_VALIDATE_BOOLEAN) ? $apcuPrefix : null;
|
||||
}
|
||||
|
||||
/**
|
||||
* The APCu prefix in use, or null if APCu caching is not enabled.
|
||||
*
|
||||
* @return string|null
|
||||
*/
|
||||
public function getApcuPrefix()
|
||||
{
|
||||
return $this->apcuPrefix;
|
||||
}
|
||||
|
||||
/**
|
||||
* Registers this instance as an autoloader.
|
||||
*
|
||||
* @param bool $prepend Whether to prepend the autoloader or not
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function register($prepend = false)
|
||||
{
|
||||
spl_autoload_register(array($this, 'loadClass'), true, $prepend);
|
||||
|
||||
if (null === $this->vendorDir) {
|
||||
return;
|
||||
}
|
||||
|
||||
if ($prepend) {
|
||||
self::$registeredLoaders = array($this->vendorDir => $this) + self::$registeredLoaders;
|
||||
} else {
|
||||
unset(self::$registeredLoaders[$this->vendorDir]);
|
||||
self::$registeredLoaders[$this->vendorDir] = $this;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Unregisters this instance as an autoloader.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function unregister()
|
||||
{
|
||||
spl_autoload_unregister(array($this, 'loadClass'));
|
||||
|
||||
if (null !== $this->vendorDir) {
|
||||
unset(self::$registeredLoaders[$this->vendorDir]);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Loads the given class or interface.
|
||||
*
|
||||
* @param string $class The name of the class
|
||||
* @return true|null True if loaded, null otherwise
|
||||
*/
|
||||
public function loadClass($class)
|
||||
{
|
||||
if ($file = $this->findFile($class)) {
|
||||
includeFile($file);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Finds the path to the file where the class is defined.
|
||||
*
|
||||
* @param string $class The name of the class
|
||||
*
|
||||
* @return string|false The path if found, false otherwise
|
||||
*/
|
||||
public function findFile($class)
|
||||
{
|
||||
// class map lookup
|
||||
if (isset($this->classMap[$class])) {
|
||||
return $this->classMap[$class];
|
||||
}
|
||||
if ($this->classMapAuthoritative || isset($this->missingClasses[$class])) {
|
||||
return false;
|
||||
}
|
||||
if (null !== $this->apcuPrefix) {
|
||||
$file = apcu_fetch($this->apcuPrefix.$class, $hit);
|
||||
if ($hit) {
|
||||
return $file;
|
||||
}
|
||||
}
|
||||
|
||||
$file = $this->findFileWithExtension($class, '.php');
|
||||
|
||||
// Search for Hack files if we are running on HHVM
|
||||
if (false === $file && defined('HHVM_VERSION')) {
|
||||
$file = $this->findFileWithExtension($class, '.hh');
|
||||
}
|
||||
|
||||
if (null !== $this->apcuPrefix) {
|
||||
apcu_add($this->apcuPrefix.$class, $file);
|
||||
}
|
||||
|
||||
if (false === $file) {
|
||||
// Remember that this class does not exist.
|
||||
$this->missingClasses[$class] = true;
|
||||
}
|
||||
|
||||
return $file;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the currently registered loaders indexed by their corresponding vendor directories.
|
||||
*
|
||||
* @return self[]
|
||||
*/
|
||||
public static function getRegisteredLoaders()
|
||||
{
|
||||
return self::$registeredLoaders;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $class
|
||||
* @param string $ext
|
||||
* @return string|false
|
||||
*/
|
||||
private function findFileWithExtension($class, $ext)
|
||||
{
|
||||
// PSR-4 lookup
|
||||
$logicalPathPsr4 = strtr($class, '\\', DIRECTORY_SEPARATOR) . $ext;
|
||||
|
||||
$first = $class[0];
|
||||
if (isset($this->prefixLengthsPsr4[$first])) {
|
||||
$subPath = $class;
|
||||
while (false !== $lastPos = strrpos($subPath, '\\')) {
|
||||
$subPath = substr($subPath, 0, $lastPos);
|
||||
$search = $subPath . '\\';
|
||||
if (isset($this->prefixDirsPsr4[$search])) {
|
||||
$pathEnd = DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $lastPos + 1);
|
||||
foreach ($this->prefixDirsPsr4[$search] as $dir) {
|
||||
if (file_exists($file = $dir . $pathEnd)) {
|
||||
return $file;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// PSR-4 fallback dirs
|
||||
foreach ($this->fallbackDirsPsr4 as $dir) {
|
||||
if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr4)) {
|
||||
return $file;
|
||||
}
|
||||
}
|
||||
|
||||
// PSR-0 lookup
|
||||
if (false !== $pos = strrpos($class, '\\')) {
|
||||
// namespaced class name
|
||||
$logicalPathPsr0 = substr($logicalPathPsr4, 0, $pos + 1)
|
||||
. strtr(substr($logicalPathPsr4, $pos + 1), '_', DIRECTORY_SEPARATOR);
|
||||
} else {
|
||||
// PEAR-like class name
|
||||
$logicalPathPsr0 = strtr($class, '_', DIRECTORY_SEPARATOR) . $ext;
|
||||
}
|
||||
|
||||
if (isset($this->prefixesPsr0[$first])) {
|
||||
foreach ($this->prefixesPsr0[$first] as $prefix => $dirs) {
|
||||
if (0 === strpos($class, $prefix)) {
|
||||
foreach ($dirs as $dir) {
|
||||
if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) {
|
||||
return $file;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// PSR-0 fallback dirs
|
||||
foreach ($this->fallbackDirsPsr0 as $dir) {
|
||||
if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) {
|
||||
return $file;
|
||||
}
|
||||
}
|
||||
|
||||
// PSR-0 include paths.
|
||||
if ($this->useIncludePath && $file = stream_resolve_include_path($logicalPathPsr0)) {
|
||||
return $file;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Scope isolated include.
|
||||
*
|
||||
* Prevents access to $this/self from included files.
|
||||
*
|
||||
* @param string $file
|
||||
* @return void
|
||||
* @private
|
||||
*/
|
||||
function includeFile($file)
|
||||
{
|
||||
include $file;
|
||||
}
|
||||
+352
@@ -0,0 +1,352 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of Composer.
|
||||
*
|
||||
* (c) Nils Adermann <naderman@naderman.de>
|
||||
* Jordi Boggiano <j.boggiano@seld.be>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace Composer;
|
||||
|
||||
use Composer\Autoload\ClassLoader;
|
||||
use Composer\Semver\VersionParser;
|
||||
|
||||
/**
|
||||
* This class is copied in every Composer installed project and available to all
|
||||
*
|
||||
* See also https://getcomposer.org/doc/07-runtime.md#installed-versions
|
||||
*
|
||||
* To require its presence, you can require `composer-runtime-api ^2.0`
|
||||
*
|
||||
* @final
|
||||
*/
|
||||
class InstalledVersions
|
||||
{
|
||||
/**
|
||||
* @var mixed[]|null
|
||||
* @psalm-var array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}|array{}|null
|
||||
*/
|
||||
private static $installed;
|
||||
|
||||
/**
|
||||
* @var bool|null
|
||||
*/
|
||||
private static $canGetVendors;
|
||||
|
||||
/**
|
||||
* @var array[]
|
||||
* @psalm-var array<string, array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}>
|
||||
*/
|
||||
private static $installedByVendor = array();
|
||||
|
||||
/**
|
||||
* Returns a list of all package names which are present, either by being installed, replaced or provided
|
||||
*
|
||||
* @return string[]
|
||||
* @psalm-return list<string>
|
||||
*/
|
||||
public static function getInstalledPackages()
|
||||
{
|
||||
$packages = array();
|
||||
foreach (self::getInstalled() as $installed) {
|
||||
$packages[] = array_keys($installed['versions']);
|
||||
}
|
||||
|
||||
if (1 === \count($packages)) {
|
||||
return $packages[0];
|
||||
}
|
||||
|
||||
return array_keys(array_flip(\call_user_func_array('array_merge', $packages)));
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns a list of all package names with a specific type e.g. 'library'
|
||||
*
|
||||
* @param string $type
|
||||
* @return string[]
|
||||
* @psalm-return list<string>
|
||||
*/
|
||||
public static function getInstalledPackagesByType($type)
|
||||
{
|
||||
$packagesByType = array();
|
||||
|
||||
foreach (self::getInstalled() as $installed) {
|
||||
foreach ($installed['versions'] as $name => $package) {
|
||||
if (isset($package['type']) && $package['type'] === $type) {
|
||||
$packagesByType[] = $name;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return $packagesByType;
|
||||
}
|
||||
|
||||
/**
|
||||
* Checks whether the given package is installed
|
||||
*
|
||||
* This also returns true if the package name is provided or replaced by another package
|
||||
*
|
||||
* @param string $packageName
|
||||
* @param bool $includeDevRequirements
|
||||
* @return bool
|
||||
*/
|
||||
public static function isInstalled($packageName, $includeDevRequirements = true)
|
||||
{
|
||||
foreach (self::getInstalled() as $installed) {
|
||||
if (isset($installed['versions'][$packageName])) {
|
||||
return $includeDevRequirements || empty($installed['versions'][$packageName]['dev_requirement']);
|
||||
}
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* Checks whether the given package satisfies a version constraint
|
||||
*
|
||||
* e.g. If you want to know whether version 2.3+ of package foo/bar is installed, you would call:
|
||||
*
|
||||
* Composer\InstalledVersions::satisfies(new VersionParser, 'foo/bar', '^2.3')
|
||||
*
|
||||
* @param VersionParser $parser Install composer/semver to have access to this class and functionality
|
||||
* @param string $packageName
|
||||
* @param string|null $constraint A version constraint to check for, if you pass one you have to make sure composer/semver is required by your package
|
||||
* @return bool
|
||||
*/
|
||||
public static function satisfies(VersionParser $parser, $packageName, $constraint)
|
||||
{
|
||||
$constraint = $parser->parseConstraints($constraint);
|
||||
$provided = $parser->parseConstraints(self::getVersionRanges($packageName));
|
||||
|
||||
return $provided->matches($constraint);
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns a version constraint representing all the range(s) which are installed for a given package
|
||||
*
|
||||
* It is easier to use this via isInstalled() with the $constraint argument if you need to check
|
||||
* whether a given version of a package is installed, and not just whether it exists
|
||||
*
|
||||
* @param string $packageName
|
||||
* @return string Version constraint usable with composer/semver
|
||||
*/
|
||||
public static function getVersionRanges($packageName)
|
||||
{
|
||||
foreach (self::getInstalled() as $installed) {
|
||||
if (!isset($installed['versions'][$packageName])) {
|
||||
continue;
|
||||
}
|
||||
|
||||
$ranges = array();
|
||||
if (isset($installed['versions'][$packageName]['pretty_version'])) {
|
||||
$ranges[] = $installed['versions'][$packageName]['pretty_version'];
|
||||
}
|
||||
if (array_key_exists('aliases', $installed['versions'][$packageName])) {
|
||||
$ranges = array_merge($ranges, $installed['versions'][$packageName]['aliases']);
|
||||
}
|
||||
if (array_key_exists('replaced', $installed['versions'][$packageName])) {
|
||||
$ranges = array_merge($ranges, $installed['versions'][$packageName]['replaced']);
|
||||
}
|
||||
if (array_key_exists('provided', $installed['versions'][$packageName])) {
|
||||
$ranges = array_merge($ranges, $installed['versions'][$packageName]['provided']);
|
||||
}
|
||||
|
||||
return implode(' || ', $ranges);
|
||||
}
|
||||
|
||||
throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed');
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $packageName
|
||||
* @return string|null If the package is being replaced or provided but is not really installed, null will be returned as version, use satisfies or getVersionRanges if you need to know if a given version is present
|
||||
*/
|
||||
public static function getVersion($packageName)
|
||||
{
|
||||
foreach (self::getInstalled() as $installed) {
|
||||
if (!isset($installed['versions'][$packageName])) {
|
||||
continue;
|
||||
}
|
||||
|
||||
if (!isset($installed['versions'][$packageName]['version'])) {
|
||||
return null;
|
||||
}
|
||||
|
||||
return $installed['versions'][$packageName]['version'];
|
||||
}
|
||||
|
||||
throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed');
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $packageName
|
||||
* @return string|null If the package is being replaced or provided but is not really installed, null will be returned as version, use satisfies or getVersionRanges if you need to know if a given version is present
|
||||
*/
|
||||
public static function getPrettyVersion($packageName)
|
||||
{
|
||||
foreach (self::getInstalled() as $installed) {
|
||||
if (!isset($installed['versions'][$packageName])) {
|
||||
continue;
|
||||
}
|
||||
|
||||
if (!isset($installed['versions'][$packageName]['pretty_version'])) {
|
||||
return null;
|
||||
}
|
||||
|
||||
return $installed['versions'][$packageName]['pretty_version'];
|
||||
}
|
||||
|
||||
throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed');
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $packageName
|
||||
* @return string|null If the package is being replaced or provided but is not really installed, null will be returned as reference
|
||||
*/
|
||||
public static function getReference($packageName)
|
||||
{
|
||||
foreach (self::getInstalled() as $installed) {
|
||||
if (!isset($installed['versions'][$packageName])) {
|
||||
continue;
|
||||
}
|
||||
|
||||
if (!isset($installed['versions'][$packageName]['reference'])) {
|
||||
return null;
|
||||
}
|
||||
|
||||
return $installed['versions'][$packageName]['reference'];
|
||||
}
|
||||
|
||||
throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed');
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $packageName
|
||||
* @return string|null If the package is being replaced or provided but is not really installed, null will be returned as install path. Packages of type metapackages also have a null install path.
|
||||
*/
|
||||
public static function getInstallPath($packageName)
|
||||
{
|
||||
foreach (self::getInstalled() as $installed) {
|
||||
if (!isset($installed['versions'][$packageName])) {
|
||||
continue;
|
||||
}
|
||||
|
||||
return isset($installed['versions'][$packageName]['install_path']) ? $installed['versions'][$packageName]['install_path'] : null;
|
||||
}
|
||||
|
||||
throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed');
|
||||
}
|
||||
|
||||
/**
|
||||
* @return array
|
||||
* @psalm-return array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}
|
||||
*/
|
||||
public static function getRootPackage()
|
||||
{
|
||||
$installed = self::getInstalled();
|
||||
|
||||
return $installed[0]['root'];
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the raw installed.php data for custom implementations
|
||||
*
|
||||
* @deprecated Use getAllRawData() instead which returns all datasets for all autoloaders present in the process. getRawData only returns the first dataset loaded, which may not be what you expect.
|
||||
* @return array[]
|
||||
* @psalm-return array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}
|
||||
*/
|
||||
public static function getRawData()
|
||||
{
|
||||
@trigger_error('getRawData only returns the first dataset loaded, which may not be what you expect. Use getAllRawData() instead which returns all datasets for all autoloaders present in the process.', E_USER_DEPRECATED);
|
||||
|
||||
if (null === self::$installed) {
|
||||
// only require the installed.php file if this file is loaded from its dumped location,
|
||||
// and not from its source location in the composer/composer package, see https://github.com/composer/composer/issues/9937
|
||||
if (substr(__DIR__, -8, 1) !== 'C') {
|
||||
self::$installed = include __DIR__ . '/installed.php';
|
||||
} else {
|
||||
self::$installed = array();
|
||||
}
|
||||
}
|
||||
|
||||
return self::$installed;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the raw data of all installed.php which are currently loaded for custom implementations
|
||||
*
|
||||
* @return array[]
|
||||
* @psalm-return list<array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}>
|
||||
*/
|
||||
public static function getAllRawData()
|
||||
{
|
||||
return self::getInstalled();
|
||||
}
|
||||
|
||||
/**
|
||||
* Lets you reload the static array from another file
|
||||
*
|
||||
* This is only useful for complex integrations in which a project needs to use
|
||||
* this class but then also needs to execute another project's autoloader in process,
|
||||
* and wants to ensure both projects have access to their version of installed.php.
|
||||
*
|
||||
* A typical case would be PHPUnit, where it would need to make sure it reads all
|
||||
* the data it needs from this class, then call reload() with
|
||||
* `require $CWD/vendor/composer/installed.php` (or similar) as input to make sure
|
||||
* the project in which it runs can then also use this class safely, without
|
||||
* interference between PHPUnit's dependencies and the project's dependencies.
|
||||
*
|
||||
* @param array[] $data A vendor/composer/installed.php data set
|
||||
* @return void
|
||||
*
|
||||
* @psalm-param array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>} $data
|
||||
*/
|
||||
public static function reload($data)
|
||||
{
|
||||
self::$installed = $data;
|
||||
self::$installedByVendor = array();
|
||||
}
|
||||
|
||||
/**
|
||||
* @return array[]
|
||||
* @psalm-return list<array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}>
|
||||
*/
|
||||
private static function getInstalled()
|
||||
{
|
||||
if (null === self::$canGetVendors) {
|
||||
self::$canGetVendors = method_exists('Composer\Autoload\ClassLoader', 'getRegisteredLoaders');
|
||||
}
|
||||
|
||||
$installed = array();
|
||||
|
||||
if (self::$canGetVendors) {
|
||||
foreach (ClassLoader::getRegisteredLoaders() as $vendorDir => $loader) {
|
||||
if (isset(self::$installedByVendor[$vendorDir])) {
|
||||
$installed[] = self::$installedByVendor[$vendorDir];
|
||||
} elseif (is_file($vendorDir.'/composer/installed.php')) {
|
||||
$installed[] = self::$installedByVendor[$vendorDir] = require $vendorDir.'/composer/installed.php';
|
||||
if (null === self::$installed && strtr($vendorDir.'/composer', '\\', '/') === strtr(__DIR__, '\\', '/')) {
|
||||
self::$installed = $installed[count($installed) - 1];
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (null === self::$installed) {
|
||||
// only require the installed.php file if this file is loaded from its dumped location,
|
||||
// and not from its source location in the composer/composer package, see https://github.com/composer/composer/issues/9937
|
||||
if (substr(__DIR__, -8, 1) !== 'C') {
|
||||
self::$installed = require __DIR__ . '/installed.php';
|
||||
} else {
|
||||
self::$installed = array();
|
||||
}
|
||||
}
|
||||
$installed[] = self::$installed;
|
||||
|
||||
return $installed;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
|
||||
Copyright (c) Nils Adermann, Jordi Boggiano
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is furnished
|
||||
to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
THE SOFTWARE.
|
||||
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
// autoload_classmap.php @generated by Composer
|
||||
|
||||
$vendorDir = dirname(__DIR__);
|
||||
$baseDir = dirname(dirname($vendorDir));
|
||||
|
||||
return array(
|
||||
'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php',
|
||||
'Stringable' => $vendorDir . '/myclabs/php-enum/stubs/Stringable.php',
|
||||
);
|
||||
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
// autoload_files.php @generated by Composer
|
||||
|
||||
$vendorDir = dirname(__DIR__);
|
||||
$baseDir = dirname(dirname($vendorDir));
|
||||
|
||||
return array(
|
||||
'fccd6c30fa70f56cfd048c001bd392f4' => $vendorDir . '/seboettg/collection/src/ArrayList/Functions.php',
|
||||
'd9e2a8c16442dde496ed7a052bc063c9' => $vendorDir . '/seboettg/citeproc-php/src/functions.php',
|
||||
);
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
// autoload_namespaces.php @generated by Composer
|
||||
|
||||
$vendorDir = dirname(__DIR__);
|
||||
$baseDir = dirname(dirname($vendorDir));
|
||||
|
||||
return array(
|
||||
);
|
||||
@@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
// autoload_psr4.php @generated by Composer
|
||||
|
||||
$vendorDir = dirname(__DIR__);
|
||||
$baseDir = dirname(dirname($vendorDir));
|
||||
|
||||
return array(
|
||||
'Seboettg\\Collection\\' => array($vendorDir . '/seboettg/collection/src'),
|
||||
'Seboettg\\CiteProc\\' => array($vendorDir . '/seboettg/citeproc-php/src'),
|
||||
'MyCLabs\\Enum\\' => array($vendorDir . '/myclabs/php-enum/src'),
|
||||
);
|
||||
@@ -0,0 +1,57 @@
|
||||
<?php
|
||||
|
||||
// autoload_real.php @generated by Composer
|
||||
|
||||
class ComposerAutoloaderInita7e2cf237a3ef157c1a8fcc41a2d44d0
|
||||
{
|
||||
private static $loader;
|
||||
|
||||
public static function loadClassLoader($class)
|
||||
{
|
||||
if ('Composer\Autoload\ClassLoader' === $class) {
|
||||
require __DIR__ . '/ClassLoader.php';
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @return \Composer\Autoload\ClassLoader
|
||||
*/
|
||||
public static function getLoader()
|
||||
{
|
||||
if (null !== self::$loader) {
|
||||
return self::$loader;
|
||||
}
|
||||
|
||||
require __DIR__ . '/platform_check.php';
|
||||
|
||||
spl_autoload_register(array('ComposerAutoloaderInita7e2cf237a3ef157c1a8fcc41a2d44d0', 'loadClassLoader'), true, true);
|
||||
self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
|
||||
spl_autoload_unregister(array('ComposerAutoloaderInita7e2cf237a3ef157c1a8fcc41a2d44d0', 'loadClassLoader'));
|
||||
|
||||
require __DIR__ . '/autoload_static.php';
|
||||
call_user_func(\Composer\Autoload\ComposerStaticInita7e2cf237a3ef157c1a8fcc41a2d44d0::getInitializer($loader));
|
||||
|
||||
$loader->register(true);
|
||||
|
||||
$includeFiles = \Composer\Autoload\ComposerStaticInita7e2cf237a3ef157c1a8fcc41a2d44d0::$files;
|
||||
foreach ($includeFiles as $fileIdentifier => $file) {
|
||||
composerRequirea7e2cf237a3ef157c1a8fcc41a2d44d0($fileIdentifier, $file);
|
||||
}
|
||||
|
||||
return $loader;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $fileIdentifier
|
||||
* @param string $file
|
||||
* @return void
|
||||
*/
|
||||
function composerRequirea7e2cf237a3ef157c1a8fcc41a2d44d0($fileIdentifier, $file)
|
||||
{
|
||||
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
|
||||
$GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;
|
||||
|
||||
require $file;
|
||||
}
|
||||
}
|
||||
+55
@@ -0,0 +1,55 @@
|
||||
<?php
|
||||
|
||||
// autoload_static.php @generated by Composer
|
||||
|
||||
namespace Composer\Autoload;
|
||||
|
||||
class ComposerStaticInita7e2cf237a3ef157c1a8fcc41a2d44d0
|
||||
{
|
||||
public static $files = array (
|
||||
'fccd6c30fa70f56cfd048c001bd392f4' => __DIR__ . '/..' . '/seboettg/collection/src/ArrayList/Functions.php',
|
||||
'd9e2a8c16442dde496ed7a052bc063c9' => __DIR__ . '/..' . '/seboettg/citeproc-php/src/functions.php',
|
||||
);
|
||||
|
||||
public static $prefixLengthsPsr4 = array (
|
||||
'S' =>
|
||||
array (
|
||||
'Seboettg\\Collection\\' => 20,
|
||||
'Seboettg\\CiteProc\\' => 18,
|
||||
),
|
||||
'M' =>
|
||||
array (
|
||||
'MyCLabs\\Enum\\' => 13,
|
||||
),
|
||||
);
|
||||
|
||||
public static $prefixDirsPsr4 = array (
|
||||
'Seboettg\\Collection\\' =>
|
||||
array (
|
||||
0 => __DIR__ . '/..' . '/seboettg/collection/src',
|
||||
),
|
||||
'Seboettg\\CiteProc\\' =>
|
||||
array (
|
||||
0 => __DIR__ . '/..' . '/seboettg/citeproc-php/src',
|
||||
),
|
||||
'MyCLabs\\Enum\\' =>
|
||||
array (
|
||||
0 => __DIR__ . '/..' . '/myclabs/php-enum/src',
|
||||
),
|
||||
);
|
||||
|
||||
public static $classMap = array (
|
||||
'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php',
|
||||
'Stringable' => __DIR__ . '/..' . '/myclabs/php-enum/stubs/Stringable.php',
|
||||
);
|
||||
|
||||
public static function getInitializer(ClassLoader $loader)
|
||||
{
|
||||
return \Closure::bind(function () use ($loader) {
|
||||
$loader->prefixLengthsPsr4 = ComposerStaticInita7e2cf237a3ef157c1a8fcc41a2d44d0::$prefixLengthsPsr4;
|
||||
$loader->prefixDirsPsr4 = ComposerStaticInita7e2cf237a3ef157c1a8fcc41a2d44d0::$prefixDirsPsr4;
|
||||
$loader->classMap = ComposerStaticInita7e2cf237a3ef157c1a8fcc41a2d44d0::$classMap;
|
||||
|
||||
}, null, ClassLoader::class);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,214 @@
|
||||
{
|
||||
"packages": [
|
||||
{
|
||||
"name": "citation-style-language/locales",
|
||||
"version": "1.0.0",
|
||||
"version_normalized": "1.0.0.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/citation-style-language/locales.git",
|
||||
"reference": "master"
|
||||
},
|
||||
"type": "library",
|
||||
"installation-source": "source",
|
||||
"install-path": "../citation-style-language/locales"
|
||||
},
|
||||
{
|
||||
"name": "myclabs/php-enum",
|
||||
"version": "1.8.4",
|
||||
"version_normalized": "1.8.4.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/myclabs/php-enum.git",
|
||||
"reference": "a867478eae49c9f59ece437ae7f9506bfaa27483"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/myclabs/php-enum/zipball/a867478eae49c9f59ece437ae7f9506bfaa27483",
|
||||
"reference": "a867478eae49c9f59ece437ae7f9506bfaa27483",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"ext-json": "*",
|
||||
"php": "^7.3 || ^8.0"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpunit/phpunit": "^9.5",
|
||||
"squizlabs/php_codesniffer": "1.*",
|
||||
"vimeo/psalm": "^4.6.2"
|
||||
},
|
||||
"time": "2022-08-04T09:53:51+00:00",
|
||||
"type": "library",
|
||||
"installation-source": "dist",
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"MyCLabs\\Enum\\": "src/"
|
||||
},
|
||||
"classmap": [
|
||||
"stubs/Stringable.php"
|
||||
]
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "PHP Enum contributors",
|
||||
"homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
|
||||
}
|
||||
],
|
||||
"description": "PHP Enum implementation",
|
||||
"homepage": "http://github.com/myclabs/php-enum",
|
||||
"keywords": [
|
||||
"enum"
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/myclabs/php-enum/issues",
|
||||
"source": "https://github.com/myclabs/php-enum/tree/1.8.4"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
"url": "https://github.com/mnapoli",
|
||||
"type": "github"
|
||||
},
|
||||
{
|
||||
"url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
|
||||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"install-path": "../myclabs/php-enum"
|
||||
},
|
||||
{
|
||||
"name": "seboettg/citeproc-php",
|
||||
"version": "v2.5.2",
|
||||
"version_normalized": "2.5.2.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/seboettg/citeproc-php.git",
|
||||
"reference": "042535d9d1e56058f54156e3c5682f3f9a467abe"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/seboettg/citeproc-php/zipball/042535d9d1e56058f54156e3c5682f3f9a467abe",
|
||||
"reference": "042535d9d1e56058f54156e3c5682f3f9a467abe",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"ext-intl": "*",
|
||||
"ext-json": "*",
|
||||
"ext-mbstring": "*",
|
||||
"ext-simplexml": "*",
|
||||
"myclabs/php-enum": "^1.8",
|
||||
"php": ">=7.3",
|
||||
"seboettg/collection": ">=v3.1.0"
|
||||
},
|
||||
"require-dev": {
|
||||
"php-coveralls/php-coveralls": "^1",
|
||||
"phpmd/phpmd": "^2.8",
|
||||
"phpunit/phpunit": "^8.5",
|
||||
"squizlabs/php_codesniffer": "^3.5"
|
||||
},
|
||||
"suggest": {
|
||||
"symfony/polyfill-mbstring": "^1.10"
|
||||
},
|
||||
"time": "2023-02-08T21:13:17+00:00",
|
||||
"type": "library",
|
||||
"installation-source": "dist",
|
||||
"autoload": {
|
||||
"files": [
|
||||
"src/functions.php"
|
||||
],
|
||||
"psr-4": {
|
||||
"Seboettg\\CiteProc\\": "src/"
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Sebastian Böttger",
|
||||
"email": "seboettg@gmail.com",
|
||||
"homepage": "https://sebastianboettger.net",
|
||||
"role": "Developer"
|
||||
}
|
||||
],
|
||||
"description": "Full-featured CSL processor (https://citationstyles.org)",
|
||||
"support": {
|
||||
"issues": "https://github.com/seboettg/citeproc-php/issues",
|
||||
"source": "https://github.com/seboettg/citeproc-php/tree/v2.5.2"
|
||||
},
|
||||
"install-path": "../seboettg/citeproc-php"
|
||||
},
|
||||
{
|
||||
"name": "seboettg/collection",
|
||||
"version": "v3.1.0",
|
||||
"version_normalized": "3.1.0.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/seboettg/Collection.git",
|
||||
"reference": "6f753aef75923965173dcb11696e5dece0533f45"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/seboettg/Collection/zipball/6f753aef75923965173dcb11696e5dece0533f45",
|
||||
"reference": "6f753aef75923965173dcb11696e5dece0533f45",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"php": ">=7.3"
|
||||
},
|
||||
"require-dev": {
|
||||
"php-coveralls/php-coveralls": "^1",
|
||||
"phpunit/phpunit": "8.5.*"
|
||||
},
|
||||
"time": "2022-07-09T19:47:27+00:00",
|
||||
"type": "library",
|
||||
"installation-source": "dist",
|
||||
"autoload": {
|
||||
"files": [
|
||||
"src/ArrayList/Functions.php"
|
||||
],
|
||||
"psr-4": {
|
||||
"Seboettg\\Collection\\": "src/"
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Sebastian Böttger",
|
||||
"email": "seboettg@gmail.com"
|
||||
}
|
||||
],
|
||||
"description": "Collection is a set of useful PHP wrapper classes for arrays, similar to Java Collection. Contains ArrayList, Stack, Queue.",
|
||||
"keywords": [
|
||||
"OOP",
|
||||
"array",
|
||||
"arraylist",
|
||||
"basic-data-structures",
|
||||
"collections",
|
||||
"comparable",
|
||||
"comparable-interface",
|
||||
"comparator",
|
||||
"datastructures",
|
||||
"filter",
|
||||
"map",
|
||||
"queue",
|
||||
"sort",
|
||||
"stack"
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/seboettg/Collection/issues",
|
||||
"source": "https://github.com/seboettg/Collection/tree/v3.1.0"
|
||||
},
|
||||
"install-path": "../seboettg/collection"
|
||||
}
|
||||
],
|
||||
"dev": false,
|
||||
"dev-package-names": []
|
||||
}
|
||||
@@ -0,0 +1,59 @@
|
||||
<?php return array(
|
||||
'root' => array(
|
||||
'pretty_version' => 'dev-main',
|
||||
'version' => 'dev-main',
|
||||
'type' => 'library',
|
||||
'install_path' => __DIR__ . '/../../../',
|
||||
'aliases' => array(),
|
||||
'reference' => 'ce3fa18746da002e259ebb08eb1bc719438c1a42',
|
||||
'name' => '__root__',
|
||||
'dev' => false,
|
||||
),
|
||||
'versions' => array(
|
||||
'__root__' => array(
|
||||
'pretty_version' => 'dev-main',
|
||||
'version' => 'dev-main',
|
||||
'type' => 'library',
|
||||
'install_path' => __DIR__ . '/../../../',
|
||||
'aliases' => array(),
|
||||
'reference' => 'ce3fa18746da002e259ebb08eb1bc719438c1a42',
|
||||
'dev_requirement' => false,
|
||||
),
|
||||
'citation-style-language/locales' => array(
|
||||
'pretty_version' => '1.0.0',
|
||||
'version' => '1.0.0.0',
|
||||
'type' => 'library',
|
||||
'install_path' => __DIR__ . '/../citation-style-language/locales',
|
||||
'aliases' => array(),
|
||||
'reference' => 'master',
|
||||
'dev_requirement' => false,
|
||||
),
|
||||
'myclabs/php-enum' => array(
|
||||
'pretty_version' => '1.8.4',
|
||||
'version' => '1.8.4.0',
|
||||
'type' => 'library',
|
||||
'install_path' => __DIR__ . '/../myclabs/php-enum',
|
||||
'aliases' => array(),
|
||||
'reference' => 'a867478eae49c9f59ece437ae7f9506bfaa27483',
|
||||
'dev_requirement' => false,
|
||||
),
|
||||
'seboettg/citeproc-php' => array(
|
||||
'pretty_version' => 'v2.5.2',
|
||||
'version' => '2.5.2.0',
|
||||
'type' => 'library',
|
||||
'install_path' => __DIR__ . '/../seboettg/citeproc-php',
|
||||
'aliases' => array(),
|
||||
'reference' => '042535d9d1e56058f54156e3c5682f3f9a467abe',
|
||||
'dev_requirement' => false,
|
||||
),
|
||||
'seboettg/collection' => array(
|
||||
'pretty_version' => 'v3.1.0',
|
||||
'version' => '3.1.0.0',
|
||||
'type' => 'library',
|
||||
'install_path' => __DIR__ . '/../seboettg/collection',
|
||||
'aliases' => array(),
|
||||
'reference' => '6f753aef75923965173dcb11696e5dece0533f45',
|
||||
'dev_requirement' => false,
|
||||
),
|
||||
),
|
||||
);
|
||||
@@ -0,0 +1,26 @@
|
||||
<?php
|
||||
|
||||
// platform_check.php @generated by Composer
|
||||
|
||||
$issues = array();
|
||||
|
||||
if (!(PHP_VERSION_ID >= 70300)) {
|
||||
$issues[] = 'Your Composer dependencies require a PHP version ">= 7.3.0". You are running ' . PHP_VERSION . '.';
|
||||
}
|
||||
|
||||
if ($issues) {
|
||||
if (!headers_sent()) {
|
||||
header('HTTP/1.1 500 Internal Server Error');
|
||||
}
|
||||
if (!ini_get('display_errors')) {
|
||||
if (PHP_SAPI === 'cli' || PHP_SAPI === 'phpdbg') {
|
||||
fwrite(STDERR, 'Composer detected issues in your platform:' . PHP_EOL.PHP_EOL . implode(PHP_EOL, $issues) . PHP_EOL.PHP_EOL);
|
||||
} elseif (!headers_sent()) {
|
||||
echo 'Composer detected issues in your platform:' . PHP_EOL.PHP_EOL . str_replace('You are running '.PHP_VERSION.'.', '', implode(PHP_EOL, $issues)) . PHP_EOL.PHP_EOL;
|
||||
}
|
||||
}
|
||||
trigger_error(
|
||||
'Composer detected issues in your platform: ' . implode(' ', $issues),
|
||||
E_USER_ERROR
|
||||
);
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2015 My C-Labs
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
|
||||
associated documentation files (the "Software"), to deal in the Software without restriction,
|
||||
including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
||||
and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,
|
||||
subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all copies or substantial
|
||||
portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT
|
||||
NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
||||
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
||||
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
||||
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
@@ -0,0 +1,194 @@
|
||||
# PHP Enum implementation inspired from SplEnum
|
||||
|
||||
[![GitHub Actions][GA Image]][GA Link]
|
||||
[](https://packagist.org/packages/myclabs/php-enum)
|
||||
[](https://packagist.org/packages/myclabs/php-enum)
|
||||
[![Psalm Shepherd][Shepherd Image]][Shepherd Link]
|
||||
|
||||
Maintenance for this project is [supported via Tidelift](https://tidelift.com/subscription/pkg/packagist-myclabs-php-enum?utm_source=packagist-myclabs-php-enum&utm_medium=referral&utm_campaign=readme).
|
||||
|
||||
## Why?
|
||||
|
||||
First, and mainly, `SplEnum` is not integrated to PHP, you have to install the extension separately.
|
||||
|
||||
Using an enum instead of class constants provides the following advantages:
|
||||
|
||||
- You can use an enum as a parameter type: `function setAction(Action $action) {`
|
||||
- You can use an enum as a return type: `function getAction() : Action {`
|
||||
- You can enrich the enum with methods (e.g. `format`, `parse`, …)
|
||||
- You can extend the enum to add new values (make your enum `final` to prevent it)
|
||||
- You can get a list of all the possible values (see below)
|
||||
|
||||
This Enum class is not intended to replace class constants, but only to be used when it makes sense.
|
||||
|
||||
## Installation
|
||||
|
||||
```
|
||||
composer require myclabs/php-enum
|
||||
```
|
||||
|
||||
## Declaration
|
||||
|
||||
```php
|
||||
use MyCLabs\Enum\Enum;
|
||||
|
||||
/**
|
||||
* Action enum
|
||||
*/
|
||||
final class Action extends Enum
|
||||
{
|
||||
private const VIEW = 'view';
|
||||
private const EDIT = 'edit';
|
||||
}
|
||||
```
|
||||
|
||||
## Usage
|
||||
|
||||
```php
|
||||
$action = Action::VIEW();
|
||||
|
||||
// or with a dynamic key:
|
||||
$action = Action::$key();
|
||||
// or with a dynamic value:
|
||||
$action = Action::from($value);
|
||||
// or
|
||||
$action = new Action($value);
|
||||
```
|
||||
|
||||
As you can see, static methods are automatically implemented to provide quick access to an enum value.
|
||||
|
||||
One advantage over using class constants is to be able to use an enum as a parameter type:
|
||||
|
||||
```php
|
||||
function setAction(Action $action) {
|
||||
// ...
|
||||
}
|
||||
```
|
||||
|
||||
## Documentation
|
||||
|
||||
- `__construct()` The constructor checks that the value exist in the enum
|
||||
- `__toString()` You can `echo $myValue`, it will display the enum value (value of the constant)
|
||||
- `getValue()` Returns the current value of the enum
|
||||
- `getKey()` Returns the key of the current value on Enum
|
||||
- `equals()` Tests whether enum instances are equal (returns `true` if enum values are equal, `false` otherwise)
|
||||
|
||||
Static methods:
|
||||
|
||||
- `from()` Creates an Enum instance, checking that the value exist in the enum
|
||||
- `toArray()` method Returns all possible values as an array (constant name in key, constant value in value)
|
||||
- `keys()` Returns the names (keys) of all constants in the Enum class
|
||||
- `values()` Returns instances of the Enum class of all Enum constants (constant name in key, Enum instance in value)
|
||||
- `isValid()` Check if tested value is valid on enum set
|
||||
- `isValidKey()` Check if tested key is valid on enum set
|
||||
- `assertValidValue()` Assert the value is valid on enum set, throwing exception otherwise
|
||||
- `search()` Return key for searched value
|
||||
|
||||
### Static methods
|
||||
|
||||
```php
|
||||
final class Action extends Enum
|
||||
{
|
||||
private const VIEW = 'view';
|
||||
private const EDIT = 'edit';
|
||||
}
|
||||
|
||||
// Static method:
|
||||
$action = Action::VIEW();
|
||||
$action = Action::EDIT();
|
||||
```
|
||||
|
||||
Static method helpers are implemented using [`__callStatic()`](http://www.php.net/manual/en/language.oop5.overloading.php#object.callstatic).
|
||||
|
||||
If you care about IDE autocompletion, you can either implement the static methods yourself:
|
||||
|
||||
```php
|
||||
final class Action extends Enum
|
||||
{
|
||||
private const VIEW = 'view';
|
||||
|
||||
/**
|
||||
* @return Action
|
||||
*/
|
||||
public static function VIEW() {
|
||||
return new Action(self::VIEW);
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
or you can use phpdoc (this is supported in PhpStorm for example):
|
||||
|
||||
```php
|
||||
/**
|
||||
* @method static Action VIEW()
|
||||
* @method static Action EDIT()
|
||||
*/
|
||||
final class Action extends Enum
|
||||
{
|
||||
private const VIEW = 'view';
|
||||
private const EDIT = 'edit';
|
||||
}
|
||||
```
|
||||
|
||||
## Native enums and migration
|
||||
Native enum arrived to PHP in version 8.1: https://www.php.net/enumerations
|
||||
If your project is running PHP 8.1+ or your library has it as a minimum requirement you should use it instead of this library.
|
||||
|
||||
When migrating from `myclabs/php-enum`, the effort should be small if the usage was in the recommended way:
|
||||
- private constants
|
||||
- final classes
|
||||
- no method overridden
|
||||
|
||||
Changes for migration:
|
||||
- Class definition should be changed from
|
||||
```php
|
||||
/**
|
||||
* @method static Action VIEW()
|
||||
* @method static Action EDIT()
|
||||
*/
|
||||
final class Action extends Enum
|
||||
{
|
||||
private const VIEW = 'view';
|
||||
private const EDIT = 'edit';
|
||||
}
|
||||
```
|
||||
to
|
||||
```php
|
||||
enum Action: string
|
||||
{
|
||||
case VIEW = 'view';
|
||||
case EDIT = 'edit';
|
||||
}
|
||||
```
|
||||
All places where the class was used as a type will continue to work.
|
||||
|
||||
Usages and the change needed:
|
||||
|
||||
| Operation | myclabs/php-enum | native enum |
|
||||
|----------------------------------------------------------------|----------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| Obtain an instance will change from | `$enumCase = Action::VIEW()` | `$enumCase = Action::VIEW` |
|
||||
| Create an enum from a backed value | `$enumCase = new Action('view')` | `$enumCase = Action::from('view')` |
|
||||
| Get the backed value of the enum instance | `$enumCase->getValue()` | `$enumCase->value` |
|
||||
| Compare two enum instances | `$enumCase1 == $enumCase2` <br/> or <br/> `$enumCase1->equals($enumCase2)` | `$enumCase1 === $enumCase2` |
|
||||
| Get the key/name of the enum instance | `$enumCase->getKey()` | `$enumCase->name` |
|
||||
| Get a list of all the possible instances of the enum | `Action::values()` | `Action::cases()` |
|
||||
| Get a map of possible instances of the enum mapped by name | `Action::values()` | `array_combine(array_map(fn($case) => $case->name, Action::cases()), Action::cases())` <br/> or <br/> `(new ReflectionEnum(Action::class))->getConstants()` |
|
||||
| Get a list of all possible names of the enum | `Action::keys()` | `array_map(fn($case) => $case->name, Action::cases())` |
|
||||
| Get a list of all possible backed values of the enum | `Action::toArray()` | `array_map(fn($case) => $case->value, Action::cases())` |
|
||||
| Get a map of possible backed values of the enum mapped by name | `Action::toArray()` | `array_combine(array_map(fn($case) => $case->name, Action::cases()), array_map(fn($case) => $case->value, Action::cases()))` <br/> or <br/> `array_map(fn($case) => $case->value, (new ReflectionEnum(Action::class))->getConstants()))` |
|
||||
|
||||
## Related projects
|
||||
|
||||
- [PHP 8.1+ native enum](https://www.php.net/enumerations)
|
||||
- [Doctrine enum mapping](https://github.com/acelaya/doctrine-enum-type)
|
||||
- [Symfony ParamConverter integration](https://github.com/Ex3v/MyCLabsEnumParamConverter)
|
||||
- [PHPStan integration](https://github.com/timeweb/phpstan-enum)
|
||||
|
||||
|
||||
[GA Image]: https://github.com/myclabs/php-enum/workflows/CI/badge.svg
|
||||
|
||||
[GA Link]: https://github.com/myclabs/php-enum/actions?query=workflow%3A%22CI%22+branch%3Amaster
|
||||
|
||||
[Shepherd Image]: https://shepherd.dev/github/myclabs/php-enum/coverage.svg
|
||||
|
||||
[Shepherd Link]: https://shepherd.dev/github/myclabs/php-enum
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
# Security Policy
|
||||
|
||||
## Supported Versions
|
||||
|
||||
Only the latest stable release is supported.
|
||||
|
||||
## Reporting a Vulnerability
|
||||
|
||||
To report a security vulnerability, please use the [Tidelift security contact](https://tidelift.com/security).
|
||||
|
||||
Tidelift will coordinate the fix and disclosure.
|
||||
+36
@@ -0,0 +1,36 @@
|
||||
{
|
||||
"name": "myclabs/php-enum",
|
||||
"type": "library",
|
||||
"description": "PHP Enum implementation",
|
||||
"keywords": ["enum"],
|
||||
"homepage": "http://github.com/myclabs/php-enum",
|
||||
"license": "MIT",
|
||||
"authors": [
|
||||
{
|
||||
"name": "PHP Enum contributors",
|
||||
"homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
|
||||
}
|
||||
],
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"MyCLabs\\Enum\\": "src/"
|
||||
},
|
||||
"classmap": [
|
||||
"stubs/Stringable.php"
|
||||
]
|
||||
},
|
||||
"autoload-dev": {
|
||||
"psr-4": {
|
||||
"MyCLabs\\Tests\\Enum\\": "tests/"
|
||||
}
|
||||
},
|
||||
"require": {
|
||||
"php": "^7.3 || ^8.0",
|
||||
"ext-json": "*"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpunit/phpunit": "^9.5",
|
||||
"squizlabs/php_codesniffer": "1.*",
|
||||
"vimeo/psalm": "^4.6.2"
|
||||
}
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user