citeproc-ruby 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.md +78 -0
- data/lib/citeproc.rb +100 -0
- data/lib/citeproc/bibliography.rb +57 -0
- data/lib/citeproc/data.rb +149 -0
- data/lib/citeproc/date.rb +133 -0
- data/lib/citeproc/formatter.rb +38 -0
- data/lib/citeproc/item.rb +53 -0
- data/lib/citeproc/name.rb +284 -0
- data/lib/citeproc/processor.rb +166 -0
- data/lib/citeproc/selector.rb +61 -0
- data/lib/citeproc/variable.rb +82 -0
- data/lib/citeproc/version.rb +3 -0
- data/lib/csl/locale.rb +223 -0
- data/lib/csl/node.rb +72 -0
- data/lib/csl/nodes.rb +1364 -0
- data/lib/csl/renderer.rb +88 -0
- data/lib/csl/sort.rb +53 -0
- data/lib/csl/style.rb +110 -0
- data/lib/csl/term.rb +124 -0
- data/lib/extensions/core.rb +43 -0
- data/lib/plugins/filters/bibtex.rb +12 -0
- data/lib/plugins/formats/default.rb +134 -0
- data/lib/plugins/formats/html.rb +67 -0
- data/lib/support/attributes.rb +99 -0
- data/lib/support/tree.rb +80 -0
- data/resource/locale/locales-af-ZA.xml +304 -0
- data/resource/locale/locales-ar-AR.xml +304 -0
- data/resource/locale/locales-bg-BG.xml +304 -0
- data/resource/locale/locales-ca-AD.xml +304 -0
- data/resource/locale/locales-cs-CZ.xml +304 -0
- data/resource/locale/locales-da-DK.xml +304 -0
- data/resource/locale/locales-de-AT.xml +304 -0
- data/resource/locale/locales-de-CH.xml +304 -0
- data/resource/locale/locales-de-DE.xml +332 -0
- data/resource/locale/locales-el-GR.xml +303 -0
- data/resource/locale/locales-en-US.xml +313 -0
- data/resource/locale/locales-es-ES.xml +304 -0
- data/resource/locale/locales-et-EE.xml +304 -0
- data/resource/locale/locales-fr-FR.xml +304 -0
- data/resource/locale/locales-he-IL.xml +304 -0
- data/resource/locale/locales-hu-HU.xml +304 -0
- data/resource/locale/locales-is-IS.xml +304 -0
- data/resource/locale/locales-it-IT.xml +304 -0
- data/resource/locale/locales-ja-JP.xml +304 -0
- data/resource/locale/locales-kh-KH.xml +303 -0
- data/resource/locale/locales-ko-KR.xml +304 -0
- data/resource/locale/locales-mn-MN.xml +304 -0
- data/resource/locale/locales-nb-NO.xml +304 -0
- data/resource/locale/locales-nl-NL.xml +304 -0
- data/resource/locale/locales-nn-NO.xml +304 -0
- data/resource/locale/locales-pl-PL.xml +304 -0
- data/resource/locale/locales-pt-BR.xml +304 -0
- data/resource/locale/locales-pt-PT.xml +304 -0
- data/resource/locale/locales-ro-RO.xml +304 -0
- data/resource/locale/locales-ru-RU.xml +304 -0
- data/resource/locale/locales-sk-SK.xml +304 -0
- data/resource/locale/locales-sl-SI.xml +304 -0
- data/resource/locale/locales-sr-RS.xml +304 -0
- data/resource/locale/locales-sv-SE.xml +304 -0
- data/resource/locale/locales-th-TH.xml +304 -0
- data/resource/locale/locales-tr-TR.xml +304 -0
- data/resource/locale/locales-uk-UA.xml +304 -0
- data/resource/locale/locales-vi-VN.xml +304 -0
- data/resource/locale/locales-zh-CN.xml +304 -0
- data/resource/locale/locales-zh-TW.xml +304 -0
- data/resource/schema/csl-categories.rnc +39 -0
- data/resource/schema/csl-data.rnc +98 -0
- data/resource/schema/csl-terms.rnc +106 -0
- data/resource/schema/csl-types.rnc +39 -0
- data/resource/schema/csl-variables.rnc +182 -0
- data/resource/schema/csl.rnc +941 -0
- data/resource/style/acta-materialia-x.csl +128 -0
- data/resource/style/advanced-engineering-materials-x.csl +121 -0
- data/resource/style/ama.csl +185 -0
- data/resource/style/ama2-x.csl +179 -0
- data/resource/style/apa-x.csl +324 -0
- data/resource/style/apa.csl +254 -0
- data/resource/style/apsa-x.csl +163 -0
- data/resource/style/apsa.csl +176 -0
- data/resource/style/asa-x.csl +203 -0
- data/resource/style/asa.csl +216 -0
- data/resource/style/asm-journals-x.csl +131 -0
- data/resource/style/bibtex-x2.csl +175 -0
- data/resource/style/bluebook-demo-x.csl +392 -0
- data/resource/style/bluebook-demo.csl +942 -0
- data/resource/style/chicago-author-date-listing.csl +434 -0
- data/resource/style/chicago-author-date.csl +369 -0
- data/resource/style/chicago-fullnote-bibliography-bb.csl +928 -0
- data/resource/style/chicago-fullnote-bibliography.csl +695 -0
- data/resource/style/chicago-note-bibliography.csl +446 -0
- data/resource/style/chicago-note.csl +388 -0
- data/resource/style/greek-chicago-x.csl +1182 -0
- data/resource/style/harvard1-institution-italic.csl +190 -0
- data/resource/style/harvard1.csl +181 -0
- data/resource/style/ieee.csl +129 -0
- data/resource/style/mhra-x.csl +312 -0
- data/resource/style/mhra.csl +390 -0
- data/resource/style/mhra_note_without_bibliography-x.csl +330 -0
- data/resource/style/mhra_note_without_bibliography.csl +338 -0
- data/resource/style/mla-x.csl +178 -0
- data/resource/style/mla.csl +189 -0
- data/resource/style/nature-x.csl +81 -0
- data/resource/style/nature.csl +88 -0
- data/resource/style/nlm.csl +117 -0
- data/spec/citeproc/bibliography_spec.rb +45 -0
- data/spec/citeproc/citeproc_spec.rb +76 -0
- data/spec/citeproc/date_spec.rb +85 -0
- data/spec/citeproc/formatter_spec.rb +101 -0
- data/spec/citeproc/item_spec.rb +71 -0
- data/spec/citeproc/name_spec.rb +30 -0
- data/spec/citeproc/processor_spec.rb +61 -0
- data/spec/citeproc/selector_spec.rb +82 -0
- data/spec/citeproc/variable_spec.rb +69 -0
- data/spec/csl/locale_spec.rb +208 -0
- data/spec/csl/node_spec.rb +25 -0
- data/spec/csl/nodes_spec.rb +140 -0
- data/spec/csl/style_spec.rb +62 -0
- data/spec/csl/term_spec.rb +56 -0
- data/spec/fixtures/dates.yaml +80 -0
- data/spec/fixtures/names.yaml +115 -0
- data/spec/fixtures/nodes.yaml +245 -0
- data/spec/spec_helper.rb +18 -0
- data/spec/support/attributes_spec.rb +39 -0
- data/spec/support/tree_spec.rb +163 -0
- metadata +264 -0
|
@@ -0,0 +1,304 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="tr">
|
|
3
|
+
<style-options punctuation-in-quote="false"/>
|
|
4
|
+
<date form="text">
|
|
5
|
+
<date-part name="day" form="numeric-leading-zeros" suffix=" "/>
|
|
6
|
+
<date-part name="month" suffix=" "/>
|
|
7
|
+
<date-part name="year"/>
|
|
8
|
+
</date>
|
|
9
|
+
<date form="numeric">
|
|
10
|
+
<date-part name="day" form="numeric-leading-zeros" suffix="/"/>
|
|
11
|
+
<date-part name="month" form="numeric-leading-zeros" suffix="/"/>
|
|
12
|
+
<date-part name="year"/>
|
|
13
|
+
</date>
|
|
14
|
+
<terms>
|
|
15
|
+
<term name="accessed">erişildi</term>
|
|
16
|
+
<term name="and">ve</term>
|
|
17
|
+
<term name="and others">ve diğ.</term>
|
|
18
|
+
<term name="anonymous">isimsiz</term>
|
|
19
|
+
<term name="anonymous" form="short">isimsiz</term>
|
|
20
|
+
<term name="at">de</term>
|
|
21
|
+
<term name="by">by</term>
|
|
22
|
+
<term name="circa">circa</term>
|
|
23
|
+
<term name="circa" form="short">c.</term>
|
|
24
|
+
<term name="cited">kaynak</term>
|
|
25
|
+
<term name="edition">
|
|
26
|
+
<single>edition</single>
|
|
27
|
+
<multiple>editions</multiple>
|
|
28
|
+
</term>
|
|
29
|
+
<term name="edition" form="short">ed</term>
|
|
30
|
+
<term name="et-al">ve diğ.</term>
|
|
31
|
+
<term name="forthcoming">gelecek</term>
|
|
32
|
+
<term name="from">den</term>
|
|
33
|
+
<term name="ibid">ibid.</term>
|
|
34
|
+
<term name="in">içinde</term>
|
|
35
|
+
<term name="in press">basımda</term>
|
|
36
|
+
<term name="internet">internet</term>
|
|
37
|
+
<term name="interview">interview</term>
|
|
38
|
+
<term name="letter">letter</term>
|
|
39
|
+
<term name="no date">no date</term>
|
|
40
|
+
<term name="no date" form="short">tarih yok</term>
|
|
41
|
+
<term name="online">çevrimiçi</term>
|
|
42
|
+
<term name="presented at">sunulan</term>
|
|
43
|
+
<term name="reference">
|
|
44
|
+
<single>reference</single>
|
|
45
|
+
<multiple>references</multiple>
|
|
46
|
+
</term>
|
|
47
|
+
<term name="reference" form="short">
|
|
48
|
+
<single>ref.</single>
|
|
49
|
+
<multiple>refs.</multiple>
|
|
50
|
+
</term>
|
|
51
|
+
<term name="retrieved">erişildi</term>
|
|
52
|
+
|
|
53
|
+
<!-- ANNO DOMINI; BEFORE CHRIST -->
|
|
54
|
+
<term name="ad">AD</term>
|
|
55
|
+
<term name="bc">BC</term>
|
|
56
|
+
|
|
57
|
+
<!-- QUOTES -->
|
|
58
|
+
<term name="open-quote">“</term>
|
|
59
|
+
<term name="close-quote">”</term>
|
|
60
|
+
<term name="open-inner-quote">‘</term>
|
|
61
|
+
<term name="close-inner-quote">’</term>
|
|
62
|
+
|
|
63
|
+
<!-- ORDINALS -->
|
|
64
|
+
<term name="ordinal-01">st</term>
|
|
65
|
+
<term name="ordinal-02">nd</term>
|
|
66
|
+
<term name="ordinal-03">rd</term>
|
|
67
|
+
<term name="ordinal-04">th</term>
|
|
68
|
+
|
|
69
|
+
<!-- LONG ORDINALS -->
|
|
70
|
+
<term name="long-ordinal-01">first</term>
|
|
71
|
+
<term name="long-ordinal-02">second</term>
|
|
72
|
+
<term name="long-ordinal-03">third</term>
|
|
73
|
+
<term name="long-ordinal-04">fourth</term>
|
|
74
|
+
<term name="long-ordinal-05">fifth</term>
|
|
75
|
+
<term name="long-ordinal-06">sixth</term>
|
|
76
|
+
<term name="long-ordinal-07">seventh</term>
|
|
77
|
+
<term name="long-ordinal-08">eighth</term>
|
|
78
|
+
<term name="long-ordinal-09">ninth</term>
|
|
79
|
+
<term name="long-ordinal-10">tenth</term>
|
|
80
|
+
|
|
81
|
+
<!-- CATEGORIES -->
|
|
82
|
+
<term name="anthropology">antropoloji</term>
|
|
83
|
+
<term name="astronomy">astronomi</term>
|
|
84
|
+
<term name="biology">biyoloji</term>
|
|
85
|
+
<term name="botany">botanik</term>
|
|
86
|
+
<term name="chemistry">kimya</term>
|
|
87
|
+
<term name="engineering">mühendislik</term>
|
|
88
|
+
<term name="generic-base">generic-base</term>
|
|
89
|
+
<term name="geography">coğrafya</term>
|
|
90
|
+
<term name="geology">jeoloji</term>
|
|
91
|
+
<term name="history">tarih</term>
|
|
92
|
+
<term name="humanities">humanities</term>
|
|
93
|
+
<term name="linguistics">linguistics</term>
|
|
94
|
+
<term name="literature">edebiyat</term>
|
|
95
|
+
<term name="math">matematik</term>
|
|
96
|
+
<term name="medicine">tıp</term>
|
|
97
|
+
<term name="philosophy">felsefe</term>
|
|
98
|
+
<term name="physics">fizik</term>
|
|
99
|
+
<term name="psychology">pisikoloji</term>
|
|
100
|
+
<term name="sociology">sosyoloji</term>
|
|
101
|
+
<term name="science">bilim</term>
|
|
102
|
+
<term name="political_science">siyaset bilimi</term>
|
|
103
|
+
<term name="social_science">sosyal bilimler</term>
|
|
104
|
+
<term name="theology">din bilimi</term>
|
|
105
|
+
<term name="zoology">hayvanbilimi</term>
|
|
106
|
+
|
|
107
|
+
<!-- LONG LOCATOR FORMS -->
|
|
108
|
+
<term name="book">
|
|
109
|
+
<single>kitap</single>
|
|
110
|
+
<multiple>kitaplar</multiple>
|
|
111
|
+
</term>
|
|
112
|
+
<term name="chapter">
|
|
113
|
+
<single>bölüm</single>
|
|
114
|
+
<multiple>bölümler</multiple>
|
|
115
|
+
</term>
|
|
116
|
+
<term name="column">
|
|
117
|
+
<single>sütun</single>
|
|
118
|
+
<multiple>sütunlar</multiple>
|
|
119
|
+
</term>
|
|
120
|
+
<term name="figure">
|
|
121
|
+
<single>şekil</single>
|
|
122
|
+
<multiple>şekiller</multiple>
|
|
123
|
+
</term>
|
|
124
|
+
<term name="folio">
|
|
125
|
+
<single>folyo</single>
|
|
126
|
+
<multiple>folyo</multiple>
|
|
127
|
+
</term>
|
|
128
|
+
<term name="issue">
|
|
129
|
+
<single>sayı</single>
|
|
130
|
+
<multiple>sayılar</multiple>
|
|
131
|
+
</term>
|
|
132
|
+
<term name="line">
|
|
133
|
+
<single>satır</single>
|
|
134
|
+
<multiple>satırlar</multiple>
|
|
135
|
+
</term>
|
|
136
|
+
<term name="note">
|
|
137
|
+
<single>not</single>
|
|
138
|
+
<multiple>notlar</multiple>
|
|
139
|
+
</term>
|
|
140
|
+
<term name="opus">
|
|
141
|
+
<single>opus</single>
|
|
142
|
+
<multiple>opera</multiple>
|
|
143
|
+
</term>
|
|
144
|
+
<term name="page">
|
|
145
|
+
<single>sayfa</single>
|
|
146
|
+
<multiple>sayfalar</multiple>
|
|
147
|
+
</term>
|
|
148
|
+
<term name="paragraph">
|
|
149
|
+
<single>paragraf</single>
|
|
150
|
+
<multiple>paragraflar</multiple>
|
|
151
|
+
</term>
|
|
152
|
+
<term name="part">
|
|
153
|
+
<single>kısım</single>
|
|
154
|
+
<multiple>kısımlar</multiple>
|
|
155
|
+
</term>
|
|
156
|
+
<term name="section">
|
|
157
|
+
<single>bölüm</single>
|
|
158
|
+
<multiple>bölümler</multiple>
|
|
159
|
+
</term>
|
|
160
|
+
<term name="sub verbo">
|
|
161
|
+
<single>sub verbo</single>
|
|
162
|
+
<multiple>sub verbis</multiple>
|
|
163
|
+
</term>
|
|
164
|
+
<term name="verse">
|
|
165
|
+
<single>dize</single>
|
|
166
|
+
<multiple>dizeler</multiple>
|
|
167
|
+
</term>
|
|
168
|
+
<term name="volume">
|
|
169
|
+
<single>cilt</single>
|
|
170
|
+
<multiple>ciltler</multiple>
|
|
171
|
+
</term>
|
|
172
|
+
|
|
173
|
+
<!-- SHORT LOCATOR FORMS -->
|
|
174
|
+
<term name="book" form="short">kit</term>
|
|
175
|
+
<term name="chapter" form="short">böl</term>
|
|
176
|
+
<term name="column" form="short">süt</term>
|
|
177
|
+
<term name="figure" form="short">şek</term>
|
|
178
|
+
<term name="folio" form="short">f</term>
|
|
179
|
+
<term name="issue" form="short">sayı</term>
|
|
180
|
+
<term name="opus" form="short">op</term>
|
|
181
|
+
<term name="page" form="short">
|
|
182
|
+
<single>s</single>
|
|
183
|
+
<multiple>ss</multiple>
|
|
184
|
+
</term>
|
|
185
|
+
<term name="paragraph" form="short">para</term>
|
|
186
|
+
<term name="part" form="short">kıs</term>
|
|
187
|
+
<term name="section" form="short">böl</term>
|
|
188
|
+
<term name="sub verbo" form="short">
|
|
189
|
+
<single>s.v.</single>
|
|
190
|
+
<multiple>s.vv.</multiple>
|
|
191
|
+
</term>
|
|
192
|
+
<term name="verse" form="short">
|
|
193
|
+
<single>v</single>
|
|
194
|
+
<multiple>vv</multiple>
|
|
195
|
+
</term>
|
|
196
|
+
<term name="volume" form="short">
|
|
197
|
+
<single>vol</single>
|
|
198
|
+
<multiple>vols</multiple>
|
|
199
|
+
</term>
|
|
200
|
+
|
|
201
|
+
<!-- SYMBOL LOCATOR FORMS -->
|
|
202
|
+
<term name="paragraph" form="symbol">
|
|
203
|
+
<single>¶</single>
|
|
204
|
+
<multiple>¶¶</multiple>
|
|
205
|
+
</term>
|
|
206
|
+
<term name="section" form="symbol">
|
|
207
|
+
<single>§</single>
|
|
208
|
+
<multiple>§§</multiple>
|
|
209
|
+
</term>
|
|
210
|
+
|
|
211
|
+
<!-- LONG ROLE FORMS -->
|
|
212
|
+
<term name="author">
|
|
213
|
+
<single/>
|
|
214
|
+
<multiple/>
|
|
215
|
+
</term>
|
|
216
|
+
<term name="editor">
|
|
217
|
+
<single>editör</single>
|
|
218
|
+
<multiple>editörler</multiple>
|
|
219
|
+
</term>
|
|
220
|
+
<term name="editorial-director">
|
|
221
|
+
<single>editor</single>
|
|
222
|
+
<multiple>editors</multiple>
|
|
223
|
+
</term>
|
|
224
|
+
<term name="translator">
|
|
225
|
+
<single>çevirmen</single>
|
|
226
|
+
<multiple>çevirmenler</multiple>
|
|
227
|
+
</term>
|
|
228
|
+
<term name="editortranslator">
|
|
229
|
+
<single>editor & translator</single>
|
|
230
|
+
<multiple>editors & translators</multiple>
|
|
231
|
+
</term>
|
|
232
|
+
|
|
233
|
+
<!-- SHORT ROLE FORMS -->
|
|
234
|
+
<term name="author" form="short">
|
|
235
|
+
<single/>
|
|
236
|
+
<multiple/>
|
|
237
|
+
</term>
|
|
238
|
+
<term name="editor" form="short">
|
|
239
|
+
<single>ed</single>
|
|
240
|
+
<multiple>ed</multiple>
|
|
241
|
+
</term>
|
|
242
|
+
<term name="editorial-director" form="short">
|
|
243
|
+
<single>ed.</single>
|
|
244
|
+
<multiple>eds.</multiple>
|
|
245
|
+
</term>
|
|
246
|
+
<term name="translator" form="short">
|
|
247
|
+
<single>çev</single>
|
|
248
|
+
<multiple>çev</multiple>
|
|
249
|
+
</term>
|
|
250
|
+
<term name="editortranslator" form="short">
|
|
251
|
+
<single>ed. & tran.</single>
|
|
252
|
+
<multiple>eds. & trans.</multiple>
|
|
253
|
+
</term>
|
|
254
|
+
|
|
255
|
+
<!-- VERB ROLE FORMS -->
|
|
256
|
+
<term name="editor" form="verb">editör</term>
|
|
257
|
+
<term name="editorial-director" form="verb">edited by</term>
|
|
258
|
+
<term name="translator" form="verb">çeviren</term>
|
|
259
|
+
<term name="editortranslator" form="verb">edited & translated by</term>
|
|
260
|
+
<term name="recipient" form="verb">to</term>
|
|
261
|
+
<term name="interviewer" form="verb">Röportaj yapan</term>
|
|
262
|
+
|
|
263
|
+
<!-- SHORT VERB ROLE FORMS -->
|
|
264
|
+
<term name="container-author" form="verb-short">by</term>
|
|
265
|
+
<term name="editor" form="verb-short">ed</term>
|
|
266
|
+
<term name="editorial-director" form="verb-short">ed.</term>
|
|
267
|
+
<term name="translator" form="verb-short">çev</term>
|
|
268
|
+
<term name="editortranslator" form="verb-short">ed. & trans. by</term>
|
|
269
|
+
|
|
270
|
+
<!-- LONG MONTH FORMS -->
|
|
271
|
+
<term name="month-01">Ocak</term>
|
|
272
|
+
<term name="month-02">Şubat</term>
|
|
273
|
+
<term name="month-03">Mart</term>
|
|
274
|
+
<term name="month-04">Nisan</term>
|
|
275
|
+
<term name="month-05">Mayıs</term>
|
|
276
|
+
<term name="month-06">Haziran</term>
|
|
277
|
+
<term name="month-07">Temmuz</term>
|
|
278
|
+
<term name="month-08">Ağustos</term>
|
|
279
|
+
<term name="month-09">Eylül</term>
|
|
280
|
+
<term name="month-10">Ekim</term>
|
|
281
|
+
<term name="month-11">Kasım</term>
|
|
282
|
+
<term name="month-12">Aralık</term>
|
|
283
|
+
|
|
284
|
+
<!-- SHORT MONTH FORMS -->
|
|
285
|
+
<term name="month-01" form="short">Oca</term>
|
|
286
|
+
<term name="month-02" form="short">Şub</term>
|
|
287
|
+
<term name="month-03" form="short">Mar</term>
|
|
288
|
+
<term name="month-04" form="short">Nis</term>
|
|
289
|
+
<term name="month-05" form="short">May</term>
|
|
290
|
+
<term name="month-06" form="short">Haz</term>
|
|
291
|
+
<term name="month-07" form="short">Tem</term>
|
|
292
|
+
<term name="month-08" form="short">Ağu</term>
|
|
293
|
+
<term name="month-09" form="short">Eyl</term>
|
|
294
|
+
<term name="month-10" form="short">Eki</term>
|
|
295
|
+
<term name="month-11" form="short">Kas</term>
|
|
296
|
+
<term name="month-12" form="short">Ara</term>
|
|
297
|
+
|
|
298
|
+
<!-- SEASONS -->
|
|
299
|
+
<term name="season-01">Spring</term>
|
|
300
|
+
<term name="season-02">Summer</term>
|
|
301
|
+
<term name="season-03">Autumn</term>
|
|
302
|
+
<term name="season-04">Winter</term>
|
|
303
|
+
</terms>
|
|
304
|
+
</locale>
|
|
@@ -0,0 +1,304 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="uk">
|
|
3
|
+
<style-options punctuation-in-quote="false"/>
|
|
4
|
+
<date form="text">
|
|
5
|
+
<date-part name="day" form="numeric-leading-zeros" suffix=", "/>
|
|
6
|
+
<date-part name="month" suffix=" "/>
|
|
7
|
+
<date-part name="year"/>
|
|
8
|
+
</date>
|
|
9
|
+
<date form="numeric">
|
|
10
|
+
<date-part name="day" form="numeric-leading-zeros" suffix="/"/>
|
|
11
|
+
<date-part name="month" form="numeric-leading-zeros" suffix="/"/>
|
|
12
|
+
<date-part name="year"/>
|
|
13
|
+
</date>
|
|
14
|
+
<terms>
|
|
15
|
+
<term name="accessed">accessed</term>
|
|
16
|
+
<term name="and">і</term>
|
|
17
|
+
<term name="and others">та інші</term>
|
|
18
|
+
<term name="anonymous">анонімний</term>
|
|
19
|
+
<term name="anonymous" form="short">анон.</term>
|
|
20
|
+
<term name="at">на</term>
|
|
21
|
+
<term name="by">by</term>
|
|
22
|
+
<term name="circa">circa</term>
|
|
23
|
+
<term name="circa" form="short">c.</term>
|
|
24
|
+
<term name="cited">cited</term>
|
|
25
|
+
<term name="edition">
|
|
26
|
+
<single>edition</single>
|
|
27
|
+
<multiple>editions</multiple>
|
|
28
|
+
</term>
|
|
29
|
+
<term name="edition" form="short">ed</term>
|
|
30
|
+
<term name="et-al">et al.</term>
|
|
31
|
+
<term name="forthcoming">forthcoming</term>
|
|
32
|
+
<term name="from">із</term>
|
|
33
|
+
<term name="ibid">ibid.</term>
|
|
34
|
+
<term name="in">в</term>
|
|
35
|
+
<term name="in press">у пресі</term>
|
|
36
|
+
<term name="internet">інтернет</term>
|
|
37
|
+
<term name="interview">інтервю</term>
|
|
38
|
+
<term name="letter">лист</term>
|
|
39
|
+
<term name="no date">no date</term>
|
|
40
|
+
<term name="no date" form="short">n.d.</term>
|
|
41
|
+
<term name="online">online</term>
|
|
42
|
+
<term name="presented at">presented at the</term>
|
|
43
|
+
<term name="reference">
|
|
44
|
+
<single>reference</single>
|
|
45
|
+
<multiple>references</multiple>
|
|
46
|
+
</term>
|
|
47
|
+
<term name="reference" form="short">
|
|
48
|
+
<single>ref.</single>
|
|
49
|
+
<multiple>refs.</multiple>
|
|
50
|
+
</term>
|
|
51
|
+
<term name="retrieved">retrieved</term>
|
|
52
|
+
|
|
53
|
+
<!-- ANNO DOMINI; BEFORE CHRIST -->
|
|
54
|
+
<term name="ad">AD</term>
|
|
55
|
+
<term name="bc">BC</term>
|
|
56
|
+
|
|
57
|
+
<!-- QUOTES -->
|
|
58
|
+
<term name="open-quote">“</term>
|
|
59
|
+
<term name="close-quote">”</term>
|
|
60
|
+
<term name="open-inner-quote">‘</term>
|
|
61
|
+
<term name="close-inner-quote">’</term>
|
|
62
|
+
|
|
63
|
+
<!-- ORDINALS -->
|
|
64
|
+
<term name="ordinal-01">st</term>
|
|
65
|
+
<term name="ordinal-02">nd</term>
|
|
66
|
+
<term name="ordinal-03">rd</term>
|
|
67
|
+
<term name="ordinal-04">th</term>
|
|
68
|
+
|
|
69
|
+
<!-- LONG ORDINALS -->
|
|
70
|
+
<term name="long-ordinal-01">first</term>
|
|
71
|
+
<term name="long-ordinal-02">second</term>
|
|
72
|
+
<term name="long-ordinal-03">third</term>
|
|
73
|
+
<term name="long-ordinal-04">fourth</term>
|
|
74
|
+
<term name="long-ordinal-05">fifth</term>
|
|
75
|
+
<term name="long-ordinal-06">sixth</term>
|
|
76
|
+
<term name="long-ordinal-07">seventh</term>
|
|
77
|
+
<term name="long-ordinal-08">eighth</term>
|
|
78
|
+
<term name="long-ordinal-09">ninth</term>
|
|
79
|
+
<term name="long-ordinal-10">tenth</term>
|
|
80
|
+
|
|
81
|
+
<!-- CATEGORIES -->
|
|
82
|
+
<term name="anthropology">антропологія</term>
|
|
83
|
+
<term name="astronomy">астрономія</term>
|
|
84
|
+
<term name="biology">біологія</term>
|
|
85
|
+
<term name="botany">ботаніка</term>
|
|
86
|
+
<term name="chemistry">хімія</term>
|
|
87
|
+
<term name="engineering">інженерія</term>
|
|
88
|
+
<term name="generic-base">generic base</term>
|
|
89
|
+
<term name="geography">географія</term>
|
|
90
|
+
<term name="geology">геологія</term>
|
|
91
|
+
<term name="history">історія</term>
|
|
92
|
+
<term name="humanities">гуманітарні</term>
|
|
93
|
+
<term name="linguistics">linguistics</term>
|
|
94
|
+
<term name="literature">література</term>
|
|
95
|
+
<term name="math">математика</term>
|
|
96
|
+
<term name="medicine">медицина</term>
|
|
97
|
+
<term name="philosophy">філософія</term>
|
|
98
|
+
<term name="physics">фізика</term>
|
|
99
|
+
<term name="psychology">психологія</term>
|
|
100
|
+
<term name="sociology">соціологія</term>
|
|
101
|
+
<term name="science">наука</term>
|
|
102
|
+
<term name="political_science">політичні науки</term>
|
|
103
|
+
<term name="social_science">соціальні науки</term>
|
|
104
|
+
<term name="theology">теологія</term>
|
|
105
|
+
<term name="zoology">зоологія</term>
|
|
106
|
+
|
|
107
|
+
<!-- LONG LOCATOR FORMS -->
|
|
108
|
+
<term name="book">
|
|
109
|
+
<single>book</single>
|
|
110
|
+
<multiple>books</multiple>
|
|
111
|
+
</term>
|
|
112
|
+
<term name="chapter">
|
|
113
|
+
<single>chapter</single>
|
|
114
|
+
<multiple>chapters</multiple>
|
|
115
|
+
</term>
|
|
116
|
+
<term name="column">
|
|
117
|
+
<single>column</single>
|
|
118
|
+
<multiple>columns</multiple>
|
|
119
|
+
</term>
|
|
120
|
+
<term name="figure">
|
|
121
|
+
<single>figure</single>
|
|
122
|
+
<multiple>figures</multiple>
|
|
123
|
+
</term>
|
|
124
|
+
<term name="folio">
|
|
125
|
+
<single>folio</single>
|
|
126
|
+
<multiple>folios</multiple>
|
|
127
|
+
</term>
|
|
128
|
+
<term name="issue">
|
|
129
|
+
<single>number</single>
|
|
130
|
+
<multiple>numbers</multiple>
|
|
131
|
+
</term>
|
|
132
|
+
<term name="line">
|
|
133
|
+
<single>line</single>
|
|
134
|
+
<multiple>lines</multiple>
|
|
135
|
+
</term>
|
|
136
|
+
<term name="note">
|
|
137
|
+
<single>note</single>
|
|
138
|
+
<multiple>notes</multiple>
|
|
139
|
+
</term>
|
|
140
|
+
<term name="opus">
|
|
141
|
+
<single>opus</single>
|
|
142
|
+
<multiple>opera</multiple>
|
|
143
|
+
</term>
|
|
144
|
+
<term name="page">
|
|
145
|
+
<single>page</single>
|
|
146
|
+
<multiple>pages</multiple>
|
|
147
|
+
</term>
|
|
148
|
+
<term name="paragraph">
|
|
149
|
+
<single>paragraph</single>
|
|
150
|
+
<multiple>paragraph</multiple>
|
|
151
|
+
</term>
|
|
152
|
+
<term name="part">
|
|
153
|
+
<single>part</single>
|
|
154
|
+
<multiple>parts</multiple>
|
|
155
|
+
</term>
|
|
156
|
+
<term name="section">
|
|
157
|
+
<single>section</single>
|
|
158
|
+
<multiple>sections</multiple>
|
|
159
|
+
</term>
|
|
160
|
+
<term name="sub verbo">
|
|
161
|
+
<single>sub verbo</single>
|
|
162
|
+
<multiple>sub verbis</multiple>
|
|
163
|
+
</term>
|
|
164
|
+
<term name="verse">
|
|
165
|
+
<single>verse</single>
|
|
166
|
+
<multiple>verses</multiple>
|
|
167
|
+
</term>
|
|
168
|
+
<term name="volume">
|
|
169
|
+
<single>volume</single>
|
|
170
|
+
<multiple>volumes</multiple>
|
|
171
|
+
</term>
|
|
172
|
+
|
|
173
|
+
<!-- SHORT LOCATOR FORMS -->
|
|
174
|
+
<term name="book" form="short">bk</term>
|
|
175
|
+
<term name="chapter" form="short">chap</term>
|
|
176
|
+
<term name="column" form="short">col</term>
|
|
177
|
+
<term name="figure" form="short">fig</term>
|
|
178
|
+
<term name="folio" form="short">f</term>
|
|
179
|
+
<term name="issue" form="short">no</term>
|
|
180
|
+
<term name="opus" form="short">op</term>
|
|
181
|
+
<term name="page" form="short">
|
|
182
|
+
<single>p</single>
|
|
183
|
+
<multiple>pp</multiple>
|
|
184
|
+
</term>
|
|
185
|
+
<term name="paragraph" form="short">para</term>
|
|
186
|
+
<term name="part" form="short">pt</term>
|
|
187
|
+
<term name="section" form="short">sec</term>
|
|
188
|
+
<term name="sub verbo" form="short">
|
|
189
|
+
<single>s.v.</single>
|
|
190
|
+
<multiple>s.vv.</multiple>
|
|
191
|
+
</term>
|
|
192
|
+
<term name="verse" form="short">
|
|
193
|
+
<single>v</single>
|
|
194
|
+
<multiple>vv</multiple>
|
|
195
|
+
</term>
|
|
196
|
+
<term name="volume" form="short">
|
|
197
|
+
<single>vol</single>
|
|
198
|
+
<multiple>vols</multiple>
|
|
199
|
+
</term>
|
|
200
|
+
|
|
201
|
+
<!-- SYMBOL LOCATOR FORMS -->
|
|
202
|
+
<term name="paragraph" form="symbol">
|
|
203
|
+
<single>¶</single>
|
|
204
|
+
<multiple>¶¶</multiple>
|
|
205
|
+
</term>
|
|
206
|
+
<term name="section" form="symbol">
|
|
207
|
+
<single>§</single>
|
|
208
|
+
<multiple>§§</multiple>
|
|
209
|
+
</term>
|
|
210
|
+
|
|
211
|
+
<!-- LONG ROLE FORMS -->
|
|
212
|
+
<term name="author">
|
|
213
|
+
<single/>
|
|
214
|
+
<multiple/>
|
|
215
|
+
</term>
|
|
216
|
+
<term name="editor">
|
|
217
|
+
<single>editor</single>
|
|
218
|
+
<multiple>editors</multiple>
|
|
219
|
+
</term>
|
|
220
|
+
<term name="editorial-director">
|
|
221
|
+
<single>editor</single>
|
|
222
|
+
<multiple>editors</multiple>
|
|
223
|
+
</term>
|
|
224
|
+
<term name="translator">
|
|
225
|
+
<single>translator</single>
|
|
226
|
+
<multiple>translators</multiple>
|
|
227
|
+
</term>
|
|
228
|
+
<term name="editortranslator">
|
|
229
|
+
<single>editor & translator</single>
|
|
230
|
+
<multiple>editors & translators</multiple>
|
|
231
|
+
</term>
|
|
232
|
+
|
|
233
|
+
<!-- SHORT ROLE FORMS -->
|
|
234
|
+
<term name="author" form="short">
|
|
235
|
+
<single/>
|
|
236
|
+
<multiple/>
|
|
237
|
+
</term>
|
|
238
|
+
<term name="editor" form="short">
|
|
239
|
+
<single>ed</single>
|
|
240
|
+
<multiple>eds</multiple>
|
|
241
|
+
</term>
|
|
242
|
+
<term name="editorial-director" form="short">
|
|
243
|
+
<single>ed.</single>
|
|
244
|
+
<multiple>eds.</multiple>
|
|
245
|
+
</term>
|
|
246
|
+
<term name="translator" form="short">
|
|
247
|
+
<single>tran</single>
|
|
248
|
+
<multiple>trans</multiple>
|
|
249
|
+
</term>
|
|
250
|
+
<term name="editortranslator" form="short">
|
|
251
|
+
<single>ed. & tran.</single>
|
|
252
|
+
<multiple>eds. & trans.</multiple>
|
|
253
|
+
</term>
|
|
254
|
+
|
|
255
|
+
<!-- VERB ROLE FORMS -->
|
|
256
|
+
<term name="editor" form="verb">edited by</term>
|
|
257
|
+
<term name="editorial-director" form="verb">edited by</term>
|
|
258
|
+
<term name="translator" form="verb">translated by</term>
|
|
259
|
+
<term name="editortranslator" form="verb">edited & translated by</term>
|
|
260
|
+
<term name="recipient" form="verb">to</term>
|
|
261
|
+
<term name="interviewer" form="verb">interview by</term>
|
|
262
|
+
|
|
263
|
+
<!-- SHORT VERB ROLE FORMS -->
|
|
264
|
+
<term name="container-author" form="verb-short">by</term>
|
|
265
|
+
<term name="editor" form="verb-short">ed</term>
|
|
266
|
+
<term name="editorial-director" form="verb-short">ed.</term>
|
|
267
|
+
<term name="translator" form="verb-short">trans</term>
|
|
268
|
+
<term name="editortranslator" form="verb-short">ed. & trans. by</term>
|
|
269
|
+
|
|
270
|
+
<!-- LONG MONTH FORMS -->
|
|
271
|
+
<term name="month-01">Січень</term>
|
|
272
|
+
<term name="month-02">Лютий</term>
|
|
273
|
+
<term name="month-03">Березень</term>
|
|
274
|
+
<term name="month-04">Квітень</term>
|
|
275
|
+
<term name="month-05">Травень</term>
|
|
276
|
+
<term name="month-06">Червень</term>
|
|
277
|
+
<term name="month-07">Липень</term>
|
|
278
|
+
<term name="month-08">Серпень</term>
|
|
279
|
+
<term name="month-09">Вересень</term>
|
|
280
|
+
<term name="month-10">Жовтень</term>
|
|
281
|
+
<term name="month-11">Листопад</term>
|
|
282
|
+
<term name="month-12">Грудень</term>
|
|
283
|
+
|
|
284
|
+
<!-- SHORT MONTH FORMS -->
|
|
285
|
+
<term name="month-01" form="short">Січ</term>
|
|
286
|
+
<term name="month-02" form="short">Лют</term>
|
|
287
|
+
<term name="month-03" form="short">Бер</term>
|
|
288
|
+
<term name="month-04" form="short">Квіт</term>
|
|
289
|
+
<term name="month-05" form="short">Трав</term>
|
|
290
|
+
<term name="month-06" form="short">Чер</term>
|
|
291
|
+
<term name="month-07" form="short">Лип</term>
|
|
292
|
+
<term name="month-08" form="short">Сер</term>
|
|
293
|
+
<term name="month-09" form="short">Вер</term>
|
|
294
|
+
<term name="month-10" form="short">Жов</term>
|
|
295
|
+
<term name="month-11" form="short">Лис</term>
|
|
296
|
+
<term name="month-12" form="short">Груд</term>
|
|
297
|
+
|
|
298
|
+
<!-- SEASONS -->
|
|
299
|
+
<term name="season-01">Spring</term>
|
|
300
|
+
<term name="season-02">Summer</term>
|
|
301
|
+
<term name="season-03">Autumn</term>
|
|
302
|
+
<term name="season-04">Winter</term>
|
|
303
|
+
</terms>
|
|
304
|
+
</locale>
|