-
Notifications
You must be signed in to change notification settings - Fork 10
/
hrsorthr.html
3121 lines (3097 loc) · 251 KB
/
hrsorthr.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<HTML><HEAD>
<TITLE>3000 English/Croatian vocabulary flash cards</TITLE>
</HEAD><BODY>
<!-- 6/26/09 thru 209 -->
<!-- 6/27/09 thru 400 -->
<!-- 6/29/09 thru 450 -->
<!-- 7/4/09 thru 699 -->
<!-- 7/14/09 thru 999 -->
<!--
http://web1.d25.k12.id.us/home/curriculum/fuw.pdf 1000 most freq Eng wrds
-->
<!-- 1-letter words a i k o s u
<!-- 2-letter words included:
bi da do in ja je ka la li mi na ne ni od on pa po rt sa se si su ta te
ti to tu ud uz vi za
not included:
as iz
English 2-letter words:
ah am an as at ax be by do go ha hi if in is it me mu my no nu of oh on
or ox pi so to up us we
-->
<!--
500 words from
http://www.nald.ca/library/research/unlocking/27.htm
missing ones:
along been best both brought came case children
could did does done draw feet fine found gave given glad got
had has him himself its known lay lost made me men might mile mine must
nothing once pass pretty raise said seen sent shall sight
sometime them then these those took until upon us was went were
-->
<CENTER>
<H2>3000 English/Croatian vocabulary flash cards</H2>
<I>Last updated: 14-Jul-2009 Author: Norman Megill</I>
</CENTER>
<P>
If you plan to use the
Mnemosyne set of <A HREF="http://www.mnemosyne-proj.org/node/208">2500
English-Croatian vocabulary cards</A>, let me know so that I can
make sure it has been updated with the latest corrections.
<HR>
<I>25-Jun-2009:</I>Ivan Štambuk has <A
HREF="http://en.wiktionary.org/wiki/User:Ivan_%C5%A0tambuk/3000">duplicated
and wikified this list</A> with many corrections. I will be
updating this page with his corrections, but in the meantime
his list should be used as a
more definitive reference.
<HR>
<P>
This vocabulary list attempts to collect the 3,000 most important words
for use with the <A HREF="http://www.mnemosyne-proj.org/">Mnemosyne</A>
flash-card tool. <!-- An apparently novel feature is that it --> An
unusual feature (compared to some other vocabulary lists I've seen) is
that it is sorted with the most common words first and rarest words
last, so that (in theory) the student can stop at any point according to
his or her desired proficiency level.
<P>This list is primarily based on J. Barefoot's <!--
1997 --> public-domain, 2449-word <A
HREF="http://www.geocities.com/Athens/Parthenon/7853/list.htm">Master
List</A> <!-- of 2449 words, which in turn was said to be based on the
Universal Language Dictionary, Basic English, and Essential Word
English. (Later, I found Anne Lyle's <A
HREF="http://www.annelyle.com/downloads/univ_dict.html">categorized
version</A> of an apparently earlier 1600-word version of this list.)
--> and the 1510-word <A
HREF="http://www.voanews.com/specialenglish/wordbook-a.cfm">Voice of
America Special English Word Book</A>. <!-- also:
http://www.manythings.org/voa/words.htm --> I added additional words
from the <A
HREF="http://en.wiktionary.org/wiki/Appendix:Croatian_Swadesh_list">Croatian
Swadesh list</A>, days of the week, months of the year, some
additional numbers, and a few other words.
<P>I sorted the final list according to word frequency, using the 40,000
<A
HREF="http://en.wiktionary.org/wiki/Wiktionary:Frequency_lists#Most_common_words_.28TV_and_movie_scripts.29">Most
common words (TV and movie scripts)</A>. The second column gives the
rank in that list so that future additions can be placed in the correct
order. <!-- Since there is no context, the ordering of homographs (such
as "well") isn't perfect, but overall it is probably reasonable. -->
<P>To create customized sets of cards, "[num]" and "[cal]" designate
numbers and calendar names (days of the week and months), words with "*"
are in the VOA list, and words with "**" are only in the VOA list (some
of which are used mainly in news reports). For example, keeping only
the cards with a "*" but no "**" results in a 1200-card basic vocabulary
list. The Mnemosyne set of <A HREF="http://www.mnemosyne-proj.org/node/208">2500
English-Croatian vocabulary cards</A> was created by deleting the "**"
cards, removing the "*" characters for better appearance, and
renumbering the card sequence number.
<P>This list is meant to improve Croatian vocabulary, not to learn
Croatian. For that purpose, a phrasebook and an audio course will be
useful. In many cases, such as the words "to", "as", "at", and "of",
there is no one-to-one correspondence, and the translation is primarily
intended to assist a general recognition of the corresponding Croatian
words. Finally, the list does not address grammar, and in most cases,
only the infinitive and nominative cases are shown.
<P>Croatian is roughly pronounced as it is written, so there is no
separate pronunciation column. Some pronunciation guides are given <A
HREF="http://skeravec.chez-alice.fr/Pronounc.html">here</A>, <A
HREF="http://www.phantomranch.net/folkdanc/alphabet/serbo-croatian.htm">here</A>,
and <A
HREF="http://www.croatiatraveller.com/Language/Pronunciation.htm">here</A>.
For more precision, see <A
HREF="http://en.wiktionary.org/wiki/User:Ivan_%C5%A0tambuk/3000">Ivan
Štambuk's list</A> with accented vowels in conjunction with a <A
HREF="http://en.wikipedia.org/wiki/Pitch_accent#Serbo-Croatian">pitch
accent guide</A>.
<!--
<P>Since the English word list is generic, it may be adaptable to
other languages as well. For Croatian, a pronunciation column is not
needed since their is a fixed correspondence between the letters and the
way they are pronounced.
-->
<P>
<!--
The Croatian translation is undergoing fine-tuning, and suggestions
are welcome.
-->
<!-- The starting point, Google's translation service, had a
number of problems (e.g. "apple" was translated to the trademark "Apple"
instead of "jabuka", "the toe" was translated to "na vrh", which means
"the top").
-->
<!-- Improvements are welcome. -->
<P> <A HREF="http://us.metamath.org/email.html">Norm Megill</A>
<BR>
Corrections and suggestions are welcome.
<!--
June, 2009
-->
<HR>
Example: 201 | 227 | understand*, comprehend (pf/impf) [v] 2s
| razumjeti, shvatiti / razumjeti, shvaćati
<UL>
<LI>"201" - this is the 201st list entry</LI>
<LI>"227" - "understand" is the 227th word in the 40K-word TV/movie list</LI>
<LI>"*" - "understand" occurs in the Voice of America list (the "*" can be ignored)</LI>
<LI> ", comprehend" - "comprehend" is a synonym for "understand" to help
clarify its meaning</LI>
<LI>"(pf/impf)" - there are two cases (perfect and imperfect) in the
Croatian column, separated by slash</LI>
<LI>"[v]" - "understand" is a verb</LI>
<LI>"2s" - there are 2 synonyms for "understand" in the Croatian column,
separated by commas (also, "2w" = 2 words)</LI>
<LI>"razumjeti, shvatiti" - these are 2 synomyms for the perfect case of
"to understand"</LI>
<LI>"razumijevati, shvaćati" - these are 2 synonyms for the imperfect case
of "to understand"</LI>
</UL>
<HR>
<P>
Click on the column header to sort by that column.
<A NAME="table"></A>
<TABLE BORDER>
<TR><TH>
<A HREF="hr.html">Seq</A>
</TH><TH>Rank</TH><TH>
<A HREF="hrsorten.html">English</A>
</TH><TH>
<!-- <A HREF="hrsorten.html">English</A> --> Croatian
</TH></TR>
<TR><TD>2454</TD><TD>10305</TD><TD>whim, caprice [n] 2s</TD><TD>ćef, hir</TD></TR>
<TR><TD>83</TD><TD>76</TD><TD>will* (I/you sg./he,she,it/we/you pl.+pol./they) [aux-v]</TD><TD>ću / ćeš / će / ćemo / ćete / će</TD></TR>
<TR><TD>451</TD><TD>587</TD><TD>sense* (ability to perceive a given kind of stimuli) [n] 2s</TD><TD>ćulo, osjetilo</TD></TR>
<TR><TD>840</TD><TD>1379</TD><TD>glass* (receptacle) [n]</TD><TD>čaša</TD></TR>
<TR><TD>798</TD><TD>1272</TD><TD>tea* (plant or leaves of sp. Camellia sinensis) [n]</TD><TD>čaj</TD></TR>
<TR><TD>2495</TD><TD>10985</TD><TD>kettle [n]</TD><TD>čajnik</TD></TR>
<TR><TD>131</TD><TD>140</TD><TD>even* [av]</TD><TD>čak</TD></TR>
<TR><TD>2434</TD><TD>9835</TD><TD>rumour [n]</TD><TD>čakule</TD></TR>
<TR><TD>1949</TD><TD>5219</TD><TD>sock, hose, stocking [n]</TD><TD>čarapa</TD></TR>
<TR><TD>720</TD><TD>1109</TD><TD>officer* [n] 2s</TD><TD>časnik, oficir</TD></TR>
<TR><TD>1883</TD><TD>4865</TD><TD>journal [n]</TD><TD>časopis</TD></TR>
<TR><TD>1274</TD><TD>2492</TD><TD>nail (pointy fastener) [n]</TD><TD>čavao</TD></TR>
<TR><TD>1536</TD><TD>3368</TD><TD>scratch [v]</TD><TD>češati</TD></TR>
<TR><TD>2308</TD><TD>8068</TD><TD>comb [n]</TD><TD>češlj</TD></TR>
<TR><TD>2178</TD><TD>6802</TD><TD>garlic (herb of sp. Allium sativum) [n]</TD><TD>češnjak</TD></TR>
<TR><TD>323</TD><TD>396</TD><TD>check (written order directing a bank to pay from an account) [n]</TD><TD>ček</TD></TR>
<TR><TD>385</TD><TD>483</TD><TD>waiting (as in waiting period) [aj]</TD><TD>čekanje</TD></TR>
<TR><TD>147</TD><TD>154</TD><TD>wait* (for), await [v]</TD><TD>čekati</TD></TR>
<TR><TD>1729</TD><TD>4152</TD><TD>hammer [n]</TD><TD>čekić</TD></TR>
<TR><TD>2046</TD><TD>5704</TD><TD>forehead [n]</TD><TD>čela</TD></TR>
<TR><TD>1715</TD><TD>4100</TD><TD>steel* [n]</TD><TD>čelika</TD></TR>
<TR><TD>2134</TD><TD>6452</TD><TD>jaw [n]</TD><TD>čeljust</TD></TR>
<TR><TD>1785</TD><TD>4375</TD><TD>plug, seal, stopper [n]</TD><TD>čep</TD></TR>
<TR><TD>1594</TD><TD>3601</TD><TD>fourteen [num]</TD><TD>čertnaest</TD></TR>
<TR><TD>2423</TD><TD>9568</TD><TD>frequent [aj]</TD><TD>čest</TD></TR>
<TR><TD>2656</TD><TD>15462</TD><TD>particle [n]</TD><TD>čestica</TD></TR>
<TR><TD>1972</TD><TD>5332</TD><TD>congratulate** [v]</TD><TD>čestitati</TD></TR>
<TR><TD>765</TD><TD>1195</TD><TD>often*, frequently [av]</TD><TD>često</TD></TR>
<TR><TD>394</TD><TD>492</TD><TD>four [num]</TD><TD>četiri</TD></TR>
<TR><TD>1688</TD><TD>3998</TD><TD>brush [n]</TD><TD>četka</TD></TR>
<TR><TD>1426</TD><TD>2935</TD><TD>Thursday [cal]</TD><TD>četvrtak</TD></TR>
<TR><TD>530</TD><TD>735</TD><TD>act*, deed [n] 2s</TD><TD>čin, djelo</TD></TR>
<TR><TD>104</TD><TD>106</TD><TD>make*, render (impart quality X to Y; e.g. "I make you happy") [v]</TD><TD>činiti</TD></TR>
<TR><TD>26</TD><TD>24</TD><TD>do*, perform, engage in (specified activity) [v] 3s;1,1,2w</TD><TD>činiti, raditi, baviti se</TD></TR>
<TR><TD>339</TD><TD>418</TD><TD>fact* (undisputed datum) [n]</TD><TD>činjenica</TD></TR>
<TR><TD>1272</TD><TD>2491</TD><TD>pure*, unadulterated, uncontaminated [aj]</TD><TD>čist</TD></TR>
<TR><TD>578</TD><TD>817</TD><TD>clean* [aj]</TD><TD>čist</TD></TR>
<TR><TD>1205</TD><TD>2295</TD><TD>member* (of group or organization) [n]</TD><TD>član</TD></TR>
<TR><TD>2914</TD><TD>40595</TD><TD>dependant (family member) [n] 2w</TD><TD>član obitelji</TD></TR>
<TR><TD>1392</TD><TD>2845</TD><TD>article (part of speech) [n]</TD><TD>članku</TD></TR>
<TR><TD>1393</TD><TD>2845</TD><TD>article, essay (piece of text about one topic) [n] 2s</TD><TD>članku, esej</TD></TR>
<TR><TD>2284</TD><TD>7808</TD><TD>membership [n]</TD><TD>članstvo</TD></TR>
<TR><TD>1075</TD><TD>1951</TD><TD>chocolate [n]</TD><TD>čokolada</TD></TR>
<TR><TD>124</TD><TD>128</TD><TD>man* (human being) [n]</TD><TD>čovjek</TD></TR>
<TR><TD>2362</TD><TD>8546</TD><TD>squat [v]</TD><TD>čučati</TD></TR>
<TR><TD>1019</TD><TD>1783</TD><TD>miracle [n]</TD><TD>čudo</TD></TR>
<TR><TD>502</TD><TD>683</TD><TD>wonder* [n]</TD><TD>čudo</TD></TR>
<TR><TD>2615</TD><TD>13907</TD><TD>sensual [aj]</TD><TD>čulan</TD></TR>
<TR><TD>202</TD><TD>230</TD><TD>hear* [v]</TD><TD>čuti</TD></TR>
<TR><TD>2815</TD><TD>25344</TD><TD>safeguard [v]</TD><TD>čuvati</TD></TR>
<TR><TD>2364</TD><TD>8559</TD><TD>preserve, maintain (keep X in good condition) [v]</TD><TD>čuvati</TD></TR>
<TR><TD>871</TD><TD>1429</TD><TD>guard*, monitor, watch over [v] 2s</TD><TD>čuvati, nadzirati</TD></TR>
<TR><TD>2166</TD><TD>6692</TD><TD>knot [n]</TD><TD>čvor</TD></TR>
<TR><TD>1346</TD><TD>2709</TD><TD>solid* (not a gas or liquid) [n]</TD><TD>čvrste</TD></TR>
<TR><TD>1845</TD><TD>4665</TD><TD>ginger (plant or rhizome of genus Zingiber) [n]</TD><TD>đumbir</TD></TR>
<TR><TD>2065</TD><TD>5877</TD><TD>chess [n]</TD><TD>šah</TD></TR>
<TR><TD>705</TD><TD>1066</TD><TD>joke* [n]</TD><TD>šala</TD></TR>
<TR><TD>880</TD><TD>1449</TD><TD>cup (small bowl with handle) [n]</TD><TD>šalica</TD></TR>
<TR><TD>1763</TD><TD>4291</TD><TD>champion** [n]</TD><TD>šampion</TD></TR>
<TR><TD>1721</TD><TD>4127</TD><TD>tent [n]</TD><TD>šator</TD></TR>
<TR><TD>1110</TD><TD>2032</TD><TD>sugar* [n]</TD><TD>šećer</TD></TR>
<TR><TD>924</TD><TD>1548</TD><TD>hat*, cap [n]</TD><TD>šešir</TD></TR>
<TR><TD>744</TD><TD>1153</TD><TD>chief* [n]</TD><TD>šef</TD></TR>
<TR><TD>1503</TD><TD>3221</TD><TD>sixteen [num]</TD><TD>šesnaest</TD></TR>
<TR><TD>447</TD><TD>578</TD><TD>six [num]</TD><TD>šest</TD></TR>
<TR><TD>369</TD><TD>459</TD><TD>walk* [n]</TD><TD>šetnja</TD></TR>
<TR><TD>1372</TD><TD>2785</TD><TD>bat (flying mammal) [n]</TD><TD>šišmiš</TD></TR>
<TR><TD>1373</TD><TD>2785</TD><TD>bat, stick, racket or racquet (any ball-hitting tool) [n] 2s</TD><TD>šišmiša, stick</TD></TR>
<TR><TD>934</TD><TD>1565</TD><TD>match (little fire-stick) [n]</TD><TD>šibica</TD></TR>
<TR><TD>2708</TD><TD>18028</TD><TD>width (degree of wideness or narrowness) [n]</TD><TD>širina</TD></TR>
<TR><TD>2895</TD><TD>37632</TD><TD>expanse [n]</TD><TD>širina</TD></TR>
<TR><TD>1370</TD><TD>2779</TD><TD>spread* (begin to cover or cause X to cover more area) [v]</TD><TD>širiti</TD></TR>
<TR><TD>1355</TD><TD>2737</TD><TD>wide*, broad (of space between objects) [aj]</TD><TD>širok</TD></TR>
<TR><TD>2441</TD><TD>10066</TD><TD>sew [v]</TD><TD>šiti</TD></TR>
<TR><TD>2128</TD><TD>6415</TD><TD>scissors [n]</TD><TD>škare</TD></TR>
<TR><TD>289</TD><TD>351</TD><TD>school* [n]</TD><TD>škola</TD></TR>
<TR><TD>2523</TD><TD>11694</TD><TD>zipper [n]</TD><TD>šlic</TD></TR>
<TR><TD>2545</TD><TD>12091</TD><TD>plum (certain trees or fruits of genus Prunus) [n]</TD><TD>šljiva</TD></TR>
<TR><TD>1073</TD><TD>1948</TD><TD>shock* [n]</TD><TD>šok</TD></TR>
<TR><TD>1528</TD><TD>3344</TD><TD>spy** [v]</TD><TD>špijunirati</TD></TR>
<TR><TD>2593</TD><TD>13217</TD><TD>spinach (plant or leaves of sp. Spinacia oleracea) [n]</TD><TD>špinat</TD></TR>
<TR><TD>1310</TD><TD>2608</TD><TD>rat [n]</TD><TD>štakor</TD></TR>
<TR><TD>1923</TD><TD>5058</TD><TD>rod [n]</TD><TD>štap</TD></TR>
<TR><TD>649</TD><TD>960</TD><TD>bar*, rod [n] 2s</TD><TD>štap, palica</TD></TR>
<TR><TD>990</TD><TD>1698</TD><TD>damage* [n]</TD><TD>šteta</TD></TR>
<TR><TD>1314</TD><TD>2619</TD><TD>pity [n] 2w</TD><TD>šteta je</TD></TR>
<TR><TD>2718</TD><TD>18619</TD><TD>harmful [aj]</TD><TD>štetnih</TD></TR>
<TR><TD>2572</TD><TD>12760</TD><TD>pest [n]</TD><TD>štetočina</TD></TR>
<TR><TD>1997</TD><TD>5483</TD><TD>shield (a protective implement) [n]</TD><TD>štit</TD></TR>
<TR><TD>14</TD><TD>11</TD><TD>what*? [pn] 2s</TD><TD>što?, šta?</TD></TR>
<TR><TD>1164</TD><TD>2192</TD><TD>strike* (work stoppage as protest) [n]</TD><TD>štrajk</TD></TR>
<TR><TD>2342</TD><TD>8316</TD><TD>syringe [n]</TD><TD>štrcaljka</TD></TR>
<TR><TD>1750</TD><TD>4250</TD><TD>forest* [n] 2s</TD><TD>šuma, les</TD></TR>
<TR><TD>1947</TD><TD>5208</TD><TD>ham [n]</TD><TD>šunka</TD></TR>
<TR><TD>2736</TD><TD>20091</TD><TD>anus [n]</TD><TD>šupak</TD></TR>
<TR><TD>1747</TD><TD>4230</TD><TD>hollow [aj]</TD><TD>šupalj</TD></TR>
<TR><TD>2502</TD><TD>11130</TD><TD>cavity [n]</TD><TD>šupljina</TD></TR>
<TR><TD>116</TD><TD>120</TD><TD>Sorry (I am sorry) [ij] 3w</TD><TD>Žao mi je</TD></TR>
<TR><TD>1874</TD><TD>4839</TD><TD>frog (web-footed tailless leaping amphibian) [n]</TD><TD>žaba</TD></TR>
<TR><TD>972</TD><TD>1650</TD><TD>regret*, deplore* [v]</TD><TD>žaliti</TD></TR>
<TR><TD>1315</TD><TD>2619</TD><TD>pity, feel compassion toward, feel sorry for [v]</TD><TD>žaliti</TD></TR>
<TR><TD>1782</TD><TD>4368</TD><TD>complain [v] 2w</TD><TD>žaliti se</TD></TR>
<TR><TD>971</TD><TD>1650</TD><TD>regret* [n]</TD><TD>žaljenje</TD></TR>
<TR><TD>2408</TD><TD>9298</TD><TD>bulb [n]</TD><TD>žarulja</TD></TR>
<TR><TD>320</TD><TD>392</TD><TD>wish* [v]</TD><TD>željeti</TD></TR>
<TR><TD>1444</TD><TD>3000</TD><TD>desire* [v]</TD><TD>željeti</TD></TR>
<TR><TD>2465</TD><TD>10407</TD><TD>rail (usually horizontal bar for restraining or supporting things) [n]</TD><TD>željezničke</TD></TR>
<TR><TD>2125</TD><TD>6391</TD><TD>railroad* [n]</TD><TD>željezničkim</TD></TR>
<TR><TD>1720</TD><TD>4120</TD><TD>iron* (metal) [n]</TD><TD>željezo</TD></TR>
<TR><TD>1132</TD><TD>2122</TD><TD>stomach [n]</TD><TD>želuca</TD></TR>
<TR><TD>222</TD><TD>263</TD><TD>woman* (adult female person) [n]</TD><TD>žena</TD></TR>
<TR><TD>298</TD><TD>362</TD><TD>wife* [n] 2s</TD><TD>žena, supruga</TD></TR>
<TR><TD>1396</TD><TD>2851</TD><TD>female* [aj]</TD><TD>žensko</TD></TR>
<TR><TD>1974</TD><TD>5337</TD><TD>severe** [aj]</TD><TD>žestok</TD></TR>
<TR><TD>2343</TD><TD>8346</TD><TD>harvest*, reap [v] 2s</TD><TD>žetve, žeti</TD></TR>
<TR><TD>1450</TD><TD>3013</TD><TD>wire* (long thread-like piece of metal) [n]</TD><TD>žica</TD></TR>
<TR><TD>1115</TD><TD>2052</TD><TD>jury* [n]</TD><TD>žiriju</TD></TR>
<TR><TD>1697</TD><TD>4040</TD><TD>corn*, maize (plant or seeds of sp. Zea mays) [n] 2s</TD><TD>žita, kukuruza</TD></TR>
<TR><TD>2415</TD><TD>9438</TD><TD>grain*(s), cereal crop(s) and their seed(s) [n]</TD><TD>žito</TD></TR>
<TR><TD>450</TD><TD>585</TD><TD>alive* [aj]</TD><TD>živ</TD></TR>
<TR><TD>1275</TD><TD>2493</TD><TD>nerve [n]</TD><TD>živac</TD></TR>
<TR><TD>2705</TD><TD>17897</TD><TD>fowl [n]</TD><TD>živina</TD></TR>
<TR><TD>286</TD><TD>349</TD><TD>live* (be alive) [v]</TD><TD>živjeti</TD></TR>
<TR><TD>130</TD><TD>139</TD><TD>life* [n]</TD><TD>život</TD></TR>
<TR><TD>1109</TD><TD>2031</TD><TD>animal* (non-vegetable creature) [n]</TD><TD>životinja</TD></TR>
<TR><TD>2838</TD><TD>28174</TD><TD>teaspoon [n]</TD><TD>žličica</TD></TR>
<TR><TD>2031</TD><TD>5650</TD><TD>spoon [n]</TD><TD>žlica</TD></TR>
<TR><TD>2474</TD><TD>10526</TD><TD>groove [v]</TD><TD>žlijebiti</TD></TR>
<TR><TD>2540</TD><TD>12032</TD><TD>cockroach (insect of order Blattaria) [n]</TD><TD>žohar</TD></TR>
<TR><TD>1065</TD><TD>1926</TD><TD>victim* [n]</TD><TD>žrtva</TD></TR>
<TR><TD>1472</TD><TD>3122</TD><TD>sacrifice** [v]</TD><TD>žrtvovati</TD></TR>
<TR><TD>625</TD><TD>906</TD><TD>hurry* [n]</TD><TD>žurba</TD></TR>
<TR><TD>1379</TD><TD>2801</TD><TD>yellow* [aj]</TD><TD>žut</TD></TR>
<TR><TD>77</TD><TD>71</TD><TD>as (adjective) as ("as big as a house") [av] (1)1w</TD><TD>(adjective) poput</TD></TR>
<TR><TD>335</TD><TD>412</TD><TD>play* (performed by actors on stage), drama [n] (1)1w</TD><TD>(kazališni) komad</TD></TR>
<TR><TD>886</TD><TD>1456</TD><TD>nurse [n] (1)1w</TD><TD>(medicinska) sestra</TD></TR>
<TR><TD>2915</TD><TD>99999</TD><TD>(adjective)-er [aj] 1(1)w</TD><TD>(modified adjective)-ji (typical)</TD></TR>
<TR><TD>2919</TD><TD>99999</TD><TD>(noun)-wear [n] 2w</TD><TD>(noun)-ka odjeća</TD></TR>
<TR><TD>2917</TD><TD>99999</TD><TD>(noun)-'s, of (noun) (owned by; belonging to; associated with) [aj] (5)w</TD><TD>(use genitive case of noun)</TD></TR>
<TR><TD>12</TD><TD>9</TD><TD>of* (containing the measured quantity: "two liters of water") [prep] (6)w</TD><TD>(use the genitive case of noun)</TD></TR>
<TR><TD>1118</TD><TD>2063</TD><TD>football (American or tackle f~) [n] 2w</TD><TD>Amerikanac nogomet</TD></TR>
<TR><TD>1267</TD><TD>2477</TD><TD>whip [n]</TD><TD>Bič</TD></TR>
<TR><TD>27</TD><TD>24</TD><TD>Do you...? [v] 2w</TD><TD>Da li...?</TD></TR>
<TR><TD>869</TD><TD>1427</TD><TD>Goodbye. [ij] 2s</TD><TD>Doviđenja., Zbogom.</TD></TR>
<TR><TD>1838</TD><TD>4614</TD><TD>Lo!, Here you are! [ij]</TD><TD>Evo!</TD></TR>
<TR><TD>890</TD><TD>1461</TD><TD>Mister, Mr. [n]</TD><TD>Gospodin</TD></TR>
<TR><TD>134</TD><TD>144</TD><TD>Thank you. [ij]</TD><TD>Hvala.</TD></TR>
<TR><TD>133</TD><TD>142</TD><TD>Please.* [ij]</TD><TD>Molim.</TD></TR>
<TR><TD>260</TD><TD>318</TD><TD>Excuse me., Forgive me. [ij]</TD><TD>Oprostite.</TD></TR>
<TR><TD>2037</TD><TD>5672</TD><TD>Polish [aj]</TD><TD>Poljski</TD></TR>
<TR><TD>2159</TD><TD>6654</TD><TD>Senate** [n]</TD><TD>Senat</TD></TR>
<TR><TD>1288</TD><TD>2530</TD><TD>Turkey [n]</TD><TD>Turska</TD></TR>
<TR><TD>139</TD><TD>148</TD><TD>Help! [ij]</TD><TD>Upomoć!</TD></TR>
<TR><TD>223</TD><TD>264</TD><TD>Hello. [ij]</TD><TD>Zdravo.</TD></TR>
<TR><TD>2625</TD><TD>14304</TD><TD>spade [n]</TD><TD>ašov</TD></TR>
<TR><TD>2592</TD><TD>13177</TD><TD>alphabet [n]</TD><TD>abeceda</TD></TR>
<TR><TD>2168</TD><TD>6702</TD><TD>administration** [n]</TD><TD>administracija</TD></TR>
<TR><TD>2641</TD><TD>14883</TD><TD>administrator [n]</TD><TD>administrator</TD></TR>
<TR><TD>967</TD><TD>1643</TD><TD>address (postal co-ordinates) [n]</TD><TD>adresa</TD></TR>
<TR><TD>983</TD><TD>1682</TD><TD>airport** [n] 2s;1,2w</TD><TD>aerodrom, zračna luka</TD></TR>
<TR><TD>1414</TD><TD>2906</TD><TD>agency*, bureau [n] 2s</TD><TD>agencije, nadleštvo</TD></TR>
<TR><TD>2533</TD><TD>11918</TD><TD>aggression** [n]</TD><TD>agresija</TD></TR>
<TR><TD>52</TD><TD>48</TD><TD>if* (on condition that...; supposing that...) [cj]</TD><TD>ako</TD></TR>
<TR><TD>2720</TD><TD>18788</TD><TD>accord [n]</TD><TD>akord</TD></TR>
<TR><TD>2751</TD><TD>21077</TD><TD>activist** [n]</TD><TD>aktivist</TD></TR>
<TR><TD>1910</TD><TD>5008</TD><TD>active [aj]</TD><TD>aktivnih</TD></TR>
<TR><TD>1665</TD><TD>3907</TD><TD>activity, bustle, ado [n] 2s</TD><TD>aktivnost, užurbanost</TD></TR>
<TR><TD>2881</TD><TD>33754</TD><TD>audible [aj]</TD><TD>akustički</TD></TR>
<TR><TD>1459</TD><TD>3068</TD><TD>tool*, utensil, implement [n] 2s</TD><TD>alat, posuđe</TD></TR>
<TR><TD>1990</TD><TD>5423</TD><TD>album** [n]</TD><TD>album</TD></TR>
<TR><TD>36</TD><TD>33</TD><TD>but*, however*, although* [cj] 4s</TD><TD>ali, međutim, iako, premda</TD></TR>
<TR><TD>2920</TD><TD>99999</TD><TD>alkaline [aj]</TD><TD>alkalna</TD></TR>
<TR><TD>1487</TD><TD>3159</TD><TD>alcohol* [n]</TD><TD>alkohola</TD></TR>
<TR><TD>607</TD><TD>866</TD><TD>angel, fairy (supernatural flying humanoid) [n] 2s</TD><TD>anđeo, vila</TD></TR>
<TR><TD>2821</TD><TD>25984</TD><TD>annul [v]</TD><TD>anulirati</TD></TR>
<TR><TD>2807</TD><TD>24277</TD><TD>apparatus [v]</TD><TD>aparati</TD></TR>
<TR><TD>1756</TD><TD>4265</TD><TD>appeal** [v]</TD><TD>apelirati</TD></TR>
<TR><TD>2346</TD><TD>8360</TD><TD>utter [aj]</TD><TD>apsolutan</TD></TR>
<TR><TD>2490</TD><TD>10937</TD><TD>absorb [v]</TD><TD>apsorbirati</TD></TR>
<TR><TD>1686</TD><TD>3990</TD><TD>arrangement [n]</TD><TD>aranžman</TD></TR>
<TR><TD>2698</TD><TD>17635</TD><TD>arbitration [n]</TD><TD>arbitraža</TD></TR>
<TR><TD>1293</TD><TD>2557</TD><TD>argument [n]</TD><TD>argument</TD></TR>
<TR><TD>2869</TD><TD>32002</TD><TD>archeology** [n]</TD><TD>arheologija</TD></TR>
<TR><TD>2543</TD><TD>12046</TD><TD>astronaut** [n]</TD><TD>astronaut</TD></TR>
<TR><TD>2652</TD><TD>15361</TD><TD>astronomy** [n]</TD><TD>astronomija</TD></TR>
<TR><TD>2867</TD><TD>31986</TD><TD>athletics (games involving physical skill), sports [n]</TD><TD>atletika</TD></TR>
<TR><TD>2109</TD><TD>6291</TD><TD>atmosphere** [n]</TD><TD>atmosfera</TD></TR>
<TR><TD>2591</TD><TD>13174</TD><TD>atom [n]</TD><TD>atoma</TD></TR>
<TR><TD>1969</TD><TD>5314</TD><TD>attraction [n]</TD><TD>atrakcija</TD></TR>
<TR><TD>881</TD><TD>1451</TD><TD>bus* [n]</TD><TD>autobus</TD></TR>
<TR><TD>2305</TD><TD>8019</TD><TD>automatic [aj]</TD><TD>automatsko</TD></TR>
<TR><TD>268</TD><TD>324</TD><TD>car*, automobile* (wheeled motor vehicle) [n] 2s</TD><TD>automobil, auto</TD></TR>
<TR><TD>1509</TD><TD>3252</TD><TD>authority (the right or power to command) [n]</TD><TD>autoritet</TD></TR>
<TR><TD>548</TD><TD>769</TD><TD>air force** [n] 3s</TD><TD>avijacija, zrakoplovstvo, vazduhoplovstvo</TD></TR>
<TR><TD>1963</TD><TD>5296</TD><TD>airplane*, aircraft [n] 2s</TD><TD>avion, zrakoplov</TD></TR>
<TR><TD>1567</TD><TD>3494</TD><TD>cooper [n]</TD><TD>bačvar</TD></TR>
<TR><TD>504</TD><TD>687</TD><TD>throw*, toss (pf/impf) [v]</TD><TD>baciti / bacati</TD></TR>
<TR><TD>1112</TD><TD>2039</TD><TD>tip (gratuity) [n]</TD><TD>bakšiš</TD></TR>
<TR><TD>1040</TD><TD>1857</TD><TD>grandmother [n]</TD><TD>baka</TD></TR>
<TR><TD>2370</TD><TD>8628</TD><TD>copper [n]</TD><TD>bakreni</TD></TR>
<TR><TD>1568</TD><TD>3501</TD><TD>balance*, equilibrium [n] 2s</TD><TD>balans, ravnoteža</TD></TR>
<TR><TD>2041</TD><TD>5682</TD><TD>balloon* [n]</TD><TD>balon</TD></TR>
<TR><TD>2776</TD><TD>22143</TD><TD>bamboo (plant or stem of genera Bambusa, Arundinaria, Dendrocalamus) [n]</TD><TD>bambus</TD></TR>
<TR><TD>1942</TD><TD>5182</TD><TD>banana (plant or fruit of genus Musa) [n]</TD><TD>banani</TD></TR>
<TR><TD>844</TD><TD>1383</TD><TD>bank* (monetary institution) [n]</TD><TD>banka</TD></TR>
<TR><TD>65</TD><TD>59</TD><TD>at least, not less than (>=) [av] 2s</TD><TD>barem, najmanje</TD></TR>
<TR><TD>2504</TD><TD>11139</TD><TD>barrier*, obstacle [n] 2s</TD><TD>barijera, prepreka</TD></TR>
<TR><TD>1168</TD><TD>2209</TD><TD>base*, node, station (point from which things go or are done) [n]</TD><TD>baza</TD></TR>
<TR><TD>203</TD><TD>231</TD><TD>baby*, infant [n] 2s</TD><TD>beba, dijete</TD></TR>
<TR><TD>1317</TD><TD>2626</TD><TD>baseball [n]</TD><TD>bejzbol</TD></TR>
<TR><TD>913</TD><TD>1524</TD><TD>band (group) [n] 2s</TD><TD>bend, grupa</TD></TR>
<TR><TD>416</TD><TD>523</TD><TD>free* (gratis) [aj]</TD><TD>besplatan</TD></TR>
<TR><TD>2907</TD><TD>39505</TD><TD>neuter (neither male nor female) [aj]</TD><TD>bespolan</TD></TR>
<TR><TD>2146</TD><TD>6587</TD><TD>concrete [n]</TD><TD>beton</TD></TR>
<TR><TD>272</TD><TD>327</TD><TD>without*, with no ..., lacking [prep]</TD><TD>bez</TD></TR>
<TR><TD>1964</TD><TD>5306</TD><TD>harmless [aj]</TD><TD>bezopasan</TD></TR>
<TR><TD>2699</TD><TD>17638</TD><TD>anarchy** [n]</TD><TD>bezvlađe</TD></TR>
<TR><TD>2237</TD><TD>7327</TD><TD>bicycle [n]</TD><TD>bicikl</TD></TR>
<TR><TD>959</TD><TD>1634</TD><TD>escape* [n] 2s</TD><TD>bijeg, bekstvo</TD></TR>
<TR><TD>507</TD><TD>691</TD><TD>white* [aj]</TD><TD>bijel</TD></TR>
<TR><TD>1359</TD><TD>2745</TD><TD>plant* (a vegetable life-form) [n]</TD><TD>bilijka</TD></TR>
<TR><TD>939</TD><TD>1583</TD><TD>pool, billiards [n]</TD><TD>biljar</TD></TR>
<TR><TD>834</TD><TD>1367</TD><TD>note*, annotation [n]</TD><TD>bilješka</TD></TR>
<TR><TD>1935</TD><TD>5123</TD><TD>register** [v]</TD><TD>bilježiti</TD></TR>
<TR><TD>663</TD><TD>984</TD><TD>whether* [cj] 2w</TD><TD>bilo da</TD></TR>
<TR><TD>129</TD><TD>138</TD><TD>any* (no particular one of) [aj] 2w</TD><TD>bilo koji</TD></TR>
<TR><TD>2193</TD><TD>6909</TD><TD>biology** [n]</TD><TD>biologija</TD></TR>
<TR><TD>1725</TD><TD>4140</TD><TD>dial (circle marked with numbers or symbols) [n]</TD><TD>biranje</TD></TR>
<TR><TD>2602</TD><TD>13480</TD><TD>elect* (select by voting) [v]</TD><TD>birati</TD></TR>
<TR><TD>2070</TD><TD>5921</TD><TD>pearl [n]</TD><TD>biser</TD></TR>
<TR><TD>78</TD><TD>72</TD><TD>would / Would you like...? [v-pp] 1/4w</TD><TD>biste / Da li biste željeli...?</TD></TR>
<TR><TD>28</TD><TD>25</TD><TD>be* (intransitive predicative copula) [v]</TD><TD>biti</TD></TR>
<TR><TD>2083</TD><TD>6014</TD><TD>declare** [v] 3w</TD><TD>biti pristan uz</TD></TR>
<TR><TD>1207</TD><TD>2297</TD><TD>battle** [n]</TD><TD>bitka</TD></TR>
<TR><TD>293</TD><TD>355</TD><TD>business*, commerce [n]</TD><TD>biznis</TD></TR>
<TR><TD>1374</TD><TD>2792</TD><TD>holiday* [n]</TD><TD>blagdan</TD></TR>
<TR><TD>1764</TD><TD>4294</TD><TD>treasure** [n]</TD><TD>blago</TD></TR>
<TR><TD>1408</TD><TD>2888</TD><TD>bless (wish good upon) [v]</TD><TD>blagosloviti</TD></TR>
<TR><TD>1347</TD><TD>2711</TD><TD>flash (camera) [n]</TD><TD>blic</TD></TR>
<TR><TD>648</TD><TD>958</TD><TD>near*, close* to [prep]</TD><TD>blizak</TD></TR>
<TR><TD>647</TD><TD>958</TD><TD>near* (at or to a little distance) [aj,av]</TD><TD>blizu</TD></TR>
<TR><TD>1122</TD><TD>2080</TD><TD>block* (solid flat-surfaced mass of material) [n]</TD><TD>blok</TD></TR>
<TR><TD>1535</TD><TD>3368</TD><TD>scratch [n]</TD><TD>blok</TD></TR>
<TR><TD>1123</TD><TD>2080</TD><TD>block* [v]</TD><TD>blokirati</TD></TR>
<TR><TD>2512</TD><TD>11557</TD><TD>berry (small pulpy fruit) [n]</TD><TD>bobica</TD></TR>
<TR><TD>2846</TD><TD>29437</TD><TD>spool, reel (cylinder onto which something is wound) [n] 2s</TD><TD>bobina, špula</TD></TR>
<TR><TD>937</TD><TD>1580</TD><TD>bottle* [n] 2s</TD><TD>boca, flaša</TD></TR>
<TR><TD>144</TD><TD>152</TD><TD>god*, diety [n] 2s</TD><TD>bog, božanstvo</TD></TR>
<TR><TD>783</TD><TD>1225</TD><TD>rich*, wealthy [aj]</TD><TD>bogat</TD></TR>
<TR><TD>2293</TD><TD>7937</TD><TD>wealth** [n]</TD><TD>bogatstvo</TD></TR>
<TR><TD>1047</TD><TD>1875</TD><TD>color* [n]</TD><TD>boja</TD></TR>
<TR><TD>828</TD><TD>1342</TD><TD>fear* (be afraid of) [v] 2s;2,1w</TD><TD>bojati se , strahovati</TD></TR>
<TR><TD>1091</TD><TD>1990</TD><TD>paint* [n]</TD><TD>bojite</TD></TR>
<TR><TD>2697</TD><TD>17618</TD><TD>boycott** [v]</TD><TD>bojkotovati</TD></TR>
<TR><TD>1600</TD><TD>3617</TD><TD>hip [n]</TD><TD>bok</TD></TR>
<TR><TD>503</TD><TD>684</TD><TD>pain* [n]</TD><TD>bol</TD></TR>
<TR><TD>1309</TD><TD>2604</TD><TD>painful [aj]</TD><TD>bolan</TD></TR>
<TR><TD>1270</TD><TD>2486</TD><TD>disease*, illness, sickness* [n]</TD><TD>bolest</TD></TR>
<TR><TD>429</TD><TD>541</TD><TD>sick* [aj]</TD><TD>bolestan</TD></TR>
<TR><TD>1348</TD><TD>2714</TD><TD>ill [aj]</TD><TD>bolestan</TD></TR>
<TR><TD>157</TD><TD>166</TD><TD>better* [av]</TD><TD>bolje</TD></TR>
<TR><TD>375</TD><TD>467</TD><TD>hospital* [n]</TD><TD>bolnica</TD></TR>
<TR><TD>1044</TD><TD>1871</TD><TD>bomb* [n]</TD><TD>bomba</TD></TR>
<TR><TD>2551</TD><TD>12296</TD><TD>wrinkle, crease [n] 2s</TD><TD>borica, mrštiti se</TD></TR>
<TR><TD>423</TD><TD>535</TD><TD>fight*, combat [v]</TD><TD>boriti se</TD></TR>
<TR><TD>1298</TD><TD>2572</TD><TD>pine (coniferous tree of genus Pinus) [n]</TD><TD>borova</TD></TR>
<TR><TD>2539</TD><TD>12006</TD><TD>flour (grain-powder) [n]</TD><TD>brašno</TD></TR>
<TR><TD>1806</TD><TD>4477</TD><TD>chin [n]</TD><TD>brada</TD></TR>
<TR><TD>1989</TD><TD>5422</TD><TD>beard [n]</TD><TD>bradi</TD></TR>
<TR><TD>482</TD><TD>634</TD><TD>marriage (spousal relationship) [n]</TD><TD>brak</TD></TR>
<TR><TD>2394</TD><TD>9108</TD><TD>dam** [n]</TD><TD>brana</TD></TR>
<TR><TD>1308</TD><TD>2602</TD><TD>defend* [v]</TD><TD>braniti</TD></TR>
<TR><TD>334</TD><TD>411</TD><TD>brother* [n]</TD><TD>brat</TD></TR>
<TR><TD>2712</TD><TD>18494</TD><TD>furrow, rut, groove [n]</TD><TD>brazda</TD></TR>
<TR><TD>1276</TD><TD>2495</TD><TD>hill* (smaller than a mountain) [n]</TD><TD>brežuljak</TD></TR>
<TR><TD>281</TD><TD>346</TD><TD>worry*, anxiety [n] 2s</TD><TD>briga, tjeskoba</TD></TR>
<TR><TD>2267</TD><TD>7677</TD><TD>razor [n]</TD><TD>brijač</TD></TR>
<TR><TD>1907</TD><TD>4977</TD><TD>shave [v] 2w</TD><TD>brijati se</TD></TR>
<TR><TD>280</TD><TD>346</TD><TD>worry* [v]</TD><TD>brinuti se</TD></TR>
<TR><TD>1615</TD><TD>3672</TD><TD>wipe [v]</TD><TD>brisati</TD></TR>
<TR><TD>930</TD><TD>1559</TD><TD>ship* [n]</TD><TD>brod</TD></TR>
<TR><TD>730</TD><TD>1125</TD><TD>boat* [n]</TD><TD>brod</TD></TR>
<TR><TD>428</TD><TD>539</TD><TD>number*, numeral (a word or symbol indicating quantity) [n]</TD><TD>broj</TD></TR>
<TR><TD>616</TD><TD>893</TD><TD>count*, enumerate (pf/impf) [v]</TD><TD>brojiti / brojati</TD></TR>
<TR><TD>680</TD><TD>1013</TD><TD>quick* [aj]</TD><TD>brz</TD></TR>
<TR><TD>508</TD><TD>692</TD><TD>fast* [aj]</TD><TD>brz</TD></TR>
<TR><TD>1089</TD><TD>1986</TD><TD>speed*, velocity (degree of fastness or slowness) [n]</TD><TD>brzina</TD></TR>
<TR><TD>991</TD><TD>1700</TD><TD>quickly, rapidly, swiftly (with much speed) [av] 2s</TD><TD>brzo, hitro</TD></TR>
<TR><TD>1781</TD><TD>4366</TD><TD>drill [n]</TD><TD>bušilica</TD></TR>
<TR><TD>2216</TD><TD>7172</TD><TD>drum (hollow musical instrument beaten with sticks or hands) [n]</TD><TD>bubanj</TD></TR>
<TR><TD>1879</TD><TD>4851</TD><TD>kidney [n]</TD><TD>bubreg</TD></TR>
<TR><TD>1131</TD><TD>2120</TD><TD>awake* [aj]</TD><TD>budan</TD></TR>
<TR><TD>499</TD><TD>670</TD><TD>future* (the f~) [n]</TD><TD>budućnost</TD></TR>
<TR><TD>1189</TD><TD>2247</TD><TD>noise* (confused or randomized sound or stimuli) [n]</TD><TD>buka</TD></TR>
<TR><TD>2752</TD><TD>21219</TD><TD>revolt* [n]</TD><TD>buna</TD></TR>
<TR><TD>2316</TD><TD>8111</TD><TD>customs* [n]</TD><TD>carinarnica</TD></TR>
<TR><TD>1757</TD><TD>4269</TD><TD>empire [n]</TD><TD>carstvo</TD></TR>
<TR><TD>2330</TD><TD>8206</TD><TD>cement [n]</TD><TD>cement</TD></TR>
<TR><TD>1029</TD><TD>1813</TD><TD>center* [n]</TD><TD>centar</TD></TR>
<TR><TD>1635</TD><TD>3755</TD><TD>cigarette [n]</TD><TD>cigareta</TD></TR>
<TR><TD>728</TD><TD>1122</TD><TD>charge* (money) [n]</TD><TD>cijena</TD></TR>
<TR><TD>868</TD><TD>1426</TD><TD>price*, cost* [n] 2s</TD><TD>cijena, trošak</TD></TR>
<TR><TD>1927</TD><TD>5074</TD><TD>tube** [n]</TD><TD>cijev</TD></TR>
<TR><TD>2021</TD><TD>5593</TD><TD>barrel, cask [n] 2s</TD><TD>cijev, bačva</TD></TR>
<TR><TD>1681</TD><TD>3975</TD><TD>pipe* (a hard tube for transporting liquid) [n]</TD><TD>cijevi</TD></TR>
<TR><TD>2101</TD><TD>6146</TD><TD>cycle (one complete performance of a periodic process) [n]</TD><TD>ciklus</TD></TR>
<TR><TD>2684</TD><TD>16940</TD><TD>cylinder [n]</TD><TD>cilindra</TD></TR>
<TR><TD>1363</TD><TD>2751</TD><TD>target* [n]</TD><TD>cilj</TD></TR>
<TR><TD>1540</TD><TD>3390</TD><TD>goal** [n]</TD><TD>cilj</TD></TR>
<TR><TD>1959</TD><TD>5270</TD><TD>aim* (to point or direct X toward Y) [v]</TD><TD>ciljati</TD></TR>
<TR><TD>2760</TD><TD>21629</TD><TD>zinc [n]</TD><TD>cink</TD></TR>
<TR><TD>214</TD><TD>251</TD><TD>whole*, entire, complete [aj] 2s</TD><TD>cio, potpun</TD></TR>
<TR><TD>1247</TD><TD>2407</TD><TD>shoe* [n]</TD><TD>cipelama</TD></TR>
<TR><TD>1754</TD><TD>4262</TD><TD>quote, cite [v]</TD><TD>citirati</TD></TR>
<TR><TD>2162</TD><TD>6667</TD><TD>civilian** [aj]</TD><TD>civil</TD></TR>
<TR><TD>2153</TD><TD>6617</TD><TD>civilization [n]</TD><TD>civilizaciji</TD></TR>
<TR><TD>2498</TD><TD>11042</TD><TD>vaccine** [n]</TD><TD>cjepivo</TD></TR>
<TR><TD>2577</TD><TD>12874</TD><TD>tile [n]</TD><TD>crijep</TD></TR>
<TR><TD>1242</TD><TD>2402</TD><TD>guts [n] 2s</TD><TD>crijeva, utroba</TD></TR>
<TR><TD>2670</TD><TD>16275</TD><TD>intestines, gut(s), viscera [n] 2s</TD><TD>crijevima, crijevo</TD></TR>
<TR><TD>1566</TD><TD>3493</TD><TD>gut [n]</TD><TD>crijevo</TD></TR>
<TR><TD>836</TD><TD>1369</TD><TD>church (building or institution of public worship) [n]</TD><TD>crkva</TD></TR>
<TR><TD>537</TD><TD>751</TD><TD>black* [aj]</TD><TD>crn</TD></TR>
<TR><TD>410</TD><TD>518</TD><TD>line* (series of contiguous points) [n] 2s</TD><TD>crta, linija</TD></TR>
<TR><TD>2035</TD><TD>5668</TD><TD>worm [n]</TD><TD>crv</TD></TR>
<TR><TD>561</TD><TD>796</TD><TD>red* [aj]</TD><TD>crven</TD></TR>
<TR><TD>660</TD><TD>982</TD><TD>girlfriend [n] 2s</TD><TD>cura, djevojka</TD></TR>
<TR><TD>2686</TD><TD>17099</TD><TD>runny, thin (of little viscosity) [aj] 2s</TD><TD>curi, tanki</TD></TR>
<TR><TD>1774</TD><TD>4330</TD><TD>leak** [v]</TD><TD>curiti</TD></TR>
<TR><TD>1537</TD><TD>3371</TD><TD>flower* [n]</TD><TD>cvijet</TD></TR>
<TR><TD>1643</TD><TD>3786</TD><TD>jam [n]</TD><TD>džem</TD></TR>
<TR><TD>1220</TD><TD>2336</TD><TD>pocket [n]</TD><TD>džep</TD></TR>
<TR><TD>89</TD><TD>89</TD><TD>yes* [av]</TD><TD>da</TD></TR>
<TR><TD>9</TD><TD>7</TD><TD>that* (e.g. "I know that you are right") [cj]</TD><TD>da</TD></TR>
<TR><TD>907</TD><TD>1499</TD><TD>breath [n]</TD><TD>dah</TD></TR>
<TR><TD>368</TD><TD>458</TD><TD>far* (at or to a great distance) [aj,av] 2s</TD><TD>dalek, udaljen</TD></TR>
<TR><TD>2856</TD><TD>30569</TD><TD>widespread [aj]</TD><TD>dalekosezna</TD></TR>
<TR><TD>161</TD><TD>170</TD><TD>away* (from this or that place) [av]</TD><TD>dalje</TD></TR>
<TR><TD>174</TD><TD>183</TD><TD>day* (24-hour period) [n]</TD><TD>dan</TD></TR>
<TR><TD>175</TD><TD>183</TD><TD>day* (daytime -- as opposed to night), diurnal period [n]</TD><TD>dan</TD></TR>
<TR><TD>267</TD><TD>323</TD><TD>today* [av]</TD><TD>danas</TD></TR>
<TR><TD>651</TD><TD>964</TD><TD>gift* [n]</TD><TD>dar</TD></TR>
<TR><TD>136</TD><TD>145</TD><TD>give* [v]</TD><TD>dati</TD></TR>
<TR><TD>409</TD><TD>517</TD><TD>date* (tree or fruit of sp. Phoenix dactylifera) [n]</TD><TD>datulja</TD></TR>
<TR><TD>408</TD><TD>517</TD><TD>date* (coordinates of a day given in some timekeeping system) [n]</TD><TD>datum</TD></TR>
<TR><TD>180</TD><TD>192</TD><TD>long ago (in the far past) [av] 2s</TD><TD>davno, odavno</TD></TR>
<TR><TD>780</TD><TD>1220</TD><TD>fat*, obese, plump [aj] 2s</TD><TD>debeo, gojazan</TD></TR>
<TR><TD>1638</TD><TD>3773</TD><TD>thick*, fat (large from one surface to the opposite surface) [aj] 2s</TD><TD>debeo, tust</TD></TR>
<TR><TD>1639</TD><TD>3773</TD><TD>thickness (of a solid object, etc.) [n]</TD><TD>debljinu</TD></TR>
<TR><TD>2224</TD><TD>7252</TD><TD>stem [n]</TD><TD>deblo</TD></TR>
<TR><TD>2622</TD><TD>14234</TD><TD>deficit** [n]</TD><TD>deficit</TD></TR>
<TR><TD>2017</TD><TD>5569</TD><TD>define** [v]</TD><TD>definirati</TD></TR>
<TR><TD>1624</TD><TD>3698</TD><TD>blanket (large piece of soft material used as a cover) [n]</TD><TD>deka</TD></TR>
<TR><TD>2786</TD><TD>22697</TD><TD>delegate** [n]</TD><TD>delegat</TD></TR>
<TR><TD>1866</TD><TD>4783</TD><TD>delicate [aj]</TD><TD>delikatan</TD></TR>
<TR><TD>2266</TD><TD>7658</TD><TD>democracy** [n]</TD><TD>demokracija</TD></TR>
<TR><TD>2375</TD><TD>8719</TD><TD>demonstrate** [v]</TD><TD>demonstrirati</TD></TR>
<TR><TD>2042</TD><TD>5692</TD><TD>depression** [n]</TD><TD>depresija</TD></TR>
<TR><TD>466</TD><TD>606</TD><TD>ten [num]</TD><TD>deset</TD></TR>
<TR><TD>2668</TD><TD>16031</TD><TD>gums (teeth) [n]</TD><TD>desni</TD></TR>
<TR><TD>44</TD><TD>40</TD><TD>right*(-hand) [aj]</TD><TD>desni</TD></TR>
<TR><TD>1432</TD><TD>2951</TD><TD>detail* [n]</TD><TD>detaljima</TD></TR>
<TR><TD>2542</TD><TD>12037</TD><TD>camel [n]</TD><TD>deva</TD></TR>
<TR><TD>734</TD><TD>1135</TD><TD>nine [num]</TD><TD>devet</TD></TR>
<TR><TD>2898</TD><TD>37783</TD><TD>diagonal, slanted [aj] 2s</TD><TD>dijagonale, zakrivljen</TD></TR>
<TR><TD>1962</TD><TD>5294</TD><TD>chart, diagram [n]</TD><TD>dijagram</TD></TR>
<TR><TD>1402</TD><TD>2865</TD><TD>diamond [n]</TD><TD>dijamant</TD></TR>
<TR><TD>623</TD><TD>904</TD><TD>share* [v]</TD><TD>dijeliti</TD></TR>
<TR><TD>274</TD><TD>334</TD><TD>deal* (cards) [v]</TD><TD>dijeliti</TD></TR>
<TR><TD>2345</TD><TD>8352</TD><TD>divide* [v]</TD><TD>dijeliti</TD></TR>
<TR><TD>398</TD><TD>497</TD><TD>child* [n]</TD><TD>dijete</TD></TR>
<TR><TD>2696</TD><TD>17576</TD><TD>dictator*, tyrant [n] 2s</TD><TD>diktator, tiranin</TD></TR>
<TR><TD>986</TD><TD>1684</TD><TD>smoke* [n]</TD><TD>dim</TD></TR>
<TR><TD>2507</TD><TD>11230</TD><TD>chimney [n]</TD><TD>dimnjak</TD></TR>
<TR><TD>284</TD><TD>348</TD><TD>part of [n] 1(+1)w</TD><TD>dio (+ genitive)</TD></TR>
<TR><TD>2746</TD><TD>20768</TD><TD>partake of [v]</TD><TD>dionici</TD></TR>
<TR><TD>2750</TD><TD>20965</TD><TD>diplomat** [n]</TD><TD>diplomat</TD></TR>
<TR><TD>1421</TD><TD>2923</TD><TD>direct*, immediate* (with no intermediaries or obstacles) [aj]</TD><TD>direktan</TD></TR>
<TR><TD>500</TD><TD>678</TD><TD>touch* (pf/impf) [v]</TD><TD>dirnuti / dirati</TD></TR>
<TR><TD>816</TD><TD>1311</TD><TD>breathe* [v]</TD><TD>disati</TD></TR>
<TR><TD>2912</TD><TD>40540</TD><TD>dissident** [n]</TD><TD>disident</TD></TR>
<TR><TD>2242</TD><TD>7358</TD><TD>disk, disc [n]</TD><TD>disk</TD></TR>
<TR><TD>2603</TD><TD>13486</TD><TD>discrimination** [n]</TD><TD>diskriminacija</TD></TR>
<TR><TD>1358</TD><TD>2743</TD><TD>discussion [n]</TD><TD>diskusija</TD></TR>
<TR><TD>2489</TD><TD>10910</TD><TD>distribution [n]</TD><TD>distribucija</TD></TR>
<TR><TD>422</TD><TD>533</TD><TD>wonderful* [aj] 2s</TD><TD>divan, krasan</TD></TR>
<TR><TD>1510</TD><TD>3256</TD><TD>admire [v] 2w</TD><TD>diviti se</TD></TR>
<TR><TD>1778</TD><TD>4352</TD><TD>division [n]</TD><TD>divizija</TD></TR>
<TR><TD>2446</TD><TD>10194</TD><TD>fierce** [aj]</TD><TD>divlji</TD></TR>
<TR><TD>911</TD><TD>1516</TD><TD>wild*, feral, untamed [aj]</TD><TD>divlji</TD></TR>
<TR><TD>1525</TD><TD>3333</TD><TD>design* [n]</TD><TD>dizajn</TD></TR>
<TR><TD>1187</TD><TD>2245</TD><TD>elevator {British: lift} [n]</TD><TD>dizalo</TD></TR>
<TR><TD>253</TD><TD>311</TD><TD>boy* [n]</TD><TD>dječak</TD></TR>
<TR><TD>441</TD><TD>566</TD><TD>children** [n]</TD><TD>djeca</TD></TR>
<TR><TD>1034</TD><TD>1831</TD><TD>grandfather [n]</TD><TD>djed</TD></TR>
<TR><TD>354</TD><TD>437</TD><TD>bit (small amount, particle) [n]</TD><TD>djelić</TD></TR>
<TR><TD>2896</TD><TD>37757</TD><TD>dividend [n]</TD><TD>djeljenik</TD></TR>
<TR><TD>2864</TD><TD>31679</TD><TD>divisible [aj]</TD><TD>djeljiv</TD></TR>
<TR><TD>2337</TD><TD>8273</TD><TD>partial [aj]</TD><TD>djelomična</TD></TR>
<TR><TD>1775</TD><TD>4338</TD><TD>operate** [v]</TD><TD>djelovati</TD></TR>
<TR><TD>237</TD><TD>283</TD><TD>girl* [n]</TD><TD>djevojka</TD></TR>
<TR><TD>496</TD><TD>665</TD><TD>hair* (a strand of fibrous material growing from the body) [n]</TD><TD>dlaka</TD></TR>
<TR><TD>1952</TD><TD>5238</TD><TD>palm (of hand) [n]</TD><TD>dlan</TD></TR>
<TR><TD>440</TD><TD>565</TD><TD>living [aj]</TD><TD>dnevni</TD></TR>
<TR><TD>833</TD><TD>1366</TD><TD>bottom* [n]</TD><TD>dno</TD></TR>
<TR><TD>73</TD><TD>67</TD><TD>come*, arrive* (at indicated place) (pf/impf) [v] 2s</TD><TD>doći, stići / dolaziti, stizati</TD></TR>
<TR><TD>6</TD><TD>3</TD><TD>to* (see also "towards") [prep] 2s;1,1(5)w</TD><TD>do, u (or use the dative case)</TD></TR>
<TR><TD>736</TD><TD>1139</TD><TD>age* (degree of oldness or youngness) [n]</TD><TD>dob</TD></TR>
<TR><TD>74</TD><TD>68</TD><TD>good* [aj]</TD><TD>dobar</TD></TR>
<TR><TD>1844</TD><TD>4658</TD><TD>profit*, gain* [n]</TD><TD>dobitak</TD></TR>
<TR><TD>39</TD><TD>35</TD><TD>well* [av]</TD><TD>dobro</TD></TR>
<TR><TD>2076</TD><TD>5954</TD><TD>addition [n]</TD><TD>dodatak</TD></TR>
<TR><TD>1026</TD><TD>1808</TD><TD>add*, append, join so as to cause an increase [v]</TD><TD>dodati</TD></TR>
<TR><TD>1204</TD><TD>2290</TD><TD>event* [n]</TD><TD>događaj</TD></TR>
<TR><TD>251</TD><TD>308</TD><TD>happen*, occur (pf/impf) [v] 2/2w</TD><TD>dogoditi se / dogašati se</TD></TR>
<TR><TD>2172</TD><TD>6746</TD><TD>income [n]</TD><TD>dohodak</TD></TR>
<TR><TD>271</TD><TD>326</TD><TD>until* [cj]</TD><TD>dok</TD></TR>
<TR><TD>255</TD><TD>313</TD><TD>while* [cj]</TD><TD>dok</TD></TR>
<TR><TD>811</TD><TD>1303</TD><TD>proof, evidence* [n]</TD><TD>dokaz</TD></TR>
<TR><TD>584</TD><TD>831</TD><TD>prove** (pf/impf) [v]</TD><TD>dokazati / dokazivati</TD></TR>
<TR><TD>1265</TD><TD>2474</TD><TD>argue** [v]</TD><TD>dokazivati</TD></TR>
<TR><TD>367</TD><TD>456</TD><TD>doctor* [n] 2s</TD><TD>doktor, liječnik</TD></TR>
<TR><TD>1855</TD><TD>4734</TD><TD>document* [n]</TD><TD>dokument</TD></TR>
<TR><TD>1049</TD><TD>1880</TD><TD>dollar** [n]</TD><TD>dolar</TD></TR>
<TR><TD>1138</TD><TD>2136</TD><TD>valley* [n]</TD><TD>dolina</TD></TR>
<TR><TD>122</TD><TD>127</TD><TD>down* [av]</TD><TD>dolje</TD></TR>
<TR><TD>170</TD><TD>179</TD><TD>home* [n]</TD><TD>dom</TD></TR>
<TR><TD>1988</TD><TD>5410</TD><TD>somewhat [av]</TD><TD>donekle</TD></TR>
<TR><TD>2400</TD><TD>9196</TD><TD>retrieve, fetch (go to X and bring it back) [v]</TD><TD>donijeti</TD></TR>
<TR><TD>315</TD><TD>389</TD><TD>bring* (cause something to come along with one toward a place) (pf/impf) [v]</TD><TD>donijeti / donositi</TD></TR>
<TR><TD>2280</TD><TD>7778</TD><TD>donate** [v]</TD><TD>donirati</TD></TR>
<TR><TD>50</TD><TD>46</TD><TD>like*, enjoy* (derive pleasure from) [v] 2s;2,2w</TD><TD>dopasti se, svidjeti se</TD></TR>
<TR><TD>1197</TD><TD>2272</TD><TD>permission [n]</TD><TD>dopuštenje</TD></TR>
<TR><TD>118</TD><TD>123</TD><TD>let* [v] 2s</TD><TD>dopustiti, dozvoliti</TD></TR>
<TR><TD>2051</TD><TD>5742</TD><TD>permit*, allow, let [v] 2s</TD><TD>dopustiti, dozvoliti</TD></TR>
<TR><TD>1823</TD><TD>4539</TD><TD>dull, blunt (of little sharpness) [aj] 2s</TD><TD>dosadno, tup</TD></TR>
<TR><TD>1082</TD><TD>1969</TD><TD>boring, tedious [aj] 2s</TD><TD>dosadno, zamorno</TD></TR>
<TR><TD>860</TD><TD>1409</TD><TD>reach*, extend* as far as (pf/impf) [v]</TD><TD>dosegnuti / dosezati</TD></TR>
<TR><TD>2317</TD><TD>8115</TD><TD>consistent [aj]</TD><TD>dosljedan</TD></TR>
<TR><TD>209</TD><TD>243</TD><TD>enough*, sufficiently [av] 2s</TD><TD>dosta, dovoljno</TD></TR>
<TR><TD>2453</TD><TD>10303</TD><TD>achievement [n]</TD><TD>dostignuće</TD></TR>
<TR><TD>1652</TD><TD>3821</TD><TD>worthy [aj]</TD><TD>dostojan</TD></TR>
<TR><TD>1411</TD><TD>2898</TD><TD>grant [n]</TD><TD>dotacija</TD></TR>
<TR><TD>2377</TD><TD>8737</TD><TD>sufficient [aj]</TD><TD>dovoljan</TD></TR>
<TR><TD>2050</TD><TD>5742</TD><TD>permit* [n]</TD><TD>dozvole</TD></TR>
<TR><TD>273</TD><TD>330</TD><TD>hold*, grasp [v]</TD><TD>držati</TD></TR>
<TR><TD>461</TD><TD>599</TD><TD>dear, precious, cherished [aj] 2s</TD><TD>drag, mio</TD></TR>
<TR><TD>2462</TD><TD>10357</TD><TD>jewel*, gem [n] 2s;2,1w</TD><TD>dragi kamen, dragulj</TD></TR>
<TR><TD>795</TD><TD>1266</TD><TD>drug* [n]</TD><TD>droga</TD></TR>
<TR><TD>1259</TD><TD>2438</TD><TD>society [n]</TD><TD>društva</TD></TR>
<TR><TD>477</TD><TD>624</TD><TD>company*, presence of others [n]</TD><TD>društvo</TD></TR>
<TR><TD>283</TD><TD>347</TD><TD>second* [num]</TD><TD>drugi</TD></TR>
<TR><TD>164</TD><TD>173</TD><TD>other*, another* [aj,pn] 2s</TD><TD>drugi, ostali</TD></TR>
<TR><TD>1385</TD><TD>2826</TD><TD>wood* (the substance) [n]</TD><TD>drvo</TD></TR>
<TR><TD>847</TD><TD>1389</TD><TD>tree* [n] 2s</TD><TD>drvo, stablo</TD></TR>
<TR><TD>704</TD><TD>1065</TD><TD>soul, spirit* (believed to outlive the body) [n] 2s</TD><TD>duša, duh</TD></TR>
<TR><TD>2790</TD><TD>23105</TD><TD>nitrogen [n]</TD><TD>dušik</TD></TR>
<TR><TD>2092</TD><TD>6053</TD><TD>length (distance from one end to the other) [n]</TD><TD>dužina</TD></TR>
<TR><TD>1014</TD><TD>1760</TD><TD>duty* [n]</TD><TD>dužnost</TD></TR>
<TR><TD>2206</TD><TD>7079</TD><TD>depth (distance from ground or baseline down to bottom) [n]</TD><TD>dubina</TD></TR>
<TR><TD>691</TD><TD>1038</TD><TD>deep*, profound (of much depth) [aj]</TD><TD>dubok</TD></TR>
<TR><TD>181</TD><TD>192</TD><TD>long* (of much duration) [aj]</TD><TD>dug</TD></TR>
<TR><TD>182</TD><TD>192</TD><TD>long* (of much length) [aj]</TD><TD>dug</TD></TR>
<TR><TD>1596</TD><TD>3607</TD><TD>debt*, obligation to pay [n] 2s;1,3w</TD><TD>dug, obveza za plaćanje</TD></TR>
<TR><TD>2210</TD><TD>7129</TD><TD>rainbow [n]</TD><TD>duga</TD></TR>
<TR><TD>2526</TD><TD>11759</TD><TD>knob [n]</TD><TD>dugme</TD></TR>
<TR><TD>1313</TD><TD>2616</TD><TD>button (on a shirt etc.) [n]</TD><TD>dugme</TD></TR>
<TR><TD>654</TD><TD>969</TD><TD>owe** [v]</TD><TD>dugovati</TD></TR>
<TR><TD>1333</TD><TD>2680</TD><TD>ghost (manifestation of dead person's soul) [n]</TD><TD>duh</TD></TR>
<TR><TD>2194</TD><TD>6915</TD><TD>tobacco (plant or leaves of sp. Nicotiana tabacum) [n]</TD><TD>duhan</TD></TR>
<TR><TD>141</TD><TD>149</TD><TD>two (m/f/n) [num]</TD><TD>dva / dvije / dvoje</TD></TR>
<TR><TD>520</TD><TD>712</TD><TD>twenty [num]</TD><TD>dvadeset</TD></TR>
<TR><TD>950</TD><TD>1606</TD><TD>twelve [num]</TD><TD>dvanaest</TD></TR>
<TR><TD>1286</TD><TD>2528</TD><TD>effect* [n]</TD><TD>efekt</TD></TR>
<TR><TD>2637</TD><TD>14825</TD><TD>eclipse [n]</TD><TD>eklipsa</TD></TR>
<TR><TD>2852</TD><TD>30161</TD><TD>ecology** [n]</TD><TD>ekologija</TD></TR>
<TR><TD>2184</TD><TD>6831</TD><TD>economy** [n]</TD><TD>ekonomija</TD></TR>
<TR><TD>2613</TD><TD>13797</TD><TD>expansion [n]</TD><TD>ekspanzija</TD></TR>
<TR><TD>1797</TD><TD>4407</TD><TD>experiment* [n]</TD><TD>eksperiment</TD></TR>
<TR><TD>1330</TD><TD>2673</TD><TD>expert* [n]</TD><TD>ekspert</TD></TR>
<TR><TD>1848</TD><TD>4688</TD><TD>explode* [v]</TD><TD>eksplodirati</TD></TR>
<TR><TD>1796</TD><TD>4403</TD><TD>burst* [v]</TD><TD>eksplodirati</TD></TR>
<TR><TD>2407</TD><TD>9288</TD><TD>explosive [n]</TD><TD>eksplozivnom</TD></TR>
<TR><TD>797</TD><TD>1271</TD><TD>extra** [aj]</TD><TD>ekstra</TD></TR>
<TR><TD>2851</TD><TD>30123</TD><TD>extremist** [n]</TD><TD>ekstremist</TD></TR>
<TR><TD>2813</TD><TD>24875</TD><TD>elastic (able to regain shape or size after deformation) [aj]</TD><TD>elastična</TD></TR>
<TR><TD>1888</TD><TD>4877</TD><TD>electric [aj]</TD><TD>električni</TD></TR>
<TR><TD>2053</TD><TD>5769</TD><TD>electrical [aj]</TD><TD>elektro</TD></TR>
<TR><TD>2093</TD><TD>6056</TD><TD>element (substance of irreducible simplicity) [n]</TD><TD>element</TD></TR>
<TR><TD>2055</TD><TD>5773</TD><TD>broadcast** [v]</TD><TD>emitirati</TD></TR>
<TR><TD>2007</TD><TD>5514</TD><TD>emotion** [n]</TD><TD>emocija</TD></TR>
<TR><TD>1076</TD><TD>1957</TD><TD>energy* [n]</TD><TD>energija</TD></TR>
<TR><TD>2144</TD><TD>6570</TD><TD>enthusiasm, zeal [n] 2s</TD><TD>entuzijazmu, ljubomora</TD></TR>
<TR><TD>2808</TD><TD>24299</TD><TD>aesthetic [aj]</TD><TD>estetska</TD></TR>
<TR><TD>2313</TD><TD>8106</TD><TD>ethical [aj]</TD><TD>etički</TD></TR>
<TR><TD>2010</TD><TD>5536</TD><TD>ethics [n]</TD><TD>etika</TD></TR>
<TR><TD>2661</TD><TD>15552</TD><TD>ethnic** [aj]</TD><TD>etnik</TD></TR>
<TR><TD>2835</TD><TD>27729</TD><TD>factual [aj]</TD><TD>faktičan</TD></TR>
<TR><TD>1319</TD><TD>2636</TD><TD>farm* [n]</TD><TD>farmi</TD></TR>
<TR><TD>893</TD><TD>1469</TD><TD>file (dossier; loose bundle of data) [n]</TD><TD>fascikl</TD></TR>
<TR><TD>1281</TD><TD>2515</TD><TD>federal** [aj]</TD><TD>federalan</TD></TR>
<TR><TD>2596</TD><TD>13311</TD><TD>fetus (foetus), embryo* [n]</TD><TD>fetus</TD></TR>
<TR><TD>2161</TD><TD>6662</TD><TD>fiction [n]</TD><TD>fikcija</TD></TR>
<TR><TD>1214</TD><TD>2318</TD><TD>fixed [aj]</TD><TD>fiksna</TD></TR>
<TR><TD>2488</TD><TD>10897</TD><TD>filter [n]</TD><TD>filter</TD></TR>
<TR><TD>1560</TD><TD>3460</TD><TD>financial** [aj]</TD><TD>financijski</TD></TR>
<TR><TD>1103</TD><TD>2020</TD><TD>physical* [aj]</TD><TD>fizička</TD></TR>
<TR><TD>2209</TD><TD>7098</TD><TD>physics** [n]</TD><TD>fizika</TD></TR>
<TR><TD>2374</TD><TD>8713</TD><TD>flexible (easily able to bend) [aj]</TD><TD>fleksibilna</TD></TR>
<TR><TD>1004</TD><TD>1738</TD><TD>form* [v]</TD><TD>formirati</TD></TR>
<TR><TD>1872</TD><TD>4822</TD><TD>photograph [n]</TD><TD>fotografije</TD></TR>
<TR><TD>546</TD><TD>767</TD><TD>Ms. [n]</TD><TD>gđa</TD></TR>
<TR><TD>2443</TD><TD>10106</TD><TD>disgust [n]</TD><TD>gađenje</TD></TR>
<TR><TD>117</TD><TD>121</TD><TD>where*? (at or to what place?) [av]</TD><TD>gdje?</TD></TR>
<TR><TD>2204</TD><TD>7011</TD><TD>jelly (gelatinous semi-solid material), gel [n]</TD><TD>gel</TD></TR>
<TR><TD>1870</TD><TD>4808</TD><TD>generation** [n]</TD><TD>generacija</TD></TR>
<TR><TD>2769</TD><TD>21988</TD><TD>genocide** [n]</TD><TD>genocid</TD></TR>
<TR><TD>2735</TD><TD>19927</TD><TD>guerrilla** [n]</TD><TD>gerilac</TD></TR>
<TR><TD>1739</TD><TD>4187</TD><TD>gesture [n]</TD><TD>gesta</TD></TR>
<TR><TD>1493</TD><TD>3177</TD><TD>motion* [n]</TD><TD>gibanje</TD></TR>
<TR><TD>2755</TD><TD>21413</TD><TD>gymnastics [n]</TD><TD>gimnastika</TD></TR>
<TR><TD>2909</TD><TD>40214</TD><TD>ginseng (plant or root of genus Panax) [n]</TD><TD>ginseng</TD></TR>
<TR><TD>1873</TD><TD>4838</TD><TD>guitar (stringed instrument played with the fingers) [n]</TD><TD>gitara</TD></TR>
<TR><TD>2234</TD><TD>7311</TD><TD>hunger** [n]</TD><TD>glad</TD></TR>
<TR><TD>1469</TD><TD>3115</TD><TD>smooth* [aj]</TD><TD>gladak</TD></TR>
<TR><TD>630</TD><TD>915</TD><TD>voice* [n]</TD><TD>glas</TD></TR>
<TR><TD>1015</TD><TD>1769</TD><TD>loud* (of much sonic intensity) [aj]</TD><TD>glasan</TD></TR>
<TR><TD>2648</TD><TD>15098</TD><TD>ballot** [n]</TD><TD>glasanje</TD></TR>
<TR><TD>994</TD><TD>1708</TD><TD>vote* [v] 2s</TD><TD>glasovati, glasati</TD></TR>
<TR><TD>277</TD><TD>342</TD><TD>head* [n]</TD><TD>glava</TD></TR>
<TR><TD>746</TD><TD>1153</TD><TD>chief*, main*, primary, principal [aj]</TD><TD>glavni</TD></TR>
<TR><TD>1497</TD><TD>3188</TD><TD>headache [n]</TD><TD>glavobolja</TD></TR>
<TR><TD>613</TD><TD>886</TD><TD>music* [n]</TD><TD>glazba, muzika</TD></TR>
<TR><TD>1934</TD><TD>5109</TD><TD>ankle [n]</TD><TD>gležanj</TD></TR>
<TR><TD>79</TD><TD>73</TD><TD>look* [v]</TD><TD>gledati</TD></TR>
<TR><TD>352</TD><TD>430</TD><TD>watch* [v]</TD><TD>gledati</TD></TR>
<TR><TD>2310</TD><TD>8084</TD><TD>slime [n]</TD><TD>glib</TD></TR>
<TR><TD>1588</TD><TD>3585</TD><TD>clay [n]</TD><TD>glina</TD></TR>
<TR><TD>2538</TD><TD>11971</TD><TD>mushroom (a complex aerial fleshy fruiting body of a fungus) [n]</TD><TD>gljiva</TD></TR>
<TR><TD>169</TD><TD>178</TD><TD>fine** [n]</TD><TD>globa</TD></TR>
<TR><TD>1826</TD><TD>4549</TD><TD>deaf* [aj]</TD><TD>gluh</TD></TR>
<TR><TD>1488</TD><TD>3160</TD><TD>actor** [n]</TD><TD>glumac</TD></TR>
<TR><TD>391</TD><TD>489</TD><TD>stupid* [aj]</TD><TD>glup</TD></TR>
<TR><TD>2578</TD><TD>12896</TD><TD>reptile [n]</TD><TD>gmaz</TD></TR>
<TR><TD>1887</TD><TD>4871</TD><TD>nest, den, lair (an animal's self-made house) [n]</TD><TD>gnijezdu</TD></TR>
<TR><TD>2801</TD><TD>23770</TD><TD>putrid [aj]</TD><TD>gnjio</TD></TR>
<TR><TD>1344</TD><TD>2706</TD><TD>season* (winter etc.) [n] 2w</TD><TD>godišnje doba</TD></TR>
<TR><TD>333</TD><TD>407</TD><TD>year* [n]</TD><TD>godina</TD></TR>
<TR><TD>941</TD><TD>1585</TD><TD>naked, nude, exposed (without the usual cover) [aj]</TD><TD>gol</TD></TR>
<TR><TD>2202</TD><TD>6990</TD><TD>batch (quantity of things done or produced at one time) [n]</TD><TD>gomila</TD></TR>
<TR><TD>1294</TD><TD>2559</TD><TD>crowd** [n]</TD><TD>gomila</TD></TR>
<TR><TD>1655</TD><TD>3834</TD><TD>bitter [aj]</TD><TD>gorak</TD></TR>
<TR><TD>59</TD><TD>52</TD><TD>up* [av]</TD><TD>gore</TD></TR>
<TR><TD>475</TD><TD>623</TD><TD>worse* [aj]</TD><TD>gori</TD></TR>
<TR><TD>1820</TD><TD>4528</TD><TD>fuel* [n]</TD><TD>goriva</TD></TR>
<TR><TD>966</TD><TD>1640</TD><TD>burn* [v]</TD><TD>gorjeti</TD></TR>
<TR><TD>356</TD><TD>441</TD><TD>Mrs. [n]</TD><TD>gospođa</TD></TR>
<TR><TD>306</TD><TD>376</TD><TD>Miss [n]</TD><TD>gospođica</TD></TR>
<TR><TD>1050</TD><TD>1882</TD><TD>master, lord [n]</TD><TD>gospodar</TD></TR>
<TR><TD>953</TD><TD>1615</TD><TD>speech** [n]</TD><TD>govor</TD></TR>
<TR><TD>142</TD><TD>150</TD><TD>talk*, speak* [v]</TD><TD>govoriti</TD></TR>
<TR><TD>1702</TD><TD>4055</TD><TD>citizen* [n]</TD><TD>građanin</TD></TR>
<TR><TD>1458</TD><TD>3067</TD><TD>civil rights** [n] 2w</TD><TD>građanska prava</TD></TR>
<TR><TD>2579</TD><TD>12914</TD><TD>militia** [n] 2w</TD><TD>građanska vojska</TD></TR>
<TR><TD>2151</TD><TD>6603</TD><TD>pea (plant or seed of sp. Pisum sativum) [n]</TD><TD>grašak</TD></TR>
<TR><TD>2650</TD><TD>15187</TD><TD>rake [n]</TD><TD>grabulje</TD></TR>
<TR><TD>516</TD><TD>709</TD><TD>city* [n]</TD><TD>grad</TD></TR>
<TR><TD>332</TD><TD>403</TD><TD>town* [n]</TD><TD>grad</TD></TR>
<TR><TD>1304</TD><TD>2588</TD><TD>mayor** [n]</TD><TD>gradonačelnik</TD></TR>
<TR><TD>1961</TD><TD>5294</TD><TD>chart [n]</TD><TD>grafikona</TD></TR>
<TR><TD>2201</TD><TD>6988</TD><TD>bean (lima, snap, etc.: plant or seed of genus Phaseolus or similar) [n]</TD><TD>grah</TD></TR>
<TR><TD>2643</TD><TD>15038</TD><TD>grammar (rules and structure of a language) [n]</TD><TD>gramatici</TD></TR>
<TR><TD>2932</TD><TD>99999</TD><TD>stylus [n] 2w</TD><TD>gramofonska igla</TD></TR>
<TR><TD>1985</TD><TD>5388</TD><TD>branch (small part going out from main part) [n]</TD><TD>grane</TD></TR>
<TR><TD>2775</TD><TD>22125</TD><TD>boundary [n]</TD><TD>granica</TD></TR>
<TR><TD>1807</TD><TD>4484</TD><TD>border** [n]</TD><TD>granica</TD></TR>
<TR><TD>2289</TD><TD>7846</TD><TD>gravity [n]</TD><TD>gravitacija</TD></TR>
<TR><TD>478</TD><TD>625</TD><TD>mistake* [n]</TD><TD>greška, pogreška</TD></TR>
<TR><TD>985</TD><TD>1683</TD><TD>bite* [v]</TD><TD>gristi</TD></TR>
<TR><TD>1235</TD><TD>2385</TD><TD>throat [n]</TD><TD>grlo</TD></TR>
<TR><TD>2040</TD><TD>5681</TD><TD>bush, shrub [n] 2s</TD><TD>grmu, šiblje</TD></TR>
<TR><TD>2373</TD><TD>8710</TD><TD>grape (plant or fruit of genus Vitis) [n]</TD><TD>grožđa</TD></TR>
<TR><TD>2329</TD><TD>8198</TD><TD>graveyard shift, middle of the night (midnight to dawn) [n] 2s;2,2w</TD><TD>groblju pomak, usred noći</TD></TR>
<TR><TD>2127</TD><TD>6410</TD><TD>thunder [n]</TD><TD>grom</TD></TR>
<TR><TD>1395</TD><TD>2850</TD><TD>fever [n]</TD><TD>groznica</TD></TR>
<TR><TD>919</TD><TD>1537</TD><TD>rough*, coarse, contra-smooth [aj]</TD><TD>grub</TD></TR>
<TR><TD>2352</TD><TD>8428</TD><TD>lump, clod, blob, piece of no particular shape [n] 2s</TD><TD>gruda, grumen</TD></TR>
<TR><TD>892</TD><TD>1463</TD><TD>group* [n] 2s</TD><TD>grupa, skupina</TD></TR>
<TR><TD>2435</TD><TD>9858</TD><TD>lizard [n]</TD><TD>gušter</TD></TR>
<TR><TD>1070</TD><TD>1937</TD><TD>loss [n]</TD><TD>gubitak</TD></TR>
<TR><TD>1803</TD><TD>4444</TD><TD>rubber* [n]</TD><TD>guma</TD></TR>
<TR><TD>716</TD><TD>1086</TD><TD>push* (press on something in order to move it) (pf/impf) [v]</TD><TD>gurnuti / gurati</TD></TR>
<TR><TD>2430</TD><TD>9734</TD><TD>dense (of much density), concentrated, thick, intense [aj]</TD><TD>guste</TD></TR>
<TR><TD>2772</TD><TD>22057</TD><TD>density [n]</TD><TD>gustoću</TD></TR>
<TR><TD>2690</TD><TD>17337</TD><TD>buttocks [n]</TD><TD>guza</TD></TR>
<TR><TD>633</TD><TD>926</TD><TD>dress [n]</TD><TD>haljina</TD></TR>
<TR><TD>2660</TD><TD>15538</TD><TD>garment (item of clothing) [n]</TD><TD>haljinu</TD></TR>
<TR><TD>2601</TD><TD>13458</TD><TD>harness [n]</TD><TD>hamovi</TD></TR>
<TR><TD>1833</TD><TD>4579</TD><TD>helicopter** [n]</TD><TD>helikopter</TD></TR>
<TR><TD>1641</TD><TD>3777</TD><TD>urgent** [aj]</TD><TD>hitan</TD></TR>
<TR><TD>863</TD><TD>1413</TD><TD>emergency* [n] 2w</TD><TD>hitan slučaj</TD></TR>
<TR><TD>908</TD><TD>1501</TD><TD>pants, trousers [n]</TD><TD>hlače</TD></TR>
<TR><TD>2565</TD><TD>12572</TD><TD>trousers [n]</TD><TD>hlače</TD></TR>
<TR><TD>2322</TD><TD>8140</TD><TD>shade [n]</TD><TD>hlad</TD></TR>
<TR><TD>506</TD><TD>690</TD><TD>cold*, chilly, frigid [aj] 3s</TD><TD>hladan</TD></TR>
<TR><TD>396</TD><TD>494</TD><TD>cool* [aj]</TD><TD>hladan</TD></TR>
<TR><TD>370</TD><TD>459</TD><TD>walk* [v]</TD><TD>hodati</TD></TR>
<TR><TD>1789</TD><TD>4381</TD><TD>hockey [n]</TD><TD>hokej</TD></TR>
<TR><TD>2704</TD><TD>17865</TD><TD>horizontal [aj]</TD><TD>horizontalnim</TD></TR>
<TR><TD>634</TD><TD>931</TD><TD>hotel*, inn [n] 2s</TD><TD>hotel, gostionica</TD></TR>
<TR><TD>2554</TD><TD>12340</TD><TD>rust, corrosion [n] 2s</TD><TD>hrđa, korozija</TD></TR>
<TR><TD>1473</TD><TD>3124</TD><TD>courage, bravery [n] 2s</TD><TD>hrabrost, srčanost</TD></TR>
<TR><TD>509</TD><TD>696</TD><TD>food* [n]</TD><TD>hrana</TD></TR>
<TR><TD>1083</TD><TD>1970</TD><TD>feed** [v]</TD><TD>hraniti</TD></TR>
<TR><TD>2273</TD><TD>7726</TD><TD>oak (tree of genus Quercus) [n]</TD><TD>hrast</TD></TR>
<TR><TD>1442</TD><TD>2981</TD><TD>lame [aj]</TD><TD>hrom</TD></TR>
<TR><TD>1703</TD><TD>4059</TD><TD>pile, heap, stack of things or of a substance [n] 2s</TD><TD>hrpa, gomila</TD></TR>
<TR><TD>60</TD><TD>53</TD><TD>want*, wish, desire [v] 2s</TD><TD>htjeti, željeti</TD></TR>
<TR><TD>1377</TD><TD>2795</TD><TD>humor* [n]</TD><TD>humor</TD></TR>
<TR><TD>2742</TD><TD>20352</TD><TD>humorous [aj]</TD><TD>humorističan</TD></TR>
<TR><TD>1758</TD><TD>4276</TD><TD>grip [n]</TD><TD>hvat</TD></TR>
<TR><TD>7</TD><TD>6</TD><TD>and* (plus/also) [cj]</TD><TD>i / a</TD></TR>
<TR><TD>2117</TD><TD>6354</TD><TD>helmet [n] 2w</TD><TD>i kacigu</TD></TR>
<TR><TD>63</TD><TD>57</TD><TD>go* (move from starting point to elsewhere) [v]</TD><TD>ići</TD></TR>
<TR><TD>1090</TD><TD>1988</TD><TD>hire [v]</TD><TD>ižnajmiti</TD></TR>
<TR><TD>373</TD><TD>463</TD><TD>though [av]</TD><TD>iako</TD></TR>
<TR><TD>216</TD><TD>256</TD><TD>idea*, concept (thought-bundle) [n] 2s</TD><TD>ideja, koncept</TD></TR>
<TR><TD>1810</TD><TD>4490</TD><TD>identify** [v]</TD><TD>identificirati</TD></TR>
<TR><TD>1527</TD><TD>3341</TD><TD>identity [n]</TD><TD>identitet</TD></TR>
<TR><TD>781</TD><TD>1222</TD><TD>idiot [n]</TD><TD>idiot</TD></TR>
<TR><TD>1734</TD><TD>4171</TD><TD>needle [n]</TD><TD>igla</TD></TR>
<TR><TD>1222</TD><TD>2341</TD><TD>ignore** [v]</TD><TD>ignorirati</TD></TR>
<TR><TD>430</TD><TD>544</TD><TD>game* (a rule-governed system of competitive amusement) [n]</TD><TD>igra</TD></TR>
<TR><TD>1425</TD><TD>2934</TD><TD>toy, plaything [n]</TD><TD>igračka</TD></TR>
<TR><TD>915</TD><TD>1529</TD><TD>field* (playing field) [n]</TD><TD>igralište</TD></TR>
<TR><TD>336</TD><TD>412</TD><TD>play*, recreate, frolic [v]</TD><TD>igrati</TD></TR>
<TR><TD>158</TD><TD>167</TD><TD>ever* (at any time) [av] 2s</TD><TD>ikad, ikada</TD></TR>
<TR><TD>1300</TD><TD>2574</TD><TD>illegal** [aj]</TD><TD>ilegalan</TD></TR>
<TR><TD>91</TD><TD>92</TD><TD>or* [cj]</TD><TD>ili</TD></TR>
<TR><TD>355</TD><TD>440</TD><TD>either*...or [cj] 2w</TD><TD>ili ... ili</TD></TR>
<TR><TD>2312</TD><TD>8099</TD><TD>imaginary [aj]</TD><TD>imaginaran</TD></TR>
<TR><TD>22</TD><TD>19</TD><TD>have* (possess, be furnished with) [v]</TD><TD>imati</TD></TR>
<TR><TD>233</TD><TD>275</TD><TD>name* [n]</TD><TD>ime</TD></TR>
<TR><TD>1745</TD><TD>4219</TD><TD>on behalf of [aj]</TD><TD>ime</TD></TR>
<TR><TD>2669</TD><TD>16117</TD><TD>appoint** [v]</TD><TD>imenovati</TD></TR>
<TR><TD>1202</TD><TD>2287</TD><TD>property* [n]</TD><TD>imovine</TD></TR>
<TR><TD>2103</TD><TD>6191</TD><TD>impulse [n]</TD><TD>impuls</TD></TR>
<TR><TD>2357</TD><TD>8480</TD><TD>engineer** [n]</TD><TD>inženjer</TD></TR>
<TR><TD>2390</TD><TD>9035</TD><TD>engineering [n]</TD><TD>inženjerstvo</TD></TR>
<TR><TD>1495</TD><TD>3183</TD><TD>incident** [n]</TD><TD>incident</TD></TR>
<TR><TD>1819</TD><TD>4527</TD><TD>industry* [n]</TD><TD>industrija</TD></TR>
<TR><TD>2642</TD><TD>15021</TD><TD>infect** [v]</TD><TD>inficirati</TD></TR>
<TR><TD>556</TD><TD>782</TD><TD>information* [n]</TD><TD>informacija</TD></TR>
<TR><TD>2049</TD><TD>5721</TD><TD>inform** [v]</TD><TD>informirati</TD></TR>
<TR><TD>2259</TD><TD>7570</TD><TD>instrument* [n]</TD><TD>instrument</TD></TR>
<TR><TD>1508</TD><TD>3250</TD><TD>intelligence** [n]</TD><TD>inteligencija</TD></TR>
<TR><TD>1736</TD><TD>4175</TD><TD>intelligent* [aj]</TD><TD>inteligentan</TD></TR>
<TR><TD>1480</TD><TD>3142</TD><TD>intense* [aj]</TD><TD>intenzivno</TD></TR>
<TR><TD>2311</TD><TD>8098</TD><TD>interior [n]</TD><TD>interijer</TD></TR>
<TR><TD>2908</TD><TD>39937</TD><TD>interval (quantity of time between events X and Y) [n]</TD><TD>interval</TD></TR>
<TR><TD>2671</TD><TD>16276</TD><TD>intervene** [v]</TD><TD>intervenirati</TD></TR>
<TR><TD>2844</TD><TD>28703</TD><TD>intoxicate [v]</TD><TD>intoksinirati</TD></TR>
<TR><TD>2893</TD><TD>37234</TD><TD>inverted, upside-down [aj] 2s</TD><TD>invertirana, obrnuto</TD></TR>
<TR><TD>2220</TD><TD>7229</TD><TD>iris (of eye) [n]</TD><TD>iris</TD></TR>
<TR><TD>1413</TD><TD>2900</TD><TD>tear(drop(s)) [n]</TD><TD>iscijepati</TD></TR>
<TR><TD>1696</TD><TD>4039</TD><TD>diet** [n]</TD><TD>ishrana</TD></TR>
<TR><TD>2913</TD><TD>40547</TD><TD>dismember [v]</TD><TD>isjeckati</TD></TR>
<TR><TD>1108</TD><TD>2029</TD><TD>statement [n]</TD><TD>iskaz</TD></TR>
<TR><TD>2016</TD><TD>5567</TD><TD>exclusive [aj]</TD><TD>isključivi</TD></TR>
<TR><TD>557</TD><TD>783</TD><TD>honest** [aj]</TD><TD>iskren</TD></TR>
<TR><TD>2321</TD><TD>8135</TD><TD>tempt [v]</TD><TD>iskušati</TD></TR>
<TR><TD>772</TD><TD>1205</TD><TD>experience* (consciously live through an event) [v]</TD><TD>iskusiti</TD></TR>
<TR><TD>773</TD><TD>1205</TD><TD>experience* [n]</TD><TD>iskustvo</TD></TR>
<TR><TD>2785</TD><TD>22649</TD><TD>evaporate* [v] 2w</TD><TD>isparavati se</TD></TR>
<TR><TD>1467</TD><TD>3098</TD><TD>print (to copy marks by pressing inked objects on paper) [v]</TD><TD>ispisati</TD></TR>
<TR><TD>1914</TD><TD>5021</TD><TD>examine*, inspect* [v] 2s</TD><TD>ispitati, pregledati</TD></TR>
<TR><TD>1601</TD><TD>3619</TD><TD>below* [prep]</TD><TD>ispod</TD></TR>
<TR><TD>2461</TD><TD>10349</TD><TD>manifest [v]</TD><TD>ispoljiti</TD></TR>
<TR><TD>155</TD><TD>165</TD><TD>before*, in front of, ahead of (spatially) [prep]</TD><TD>ispred</TD></TR>
<TR><TD>420</TD><TD>531</TD><TD>ahead [av]</TD><TD>ispred</TD></TR>
<TR><TD>724</TD><TD>1116</TD><TD>apologize** (pf/impf) [v] 2w</TD><TD>ispričati se / ispričavati se</TD></TR>
<TR><TD>2825</TD><TD>26709</TD><TD>emit (to send out any form of matter or energy in any manner) [v]</TD><TD>ispuštati</TD></TR>
<TR><TD>1225</TD><TD>2359</TD><TD>crack, fissure [n] 2s</TD><TD>ispucati, fisura</TD></TR>
<TR><TD>2877</TD><TD>33234</TD><TD>fulfil [v]</TD><TD>ispuniti</TD></TR>
<TR><TD>234</TD><TD>276</TD><TD>same*, identical [aj] 2s</TD><TD>isti, identičan</TD></TR>
<TR><TD>288</TD><TD>350</TD><TD>truth [n]</TD><TD>istina</TD></TR>
<TR><TD>292</TD><TD>354</TD><TD>true* [aj]</TD><TD>istinit</TD></TR>
<TR><TD>2303</TD><TD>8009</TD><TD>discharge [n]</TD><TD>istjecanje</TD></TR>
<TR><TD>1236</TD><TD>2388</TD><TD>east* [n]</TD><TD>istok</TD></TR>
<TR><TD>957</TD><TD>1632</TD><TD>research** [n]</TD><TD>istraživanje</TD></TR>
<TR><TD>2006</TD><TD>5513</TD><TD>explore** [v]</TD><TD>istraživati</TD></TR>
<TR><TD>2005</TD><TD>5511</TD><TD>investigate** [v]</TD><TD>istraživati</TD></TR>
<TR><TD>88</TD><TD>83</TD><TD>from*, out of, away from [prep]</TD><TD>iz</TD></TR>
<TR><TD>418</TD><TD>528</TD><TD>behind*, in back of, to the rear of [prep]</TD><TD>iza</TD></TR>
<TR><TD>1678</TD><TD>3953</TD><TD>exit [v]</TD><TD>izađi</TD></TR>
<TR><TD>294</TD><TD>357</TD><TD>cause* (induce something to be or happen) (pf/impf) [v]</TD><TD>izazvati / izazivati</TD></TR>
<TR><TD>848</TD><TD>1390</TD><TD>dare (pf/impf) [v]</TD><TD>izazvati / izazivati</TD></TR>
<TR><TD>2724</TD><TD>19108</TD><TD>expel** [v]</TD><TD>izbaciti</TD></TR>
<TR><TD>2906</TD><TD>39422</TD><TD>oust** [v]</TD><TD>izbaciti</TD></TR>
<TR><TD>2733</TD><TD>19776</TD><TD>refugee** [n]</TD><TD>izbjeglica</TD></TR>
<TR><TD>2334</TD><TD>8265</TD><TD>selection [n]</TD><TD>izbor</TD></TR>
<TR><TD>862</TD><TD>1412</TD><TD>choose*, pick (out), select one of many possibilities (pf/impf) [v]</TD><TD>izbrati / izabirati</TD></TR>
<TR><TD>2583</TD><TD>13011</TD><TD>treason** [n]</TD><TD>izdaja</TD></TR>
<TR><TD>954</TD><TD>1617</TD><TD>issue*, edition (of periodical etc.) [n]</TD><TD>izdanje</TD></TR>
<TR><TD>1685</TD><TD>3988</TD><TD>betray** [v]</TD><TD>izdati</TD></TR>
<TR><TD>2911</TD><TD>40491</TD><TD>durable, resilient, robust, strong (in this sense) [aj] 2s</TD><TD>izdržljiva, elastičan</TD></TR>
<TR><TD>2295</TD><TD>7943</TD><TD>starve** [v]</TD><TD>izgladnjeti</TD></TR>
<TR><TD>1793</TD><TD>4392</TD><TD>appearance [n]</TD><TD>izgled</TD></TR>
<TR><TD>437</TD><TD>562</TD><TD>seem*, appear* to be, give the impression of [v] 3s;1,2,2w</TD><TD>izgledati, čìniti se, doimati se</TD></TR>
<TR><TD>1007</TD><TD>1746</TD><TD>build* (join materials to create), construct [v]</TD><TD>izgraditi</TD></TR>
<TR><TD>413</TD><TD>521</TD><TD>lose* (cease having; contra-acquire) (pf/impf) [vt]</TD><TD>izgubiti / gubiti</TD></TR>
<TR><TD>1987</TD><TD>5400</TD><TD>drain [v] 2w</TD><TD>izjaloviti se</TD></TR>
<TR><TD>1677</TD><TD>3953</TD><TD>exit [n]</TD><TD>izlaz</TD></TR>
<TR><TD>1482</TD><TD>3147</TD><TD>heal** [v]</TD><TD>izliječiti</TD></TR>
<TR><TD>345</TD><TD>424</TD><TD>between*, among, amidst, inter- [prep] 2s</TD><TD>između, među-</TD></TR>
<TR><TD>2824</TD><TD>26680</TD><TD>feces, dung, excrement [n] 2s</TD><TD>izmet, balega</TD></TR>
<TR><TD>2248</TD><TD>7436</TD><TD>alternate, take turns (do X then Y then X then Y) [v]</TD><TD>izmjenivati</TD></TR>
<TR><TD>1060</TD><TD>1914</TD><TD>above*, over* [prep] 2s</TD><TD>iznad, nad</TD></TR>
<TR><TD>2171</TD><TD>6742</TD><TD>raid** [v] 2w</TD><TD>iznenada napasti</TD></TR>
<TR><TD>2730</TD><TD>19569</TD><TD>conspicuous [aj]</TD><TD>izražen</TD></TR>
<TR><TD>1612</TD><TD>3661</TD><TD>express* [v]</TD><TD>izraziti</TD></TR>
<TR><TD>2797</TD><TD>23531</TD><TD>assertive [aj]</TD><TD>izričan</TD></TR>
<TR><TD>2549</TD><TD>12239</TD><TD>invention [n]</TD><TD>izum</TD></TR>
<TR><TD>2417</TD><TD>9488</TD><TD>invent* (plan something which has never been made before) [v]</TD><TD>izumiti</TD></TR>
<TR><TD>472</TD><TD>620</TD><TD>outside of, exterior to [prep]</TD><TD>izvan</TD></TR>
<TR><TD>1792</TD><TD>4390</TD><TD>extraordinary** [aj]</TD><TD>izvanredan</TD></TR>
<TR><TD>1176</TD><TD>2224</TD><TD>source, origin [n] 2s</TD><TD>izvor, podrijetlo</TD></TR>
<TR><TD>38</TD><TD>35</TD><TD>well* (water hole) [n] 2s</TD><TD>izvor, vrelo</TD></TR>
<TR><TD>2695</TD><TD>17554</TD><TD>export** [v]</TD><TD>izvoziti</TD></TR>
<TR><TD>2339</TD><TD>8294</TD><TD>execute** [v]</TD><TD>izvršiti</TD></TR>
<TR><TD>1577</TD><TD>3538</TD><TD>perform* [v]</TD><TD>izvršiti</TD></TR>
<TR><TD>2238</TD><TD>7331</TD><TD>whale (large marine mammal of order Cetacea) [n] 2w</TD><TD>izvrstan primjer</TD></TR>
<TR><TD>832</TD><TD>1361</TD><TD>excellent** [aj] 2s</TD><TD>izvrstan, odličan</TD></TR>
<TR><TD>465</TD><TD>605</TD><TD>f--k (obscenity) [v]</TD><TD>j----i</TD></TR>
<TR><TD>5</TD><TD>2</TD><TD>I* [pn]</TD><TD>ja</TD></TR>
<TR><TD>1454</TD><TD>3031</TD><TD>apple (tree or fruit of genus Malus) [n]</TD><TD>jabuka</TD></TR>
<TR><TD>597</TD><TD>852</TD><TD>ride* (sit or perch in or on a vehicle, horse, etc. and travel) [v]</TD><TD>jahati</TD></TR>
<TR><TD>1420</TD><TD>2922</TD><TD>egg* [n]</TD><TD>jaje</TD></TR>
<TR><TD>554</TD><TD>777</TD><TD>strong* [aj]</TD><TD>jak</TD></TR>
<TR><TD>1058</TD><TD>1908</TD><TD>jacket (a short and/or lightweight coat) [n]</TD><TD>jakna</TD></TR>
<TR><TD>1172</TD><TD>2219</TD><TD>guarantee** [v]</TD><TD>jamčiti</TD></TR>
<TR><TD>2015</TD><TD>5566</TD><TD>goat (animal of genus Capra) [n]</TD><TD>jarac</TD></TR>
<TR><TD>444</TD><TD>574</TD><TD>clear*, plain (easy to see or understand) [aj] 2s</TD><TD>jasan, očit</TD></TR>
<TR><TD>2027</TD><TD>5636</TD><TD>lobster [n]</TD><TD>jastog</TD></TR>
<TR><TD>1604</TD><TD>3636</TD><TD>pillow, cushion [n]</TD><TD>jastuk</TD></TR>
<TR><TD>2528</TD><TD>11787</TD><TD>cushion [n]</TD><TD>jastuk</TD></TR>
<TR><TD>709</TD><TD>1072</TD><TD>public* (available to most or all persons) [aj]</TD><TD>javni</TD></TR>
<TR><TD>710</TD><TD>1072</TD><TD>public*, populace, the people (as in People's Republic) [n] 2s</TD><TD>javnost, narod</TD></TR>
<TR><TD>70</TD><TD>63</TD><TD>one (m/f/n) [num]</TD><TD>jedan / jedna / jedno</TD></TR>
<TR><TD>1351</TD><TD>2727</TD><TD>eleven [num]</TD><TD>jedanaest</TD></TR>
<TR><TD>1237</TD><TD>2389</TD><TD>unit [n]</TD><TD>jedinica</TD></TR>
<TR><TD>1694</TD><TD>4029</TD><TD>unique [aj]</TD><TD>jedinstvena</TD></TR>
<TR><TD>1945</TD><TD>5197</TD><TD>equal* [aj]</TD><TD>jednaki</TD></TR>
<TR><TD>275</TD><TD>336</TD><TD>once [aj] 2s</TD><TD>jednom, jedanput</TD></TR>
<TR><TD>626</TD><TD>910</TD><TD>simple* [aj]</TD><TD>jednostavan</TD></TR>
<TR><TD>1144</TD><TD>2147</TD><TD>cheap, inexpensive [aj] 2s</TD><TD>jeftino, jeftin</TD></TR>
<TR><TD>2057</TD><TD>5783</TD><TD>deer (animal of family Cervidae) [n]</TD><TD>jelene</TD></TR>
<TR><TD>1695</TD><TD>4037</TD><TD>menu [n]</TD><TD>jelovnik</TD></TR>
<TR><TD>2590</TD><TD>13171</TD><TD>autumn*, fall [n]</TD><TD>jesen</TD></TR>
<TR><TD>40</TD><TD>36</TD><TD>are (you/we/you pl.+pol./they) [v]</TD><TD>jesi / jesmo / jeste / jesu</TD></TR>
<TR><TD>15</TD><TD>12</TD><TD>is [v] 2s</TD><TD>jest, je</TD></TR>
<TR><TD>432</TD><TD>545</TD><TD>eat* [v]</TD><TD>jesti</TD></TR>
<TR><TD>1579</TD><TD>3549</TD><TD>liver [n]</TD><TD>jetra</TD></TR>
<TR><TD>1143</TD><TD>2144</TD><TD>lake* [n]</TD><TD>jezero</TD></TR>
<TR><TD>1268</TD><TD>2478</TD><TD>language* (the verbal communication technique of a people) [n]</TD><TD>jezik</TD></TR>
<TR><TD>1243</TD><TD>2403</TD><TD>tongue (body-part) [n]</TD><TD>jezik</TD></TR>
<TR><TD>146</TD><TD>153</TD><TD>still*, yet* (even until the time mentioned) [av]</TD><TD>još</TD></TR>
<TR><TD>679</TD><TD>1011</TD><TD>yesterday* [av]</TD><TD>jučer</TD></TR>
<TR><TD>885</TD><TD>1454</TD><TD>south* [n]</TD><TD>jug</TD></TR>
<TR><TD>1258</TD><TD>2434</TD><TD>soup [n]</TD><TD>juha</TD></TR>
<TR><TD>1116</TD><TD>2055</TD><TD>brave** [aj]</TD><TD>junak</TD></TR>
<TR><TD>977</TD><TD>1658</TD><TD>hero** [n] 2s</TD><TD>junak, heroj</TD></TR>
<TR><TD>276</TD><TD>339</TD><TD>morning* (dawn to noon) [n]</TD><TD>jutro</TD></TR>
<TR><TD>358</TD><TD>443</TD><TD>daughter* [n]</TD><TD>kći</TD></TR>
<TR><TD>1251</TD><TD>2417</TD><TD>towards, to, at, toward* (moving toward) [prep] 3s</TD><TD>k, ka, prema</TD></TR>
<TR><TD>1981</TD><TD>5373</TD><TD>cough [v]</TD><TD>kašaljati</TD></TR>
<TR><TD>148</TD><TD>154</TD><TD>wait* [n] 2s;1(=1),1w</TD><TD>kašnjenje (=delay), čekanje</TD></TR>
<TR><TD>2179</TD><TD>6805</TD><TD>cord, cable (thicker than wire) [n]</TD><TD>kabel</TD></TR>
<TR><TD>1875</TD><TD>4840</TD><TD>cabinet** [n]</TD><TD>kabinet</TD></TR>
<TR><TD>80</TD><TD>74</TD><TD>when*? (at what time?) [av]</TD><TD>kad?</TD></TR>
<TR><TD>1157</TD><TD>2175</TD><TD>avoid*, evade, keep away from [v] 2s;4,1w</TD><TD>kako bi se izbjeglo, izvrdavati</TD></TR>
<TR><TD>1835</TD><TD>4602</TD><TD>prevent* (keep from happening) [v] 4w</TD><TD>kako bi se spriječilo</TD></TR>
<TR><TD>1349</TD><TD>2716</TD><TD>crush* (press on so as to break or re-shape) [v] 3w</TD><TD>kako bi slomili</TD></TR>
<TR><TD>68</TD><TD>60</TD><TD>how*? (in what manner?) [av]</TD><TD>kako?</TD></TR>
<TR><TD>2620</TD><TD>14143</TD><TD>potassium [n]</TD><TD>kalij</TD></TR>
<TR><TD>2442</TD><TD>10097</TD><TD>heap [n]</TD><TD>kamara</TD></TR>
<TR><TD>1121</TD><TD>2075</TD><TD>stone* [n]</TD><TD>kamen</TD></TR>
<TR><TD>905</TD><TD>1491</TD><TD>camera* [n]</TD><TD>kamera</TD></TR>
<TR><TD>2214</TD><TD>7168</TD><TD>fireplace, hearth [n]</TD><TD>kamin</TD></TR>
<TR><TD>980</TD><TD>1671</TD><TD>truck* {British: lorry} (motor vehicle for cargo-carrying) [n]</TD><TD>kamion</TD></TR>
<TR><TD>1215</TD><TD>2323</TD><TD>campaign* (for political office) [n]</TD><TD>kampanje</TD></TR>
<TR><TD>2420</TD><TD>9508</TD><TD>canal, channel, ditch [n] 2s</TD><TD>kanala, kanal</TD></TR>
<TR><TD>2024</TD><TD>5612</TD><TD>candidate** [n]</TD><TD>kandidat</TD></TR>
<TR><TD>1937</TD><TD>5133</TD><TD>bucket, pail [n]</TD><TD>kanta</TD></TR>
<TR><TD>76</TD><TD>71</TD><TD>as* [av]</TD><TD>kao</TD></TR>
<TR><TD>515</TD><TD>705</TD><TD>drop* (of liquid) [n]</TD><TD>kap</TD></TR>
<TR><TD>2187</TD><TD>6857</TD><TD>lid [n]</TD><TD>kapak</TD></TR>
<TR><TD>2725</TD><TD>19118</TD><TD>earnest [aj]</TD><TD>kapara</TD></TR>
<TR><TD>1706</TD><TD>4065</TD><TD>capital* [n]</TD><TD>kapital</TD></TR>
<TR><TD>1023</TD><TD>1799</TD><TD>coat (heavy outer garment with sleeves) [n]</TD><TD>kaput</TD></TR>
<TR><TD>2855</TD><TD>30355</TD><TD>characteristic [aj]</TD><TD>karakterističan</TD></TR>
<TR><TD>813</TD><TD>1306</TD><TD>career** [n]</TD><TD>karijera</TD></TR>
<TR><TD>1216</TD><TD>2324</TD><TD>map* (drawing of planet's surface) [n]</TD><TD>karta</TD></TR>
<TR><TD>1009</TD><TD>1751</TD><TD>ticket, coupon [n] 2s</TD><TD>karta, bona</TD></TR>
<TR><TD>697</TD><TD>1053</TD><TD>card (stiff rectangle of material) [n]</TD><TD>kartica</TD></TR>
<TR><TD>328</TD><TD>399</TD><TD>late*, tardy [aj,av]</TD><TD>kasan</TD></TR>
<TR><TD>662</TD><TD>983</TD><TD>floor* (story) [n] 2s</TD><TD>kat, sprat</TD></TR>
<TR><TD>895</TD><TD>1470</TD><TD>lock (device for securing doors) [n] 2s</TD><TD>katanac, lokot</TD></TR>
<TR><TD>1282</TD><TD>2516</TD><TD>disaster*, catastrophe [n]</TD><TD>katastrofa</TD></TR>
<TR><TD>2232</TD><TD>7296</TD><TD>category, classification [n] 2s</TD><TD>kategoriju, klasifikacija</TD></TR>
<TR><TD>1068</TD><TD>1934</TD><TD>couch [n]</TD><TD>kauč</TD></TR>
<TR><TD>462</TD><TD>600</TD><TD>coffee* (plant or seeds of sp. Coffea arabica) [n] 2s</TD><TD>kava, kafa</TD></TR>
<TR><TD>1671</TD><TD>3935</TD><TD>cage [n]</TD><TD>kavez</TD></TR>
<TR><TD>2653</TD><TD>15397</TD><TD>theatrical [aj]</TD><TD>kazališni</TD></TR>
<TR><TD>1518</TD><TD>3299</TD><TD>theater* [n]</TD><TD>kazalište</TD></TR>
<TR><TD>2113</TD><TD>6321</TD><TD>penalty [n]</TD><TD>kazna</TD></TR>