blacklight-citeproc 0.0.5 → 0.1.0
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.
- checksums.yaml +4 -4
- data/.env +3 -0
- data/.internal_test_app/solr/conf/_rest_managed.json +3 -0
- data/.internal_test_app/solr/conf/admin-extra.html +31 -0
- data/.internal_test_app/solr/conf/currency.xml +67 -0
- data/.internal_test_app/solr/conf/email_url_types.txt +2 -0
- data/.internal_test_app/solr/conf/lang/contractions_ca.txt +8 -0
- data/.internal_test_app/solr/conf/lang/contractions_fr.txt +15 -0
- data/.internal_test_app/solr/conf/lang/contractions_ga.txt +5 -0
- data/.internal_test_app/solr/conf/lang/contractions_it.txt +23 -0
- data/.internal_test_app/solr/conf/lang/hyphenations_ga.txt +5 -0
- data/.internal_test_app/solr/conf/lang/stemdict_nl.txt +6 -0
- data/.internal_test_app/solr/conf/lang/stoptags_ja.txt +420 -0
- data/.internal_test_app/solr/conf/lang/stopwords_ar.txt +125 -0
- data/.internal_test_app/solr/conf/lang/stopwords_bg.txt +193 -0
- data/.internal_test_app/solr/conf/lang/stopwords_ca.txt +220 -0
- data/.internal_test_app/solr/conf/lang/stopwords_cz.txt +172 -0
- data/.internal_test_app/solr/conf/lang/stopwords_da.txt +110 -0
- data/.internal_test_app/solr/conf/lang/stopwords_de.txt +294 -0
- data/.internal_test_app/solr/conf/lang/stopwords_el.txt +78 -0
- data/.internal_test_app/solr/conf/lang/stopwords_en.txt +54 -0
- data/.internal_test_app/solr/conf/lang/stopwords_es.txt +356 -0
- data/.internal_test_app/solr/conf/lang/stopwords_eu.txt +99 -0
- data/.internal_test_app/solr/conf/lang/stopwords_fa.txt +313 -0
- data/.internal_test_app/solr/conf/lang/stopwords_fi.txt +97 -0
- data/.internal_test_app/solr/conf/lang/stopwords_fr.txt +186 -0
- data/.internal_test_app/solr/conf/lang/stopwords_ga.txt +110 -0
- data/.internal_test_app/solr/conf/lang/stopwords_gl.txt +161 -0
- data/.internal_test_app/solr/conf/lang/stopwords_hi.txt +235 -0
- data/.internal_test_app/solr/conf/lang/stopwords_hu.txt +211 -0
- data/.internal_test_app/solr/conf/lang/stopwords_hy.txt +46 -0
- data/.internal_test_app/solr/conf/lang/stopwords_id.txt +359 -0
- data/.internal_test_app/solr/conf/lang/stopwords_it.txt +303 -0
- data/.internal_test_app/solr/conf/lang/stopwords_ja.txt +127 -0
- data/.internal_test_app/solr/conf/lang/stopwords_lv.txt +172 -0
- data/.internal_test_app/solr/conf/lang/stopwords_nl.txt +119 -0
- data/.internal_test_app/solr/conf/lang/stopwords_no.txt +194 -0
- data/.internal_test_app/solr/conf/lang/stopwords_pt.txt +253 -0
- data/.internal_test_app/solr/conf/lang/stopwords_ro.txt +233 -0
- data/.internal_test_app/solr/conf/lang/stopwords_ru.txt +243 -0
- data/.internal_test_app/solr/conf/lang/stopwords_sv.txt +133 -0
- data/.internal_test_app/solr/conf/lang/stopwords_th.txt +119 -0
- data/.internal_test_app/solr/conf/lang/stopwords_tr.txt +212 -0
- data/.internal_test_app/solr/conf/lang/userdict_ja.txt +29 -0
- data/.internal_test_app/solr/conf/mapping-ISOLatin1Accent.txt +246 -0
- data/.internal_test_app/solr/conf/protwords.txt +21 -0
- data/.internal_test_app/solr/conf/schema.xml +408 -0
- data/.internal_test_app/solr/conf/scripts.conf +24 -0
- data/.internal_test_app/solr/conf/solrconfig.xml +1287 -0
- data/.internal_test_app/solr/conf/spellings.txt +2 -0
- data/.internal_test_app/solr/conf/stopwords.txt +14 -0
- data/.internal_test_app/solr/conf/stopwords_en.txt +58 -0
- data/.internal_test_app/solr/conf/synonyms.txt +13 -0
- data/.internal_test_app/solr/conf/update-script.js +115 -0
- data/.internal_test_app/solr/conf/velocity/browse.vm +32 -0
- data/.internal_test_app/solr/conf/velocity/dropit.js +0 -0
- data/.internal_test_app/solr/conf/velocity/facet_doc_type.vm +2 -0
- data/.internal_test_app/solr/conf/velocity/facet_text_shingles.vm +12 -0
- data/.internal_test_app/solr/conf/velocity/facets.vm +24 -0
- data/.internal_test_app/solr/conf/velocity/footer.vm +29 -0
- data/.internal_test_app/solr/conf/velocity/head.vm +290 -0
- data/.internal_test_app/solr/conf/velocity/hit.vm +77 -0
- data/.internal_test_app/solr/conf/velocity/img/english_640.png +0 -0
- data/.internal_test_app/solr/conf/velocity/img/france_640.png +0 -0
- data/.internal_test_app/solr/conf/velocity/img/germany_640.png +0 -0
- data/.internal_test_app/solr/conf/velocity/img/globe_256.png +0 -0
- data/.internal_test_app/solr/conf/velocity/jquery.tx3-tag-cloud.js +0 -0
- data/.internal_test_app/solr/conf/velocity/js/dropit.js +97 -0
- data/.internal_test_app/solr/conf/velocity/js/jquery.autocomplete.js +763 -0
- data/.internal_test_app/solr/conf/velocity/js/jquery.tx3-tag-cloud.js +70 -0
- data/.internal_test_app/solr/conf/velocity/layout.vm +42 -0
- data/.internal_test_app/solr/conf/velocity/macros.vm +16 -0
- data/.internal_test_app/solr/conf/velocity/mime_type_lists.vm +68 -0
- data/.internal_test_app/solr/conf/velocity/results.vm +20 -0
- data/.internal_test_app/solr/conf/velocity/results_list.vm +21 -0
- data/.internal_test_app/solr/conf/xslt/example.xsl +132 -0
- data/.internal_test_app/solr/conf/xslt/example_atom.xsl +67 -0
- data/.internal_test_app/solr/conf/xslt/example_rss.xsl +66 -0
- data/.internal_test_app/solr/conf/xslt/luke.xsl +337 -0
- data/Dockerfile +43 -0
- data/README.md +3 -0
- data/bin/entrypoint.sh +8 -0
- data/docker-compose.yml +33 -0
- data/lib/blacklight/citeproc/version.rb +1 -1
- metadata +83 -2
@@ -0,0 +1,253 @@
|
|
1
|
+
| From svn.tartarus.org/snowball/trunk/website/algorithms/portuguese/stop.txt
|
2
|
+
| This file is distributed under the BSD License.
|
3
|
+
| See http://snowball.tartarus.org/license.php
|
4
|
+
| Also see http://www.opensource.org/licenses/bsd-license.html
|
5
|
+
| - Encoding was converted to UTF-8.
|
6
|
+
| - This notice was added.
|
7
|
+
|
|
8
|
+
| NOTE: To use this file with StopFilterFactory, you must specify format="snowball"
|
9
|
+
|
10
|
+
| A Portuguese stop word list. Comments begin with vertical bar. Each stop
|
11
|
+
| word is at the start of a line.
|
12
|
+
|
13
|
+
|
14
|
+
| The following is a ranked list (commonest to rarest) of stopwords
|
15
|
+
| deriving from a large sample of text.
|
16
|
+
|
17
|
+
| Extra words have been added at the end.
|
18
|
+
|
19
|
+
de | of, from
|
20
|
+
a | the; to, at; her
|
21
|
+
o | the; him
|
22
|
+
que | who, that
|
23
|
+
e | and
|
24
|
+
do | de + o
|
25
|
+
da | de + a
|
26
|
+
em | in
|
27
|
+
um | a
|
28
|
+
para | for
|
29
|
+
| é from SER
|
30
|
+
com | with
|
31
|
+
não | not, no
|
32
|
+
uma | a
|
33
|
+
os | the; them
|
34
|
+
no | em + o
|
35
|
+
se | himself etc
|
36
|
+
na | em + a
|
37
|
+
por | for
|
38
|
+
mais | more
|
39
|
+
as | the; them
|
40
|
+
dos | de + os
|
41
|
+
como | as, like
|
42
|
+
mas | but
|
43
|
+
| foi from SER
|
44
|
+
ao | a + o
|
45
|
+
ele | he
|
46
|
+
das | de + as
|
47
|
+
| tem from TER
|
48
|
+
à | a + a
|
49
|
+
seu | his
|
50
|
+
sua | her
|
51
|
+
ou | or
|
52
|
+
| ser from SER
|
53
|
+
quando | when
|
54
|
+
muito | much
|
55
|
+
| há from HAV
|
56
|
+
nos | em + os; us
|
57
|
+
já | already, now
|
58
|
+
| está from EST
|
59
|
+
eu | I
|
60
|
+
também | also
|
61
|
+
só | only, just
|
62
|
+
pelo | per + o
|
63
|
+
pela | per + a
|
64
|
+
até | up to
|
65
|
+
isso | that
|
66
|
+
ela | he
|
67
|
+
entre | between
|
68
|
+
| era from SER
|
69
|
+
depois | after
|
70
|
+
sem | without
|
71
|
+
mesmo | same
|
72
|
+
aos | a + os
|
73
|
+
| ter from TER
|
74
|
+
seus | his
|
75
|
+
quem | whom
|
76
|
+
nas | em + as
|
77
|
+
me | me
|
78
|
+
esse | that
|
79
|
+
eles | they
|
80
|
+
| estão from EST
|
81
|
+
você | you
|
82
|
+
| tinha from TER
|
83
|
+
| foram from SER
|
84
|
+
essa | that
|
85
|
+
num | em + um
|
86
|
+
nem | nor
|
87
|
+
suas | her
|
88
|
+
meu | my
|
89
|
+
às | a + as
|
90
|
+
minha | my
|
91
|
+
| têm from TER
|
92
|
+
numa | em + uma
|
93
|
+
pelos | per + os
|
94
|
+
elas | they
|
95
|
+
| havia from HAV
|
96
|
+
| seja from SER
|
97
|
+
qual | which
|
98
|
+
| será from SER
|
99
|
+
nós | we
|
100
|
+
| tenho from TER
|
101
|
+
lhe | to him, her
|
102
|
+
deles | of them
|
103
|
+
essas | those
|
104
|
+
esses | those
|
105
|
+
pelas | per + as
|
106
|
+
este | this
|
107
|
+
| fosse from SER
|
108
|
+
dele | of him
|
109
|
+
|
110
|
+
| other words. There are many contractions such as naquele = em+aquele,
|
111
|
+
| mo = me+o, but they are rare.
|
112
|
+
| Indefinite article plural forms are also rare.
|
113
|
+
|
114
|
+
tu | thou
|
115
|
+
te | thee
|
116
|
+
vocês | you (plural)
|
117
|
+
vos | you
|
118
|
+
lhes | to them
|
119
|
+
meus | my
|
120
|
+
minhas
|
121
|
+
teu | thy
|
122
|
+
tua
|
123
|
+
teus
|
124
|
+
tuas
|
125
|
+
nosso | our
|
126
|
+
nossa
|
127
|
+
nossos
|
128
|
+
nossas
|
129
|
+
|
130
|
+
dela | of her
|
131
|
+
delas | of them
|
132
|
+
|
133
|
+
esta | this
|
134
|
+
estes | these
|
135
|
+
estas | these
|
136
|
+
aquele | that
|
137
|
+
aquela | that
|
138
|
+
aqueles | those
|
139
|
+
aquelas | those
|
140
|
+
isto | this
|
141
|
+
aquilo | that
|
142
|
+
|
143
|
+
| forms of estar, to be (not including the infinitive):
|
144
|
+
estou
|
145
|
+
está
|
146
|
+
estamos
|
147
|
+
estão
|
148
|
+
estive
|
149
|
+
esteve
|
150
|
+
estivemos
|
151
|
+
estiveram
|
152
|
+
estava
|
153
|
+
estávamos
|
154
|
+
estavam
|
155
|
+
estivera
|
156
|
+
estivéramos
|
157
|
+
esteja
|
158
|
+
estejamos
|
159
|
+
estejam
|
160
|
+
estivesse
|
161
|
+
estivéssemos
|
162
|
+
estivessem
|
163
|
+
estiver
|
164
|
+
estivermos
|
165
|
+
estiverem
|
166
|
+
|
167
|
+
| forms of haver, to have (not including the infinitive):
|
168
|
+
hei
|
169
|
+
há
|
170
|
+
havemos
|
171
|
+
hão
|
172
|
+
houve
|
173
|
+
houvemos
|
174
|
+
houveram
|
175
|
+
houvera
|
176
|
+
houvéramos
|
177
|
+
haja
|
178
|
+
hajamos
|
179
|
+
hajam
|
180
|
+
houvesse
|
181
|
+
houvéssemos
|
182
|
+
houvessem
|
183
|
+
houver
|
184
|
+
houvermos
|
185
|
+
houverem
|
186
|
+
houverei
|
187
|
+
houverá
|
188
|
+
houveremos
|
189
|
+
houverão
|
190
|
+
houveria
|
191
|
+
houveríamos
|
192
|
+
houveriam
|
193
|
+
|
194
|
+
| forms of ser, to be (not including the infinitive):
|
195
|
+
sou
|
196
|
+
somos
|
197
|
+
são
|
198
|
+
era
|
199
|
+
éramos
|
200
|
+
eram
|
201
|
+
fui
|
202
|
+
foi
|
203
|
+
fomos
|
204
|
+
foram
|
205
|
+
fora
|
206
|
+
fôramos
|
207
|
+
seja
|
208
|
+
sejamos
|
209
|
+
sejam
|
210
|
+
fosse
|
211
|
+
fôssemos
|
212
|
+
fossem
|
213
|
+
for
|
214
|
+
formos
|
215
|
+
forem
|
216
|
+
serei
|
217
|
+
será
|
218
|
+
seremos
|
219
|
+
serão
|
220
|
+
seria
|
221
|
+
seríamos
|
222
|
+
seriam
|
223
|
+
|
224
|
+
| forms of ter, to have (not including the infinitive):
|
225
|
+
tenho
|
226
|
+
tem
|
227
|
+
temos
|
228
|
+
tém
|
229
|
+
tinha
|
230
|
+
tínhamos
|
231
|
+
tinham
|
232
|
+
tive
|
233
|
+
teve
|
234
|
+
tivemos
|
235
|
+
tiveram
|
236
|
+
tivera
|
237
|
+
tivéramos
|
238
|
+
tenha
|
239
|
+
tenhamos
|
240
|
+
tenham
|
241
|
+
tivesse
|
242
|
+
tivéssemos
|
243
|
+
tivessem
|
244
|
+
tiver
|
245
|
+
tivermos
|
246
|
+
tiverem
|
247
|
+
terei
|
248
|
+
terá
|
249
|
+
teremos
|
250
|
+
terão
|
251
|
+
teria
|
252
|
+
teríamos
|
253
|
+
teriam
|
@@ -0,0 +1,233 @@
|
|
1
|
+
# This file was created by Jacques Savoy and is distributed under the BSD license.
|
2
|
+
# See http://members.unine.ch/jacques.savoy/clef/index.html.
|
3
|
+
# Also see http://www.opensource.org/licenses/bsd-license.html
|
4
|
+
acea
|
5
|
+
aceasta
|
6
|
+
această
|
7
|
+
aceea
|
8
|
+
acei
|
9
|
+
aceia
|
10
|
+
acel
|
11
|
+
acela
|
12
|
+
acele
|
13
|
+
acelea
|
14
|
+
acest
|
15
|
+
acesta
|
16
|
+
aceste
|
17
|
+
acestea
|
18
|
+
aceşti
|
19
|
+
aceştia
|
20
|
+
acolo
|
21
|
+
acum
|
22
|
+
ai
|
23
|
+
aia
|
24
|
+
aibă
|
25
|
+
aici
|
26
|
+
al
|
27
|
+
ăla
|
28
|
+
ale
|
29
|
+
alea
|
30
|
+
ălea
|
31
|
+
altceva
|
32
|
+
altcineva
|
33
|
+
am
|
34
|
+
ar
|
35
|
+
are
|
36
|
+
aş
|
37
|
+
aşadar
|
38
|
+
asemenea
|
39
|
+
asta
|
40
|
+
ăsta
|
41
|
+
astăzi
|
42
|
+
astea
|
43
|
+
ăstea
|
44
|
+
ăştia
|
45
|
+
asupra
|
46
|
+
aţi
|
47
|
+
au
|
48
|
+
avea
|
49
|
+
avem
|
50
|
+
aveţi
|
51
|
+
azi
|
52
|
+
bine
|
53
|
+
bucur
|
54
|
+
bună
|
55
|
+
ca
|
56
|
+
că
|
57
|
+
căci
|
58
|
+
când
|
59
|
+
care
|
60
|
+
cărei
|
61
|
+
căror
|
62
|
+
cărui
|
63
|
+
cât
|
64
|
+
câte
|
65
|
+
câţi
|
66
|
+
către
|
67
|
+
câtva
|
68
|
+
ce
|
69
|
+
cel
|
70
|
+
ceva
|
71
|
+
chiar
|
72
|
+
cînd
|
73
|
+
cine
|
74
|
+
cineva
|
75
|
+
cît
|
76
|
+
cîte
|
77
|
+
cîţi
|
78
|
+
cîtva
|
79
|
+
contra
|
80
|
+
cu
|
81
|
+
cum
|
82
|
+
cumva
|
83
|
+
curând
|
84
|
+
curînd
|
85
|
+
da
|
86
|
+
dă
|
87
|
+
dacă
|
88
|
+
dar
|
89
|
+
datorită
|
90
|
+
de
|
91
|
+
deci
|
92
|
+
deja
|
93
|
+
deoarece
|
94
|
+
departe
|
95
|
+
deşi
|
96
|
+
din
|
97
|
+
dinaintea
|
98
|
+
dintr
|
99
|
+
dintre
|
100
|
+
drept
|
101
|
+
după
|
102
|
+
ea
|
103
|
+
ei
|
104
|
+
el
|
105
|
+
ele
|
106
|
+
eram
|
107
|
+
este
|
108
|
+
eşti
|
109
|
+
eu
|
110
|
+
face
|
111
|
+
fără
|
112
|
+
fi
|
113
|
+
fie
|
114
|
+
fiecare
|
115
|
+
fii
|
116
|
+
fim
|
117
|
+
fiţi
|
118
|
+
iar
|
119
|
+
ieri
|
120
|
+
îi
|
121
|
+
îl
|
122
|
+
îmi
|
123
|
+
împotriva
|
124
|
+
în
|
125
|
+
înainte
|
126
|
+
înaintea
|
127
|
+
încât
|
128
|
+
încît
|
129
|
+
încotro
|
130
|
+
între
|
131
|
+
întrucât
|
132
|
+
întrucît
|
133
|
+
îţi
|
134
|
+
la
|
135
|
+
lângă
|
136
|
+
le
|
137
|
+
li
|
138
|
+
lîngă
|
139
|
+
lor
|
140
|
+
lui
|
141
|
+
mă
|
142
|
+
mâine
|
143
|
+
mea
|
144
|
+
mei
|
145
|
+
mele
|
146
|
+
mereu
|
147
|
+
meu
|
148
|
+
mi
|
149
|
+
mine
|
150
|
+
mult
|
151
|
+
multă
|
152
|
+
mulţi
|
153
|
+
ne
|
154
|
+
nicăieri
|
155
|
+
nici
|
156
|
+
nimeni
|
157
|
+
nişte
|
158
|
+
noastră
|
159
|
+
noastre
|
160
|
+
noi
|
161
|
+
noştri
|
162
|
+
nostru
|
163
|
+
nu
|
164
|
+
ori
|
165
|
+
oricând
|
166
|
+
oricare
|
167
|
+
oricât
|
168
|
+
orice
|
169
|
+
oricînd
|
170
|
+
oricine
|
171
|
+
oricît
|
172
|
+
oricum
|
173
|
+
oriunde
|
174
|
+
până
|
175
|
+
pe
|
176
|
+
pentru
|
177
|
+
peste
|
178
|
+
pînă
|
179
|
+
poate
|
180
|
+
pot
|
181
|
+
prea
|
182
|
+
prima
|
183
|
+
primul
|
184
|
+
prin
|
185
|
+
printr
|
186
|
+
sa
|
187
|
+
să
|
188
|
+
săi
|
189
|
+
sale
|
190
|
+
sau
|
191
|
+
său
|
192
|
+
se
|
193
|
+
şi
|
194
|
+
sînt
|
195
|
+
sîntem
|
196
|
+
sînteţi
|
197
|
+
spre
|
198
|
+
sub
|
199
|
+
sunt
|
200
|
+
suntem
|
201
|
+
sunteţi
|
202
|
+
ta
|
203
|
+
tăi
|
204
|
+
tale
|
205
|
+
tău
|
206
|
+
te
|
207
|
+
ţi
|
208
|
+
ţie
|
209
|
+
tine
|
210
|
+
toată
|
211
|
+
toate
|
212
|
+
tot
|
213
|
+
toţi
|
214
|
+
totuşi
|
215
|
+
tu
|
216
|
+
un
|
217
|
+
una
|
218
|
+
unde
|
219
|
+
undeva
|
220
|
+
unei
|
221
|
+
unele
|
222
|
+
uneori
|
223
|
+
unor
|
224
|
+
vă
|
225
|
+
vi
|
226
|
+
voastră
|
227
|
+
voastre
|
228
|
+
voi
|
229
|
+
voştri
|
230
|
+
vostru
|
231
|
+
vouă
|
232
|
+
vreo
|
233
|
+
vreun
|
@@ -0,0 +1,243 @@
|
|
1
|
+
| From svn.tartarus.org/snowball/trunk/website/algorithms/russian/stop.txt
|
2
|
+
| This file is distributed under the BSD License.
|
3
|
+
| See http://snowball.tartarus.org/license.php
|
4
|
+
| Also see http://www.opensource.org/licenses/bsd-license.html
|
5
|
+
| - Encoding was converted to UTF-8.
|
6
|
+
| - This notice was added.
|
7
|
+
|
|
8
|
+
| NOTE: To use this file with StopFilterFactory, you must specify format="snowball"
|
9
|
+
|
10
|
+
| a russian stop word list. comments begin with vertical bar. each stop
|
11
|
+
| word is at the start of a line.
|
12
|
+
|
13
|
+
| this is a ranked list (commonest to rarest) of stopwords derived from
|
14
|
+
| a large text sample.
|
15
|
+
|
16
|
+
| letter `ё' is translated to `е'.
|
17
|
+
|
18
|
+
и | and
|
19
|
+
в | in/into
|
20
|
+
во | alternative form
|
21
|
+
не | not
|
22
|
+
что | what/that
|
23
|
+
он | he
|
24
|
+
на | on/onto
|
25
|
+
я | i
|
26
|
+
с | from
|
27
|
+
со | alternative form
|
28
|
+
как | how
|
29
|
+
а | milder form of `no' (but)
|
30
|
+
то | conjunction and form of `that'
|
31
|
+
все | all
|
32
|
+
она | she
|
33
|
+
так | so, thus
|
34
|
+
его | him
|
35
|
+
но | but
|
36
|
+
да | yes/and
|
37
|
+
ты | thou
|
38
|
+
к | towards, by
|
39
|
+
у | around, chez
|
40
|
+
же | intensifier particle
|
41
|
+
вы | you
|
42
|
+
за | beyond, behind
|
43
|
+
бы | conditional/subj. particle
|
44
|
+
по | up to, along
|
45
|
+
только | only
|
46
|
+
ее | her
|
47
|
+
мне | to me
|
48
|
+
было | it was
|
49
|
+
вот | here is/are, particle
|
50
|
+
от | away from
|
51
|
+
меня | me
|
52
|
+
еще | still, yet, more
|
53
|
+
нет | no, there isnt/arent
|
54
|
+
о | about
|
55
|
+
из | out of
|
56
|
+
ему | to him
|
57
|
+
теперь | now
|
58
|
+
когда | when
|
59
|
+
даже | even
|
60
|
+
ну | so, well
|
61
|
+
вдруг | suddenly
|
62
|
+
ли | interrogative particle
|
63
|
+
если | if
|
64
|
+
уже | already, but homonym of `narrower'
|
65
|
+
или | or
|
66
|
+
ни | neither
|
67
|
+
быть | to be
|
68
|
+
был | he was
|
69
|
+
него | prepositional form of его
|
70
|
+
до | up to
|
71
|
+
вас | you accusative
|
72
|
+
нибудь | indef. suffix preceded by hyphen
|
73
|
+
опять | again
|
74
|
+
уж | already, but homonym of `adder'
|
75
|
+
вам | to you
|
76
|
+
сказал | he said
|
77
|
+
ведь | particle `after all'
|
78
|
+
там | there
|
79
|
+
потом | then
|
80
|
+
себя | oneself
|
81
|
+
ничего | nothing
|
82
|
+
ей | to her
|
83
|
+
может | usually with `быть' as `maybe'
|
84
|
+
они | they
|
85
|
+
тут | here
|
86
|
+
где | where
|
87
|
+
есть | there is/are
|
88
|
+
надо | got to, must
|
89
|
+
ней | prepositional form of ей
|
90
|
+
для | for
|
91
|
+
мы | we
|
92
|
+
тебя | thee
|
93
|
+
их | them, their
|
94
|
+
чем | than
|
95
|
+
была | she was
|
96
|
+
сам | self
|
97
|
+
чтоб | in order to
|
98
|
+
без | without
|
99
|
+
будто | as if
|
100
|
+
человек | man, person, one
|
101
|
+
чего | genitive form of `what'
|
102
|
+
раз | once
|
103
|
+
тоже | also
|
104
|
+
себе | to oneself
|
105
|
+
под | beneath
|
106
|
+
жизнь | life
|
107
|
+
будет | will be
|
108
|
+
ж | short form of intensifer particle `же'
|
109
|
+
тогда | then
|
110
|
+
кто | who
|
111
|
+
этот | this
|
112
|
+
говорил | was saying
|
113
|
+
того | genitive form of `that'
|
114
|
+
потому | for that reason
|
115
|
+
этого | genitive form of `this'
|
116
|
+
какой | which
|
117
|
+
совсем | altogether
|
118
|
+
ним | prepositional form of `его', `они'
|
119
|
+
здесь | here
|
120
|
+
этом | prepositional form of `этот'
|
121
|
+
один | one
|
122
|
+
почти | almost
|
123
|
+
мой | my
|
124
|
+
тем | instrumental/dative plural of `тот', `то'
|
125
|
+
чтобы | full form of `in order that'
|
126
|
+
нее | her (acc.)
|
127
|
+
кажется | it seems
|
128
|
+
сейчас | now
|
129
|
+
были | they were
|
130
|
+
куда | where to
|
131
|
+
зачем | why
|
132
|
+
сказать | to say
|
133
|
+
всех | all (acc., gen. preposn. plural)
|
134
|
+
никогда | never
|
135
|
+
сегодня | today
|
136
|
+
можно | possible, one can
|
137
|
+
при | by
|
138
|
+
наконец | finally
|
139
|
+
два | two
|
140
|
+
об | alternative form of `о', about
|
141
|
+
другой | another
|
142
|
+
хоть | even
|
143
|
+
после | after
|
144
|
+
над | above
|
145
|
+
больше | more
|
146
|
+
тот | that one (masc.)
|
147
|
+
через | across, in
|
148
|
+
эти | these
|
149
|
+
нас | us
|
150
|
+
про | about
|
151
|
+
всего | in all, only, of all
|
152
|
+
них | prepositional form of `они' (they)
|
153
|
+
какая | which, feminine
|
154
|
+
много | lots
|
155
|
+
разве | interrogative particle
|
156
|
+
сказала | she said
|
157
|
+
три | three
|
158
|
+
эту | this, acc. fem. sing.
|
159
|
+
моя | my, feminine
|
160
|
+
впрочем | moreover, besides
|
161
|
+
хорошо | good
|
162
|
+
свою | ones own, acc. fem. sing.
|
163
|
+
этой | oblique form of `эта', fem. `this'
|
164
|
+
перед | in front of
|
165
|
+
иногда | sometimes
|
166
|
+
лучше | better
|
167
|
+
чуть | a little
|
168
|
+
том | preposn. form of `that one'
|
169
|
+
нельзя | one must not
|
170
|
+
такой | such a one
|
171
|
+
им | to them
|
172
|
+
более | more
|
173
|
+
всегда | always
|
174
|
+
конечно | of course
|
175
|
+
всю | acc. fem. sing of `all'
|
176
|
+
между | between
|
177
|
+
|
178
|
+
|
179
|
+
| b: some paradigms
|
180
|
+
|
|
181
|
+
| personal pronouns
|
182
|
+
|
|
183
|
+
| я меня мне мной [мною]
|
184
|
+
| ты тебя тебе тобой [тобою]
|
185
|
+
| он его ему им [него, нему, ним]
|
186
|
+
| она ее эи ею [нее, нэи, нею]
|
187
|
+
| оно его ему им [него, нему, ним]
|
188
|
+
|
|
189
|
+
| мы нас нам нами
|
190
|
+
| вы вас вам вами
|
191
|
+
| они их им ими [них, ним, ними]
|
192
|
+
|
|
193
|
+
| себя себе собой [собою]
|
194
|
+
|
|
195
|
+
| demonstrative pronouns: этот (this), тот (that)
|
196
|
+
|
|
197
|
+
| этот эта это эти
|
198
|
+
| этого эты это эти
|
199
|
+
| этого этой этого этих
|
200
|
+
| этому этой этому этим
|
201
|
+
| этим этой этим [этою] этими
|
202
|
+
| этом этой этом этих
|
203
|
+
|
|
204
|
+
| тот та то те
|
205
|
+
| того ту то те
|
206
|
+
| того той того тех
|
207
|
+
| тому той тому тем
|
208
|
+
| тем той тем [тою] теми
|
209
|
+
| том той том тех
|
210
|
+
|
|
211
|
+
| determinative pronouns
|
212
|
+
|
|
213
|
+
| (a) весь (all)
|
214
|
+
|
|
215
|
+
| весь вся все все
|
216
|
+
| всего всю все все
|
217
|
+
| всего всей всего всех
|
218
|
+
| всему всей всему всем
|
219
|
+
| всем всей всем [всею] всеми
|
220
|
+
| всем всей всем всех
|
221
|
+
|
|
222
|
+
| (b) сам (himself etc)
|
223
|
+
|
|
224
|
+
| сам сама само сами
|
225
|
+
| самого саму само самих
|
226
|
+
| самого самой самого самих
|
227
|
+
| самому самой самому самим
|
228
|
+
| самим самой самим [самою] самими
|
229
|
+
| самом самой самом самих
|
230
|
+
|
|
231
|
+
| stems of verbs `to be', `to have', `to do' and modal
|
232
|
+
|
|
233
|
+
| быть бы буд быв есть суть
|
234
|
+
| име
|
235
|
+
| дел
|
236
|
+
| мог мож мочь
|
237
|
+
| уме
|
238
|
+
| хоч хот
|
239
|
+
| долж
|
240
|
+
| можн
|
241
|
+
| нужн
|
242
|
+
| нельзя
|
243
|
+
|