-
Notifications
You must be signed in to change notification settings - Fork 10
/
hrsorten.html
3121 lines (3097 loc) · 251 KB
/
hrsorten.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> --> English
</TH><TH>
<A HREF="hrsorthr.html">Croatian</A>
</TH></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>2916</TD><TD>99999</TD><TD>(adjective)-est [aj] 1(1)w</TD><TD>naj-(modified adjective)-ji (typical)</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>2918</TD><TD>99999</TD><TD>(noun)-less [aj]</TD><TD>ne-(noun)</TD></TR>
<TR><TD>2919</TD><TD>99999</TD><TD>(noun)-wear [n] 2w</TD><TD>(noun)-ka odjeća</TD></TR>
<TR><TD>1973</TD><TD>5333</TD><TD>April [cal]</TD><TD>travanj</TD></TR>
<TR><TD>1943</TD><TD>5183</TD><TD>August [cal]</TD><TD>kolovoz</TD></TR>
<TR><TD>2227</TD><TD>7268</TD><TD>December [cal]</TD><TD>prosinac</TD></TR>
<TR><TD>27</TD><TD>24</TD><TD>Do you...? [v] 2w</TD><TD>Da li...?</TD></TR>
<TR><TD>260</TD><TD>318</TD><TD>Excuse me., Forgive me. [ij]</TD><TD>Oprostite.</TD></TR>
<TR><TD>2225</TD><TD>7263</TD><TD>February [cal]</TD><TD>veljača</TD></TR>
<TR><TD>998</TD><TD>1719</TD><TD>Friday [cal]</TD><TD>petak</TD></TR>
<TR><TD>869</TD><TD>1427</TD><TD>Goodbye. [ij] 2s</TD><TD>Doviđenja., Zbogom.</TD></TR>
<TR><TD>223</TD><TD>264</TD><TD>Hello. [ij]</TD><TD>Zdravo.</TD></TR>
<TR><TD>139</TD><TD>148</TD><TD>Help! [ij]</TD><TD>Upomoć!</TD></TR>
<TR><TD>5</TD><TD>2</TD><TD>I* [pn]</TD><TD>ja</TD></TR>
<TR><TD>2152</TD><TD>6613</TD><TD>January [cal]</TD><TD>siječanj</TD></TR>
<TR><TD>1827</TD><TD>4554</TD><TD>July [cal]</TD><TD>srpanj</TD></TR>
<TR><TD>1777</TD><TD>4341</TD><TD>June [cal]</TD><TD>lipanj</TD></TR>
<TR><TD>1838</TD><TD>4614</TD><TD>Lo!, Here you are! [ij]</TD><TD>Evo!</TD></TR>
<TR><TD>1582</TD><TD>3558</TD><TD>March [cal]</TD><TD>ožujak</TD></TR>
<TR><TD>241</TD><TD>289</TD><TD>May [cal] 2s</TD><TD>svibanj, maj</TD></TR>
<TR><TD>306</TD><TD>376</TD><TD>Miss [n]</TD><TD>gospođica</TD></TR>
<TR><TD>890</TD><TD>1461</TD><TD>Mister, Mr. [n]</TD><TD>Gospodin</TD></TR>
<TR><TD>1320</TD><TD>2639</TD><TD>Monday [cal]</TD><TD>ponedjeljak</TD></TR>
<TR><TD>356</TD><TD>441</TD><TD>Mrs. [n]</TD><TD>gospođa</TD></TR>
<TR><TD>546</TD><TD>767</TD><TD>Ms. [n]</TD><TD>gđa</TD></TR>
<TR><TD>2120</TD><TD>6377</TD><TD>November [cal]</TD><TD>studeni</TD></TR>
<TR><TD>2170</TD><TD>6720</TD><TD>October [cal]</TD><TD>listopad</TD></TR>
<TR><TD>133</TD><TD>142</TD><TD>Please.* [ij]</TD><TD>Molim.</TD></TR>
<TR><TD>2037</TD><TD>5672</TD><TD>Polish [aj]</TD><TD>Poljski</TD></TR>
<TR><TD>1016</TD><TD>1773</TD><TD>Saturday [cal]</TD><TD>subota</TD></TR>
<TR><TD>2159</TD><TD>6654</TD><TD>Senate** [n]</TD><TD>Senat</TD></TR>
<TR><TD>2149</TD><TD>6600</TD><TD>September [cal]</TD><TD>rujan</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>1266</TD><TD>2475</TD><TD>Sunday [cal]</TD><TD>nedjelja</TD></TR>
<TR><TD>134</TD><TD>144</TD><TD>Thank you. [ij]</TD><TD>Hvala.</TD></TR>
<TR><TD>1426</TD><TD>2935</TD><TD>Thursday [cal]</TD><TD>četvrtak</TD></TR>
<TR><TD>1511</TD><TD>3258</TD><TD>Tuesday [cal]</TD><TD>utorak</TD></TR>
<TR><TD>1288</TD><TD>2530</TD><TD>Turkey [n]</TD><TD>Turska</TD></TR>
<TR><TD>1672</TD><TD>3937</TD><TD>Wednesday [cal]</TD><TD>srijeda</TD></TR>
<TR><TD>2611</TD><TD>13693</TD><TD>abdomen [n]</TD><TD>zadak</TD></TR>
<TR><TD>1542</TD><TD>3393</TD><TD>ability, capacity (to do something) [n]</TD><TD>sposobnost</TD></TR>
<TR><TD>378</TD><TD>473</TD><TD>able* [aj]</TD><TD>sposoban</TD></TR>
<TR><TD>42</TD><TD>39</TD><TD>about* (approximate, nearby) [av] 2s</TD><TD>okolo, oko</TD></TR>
<TR><TD>43</TD><TD>39</TD><TD>about* (pertaining to; on the topic of) [prep]</TD><TD>o</TD></TR>
<TR><TD>1060</TD><TD>1914</TD><TD>above*, over* [prep] 2s</TD><TD>iznad, nad</TD></TR>
<TR><TD>2529</TD><TD>11803</TD><TD>abroad [n] 2w</TD><TD>u inozemstvu</TD></TR>
<TR><TD>2071</TD><TD>5932</TD><TD>absence [n]</TD><TD>odsutnost</TD></TR>
<TR><TD>2426</TD><TD>9667</TD><TD>absent [aj]</TD><TD>odsutna</TD></TR>
<TR><TD>2490</TD><TD>10937</TD><TD>absorb [v]</TD><TD>apsorbirati</TD></TR>
<TR><TD>2624</TD><TD>14270</TD><TD>abstract [aj]</TD><TD>sažetak</TD></TR>
<TR><TD>1794</TD><TD>4394</TD><TD>abuse** [n]</TD><TD>zloupotreba</TD></TR>
<TR><TD>675</TD><TD>1003</TD><TD>accept* (willingly receive) (pf/impf) [v]</TD><TD>prihvatiti / prohvaćati</TD></TR>
<TR><TD>583</TD><TD>829</TD><TD>accident* (unintentional and unexpected event) [n] 2s</TD><TD>nezgoda, nesreća</TD></TR>
<TR><TD>2720</TD><TD>18788</TD><TD>accord [n]</TD><TD>akord</TD></TR>
<TR><TD>1024</TD><TD>1800</TD><TD>account (record of money received or paid or owed) [n]</TD><TD>račun</TD></TR>
<TR><TD>2799</TD><TD>23554</TD><TD>accuracy [n]</TD><TD>točnost</TD></TR>
<TR><TD>1832</TD><TD>4572</TD><TD>accuse* [v]</TD><TD>optužiti</TD></TR>
<TR><TD>2550</TD><TD>12291</TD><TD>accustomed [aj]</TD><TD>navikao</TD></TR>
<TR><TD>2453</TD><TD>10303</TD><TD>achievement [n]</TD><TD>dostignuće</TD></TR>
<TR><TD>2009</TD><TD>5523</TD><TD>acid, acidic [aj]</TD><TD>kiselinski</TD></TR>
<TR><TD>2111</TD><TD>6313</TD><TD>acknowledge [v]</TD><TD>potvrditi</TD></TR>
<TR><TD>726</TD><TD>1119</TD><TD>across* (at or to the other side of) [prep]</TD><TD>preko</TD></TR>
<TR><TD>530</TD><TD>735</TD><TD>act*, deed [n] 2s</TD><TD>čin, djelo</TD></TR>
<TR><TD>1910</TD><TD>5008</TD><TD>active [aj]</TD><TD>aktivnih</TD></TR>
<TR><TD>2751</TD><TD>21077</TD><TD>activist** [n]</TD><TD>aktivist</TD></TR>
<TR><TD>1665</TD><TD>3907</TD><TD>activity, bustle, ado [n] 2s</TD><TD>aktivnost, užurbanost</TD></TR>
<TR><TD>1488</TD><TD>3160</TD><TD>actor** [n]</TD><TD>glumac</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>2076</TD><TD>5954</TD><TD>addition [n]</TD><TD>dodatak</TD></TR>
<TR><TD>967</TD><TD>1643</TD><TD>address (postal co-ordinates) [n]</TD><TD>adresa</TD></TR>
<TR><TD>2798</TD><TD>23553</TD><TD>adhere (hold tightly to, stick to something) [v]</TD><TD>prianjati</TD></TR>
<TR><TD>2778</TD><TD>22181</TD><TD>adhesive [n]</TD><TD>ljepilo</TD></TR>
<TR><TD>2325</TD><TD>8174</TD><TD>adjustment [n]</TD><TD>usklađenje</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>1510</TD><TD>3256</TD><TD>admire [v] 2w</TD><TD>diviti se</TD></TR>
<TR><TD>552</TD><TD>774</TD><TD>admit*, confess (pf/impf) [v]</TD><TD>priznati / priznavati</TD></TR>
<TR><TD>1389</TD><TD>2838</TD><TD>adult* [n] 2w</TD><TD>odrasla osoba</TD></TR>
<TR><TD>2707</TD><TD>18019</TD><TD>advancement [n]</TD><TD>napredovanje</TD></TR>
<TR><TD>2623</TD><TD>14266</TD><TD>advertise** [v]</TD><TD>reklamirati</TD></TR>
<TR><TD>2788</TD><TD>22835</TD><TD>advertisement [n]</TD><TD>oglas</TD></TR>
<TR><TD>715</TD><TD>1081</TD><TD>advice [n]</TD><TD>savjet</TD></TR>
<TR><TD>1908</TD><TD>4990</TD><TD>advise** [v]</TD><TD>savjetovati</TD></TR>
<TR><TD>2808</TD><TD>24299</TD><TD>aesthetic [aj]</TD><TD>estetska</TD></TR>
<TR><TD>1507</TD><TD>3240</TD><TD>affect** [v] 2w</TD><TD>utjecati na</TD></TR>
<TR><TD>344</TD><TD>423</TD><TD>afraid** [aj]</TD><TD>uplašen</TD></TR>
<TR><TD>171</TD><TD>180</TD><TD>after* (later than; in the future of) [prep] 2s</TD><TD>nakon, poslije</TD></TR>
<TR><TD>722</TD><TD>1112</TD><TD>afternoon (noon to dusk) [n] 2s</TD><TD>poslijepodne, popodne</TD></TR>
<TR><TD>152</TD><TD>158</TD><TD>again*, once more, re- [av] 2s</TD><TD>opet, ponovno</TD></TR>
<TR><TD>387</TD><TD>485</TD><TD>against* [prep]</TD><TD>protiv</TD></TR>
<TR><TD>736</TD><TD>1139</TD><TD>age* (degree of oldness or youngness) [n]</TD><TD>dob</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>618</TD><TD>897</TD><TD>agree* (pf/impf) [v] 2w</TD><TD>složiti se / slugati se</TD></TR>
<TR><TD>1339</TD><TD>2694</TD><TD>agreement [n]</TD><TD>sporazum</TD></TR>
<TR><TD>2759</TD><TD>21620</TD><TD>agriculture** [n]</TD><TD>poljoprivreda</TD></TR>
<TR><TD>420</TD><TD>531</TD><TD>ahead [av]</TD><TD>ispred</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>548</TD><TD>769</TD><TD>air force** [n] 3s</TD><TD>avijacija, zrakoplovstvo, vazduhoplovstvo</TD></TR>
<TR><TD>549</TD><TD>769</TD><TD>air* [n]</TD><TD>zrak</TD></TR>
<TR><TD>1963</TD><TD>5296</TD><TD>airplane*, aircraft [n] 2s</TD><TD>avion, zrakoplov</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>1990</TD><TD>5423</TD><TD>album** [n]</TD><TD>album</TD></TR>
<TR><TD>1487</TD><TD>3159</TD><TD>alcohol* [n]</TD><TD>alkohola</TD></TR>
<TR><TD>2376</TD><TD>8730</TD><TD>ale [n]</TD><TD>pivo</TD></TR>
<TR><TD>1664</TD><TD>3906</TD><TD>alert [aj]</TD><TD>oprezan</TD></TR>
<TR><TD>450</TD><TD>585</TD><TD>alive* [aj]</TD><TD>živ</TD></TR>
<TR><TD>2920</TD><TD>99999</TD><TD>alkaline [aj]</TD><TD>alkalna</TD></TR>
<TR><TD>37</TD><TD>34</TD><TD>all* (the whole number or entire sum of) (m/f/n) [aj]</TD><TD>sav / sva / sve</TD></TR>
<TR><TD>2902</TD><TD>38284</TD><TD>allocation, allotment, portion (someone's share of X) [n] 2s</TD><TD>raspodjeli, alotmanskom</TD></TR>
<TR><TD>1852</TD><TD>4704</TD><TD>ally* [n]</TD><TD>kliker</TD></TR>
<TR><TD>390</TD><TD>488</TD><TD>almost*, nearly [av]</TD><TD>skoro</TD></TR>
<TR><TD>258</TD><TD>316</TD><TD>alone* [aj]</TD><TD>sam</TD></TR>
<TR><TD>434</TD><TD>549</TD><TD>along** [aj]</TD><TD>uzduž</TD></TR>
<TR><TD>2592</TD><TD>13177</TD><TD>alphabet [n]</TD><TD>abeceda</TD></TR>
<TR><TD>240</TD><TD>287</TD><TD>already* (prior to the time mentioned) [av]</TD><TD>već</TD></TR>
<TR><TD>407</TD><TD>516</TD><TD>also*, additionally, too [av]</TD><TD>također</TD></TR>
<TR><TD>2247</TD><TD>7436</TD><TD>alternate [n]</TD><TD>naizmjeničnim</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>183</TD><TD>194</TD><TD>always* (at all times) [av]</TD><TD>uvijek</TD></TR>
<TR><TD>120</TD><TD>125</TD><TD>am [v]</TD><TD>sam</TD></TR>
<TR><TD>2468</TD><TD>10465</TD><TD>amaze [v]</TD><TD>zadiviti</TD></TR>
<TR><TD>2137</TD><TD>6465</TD><TD>ambassador* [n]</TD><TD>veleposlanik</TD></TR>
<TR><TD>2281</TD><TD>7787</TD><TD>ammunition** [n]</TD><TD>streljivo</TD></TR>
<TR><TD>1290</TD><TD>2548</TD><TD>among* [prep]</TD><TD>među</TD></TR>
<TR><TD>1311</TD><TD>2610</TD><TD>amount* [n]</TD><TD>količina</TD></TR>
<TR><TD>2440</TD><TD>10047</TD><TD>amusement [n]</TD><TD>luna</TD></TR>
<TR><TD>2699</TD><TD>17638</TD><TD>anarchy** [n]</TD><TD>bezvlađe</TD></TR>
<TR><TD>2719</TD><TD>18780</TD><TD>ancestor** [n]</TD><TD>predak</TD></TR>
<TR><TD>1433</TD><TD>2959</TD><TD>ancient** [aj]</TD><TD>prastar</TD></TR>
<TR><TD>7</TD><TD>6</TD><TD>and* (plus/also) [cj]</TD><TD>i / a</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>1211</TD><TD>2308</TD><TD>anger** [n]</TD><TD>ljutnja</TD></TR>
<TR><TD>1648</TD><TD>3800</TD><TD>angle (the relation of two lines radiating from a point) [n]</TD><TD>kut</TD></TR>
<TR><TD>603</TD><TD>860</TD><TD>angry [aj]</TD><TD>ljut</TD></TR>
<TR><TD>1109</TD><TD>2031</TD><TD>animal* (non-vegetable creature) [n]</TD><TD>životinja</TD></TR>
<TR><TD>1934</TD><TD>5109</TD><TD>ankle [n]</TD><TD>gležanj</TD></TR>
<TR><TD>1340</TD><TD>2697</TD><TD>anniversary** [n]</TD><TD>obljetnica</TD></TR>
<TR><TD>1854</TD><TD>4719</TD><TD>announce*, proclaim [v] 2s</TD><TD>objaviti, proglasiti</TD></TR>
<TR><TD>2821</TD><TD>25984</TD><TD>annul [v]</TD><TD>anulirati</TD></TR>
<TR><TD>393</TD><TD>491</TD><TD>answer*, reply to a question or argument [n]</TD><TD>odgovor</TD></TR>
<TR><TD>2320</TD><TD>8128</TD><TD>ant (insect of family Formicidae) [n]</TD><TD>mrav</TD></TR>
<TR><TD>2736</TD><TD>20091</TD><TD>anus [n]</TD><TD>šupak</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>658</TD><TD>978</TD><TD>apart, separately [av] 2s</TD><TD>posebno, odvojeno</TD></TR>
<TR><TD>575</TD><TD>814</TD><TD>apartment [n]</TD><TD>stan</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>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>1793</TD><TD>4392</TD><TD>appearance [n]</TD><TD>izgled</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>2669</TD><TD>16117</TD><TD>appoint** [v]</TD><TD>imenovati</TD></TR>
<TR><TD>1816</TD><TD>4520</TD><TD>approval [n]</TD><TD>odobrenje</TD></TR>
<TR><TD>1640</TD><TD>3776</TD><TD>approve* (of) [v]</TD><TD>odobriti</TD></TR>
<TR><TD>2413</TD><TD>9388</TD><TD>apron [n]</TD><TD>pregača</TD></TR>
<TR><TD>2698</TD><TD>17635</TD><TD>arbitration [n]</TD><TD>arbitraža</TD></TR>
<TR><TD>2509</TD><TD>11452</TD><TD>arch [n]</TD><TD>slavoluk</TD></TR>
<TR><TD>2869</TD><TD>32002</TD><TD>archeology** [n]</TD><TD>arheologija</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>1265</TD><TD>2474</TD><TD>argue** [v]</TD><TD>dokazivati</TD></TR>
<TR><TD>1293</TD><TD>2557</TD><TD>argument [n]</TD><TD>argument</TD></TR>
<TR><TD>2508</TD><TD>11241</TD><TD>arise [v]</TD><TD>nastati</TD></TR>
<TR><TD>879</TD><TD>1447</TD><TD>arm (shoulder to hand) [n]</TD><TD>ruka</TD></TR>
<TR><TD>787</TD><TD>1235</TD><TD>arms** [n]</TD><TD>oružja</TD></TR>
<TR><TD>1018</TD><TD>1780</TD><TD>army* [n]</TD><TD>vojska</TD></TR>
<TR><TD>178</TD><TD>187</TD><TD>around*, encircling, surrounding [prep]</TD><TD>okolo</TD></TR>
<TR><TD>1589</TD><TD>3587</TD><TD>arrange [v]</TD><TD>organizirati</TD></TR>
<TR><TD>1686</TD><TD>3990</TD><TD>arrangement [n]</TD><TD>aranžman</TD></TR>
<TR><TD>814</TD><TD>1307</TD><TD>arrest** [v] 2s</TD><TD>uhititi, uhapsiti</TD></TR>
<TR><TD>2286</TD><TD>7824</TD><TD>arrow (sharp-tipped shaft shot from a bow) [n]</TD><TD>strelica</TD></TR>
<TR><TD>859</TD><TD>1408</TD><TD>art* (creative craft; productive use of talent) [n]</TD><TD>umijetnost</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>2452</TD><TD>10300</TD><TD>artificial (deliberately made by humans) [aj]</TD><TD>umjetne</TD></TR>
<TR><TD>2532</TD><TD>11915</TD><TD>artillery** [n]</TD><TD>topništvo</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>76</TD><TD>71</TD><TD>as* [av]</TD><TD>kao</TD></TR>
<TR><TD>2868</TD><TD>31994</TD><TD>ascent [n]</TD><TD>uspon</TD></TR>
<TR><TD>2921</TD><TD>99999</TD><TD>ascribe [v]</TD><TD>pripisivati</TD></TR>
<TR><TD>1381</TD><TD>2811</TD><TD>ash* [n]</TD><TD>pepeo</TD></TR>
<TR><TD>217</TD><TD>257</TD><TD>ask*, inquire [v]</TD><TD>pitati</TD></TR>
<TR><TD>490</TD><TD>652</TD><TD>ass (donkey) [n]</TD><TD>magarac</TD></TR>
<TR><TD>2324</TD><TD>8171</TD><TD>assembly [n]</TD><TD>montaža</TD></TR>
<TR><TD>2758</TD><TD>21605</TD><TD>assert [v]</TD><TD>potvrditi</TD></TR>
<TR><TD>2797</TD><TD>23531</TD><TD>assertive [aj]</TD><TD>izričan</TD></TR>
<TR><TD>1880</TD><TD>4856</TD><TD>associate [n]</TD><TD>suradnik</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>2391</TD><TD>9048</TD><TD>asylum** [n]</TD><TD>utočište</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>66</TD><TD>59</TD><TD>at most, only, just*, merely, not more than (<=) [av]</TD><TD>najviše</TD></TR>
<TR><TD>67</TD><TD>59</TD><TD>at* (in the same location as) [prep] 3s</TD><TD>u, pri, kod</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>2568</TD><TD>12701</TD><TD>attach** [v]</TD><TD>pričvrstiti</TD></TR>
<TR><TD>799</TD><TD>1274</TD><TD>attack* (pf/impf) [v]</TD><TD>napasti / napadati</TD></TR>
<TR><TD>1483</TD><TD>3149</TD><TD>attempt* [v]</TD><TD>pokušati</TD></TR>
<TR><TD>1667</TD><TD>3918</TD><TD>attend* [v]</TD><TD>prisustvovati</TD></TR>
<TR><TD>646</TD><TD>955</TD><TD>attention* (active perception) [n]</TD><TD>pozornost</TD></TR>
<TR><TD>2640</TD><TD>14876</TD><TD>attentive [aj]</TD><TD>predusretljiv</TD></TR>
<TR><TD>1489</TD><TD>3165</TD><TD>attic, garret [n] 2s</TD><TD>potkrovlje, tavan</TD></TR>
<TR><TD>2285</TD><TD>7823</TD><TD>attract [v]</TD><TD>privući</TD></TR>
<TR><TD>1969</TD><TD>5314</TD><TD>attraction [n]</TD><TD>atrakcija</TD></TR>
<TR><TD>2881</TD><TD>33754</TD><TD>audible [aj]</TD><TD>akustički</TD></TR>
<TR><TD>657</TD><TD>976</TD><TD>aunt [n]</TD><TD>tetka</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>2305</TD><TD>8019</TD><TD>automatic [aj]</TD><TD>automatsko</TD></TR>
<TR><TD>2590</TD><TD>13171</TD><TD>autumn*, fall [n]</TD><TD>jesen</TD></TR>
<TR><TD>2777</TD><TD>22150</TD><TD>auxiliary [aj]</TD><TD>pomoćne</TD></TR>
<TR><TD>1104</TD><TD>2021</TD><TD>available** [aj]</TD><TD>raspoloživ</TD></TR>
<TR><TD>1661</TD><TD>3858</TD><TD>average* [aj]</TD><TD>prosječno</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>1131</TD><TD>2120</TD><TD>awake* [aj]</TD><TD>budan</TD></TR>
<TR><TD>927</TD><TD>1552</TD><TD>aware [aj]</TD><TD>svjestan</TD></TR>
<TR><TD>161</TD><TD>170</TD><TD>away* (from this or that place) [av]</TD><TD>dalje</TD></TR>
<TR><TD>2386</TD><TD>8836</TD><TD>axe [n]</TD><TD>sjekira</TD></TR>
<TR><TD>203</TD><TD>231</TD><TD>baby*, infant [n] 2s</TD><TD>beba, dijete</TD></TR>
<TR><TD>85</TD><TD>78</TD><TD>back* (dorsal area) [n]</TD><TD>leđa</TD></TR>
<TR><TD>86</TD><TD>78</TD><TD>back* (position) [av]</TD><TD>natrag</TD></TR>
<TR><TD>1569</TD><TD>3502</TD><TD>background [n]</TD><TD>pozadina</TD></TR>
<TR><TD>2589</TD><TD>13169</TD><TD>backward (in reverse order) [av]</TD><TD>unatrag</TD></TR>
<TR><TD>195</TD><TD>217</TD><TD>bad* [aj] 2s</TD><TD>zao, loš</TD></TR>
<TR><TD>685</TD><TD>1026</TD><TD>bag [n]</TD><TD>torba</TD></TR>
<TR><TD>2067</TD><TD>5896</TD><TD>bake (cook or harden by means of dry heat) [v]</TD><TD>peći</TD></TR>
<TR><TD>1568</TD><TD>3501</TD><TD>balance*, equilibrium [n] 2s</TD><TD>balans, ravnoteža</TD></TR>
<TR><TD>686</TD><TD>1029</TD><TD>ball* (spheroidal plaything) [n]</TD><TD>lopta</TD></TR>
<TR><TD>2041</TD><TD>5682</TD><TD>balloon* [n]</TD><TD>balon</TD></TR>
<TR><TD>2648</TD><TD>15098</TD><TD>ballot** [n]</TD><TD>glasanje</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>2497</TD><TD>11028</TD><TD>ban** [v]</TD><TD>zabraniti</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>913</TD><TD>1524</TD><TD>band (group) [n] 2s</TD><TD>bend, grupa</TD></TR>
<TR><TD>914</TD><TD>1524</TD><TD>band, tape, flat strip [n]</TD><TD>traka</TD></TR>
<TR><TD>844</TD><TD>1383</TD><TD>bank* (monetary institution) [n]</TD><TD>banka</TD></TR>
<TR><TD>845</TD><TD>1383</TD><TD>bank* (of river) [n]</TD><TD>obala</TD></TR>
<TR><TD>649</TD><TD>960</TD><TD>bar*, rod [n] 2s</TD><TD>štap, palica</TD></TR>
<TR><TD>2246</TD><TD>7435</TD><TD>bark (of a tree) [n]</TD><TD>kora</TD></TR>
<TR><TD>2021</TD><TD>5593</TD><TD>barrel, cask [n] 2s</TD><TD>cijev, bačva</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>1317</TD><TD>2626</TD><TD>baseball [n]</TD><TD>bejzbol</TD></TR>
<TR><TD>2806</TD><TD>24250</TD><TD>basin [n]</TD><TD>slivno</TD></TR>
<TR><TD>1679</TD><TD>3968</TD><TD>basis, foundation (part which supports the rest) [n] 2s</TD><TD>osnova, temelj</TD></TR>
<TR><TD>1562</TD><TD>3463</TD><TD>basket [n]</TD><TD>koš</TD></TR>
<TR><TD>1522</TD><TD>3305</TD><TD>basketball [n]</TD><TD>košarci</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>2202</TD><TD>6990</TD><TD>batch (quantity of things done or produced at one time) [n]</TD><TD>gomila</TD></TR>
<TR><TD>1303</TD><TD>2585</TD><TD>bath [n]</TD><TD>kupka</TD></TR>
<TR><TD>1207</TD><TD>2297</TD><TD>battle** [n]</TD><TD>bitka</TD></TR>
<TR><TD>1476</TD><TD>3134</TD><TD>bay (small body of water offset from lake or sea) [n]</TD><TD>uvala</TD></TR>
<TR><TD>28</TD><TD>25</TD><TD>be* (intransitive predicative copula) [v]</TD><TD>biti</TD></TR>
<TR><TD>992</TD><TD>1704</TD><TD>beach, shore [n] 2s</TD><TD>plaže, obala</TD></TR>
<TR><TD>2743</TD><TD>20523</TD><TD>bead [n]</TD><TD>zrnce</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>982</TD><TD>1681</TD><TD>bear (animal of Ursidae family) [n]</TD><TD>medvjed</TD></TR>
<TR><TD>1989</TD><TD>5422</TD><TD>beard [n]</TD><TD>bradi</TD></TR>
<TR><TD>639</TD><TD>942</TD><TD>beat* (repeatedly hit), batter [v]</TD><TD>pobijediti</TD></TR>
<TR><TD>338</TD><TD>416</TD><TD>beautiful [aj] 2s</TD><TD>lijep, prekrasan</TD></TR>
<TR><TD>1072</TD><TD>1940</TD><TD>beauty* [n]</TD><TD>ljepota</TD></TR>
<TR><TD>94</TD><TD>95</TD><TD>because* of, due to, then* [prep] 2s;1,2w</TD><TD>zbog, zato što</TD></TR>
<TR><TD>589</TD><TD>841</TD><TD>become* (begin to be; acquire the quality...) (pf/impf) [v]</TD><TD>postati / postajati</TD></TR>
<TR><TD>406</TD><TD>515</TD><TD>bed* [n]</TD><TD>krevet</TD></TR>
<TR><TD>2088</TD><TD>6036</TD><TD>bee (member of genus Apis) [n]</TD><TD>pčela</TD></TR>
<TR><TD>793</TD><TD>1264</TD><TD>beer [n]</TD><TD>pivo</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>156</TD><TD>165</TD><TD>before*, prior to, earlier than, ago* [prep]</TD><TD>prije</TD></TR>
<TR><TD>821</TD><TD>1331</TD><TD>begin*, commence, start (pf/impf) [v]</TD><TD>početi / počinjati</TD></TR>
<TR><TD>1093</TD><TD>1994</TD><TD>behavior*, conduct [n]</TD><TD>ponašanje</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>1753</TD><TD>4261</TD><TD>belief [n]</TD><TD>vjerovanje</TD></TR>
<TR><TD>163</TD><TD>172</TD><TD>believe* (accept as true) [v]</TD><TD>vjerovati</TD></TR>
<TR><TD>1332</TD><TD>2676</TD><TD>bell [n]</TD><TD>zvono</TD></TR>
<TR><TD>1839</TD><TD>4621</TD><TD>belly [n]</TD><TD>trbuh</TD></TR>
<TR><TD>875</TD><TD>1441</TD><TD>belong** (pf/impf) [v]</TD><TD>pripasti / pripadati</TD></TR>
<TR><TD>1601</TD><TD>3619</TD><TD>below* [prep]</TD><TD>ispod</TD></TR>
<TR><TD>1471</TD><TD>3120</TD><TD>belt [n]</TD><TD>pojas</TD></TR>
<TR><TD>1804</TD><TD>4459</TD><TD>bend [n]</TD><TD>zavoj</TD></TR>
<TR><TD>1331</TD><TD>2675</TD><TD>benefit [n]</TD><TD>korist</TD></TR>
<TR><TD>1814</TD><TD>4519</TD><TD>bent [aj] 2w</TD><TD>veoma sklon</TD></TR>
<TR><TD>1815</TD><TD>4519</TD><TD>bent [v]</TD><TD>upokoriti</TD></TR>
<TR><TD>2512</TD><TD>11557</TD><TD>berry (small pulpy fruit) [n]</TD><TD>bobica</TD></TR>
<TR><TD>1651</TD><TD>3809</TD><TD>beside [prep] 4s</TD><TD>pored, kraj, do, uz</TD></TR>
<TR><TD>218</TD><TD>258</TD><TD>best* [aj]</TD><TD>najbolji</TD></TR>
<TR><TD>453</TD><TD>592</TD><TD>bet [n]</TD><TD>oklada</TD></TR>
<TR><TD>454</TD><TD>592</TD><TD>bet [v] 2w</TD><TD>kladiti se</TD></TR>
<TR><TD>1685</TD><TD>3988</TD><TD>betray** [v]</TD><TD>izdati</TD></TR>
<TR><TD>157</TD><TD>166</TD><TD>better* [av]</TD><TD>bolje</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>938</TD><TD>1581</TD><TD>beyond, farther than, exceeding [prep] 3s;1,1,2w</TD><TD>onkraj, iznad, dalje od</TD></TR>
<TR><TD>2237</TD><TD>7327</TD><TD>bicycle [n]</TD><TD>bicikl</TD></TR>
<TR><TD>186</TD><TD>201</TD><TD>big*, large* (of much size), major* [aj] 2s</TD><TD>velik, ogroman</TD></TR>
<TR><TD>619</TD><TD>899</TD><TD>bill* (of bird) [n]</TD><TD>kljun</TD></TR>
<TR><TD>620</TD><TD>899</TD><TD>bill*, invoice (statement of money owed) [n]</TD><TD>račun</TD></TR>
<TR><TD>2193</TD><TD>6909</TD><TD>biology** [n]</TD><TD>biologija</TD></TR>
<TR><TD>1038</TD><TD>1852</TD><TD>bird* (egg-laying feathered animal with wings) [n]</TD><TD>ptica</TD></TR>
<TR><TD>1033</TD><TD>1827</TD><TD>birth [n]</TD><TD>rođenja</TD></TR>
<TR><TD>354</TD><TD>437</TD><TD>bit (small amount, particle) [n]</TD><TD>djelić</TD></TR>
<TR><TD>984</TD><TD>1683</TD><TD>bite* (dog), bite (insect) [n] 2s</TD><TD>ugriz, ubod</TD></TR>
<TR><TD>985</TD><TD>1683</TD><TD>bite* [v]</TD><TD>gristi</TD></TR>
<TR><TD>1655</TD><TD>3834</TD><TD>bitter [aj]</TD><TD>gorak</TD></TR>
<TR><TD>537</TD><TD>751</TD><TD>black* [aj]</TD><TD>crn</TD></TR>
<TR><TD>2475</TD><TD>10550</TD><TD>bladder [n]</TD><TD>mjehur</TD></TR>
<TR><TD>1863</TD><TD>4761</TD><TD>blade [n]</TD><TD>oštrica</TD></TR>
<TR><TD>571</TD><TD>810</TD><TD>blame* (pf/impf) [v]</TD><TD>okriviti / okrivljavati</TD></TR>
<TR><TD>570</TD><TD>810</TD><TD>blame* [n]</TD><TD>krivnja, krivica</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>1960</TD><TD>5282</TD><TD>bleed** [v]</TD><TD>krvariti</TD></TR>
<TR><TD>2889</TD><TD>35670</TD><TD>blemish, blot [n] 2s</TD><TD>mane, upijati</TD></TR>
<TR><TD>2233</TD><TD>7299</TD><TD>blend [n]</TD><TD>mješavina</TD></TR>
<TR><TD>1408</TD><TD>2888</TD><TD>bless (wish good upon) [v]</TD><TD>blagosloviti</TD></TR>
<TR><TD>1020</TD><TD>1787</TD><TD>blind* [aj]</TD><TD>slijep</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>1123</TD><TD>2080</TD><TD>block* [v]</TD><TD>blokirati</TD></TR>
<TR><TD>455</TD><TD>593</TD><TD>blood* [n]</TD><TD>krv</TD></TR>
<TR><TD>676</TD><TD>1004</TD><TD>blow* (move or cause to move as a current of gas) (pf/impf) [v] 2s</TD><TD>puhniti, duhnuti / puhati, duhati</TD></TR>
<TR><TD>690</TD><TD>1037</TD><TD>blue* [aj]</TD><TD>plav</TD></TR>
<TR><TD>2262</TD><TD>7581</TD><TD>blunt [aj]</TD><TD>tup</TD></TR>
<TR><TD>762</TD><TD>1192</TD><TD>board [n]</TD><TD>ploča</TD></TR>
<TR><TD>730</TD><TD>1125</TD><TD>boat* [n]</TD><TD>brod</TD></TR>
<TR><TD>470</TD><TD>618</TD><TD>body* [n]</TD><TD>tijelo</TD></TR>
<TR><TD>2271</TD><TD>7708</TD><TD>boil* [v]</TD><TD>kipjeti</TD></TR>
<TR><TD>2576</TD><TD>12846</TD><TD>boiled [aj]</TD><TD>obaren</TD></TR>
<TR><TD>2482</TD><TD>10721</TD><TD>boiling [aj]</TD><TD>uzavreo</TD></TR>
<TR><TD>1044</TD><TD>1871</TD><TD>bomb* [n]</TD><TD>bomba</TD></TR>
<TR><TD>1206</TD><TD>2296</TD><TD>bone* [n]</TD><TD>kost</TD></TR>
<TR><TD>436</TD><TD>560</TD><TD>book* [n]</TD><TD>knjiga</TD></TR>
<TR><TD>1931</TD><TD>5085</TD><TD>boot [n] 2w</TD><TD>visoka cipela</TD></TR>
<TR><TD>1807</TD><TD>4484</TD><TD>border** [n]</TD><TD>granica</TD></TR>
<TR><TD>1082</TD><TD>1969</TD><TD>boring, tedious [aj] 2s</TD><TD>dosadno, zamorno</TD></TR>
<TR><TD>723</TD><TD>1114</TD><TD>born** [aj]</TD><TD>rođen</TD></TR>
<TR><TD>1199</TD><TD>2278</TD><TD>borrow* [v]</TD><TD>posuditi</TD></TR>
<TR><TD>254</TD><TD>312</TD><TD>both* (m/f/n) [aj]</TD><TD>oba / obje / oba</TD></TR>
<TR><TD>937</TD><TD>1580</TD><TD>bottle* [n] 2s</TD><TD>boca, flaša</TD></TR>
<TR><TD>833</TD><TD>1366</TD><TD>bottom* [n]</TD><TD>dno</TD></TR>
<TR><TD>1977</TD><TD>5346</TD><TD>bounce, rebound [v]</TD><TD>odskočiti</TD></TR>
<TR><TD>2775</TD><TD>22125</TD><TD>boundary [n]</TD><TD>granica</TD></TR>
<TR><TD>1709</TD><TD>4073</TD><TD>bow (for arrows) [n]</TD><TD>luk</TD></TR>
<TR><TD>1443</TD><TD>2991</TD><TD>bowl (deep round dish) [n]</TD><TD>zdjela</TD></TR>
<TR><TD>668</TD><TD>990</TD><TD>box* (rigid rectangular receptacle) [n]</TD><TD>kutija</TD></TR>
<TR><TD>253</TD><TD>311</TD><TD>boy* [n]</TD><TD>dječak</TD></TR>
<TR><TD>2697</TD><TD>17618</TD><TD>boycott** [v]</TD><TD>bojkotovati</TD></TR>
<TR><TD>731</TD><TD>1127</TD><TD>brain* [n]</TD><TD>mozak</TD></TR>
<TR><TD>2255</TD><TD>7509</TD><TD>brake [n]</TD><TD>kočionu</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>2003</TD><TD>5500</TD><TD>brass (copper-zinc alloy) [n]</TD><TD>mjed</TD></TR>
<TR><TD>1116</TD><TD>2055</TD><TD>brave** [aj]</TD><TD>junak</TD></TR>
<TR><TD>1441</TD><TD>2978</TD><TD>bread* [n]</TD><TD>kruh</TD></TR>
<TR><TD>360</TD><TD>448</TD><TD>break* (into pieces) (pf/impf) [v]</TD><TD>razbiti / razbijati</TD></TR>
<TR><TD>1890</TD><TD>4882</TD><TD>breast, mammary [n]</TD><TD>prsa</TD></TR>
<TR><TD>907</TD><TD>1499</TD><TD>breath [n]</TD><TD>dah</TD></TR>
<TR><TD>816</TD><TD>1311</TD><TD>breathe* [v]</TD><TD>disati</TD></TR>
<TR><TD>2230</TD><TD>7274</TD><TD>breed [n]</TD><TD>pasmine</TD></TR>
<TR><TD>1915</TD><TD>5025</TD><TD>bribe [n]</TD><TD>mito</TD></TR>
<TR><TD>2025</TD><TD>5613</TD><TD>brick (hard clay block) [n]</TD><TD>opeku</TD></TR>
<TR><TD>1175</TD><TD>2221</TD><TD>bridge* [n]</TD><TD>most</TD></TR>
<TR><TD>1017</TD><TD>1775</TD><TD>bright* (with much light present) [aj]</TD><TD>svijetle</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>2055</TD><TD>5773</TD><TD>broadcast** [v]</TD><TD>emitirati</TD></TR>
<TR><TD>714</TD><TD>1080</TD><TD>broken [aj]</TD><TD>razbijen</TD></TR>
<TR><TD>2192</TD><TD>6908</TD><TD>broom [n]</TD><TD>metlu</TD></TR>
<TR><TD>334</TD><TD>411</TD><TD>brother* [n]</TD><TD>brat</TD></TR>
<TR><TD>993</TD><TD>1706</TD><TD>brown* [aj]</TD><TD>smeđ</TD></TR>
<TR><TD>1688</TD><TD>3998</TD><TD>brush [n]</TD><TD>četka</TD></TR>
<TR><TD>1937</TD><TD>5133</TD><TD>bucket, pail [n]</TD><TD>kanta</TD></TR>
<TR><TD>1140</TD><TD>2139</TD><TD>bud (of flower or leaf) [n]</TD><TD>korijenu</TD></TR>
<TR><TD>1683</TD><TD>3981</TD><TD>budget** [n]</TD><TD>proračun</TD></TR>
<TR><TD>1007</TD><TD>1746</TD><TD>build* (join materials to create), construct [v]</TD><TD>izgraditi</TD></TR>
<TR><TD>628</TD><TD>912</TD><TD>building*, edifice (structure with walls and roof) [n]</TD><TD>zgrada</TD></TR>
<TR><TD>2408</TD><TD>9298</TD><TD>bulb [n]</TD><TD>žarulja</TD></TR>
<TR><TD>1153</TD><TD>2160</TD><TD>bullet* [n]</TD><TD>metak</TD></TR>
<TR><TD>1759</TD><TD>4277</TD><TD>bump, protrusion [n] 2s</TD><TD>zvonolika, plaženje</TD></TR>
<TR><TD>2358</TD><TD>8492</TD><TD>bundle, bunch (group of things tied or grouped together) [n] 2s</TD><TD>snop, svežanj</TD></TR>
<TR><TD>965</TD><TD>1640</TD><TD>burn* [n]</TD><TD>opeklina</TD></TR>
<TR><TD>966</TD><TD>1640</TD><TD>burn* [v]</TD><TD>gorjeti</TD></TR>
<TR><TD>1796</TD><TD>4403</TD><TD>burst* [v]</TD><TD>eksplodirati</TD></TR>
<TR><TD>1576</TD><TD>3537</TD><TD>bury** [v]</TD><TD>pokopati</TD></TR>
<TR><TD>881</TD><TD>1451</TD><TD>bus* [n]</TD><TD>autobus</TD></TR>
<TR><TD>2040</TD><TD>5681</TD><TD>bush, shrub [n] 2s</TD><TD>grmu, šiblje</TD></TR>
<TR><TD>293</TD><TD>355</TD><TD>business*, commerce [n]</TD><TD>biznis</TD></TR>
<TR><TD>535</TD><TD>748</TD><TD>busy* [aj] 2s</TD><TD>zaposlen, zauzet</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>1474</TD><TD>3125</TD><TD>butter [n]</TD><TD>maslac</TD></TR>
<TR><TD>2403</TD><TD>9235</TD><TD>butterfly [n]</TD><TD>leptir</TD></TR>
<TR><TD>2690</TD><TD>17337</TD><TD>buttocks [n]</TD><TD>guza</TD></TR>
<TR><TD>1313</TD><TD>2616</TD><TD>button (on a shirt etc.) [n]</TD><TD>dugme</TD></TR>
<TR><TD>468</TD><TD>610</TD><TD>buy*, purchase* (pf/impf) [v]</TD><TD>kupiti / kupovati</TD></TR>
<TR><TD>126</TD><TD>132</TD><TD>by means of, via, per, with (using; through instrumentality of) [prep] 1(5)w</TD><TD>pomoću (or just use instrumental case)</TD></TR>
<TR><TD>127</TD><TD>132</TD><TD>by*, next to, beside [prep] 3s</TD><TD>pored, pokraj, uz</TD></TR>
<TR><TD>2605</TD><TD>13503</TD><TD>cabbage (plant or leaves of sp. Brassica oleracea capitata) [n]</TD><TD>kupus</TD></TR>
<TR><TD>1875</TD><TD>4840</TD><TD>cabinet** [n]</TD><TD>kabinet</TD></TR>
<TR><TD>1671</TD><TD>3935</TD><TD>cage [n]</TD><TD>kavez</TD></TR>
<TR><TD>873</TD><TD>1432</TD><TD>cake [n] 2s</TD><TD>kolać, torta</TD></TR>
<TR><TD>2685</TD><TD>16973</TD><TD>calculate, reckon [v]</TD><TD>računati</TD></TR>
<TR><TD>153</TD><TD>162</TD><TD>call*, summon (pf/impf) [v] 3s</TD><TD>nazvati, pozvati, prizvati / zvati, pozivati, prizivati</TD></TR>
<TR><TD>566</TD><TD>804</TD><TD>calm** [aj]</TD><TD>miran, smiren</TD></TR>
<TR><TD>2542</TD><TD>12037</TD><TD>camel [n]</TD><TD>deva</TD></TR>
<TR><TD>905</TD><TD>1491</TD><TD>camera* [n]</TD><TD>kamera</TD></TR>
<TR><TD>1178</TD><TD>2228</TD><TD>camp*, bivouac, temporary shelter* [n] 2s</TD><TD>logoru, bivak</TD></TR>
<TR><TD>1215</TD><TD>2323</TD><TD>campaign* (for political office) [n]</TD><TD>kampanje</TD></TR>
<TR><TD>58</TD><TD>51</TD><TD>can* (presealed metal container) {British: tin} [n]</TD><TD>limenka</TD></TR>
<TR><TD>57</TD><TD>51</TD><TD>can*, may* (I/you sg./he,she,it/we/you pl.+pol./they) [aux-v-pres]</TD><TD>mogu / možeš / može / možemo / možete / mogu</TD></TR>
<TR><TD>56</TD><TD>51</TD><TD>can*, may* (to be able to) [aux-v-inf]</TD><TD>moći</TD></TR>
<TR><TD>2420</TD><TD>9508</TD><TD>canal, channel, ditch [n] 2s</TD><TD>kanala, kanal</TD></TR>
<TR><TD>1295</TD><TD>2564</TD><TD>cancel** [v]</TD><TD>otkazati</TD></TR>
<TR><TD>1231</TD><TD>2373</TD><TD>cancer** [n]</TD><TD>rak</TD></TR>
<TR><TD>2024</TD><TD>5612</TD><TD>candidate** [n]</TD><TD>kandidat</TD></TR>
<TR><TD>1557</TD><TD>3450</TD><TD>candle [n]</TD><TD>svijeća</TD></TR>
<TR><TD>2304</TD><TD>8015</TD><TD>cannon [n]</TD><TD>topove</TD></TR>
<TR><TD>2503</TD><TD>11133</TD><TD>canvas [n]</TD><TD>platnu</TD></TR>
<TR><TD>2110</TD><TD>6310</TD><TD>cape [n]</TD><TD>rt</TD></TR>
<TR><TD>1706</TD><TD>4065</TD><TD>capital* [n]</TD><TD>kapital</TD></TR>
<TR><TD>2095</TD><TD>6079</TD><TD>capture* [n]</TD><TD>zauzimanja</TD></TR>
<TR><TD>2096</TD><TD>6079</TD><TD>capture*, seize* [v] 2s</TD><TD>uhvatiti, ugrabiti</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>2402</TD><TD>9234</TD><TD>carbon [n]</TD><TD>ugljika</TD></TR>
<TR><TD>697</TD><TD>1053</TD><TD>card (stiff rectangle of material) [n]</TD><TD>kartica</TD></TR>
<TR><TD>194</TD><TD>216</TD><TD>care*, concern* (about someone or something) [n] 2s</TD><TD>skrb, briga</TD></TR>
<TR><TD>813</TD><TD>1306</TD><TD>career** [n]</TD><TD>karijera</TD></TR>
<TR><TD>595</TD><TD>848</TD><TD>careful** [aj]</TD><TD>pažljiv</TD></TR>
<TR><TD>2136</TD><TD>6461</TD><TD>carriage [n]</TD><TD>kolica</TD></TR>
<TR><TD>2147</TD><TD>6591</TD><TD>carrot (plant or root of sp. Daucus carota sativus) [n]</TD><TD>mrkva</TD></TR>
<TR><TD>891</TD><TD>1462</TD><TD>carry* (move while supporting) (pf/impf) [v]</TD><TD>nositi / nosati</TD></TR>
<TR><TD>2054</TD><TD>5772</TD><TD>cart, carriage, wagon (wheeled vehicle; not self-propelled) [n] 2s</TD><TD>kola, kolica</TD></TR>
<TR><TD>316</TD><TD>390</TD><TD>case (court)** [n] 1(1)w</TD><TD>slučaj (sud)</TD></TR>
<TR><TD>317</TD><TD>390</TD><TD>case (medical)** [n] 1(1)w</TD><TD>slučaj (medicinski)</TD></TR>
<TR><TD>1230</TD><TD>2372</TD><TD>cast [n]</TD><TD>lijevana</TD></TR>
<TR><TD>777</TD><TD>1214</TD><TD>cat* (Felis catus) [n]</TD><TD>mačka</TD></TR>
<TR><TD>539</TD><TD>756</TD><TD>catch* (stop the motion of and seize in the hands) [v]</TD><TD>uhvatiti</TD></TR>
<TR><TD>2232</TD><TD>7296</TD><TD>category, classification [n] 2s</TD><TD>kategoriju, klasifikacija</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>295</TD><TD>357</TD><TD>cause* [n]</TD><TD>uzrok</TD></TR>
<TR><TD>2236</TD><TD>7324</TD><TD>caution, prudence, carefulness [n] 2s</TD><TD>oprez, razboritost</TD></TR>
<TR><TD>1452</TD><TD>3018</TD><TD>cave [n]</TD><TD>pećina</TD></TR>
<TR><TD>2502</TD><TD>11130</TD><TD>cavity [n]</TD><TD>šupljina</TD></TR>
<TR><TD>2245</TD><TD>7393</TD><TD>cease, stop doing, quit [v] 2s;1,2w</TD><TD>prestati, zaustaviti radiš</TD></TR>
<TR><TD>2922</TD><TD>99999</TD><TD>ceasefire** [n] 2w</TD><TD>prekid vatre</TD></TR>
<TR><TD>1955</TD><TD>5261</TD><TD>ceiling [n]</TD><TD>strop</TD></TR>
<TR><TD>1025</TD><TD>1803</TD><TD>celebrate*, rejoice [v]</TD><TD>slaviti</TD></TR>
<TR><TD>2155</TD><TD>6644</TD><TD>cellar, basement [n] 2s</TD><TD>podrum, suteren</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>1386</TD><TD>2830</TD><TD>century* [n]</TD><TD>stoljeća</TD></TR>
<TR><TD>1193</TD><TD>2255</TD><TD>ceremony* [n]</TD><TD>svečanost</TD></TR>
<TR><TD>659</TD><TD>979</TD><TD>certain, sure* [aj]</TD><TD>siguran</TD></TR>
<TR><TD>1449</TD><TD>3009</TD><TD>chain (connected series of rings or links) [n]</TD><TD>lanac</TD></TR>
<TR><TD>918</TD><TD>1534</TD><TD>chair (furniture for one person to sit on) [n]</TD><TD>stolica</TD></TR>
<TR><TD>2012</TD><TD>5550</TD><TD>chairman* [n]</TD><TD>predsjednik</TD></TR>
<TR><TD>2229</TD><TD>7272</TD><TD>chalk [n]</TD><TD>kredu</TD></TR>
<TR><TD>1763</TD><TD>4291</TD><TD>champion** [n]</TD><TD>šampion</TD></TR>
<TR><TD>300</TD><TD>365</TD><TD>chance*, randomicity, luck* [n]</TD><TD>prilika</TD></TR>
<TR><TD>324</TD><TD>397</TD><TD>change* (become or make different), vary [v]</TD><TD>mijenjati</TD></TR>
<TR><TD>325</TD><TD>397</TD><TD>change* [n]</TD><TD>promjena</TD></TR>
<TR><TD>1645</TD><TD>3790</TD><TD>chapter (main division of book) [n]</TD><TD>poglavlje</TD></TR>
<TR><TD>2855</TD><TD>30355</TD><TD>characteristic [aj]</TD><TD>karakterističan</TD></TR>
<TR><TD>728</TD><TD>1122</TD><TD>charge* (money) [n]</TD><TD>cijena</TD></TR>
<TR><TD>1961</TD><TD>5294</TD><TD>chart [n]</TD><TD>grafikona</TD></TR>
<TR><TD>1962</TD><TD>5294</TD><TD>chart, diagram [n]</TD><TD>dijagram</TD></TR>
<TR><TD>1229</TD><TD>2370</TD><TD>chase** [v]</TD><TD>loviti</TD></TR>
<TR><TD>1144</TD><TD>2147</TD><TD>cheap, inexpensive [aj] 2s</TD><TD>jeftino, jeftin</TD></TR>
<TR><TD>1637</TD><TD>3770</TD><TD>cheat** [v]</TD><TD>prevariti</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>2019</TD><TD>5571</TD><TD>cheek (side of face below eye) [n]</TD><TD>obraz</TD></TR>
<TR><TD>1383</TD><TD>2821</TD><TD>cheer** [v]</TD><TD>klicati</TD></TR>
<TR><TD>1035</TD><TD>1844</TD><TD>cheese [n]</TD><TD>sir</TD></TR>
<TR><TD>1983</TD><TD>5387</TD><TD>chemical (substance made by or used in chemistry) [n]</TD><TD>kemijske</TD></TR>
<TR><TD>1984</TD><TD>5387</TD><TD>chemical [n]</TD><TD>kemijski</TD></TR>
<TR><TD>2395</TD><TD>9114</TD><TD>chemicals** [n]</TD><TD>kemikalije</TD></TR>
<TR><TD>1849</TD><TD>4689</TD><TD>chemistry** [n]</TD><TD>kemija</TD></TR>
<TR><TD>2065</TD><TD>5877</TD><TD>chess [n]</TD><TD>šah</TD></TR>
<TR><TD>1173</TD><TD>2220</TD><TD>chest (upper front of torso) [n] 2w</TD><TD>prsnog koša</TD></TR>
<TR><TD>1174</TD><TD>2220</TD><TD>chest, box [n] 2s</TD><TD>kovčeg, kutija</TD></TR>
<TR><TD>932</TD><TD>1563</TD><TD>chicken [n]</TD><TD>kokoš</TD></TR>
<TR><TD>744</TD><TD>1153</TD><TD>chief* [n]</TD><TD>šef</TD></TR>
<TR><TD>745</TD><TD>1153</TD><TD>chief*, leader [n] 2s</TD><TD>poglavar, vođa</TD></TR>
<TR><TD>746</TD><TD>1153</TD><TD>chief*, main*, primary, principal [aj]</TD><TD>glavni</TD></TR>
<TR><TD>398</TD><TD>497</TD><TD>child* [n]</TD><TD>dijete</TD></TR>
<TR><TD>441</TD><TD>566</TD><TD>children** [n]</TD><TD>djeca</TD></TR>
<TR><TD>2507</TD><TD>11230</TD><TD>chimney [n]</TD><TD>dimnjak</TD></TR>
<TR><TD>1806</TD><TD>4477</TD><TD>chin [n]</TD><TD>brada</TD></TR>
<TR><TD>1075</TD><TD>1951</TD><TD>chocolate [n]</TD><TD>čokolada</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>836</TD><TD>1369</TD><TD>church (building or institution of public worship) [n]</TD><TD>crkva</TD></TR>
<TR><TD>1635</TD><TD>3755</TD><TD>cigarette [n]</TD><TD>cigareta</TD></TR>
<TR><TD>1526</TD><TD>3334</TD><TD>circle* [n]</TD><TD>krug</TD></TR>
<TR><TD>2511</TD><TD>11551</TD><TD>circumstance [n]</TD><TD>okolnost</TD></TR>
<TR><TD>1702</TD><TD>4055</TD><TD>citizen* [n]</TD><TD>građanin</TD></TR>
<TR><TD>516</TD><TD>709</TD><TD>city* [n]</TD><TD>grad</TD></TR>
<TR><TD>1458</TD><TD>3067</TD><TD>civil rights** [n] 2w</TD><TD>građanska prava</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>1285</TD><TD>2523</TD><TD>claim*, assertion (statement of unknown accuracy) [n]</TD><TD>tvrdnja</TD></TR>
<TR><TD>2604</TD><TD>13497</TD><TD>clash** [n]</TD><TD>sukob</TD></TR>
<TR><TD>521</TD><TD>713</TD><TD>class** [n] 2s</TD><TD>razred, klasa</TD></TR>
<TR><TD>1588</TD><TD>3585</TD><TD>clay [n]</TD><TD>glina</TD></TR>
<TR><TD>578</TD><TD>817</TD><TD>clean* [aj]</TD><TD>čist</TD></TR>
<TR><TD>443</TD><TD>574</TD><TD>clear* [v]</TD><TD>raščistiti</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>2774</TD><TD>22097</TD><TD>clergy** [n]</TD><TD>svećenstvo</TD></TR>
<TR><TD>1691</TD><TD>4007</TD><TD>cliff [n]</TD><TD>litica</TD></TR>
<TR><TD>2541</TD><TD>12033</TD><TD>climate** [n]</TD><TD>klima</TD></TR>
<TR><TD>1619</TD><TD>3686</TD><TD>climb* [v] 2s;1,2w</TD><TD>popeti, penjati se</TD></TR>
<TR><TD>1148</TD><TD>2152</TD><TD>clock* [n]</TD><TD>sat</TD></TR>
<TR><TD>898</TD><TD>1475</TD><TD>closed, shut [aj]</TD><TD>zatvoren</TD></TR>
<TR><TD>2319</TD><TD>8117</TD><TD>cloth*, fabric (material made of threads) [n] 2s</TD><TD>tkaninu, tkanina</TD></TR>
<TR><TD>640</TD><TD>945</TD><TD>clothes** [n]</TD><TD>odjeća</TD></TR>
<TR><TD>1762</TD><TD>4290</TD><TD>cloud* [n]</TD><TD>oblak</TD></TR>
<TR><TD>563</TD><TD>801</TD><TD>club, cudgel [n] 2s</TD><TD>toljaga</TD></TR>
<TR><TD>564</TD><TD>801</TD><TD>club, society (voluntary association re: a common interest) [n] 2s</TD><TD>klub, društvo</TD></TR>
<TR><TD>2479</TD><TD>10637</TD><TD>coal* [n]</TD><TD>ugljena</TD></TR>
<TR><TD>2563</TD><TD>12536</TD><TD>coalition** [n]</TD><TD>koalicija</TD></TR>
<TR><TD>1419</TD><TD>2920</TD><TD>coast** [n]</TD><TD>obala</TD></TR>
<TR><TD>1023</TD><TD>1799</TD><TD>coat (heavy outer garment with sleeves) [n]</TD><TD>kaput</TD></TR>
<TR><TD>2540</TD><TD>12032</TD><TD>cockroach (insect of order Blattaria) [n]</TD><TD>žohar</TD></TR>
<TR><TD>956</TD><TD>1625</TD><TD>code (cryptographic system) [n]</TD><TD>kod</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>2773</TD><TD>22088</TD><TD>coil [n]</TD><TD>zavojnica</TD></TR>
<TR><TD>2167</TD><TD>6698</TD><TD>coin [n]</TD><TD>kovanica</TD></TR>
<TR><TD>506</TD><TD>690</TD><TD>cold*, chilly, frigid [aj] 3s</TD><TD>hladan</TD></TR>
<TR><TD>2318</TD><TD>8116</TD><TD>collapse** [v] 2w</TD><TD>se srušiti</TD></TR>
<TR><TD>1894</TD><TD>4900</TD><TD>collar [n]</TD><TD>klasi</TD></TR>
<TR><TD>2196</TD><TD>6930</TD><TD>colleague [n]</TD><TD>kolega</TD></TR>
<TR><TD>1613</TD><TD>3662</TD><TD>collect* [v]</TD><TD>sakupiti</TD></TR>
<TR><TD>617</TD><TD>894</TD><TD>college* [n] 2s</TD><TD>shkoledž, koledž</TD></TR>
<TR><TD>2557</TD><TD>12420</TD><TD>collision [n]</TD><TD>sudara</TD></TR>
<TR><TD>2447</TD><TD>10208</TD><TD>colony* [n]</TD><TD>kolonija</TD></TR>
<TR><TD>1047</TD><TD>1875</TD><TD>color* [n]</TD><TD>boja</TD></TR>
<TR><TD>2308</TD><TD>8068</TD><TD>comb [n]</TD><TD>češlj</TD></TR>
<TR><TD>2522</TD><TD>11677</TD><TD>combine** [v]</TD><TD>kombinirati</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>1218</TD><TD>2333</TD><TD>comfort (freedom from pain and/or worry) [n]</TD><TD>udobnost</TD></TR>
<TR><TD>819</TD><TD>1324</TD><TD>comfortable [aj]</TD><TD>ugodan</TD></TR>
<TR><TD>1375</TD><TD>2793</TD><TD>command* [v]</TD><TD>narediti</TD></TR>
<TR><TD>1376</TD><TD>2793</TD><TD>command*, order, directive [n] 2s</TD><TD>naredbu, red</TD></TR>
<TR><TD>1552</TD><TD>3430</TD><TD>comment** [v]</TD><TD>komentirati</TD></TR>
<TR><TD>1468</TD><TD>3114</TD><TD>committee* (group appointed to do a task) [n]</TD><TD>odbora</TD></TR>
<TR><TD>942</TD><TD>1587</TD><TD>common*, general (shared by all members of a group) [aj] 2s</TD><TD>zajednički, općenit</TD></TR>
<TR><TD>1968</TD><TD>5312</TD><TD>communicate** [v]</TD><TD>komunicirati</TD></TR>
<TR><TD>1936</TD><TD>5131</TD><TD>communication (exchange of information) [n]</TD><TD>komunikaciju</TD></TR>
<TR><TD>1129</TD><TD>2111</TD><TD>community* (individuals sharing space or culture) [n]</TD><TD>zajednica</TD></TR>
<TR><TD>476</TD><TD>624</TD><TD>company* (a business organization), firm [n]</TD><TD>tvrtka, firma</TD></TR>
<TR><TD>477</TD><TD>624</TD><TD>company*, presence of others [n]</TD><TD>društvo</TD></TR>
<TR><TD>1761</TD><TD>4289</TD><TD>compare* [v]</TD><TD>usporediti</TD></TR>
<TR><TD>2261</TD><TD>7576</TD><TD>comparison [n]</TD><TD>usporedba</TD></TR>
<TR><TD>2039</TD><TD>5679</TD><TD>compete*, strive, vie [v]</TD><TD>natjecati</TD></TR>
<TR><TD>1429</TD><TD>2941</TD><TD>competition [n]</TD><TD>konkurencija</TD></TR>
<TR><TD>1782</TD><TD>4368</TD><TD>complain [v] 2w</TD><TD>žaliti se</TD></TR>
<TR><TD>812</TD><TD>1304</TD><TD>complete* [aj]</TD><TD>potpun</TD></TR>
<TR><TD>1760</TD><TD>4288</TD><TD>complex* [aj] 2w</TD><TD>veoma složen</TD></TR>
<TR><TD>2731</TD><TD>19577</TD><TD>composition [n]</TD><TD>sastav</TD></TR>
<TR><TD>2133</TD><TD>6440</TD><TD>compound [n]</TD><TD>spoj</TD></TR>
<TR><TD>1769</TD><TD>4303</TD><TD>compromise* [n]</TD><TD>kompromis</TD></TR>
<TR><TD>2901</TD><TD>37928</TD><TD>compulsory [aj]</TD><TD>obvezno</TD></TR>
<TR><TD>2796</TD><TD>23430</TD><TD>compute [v]</TD><TD>računati</TD></TR>
<TR><TD>896</TD><TD>1471</TD><TD>computer* (electronic instruction-obeying information-handler) [n] 2s</TD><TD>računalo, kompjuter</TD></TR>
<TR><TD>2639</TD><TD>14847</TD><TD>conceal [v]</TD><TD>tajiti</TD></TR>
<TR><TD>2582</TD><TD>12979</TD><TD>concede [v] 2w</TD><TD>složiti se</TD></TR>
<TR><TD>1234</TD><TD>2384</TD><TD>concentrate [n]</TD><TD>koncentrat</TD></TR>
<TR><TD>2146</TD><TD>6587</TD><TD>concrete [n]</TD><TD>beton</TD></TR>
<TR><TD>2521</TD><TD>11674</TD><TD>condemn** [v]</TD><TD>osuditi</TD></TR>
<TR><TD>870</TD><TD>1428</TD><TD>condition*, state, status [n]</TD><TD>stanje</TD></TR>
<TR><TD>2276</TD><TD>7742</TD><TD>cone [n]</TD><TD>konusa</TD></TR>
<TR><TD>1245</TD><TD>2405</TD><TD>conference** [n]</TD><TD>konferencija</TD></TR>
<TR><TD>1705</TD><TD>4064</TD><TD>confirm** [v]</TD><TD>potvrditi</TD></TR>
<TR><TD>2223</TD><TD>7242</TD><TD>confirmation [n]</TD><TD>potvrda</TD></TR>
<TR><TD>1891</TD><TD>4890</TD><TD>conflict** [n]</TD><TD>sukob</TD></TR>
<TR><TD>2228</TD><TD>7269</TD><TD>confuse [v]</TD><TD>zbrkati</TD></TR>
<TR><TD>1972</TD><TD>5332</TD><TD>congratulate** [v]</TD><TD>čestitati</TD></TR>
<TR><TD>1733</TD><TD>4169</TD><TD>connect** [v]</TD><TD>spojiti</TD></TR>
<TR><TD>1002</TD><TD>1733</TD><TD>connection, joint*, junction [n] 2s</TD><TD>veza, spoj</TD></TR>
<TR><TD>2389</TD><TD>8954</TD><TD>conquer [v]</TD><TD>osvojiti</TD></TR>
<TR><TD>1851</TD><TD>4701</TD><TD>conscious, aware [aj] 2s</TD><TD>svjesni, svjestan</TD></TR>
<TR><TD>2043</TD><TD>5695</TD><TD>consciousness [n]</TD><TD>svijest</TD></TR>
<TR><TD>2191</TD><TD>6905</TD><TD>consent [n]</TD><TD>suglasnost</TD></TR>
<TR><TD>2481</TD><TD>10709</TD><TD>conservative** [n]</TD><TD>konzervativac</TD></TR>
<TR><TD>789</TD><TD>1242</TD><TD>consider** (pf/impf) [v]</TD><TD>razmotriti/ razmatrati</TD></TR>
<TR><TD>2757</TD><TD>21532</TD><TD>consist of, be composed of [v] 2w</TD><TD>sastoji se</TD></TR>
<TR><TD>2317</TD><TD>8115</TD><TD>consistent [aj]</TD><TD>dosljedan</TD></TR>
<TR><TD>2827</TD><TD>27045</TD><TD>consonant (non-vowel) [n]</TD><TD>suglasnik</TD></TR>
<TR><TD>2730</TD><TD>19569</TD><TD>conspicuous [aj]</TD><TD>izražen</TD></TR>
<TR><TD>1731</TD><TD>4155</TD><TD>constant, invariant, stable [aj] 2s</TD><TD>konstantna, invarijantne</TD></TR>
<TR><TD>2795</TD><TD>23422</TD><TD>constituent [n]</TD><TD>konstitutivnog</TD></TR>
<TR><TD>2173</TD><TD>6754</TD><TD>constitution* (charter of an organization) [n]</TD><TD>ustav</TD></TR>
<TR><TD>2647</TD><TD>15076</TD><TD>consume, deplete, expend, exhaust, use up [v]</TD><TD>potrošiti</TD></TR>
<TR><TD>851</TD><TD>1398</TD><TD>contact** [n]</TD><TD>kontakt</TD></TR>
<TR><TD>2323</TD><TD>8165</TD><TD>contain* [v]</TD><TD>sadržavati</TD></TR>
<TR><TD>2501</TD><TD>11125</TD><TD>container* [n]</TD><TD>kontejner</TD></TR>
<TR><TD>2662</TD><TD>15584</TD><TD>contemporary [aj]</TD><TD>suvremene</TD></TR>
<TR><TD>2854</TD><TD>30297</TD><TD>contemptuous [aj]</TD><TD>prezriv</TD></TR>
<TR><TD>2431</TD><TD>9737</TD><TD>continent* [n]</TD><TD>kontinent</TD></TR>
<TR><TD>910</TD><TD>1514</TD><TD>continue*, keep on doing or being (pf/impf) [v]</TD><TD>nastaviti / nastavljati</TD></TR>
<TR><TD>1139</TD><TD>2138</TD><TD>contract (agreement-document) [n]</TD><TD>ugovor</TD></TR>
<TR><TD>1812</TD><TD>4505</TD><TD>contrary [aj]</TD><TD>suprotno</TD></TR>
<TR><TD>2599</TD><TD>13330</TD><TD>contrast [n]</TD><TD>kontrast</TD></TR>
<TR><TD>481</TD><TD>632</TD><TD>control* [v] 2s</TD><TD>upravljati, kontrolirati</TD></TR>
<TR><TD>2610</TD><TD>13660</TD><TD>controversial [aj]</TD><TD>kontroverzan</TD></TR>
<TR><TD>1967</TD><TD>5311</TD><TD>convention** [n]</TD><TD>konvencija</TD></TR>
<TR><TD>2520</TD><TD>11673</TD><TD>conventional [aj]</TD><TD>konvencionalnog</TD></TR>
<TR><TD>912</TD><TD>1520</TD><TD>convince (pf/impf) [v]</TD><TD>uvjeriti / uvjeravati</TD></TR>
<TR><TD>1114</TD><TD>2047</TD><TD>cook* (prepare by applying heat) [v]</TD><TD>kuhati</TD></TR>
<TR><TD>396</TD><TD>494</TD><TD>cool* [aj]</TD><TD>hladan</TD></TR>
<TR><TD>1567</TD><TD>3494</TD><TD>cooper [n]</TD><TD>bačvar</TD></TR>
<TR><TD>1840</TD><TD>4631</TD><TD>cooperate*, collaborate [v]</TD><TD>surađivati</TD></TR>
<TR><TD>2370</TD><TD>8628</TD><TD>copper [n]</TD><TD>bakreni</TD></TR>
<TR><TD>486</TD><TD>640</TD><TD>copulate, have sex (with) [v] 2w</TD><TD>pariti se</TD></TR>
<TR><TD>946</TD><TD>1598</TD><TD>copy* (a duplicate) [n]</TD><TD>kopija</TD></TR>
<TR><TD>947</TD><TD>1598</TD><TD>copy* [v]</TD><TD>kopirati</TD></TR>
<TR><TD>2179</TD><TD>6805</TD><TD>cord, cable (thicker than wire) [n]</TD><TD>kabel</TD></TR>
<TR><TD>2467</TD><TD>10451</TD><TD>cork (tree or elastic tissue of sp. Quercus suber) [n]</TD><TD>pluta</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>976</TD><TD>1657</TD><TD>corner [n] 2s</TD><TD>kut, cošak</TD></TR>
<TR><TD>1051</TD><TD>1887</TD><TD>correct* [aj] 2s</TD><TD>točan, ispravan</TD></TR>
<TR><TD>2900</TD><TD>37900</TD><TD>correspond (match up with) [v]</TD><TD>korespondirati</TD></TR>
<TR><TD>2270</TD><TD>7703</TD><TD>corridor [n]</TD><TD>koridor</TD></TR>
<TR><TD>2865</TD><TD>31773</TD><TD>corrode [v]</TD><TD>nagrizati</TD></TR>
<TR><TD>2451</TD><TD>10285</TD><TD>corruption** [n]</TD><TD>korupcija</TD></TR>
<TR><TD>1821</TD><TD>4531</TD><TD>cotton* (plant or fibers of genus Gossypium) [n]</TD><TD>pamuk</TD></TR>
<TR><TD>1068</TD><TD>1934</TD><TD>couch [n]</TD><TD>kauč</TD></TR>
<TR><TD>1981</TD><TD>5373</TD><TD>cough [v]</TD><TD>kašaljati</TD></TR>
<TR><TD>1631</TD><TD>3722</TD><TD>counsel [n]</TD><TD>savjet</TD></TR>
<TR><TD>616</TD><TD>893</TD><TD>count*, enumerate (pf/impf) [v]</TD><TD>brojiti / brojati</TD></TR>
<TR><TD>540</TD><TD>758</TD><TD>country* [n]</TD><TD>zemlja</TD></TR>
<TR><TD>1473</TD><TD>3124</TD><TD>courage, bravery [n] 2s</TD><TD>hrabrost, srčanost</TD></TR>
<TR><TD>576</TD><TD>815</TD><TD>court* (of law) [n]</TD><TD>sud</TD></TR>
<TR><TD>670</TD><TD>992</TD><TD>cover* (pf/impf) [v]</TD><TD>pokriti / pokrivati</TD></TR>
<TR><TD>669</TD><TD>992</TD><TD>cover* (thing put onto or extended over something else) [n]</TD><TD>pokrivač</TD></TR>
<TR><TD>269</TD><TD>325</TD><TD>cow* / bull / cattle (bovine animal of either sex) [n]</TD><TD>krava / bik / stoka</TD></TR>
<TR><TD>1225</TD><TD>2359</TD><TD>crack, fissure [n] 2s</TD><TD>ispucati, fisura</TD></TR>
<TR><TD>1079</TD><TD>1964</TD><TD>crash** [v]</TD><TD>tresnuti</TD></TR>
<TR><TD>1628</TD><TD>3715</TD><TD>crawl [v]</TD><TD>puzati</TD></TR>
<TR><TD>1283</TD><TD>2521</TD><TD>create*, make (bring into existence) [v] 2s</TD><TD>stvoriti, izraditi</TD></TR>
<TR><TD>1549</TD><TD>3414</TD><TD>creature** [n]</TD><TD>stvor</TD></TR>
<TR><TD>864</TD><TD>1416</TD><TD>credit* (permission to borrow money) [n]</TD><TD>kredit</TD></TR>
<TR><TD>2519</TD><TD>11670</TD><TD>creed [n]</TD><TD>vjerovanje</TD></TR>
<TR><TD>1239</TD><TD>2393</TD><TD>crew* [n]</TD><TD>osoblje</TD></TR>
<TR><TD>698</TD><TD>1054</TD><TD>crime* [n]</TD><TD>zločin</TD></TR>
<TR><TD>1064</TD><TD>1923</TD><TD>criminal** [n]</TD><TD>kriminalac</TD></TR>
<TR><TD>1316</TD><TD>2621</TD><TD>crisis** [n]</TD><TD>kriza</TD></TR>
<TR><TD>2399</TD><TD>9171</TD><TD>criticism [n]</TD><TD>kritika</TD></TR>
<TR><TD>2450</TD><TD>10284</TD><TD>criticize* [v]</TD><TD>kritikovati</TD></TR>
<TR><TD>2562</TD><TD>12531</TD><TD>crops** [n]</TD><TD>usjevi</TD></TR>
<TR><TD>889</TD><TD>1459</TD><TD>cross* (perpendicular intersection of linear items) [n]</TD><TD>križ</TD></TR>
<TR><TD>1294</TD><TD>2559</TD><TD>crowd** [n]</TD><TD>gomila</TD></TR>
<TR><TD>2002</TD><TD>5498</TD><TD>crown [n]</TD><TD>vijenac</TD></TR>
<TR><TD>1325</TD><TD>2660</TD><TD>cruel [aj]</TD><TD>okrutno</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>865</TD><TD>1418</TD><TD>cry out, shout*, yell [v]</TD><TD>vikati</TD></TR>
<TR><TD>866</TD><TD>1418</TD><TD>cry*, weep [v]</TD><TD>plakati</TD></TR>
<TR><TD>1713</TD><TD>4096</TD><TD>crystal [n]</TD><TD>kristalno</TD></TR>
<TR><TD>2588</TD><TD>13143</TD><TD>cube [n]</TD><TD>kub</TD></TR>
<TR><TD>2587</TD><TD>13142</TD><TD>cucumber (Cucumis sativus) [n]</TD><TD>krastavac</TD></TR>
<TR><TD>1889</TD><TD>4879</TD><TD>culture* (the customs and beliefs of a people) [n]</TD><TD>kultura</TD></TR>
<TR><TD>2805</TD><TD>24125</TD><TD>cultured [aj]</TD><TD>kulturan</TD></TR>
<TR><TD>880</TD><TD>1449</TD><TD>cup (small bowl with handle) [n]</TD><TD>šalica</TD></TR>
<TR><TD>2567</TD><TD>12670</TD><TD>cupboard [n]</TD><TD>ormar</TD></TR>
<TR><TD>1417</TD><TD>2916</TD><TD>cure* [n]</TD><TD>lijek</TD></TR>
<TR><TD>2292</TD><TD>7930</TD><TD>curfew** [n] 2w</TD><TD>večernje zvono</TD></TR>
<TR><TD>1606</TD><TD>3641</TD><TD>current* (at this time) [aj]</TD><TD>trenutni</TD></TR>
<TR><TD>1431</TD><TD>2946</TD><TD>curse, damn (wish evil upon) [v] 2s</TD><TD>prokletstvo, proklinjati</TD></TR>
<TR><TD>2075</TD><TD>5951</TD><TD>curtain [n]</TD><TD>zavjesa</TD></TR>
<TR><TD>2274</TD><TD>7740</TD><TD>curve [n]</TD><TD>krivulje</TD></TR>
<TR><TD>2275</TD><TD>7740</TD><TD>curve [v]</TD><TD>kriviti</TD></TR>
<TR><TD>2528</TD><TD>11787</TD><TD>cushion [n]</TD><TD>jastuk</TD></TR>
<TR><TD>2316</TD><TD>8111</TD><TD>customs* [n]</TD><TD>carinarnica</TD></TR>
<TR><TD>425</TD><TD>537</TD><TD>cut* [n] 2s</TD><TD>posjekotina, porezotina</TD></TR>
<TR><TD>426</TD><TD>537</TD><TD>cut* [v] 2s</TD><TD>rezati, sjeći</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>2394</TD><TD>9108</TD><TD>dam** [n]</TD><TD>brana</TD></TR>
<TR><TD>990</TD><TD>1698</TD><TD>damage* [n]</TD><TD>šteta</TD></TR>
<TR><TD>526</TD><TD>725</TD><TD>dance* [v]</TD><TD>plesati</TD></TR>
<TR><TD>808</TD><TD>1296</TD><TD>danger* (situation in which harm is probable) [n]</TD><TD>opasnost</TD></TR>
<TR><TD>848</TD><TD>1390</TD><TD>dare (pf/impf) [v]</TD><TD>izazvati / izazivati</TD></TR>
<TR><TD>652</TD><TD>967</TD><TD>dark*, dim (with little light present) [aj] 2s</TD><TD>taman, mračan</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>409</TD><TD>517</TD><TD>date* (tree or fruit of sp. Phoenix dactylifera) [n]</TD><TD>datulja</TD></TR>
<TR><TD>358</TD><TD>443</TD><TD>daughter* [n]</TD><TD>kći</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>256</TD><TD>314</TD><TD>dead* [aj]</TD><TD>mrtav</TD></TR>
<TR><TD>257</TD><TD>314</TD><TD>dead* [n]</TD><TD>mrtvac</TD></TR>
<TR><TD>1826</TD><TD>4549</TD><TD>deaf* [aj]</TD><TD>gluh</TD></TR>
<TR><TD>274</TD><TD>334</TD><TD>deal* (cards) [v]</TD><TD>dijeliti</TD></TR>
<TR><TD>461</TD><TD>599</TD><TD>dear, precious, cherished [aj] 2s</TD><TD>drag, mio</TD></TR>
<TR><TD>433</TD><TD>548</TD><TD>death [n]</TD><TD>smrt</TD></TR>
<TR><TD>1659</TD><TD>3843</TD><TD>debate** [v]</TD><TD>raspravljati</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>2575</TD><TD>12827</TD><TD>deceitful [aj]</TD><TD>podmuklije</TD></TR>
<TR><TD>2484</TD><TD>10808</TD><TD>deceive [v]</TD><TD>varati</TD></TR>
<TR><TD>751</TD><TD>1168</TD><TD>decide* (pf/impf) [v]</TD><TD>odlučiti / odlučivati</TD></TR>
<TR><TD>627</TD><TD>911</TD><TD>decision [n]</TD><TD>odluka</TD></TR>
<TR><TD>1531</TD><TD>3350</TD><TD>deck [n]</TD><TD>paluba</TD></TR>
<TR><TD>2083</TD><TD>6014</TD><TD>declare** [v] 3w</TD><TD>biti pristan uz</TD></TR>
<TR><TD>2853</TD><TD>30237</TD><TD>decrease*, reduce* (become or make lesser in quantity) [v]</TD><TD>smanjiti</TD></TR>
<TR><TD>2787</TD><TD>22701</TD><TD>deem [v]</TD><TD>smatrati</TD></TR>
<TR><TD>691</TD><TD>1038</TD><TD>deep*, profound (of much depth) [aj]</TD><TD>dubok</TD></TR>
<TR><TD>2057</TD><TD>5783</TD><TD>deer (animal of family Cervidae) [n]</TD><TD>jelene</TD></TR>
<TR><TD>2018</TD><TD>5570</TD><TD>defeat** [v]</TD><TD>poraziti</TD></TR>
<TR><TD>2449</TD><TD>10280</TD><TD>defence [n]</TD><TD>obranu</TD></TR>
<TR><TD>1308</TD><TD>2602</TD><TD>defend* [v]</TD><TD>braniti</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>1415</TD><TD>2908</TD><TD>degree* (the extent or intensity or scope of an action or condition or relation) [n]</TD><TD>stupanj</TD></TR>
<TR><TD>1884</TD><TD>4867</TD><TD>delay* [n]</TD><TD>zakašnjenje</TD></TR>
<TR><TD>1885</TD><TD>4867</TD><TD>delay*, retard, tarry, postpone* [v]</TD><TD>odgoditi</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>2307</TD><TD>8062</TD><TD>delight [n]</TD><TD>naslada</TD></TR>
<TR><TD>1561</TD><TD>3461</TD><TD>demand* [n]</TD><TD>potražnja</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>2899</TD><TD>37803</TD><TD>denounce** [v]</TD><TD>tužiti</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>2349</TD><TD>8397</TD><TD>dent, nick, indentation [n]</TD><TD>utiskivati</TD></TR>
<TR><TD>1145</TD><TD>2149</TD><TD>deny* (say that X is not true) [v]</TD><TD>onemogućiti</TD></TR>
<TR><TD>1850</TD><TD>4697</TD><TD>depend* on, rely on [v] 2s;2,2w</TD><TD>ovisiti o, osloniti na</TD></TR>
<TR><TD>2914</TD><TD>40595</TD><TD>dependant (family member) [n] 2w</TD><TD>član obitelji</TD></TR>
<TR><TD>2678</TD><TD>16615</TD><TD>deploy** [v]</TD><TD>rasporediti</TD></TR>
<TR><TD>2042</TD><TD>5692</TD><TD>depression** [n]</TD><TD>depresija</TD></TR>
<TR><TD>2609</TD><TD>13652</TD><TD>deprive [v]</TD><TD>uskratiti</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>1505</TD><TD>3233</TD><TD>describe* [v]</TD><TD>opisati</TD></TR>
<TR><TD>1699</TD><TD>4049</TD><TD>description [n]</TD><TD>opis</TD></TR>
<TR><TD>1494</TD><TD>3180</TD><TD>desert* [n]</TD><TD>pustinja</TD></TR>
<TR><TD>632</TD><TD>922</TD><TD>deserve, merit, be worthy of [v]</TD><TD>zaslužiti</TD></TR>
<TR><TD>1525</TD><TD>3333</TD><TD>design* [n]</TD><TD>dizajn</TD></TR>
<TR><TD>1444</TD><TD>3000</TD><TD>desire* [v]</TD><TD>željeti</TD></TR>
<TR><TD>1406</TD><TD>2874</TD><TD>despite [prep]</TD><TD>unatoč</TD></TR>
<TR><TD>2429</TD><TD>9733</TD><TD>destination [n]</TD><TD>odredište</TD></TR>
<TR><TD>784</TD><TD>1229</TD><TD>destroy* (contra-create; cause to cease existing) (pf/impf) [v]</TD><TD>uništiti / uništavati</TD></TR>
<TR><TD>1941</TD><TD>5177</TD><TD>destruction [n]</TD><TD>uništenje</TD></TR>
<TR><TD>1432</TD><TD>2951</TD><TD>detail* [n]</TD><TD>detaljima</TD></TR>
<TR><TD>2710</TD><TD>18298</TD><TD>detain** [v]</TD><TD>zadržati</TD></TR>
<TR><TD>2297</TD><TD>7972</TD><TD>detect [v]</TD><TD>otkriti</TD></TR>
<TR><TD>1971</TD><TD>5328</TD><TD>develop** [v] 2w</TD><TD>se razviti</TD></TR>
<TR><TD>1970</TD><TD>5327</TD><TD>development [n]</TD><TD>razvoj</TD></TR>
<TR><TD>1580</TD><TD>3552</TD><TD>device* [n]</TD><TD>uređaj</TD></TR>
<TR><TD>2898</TD><TD>37783</TD><TD>diagonal, slanted [aj] 2s</TD><TD>dijagonale, zakrivljen</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>1402</TD><TD>2865</TD><TD>diamond [n]</TD><TD>dijamant</TD></TR>
<TR><TD>2696</TD><TD>17576</TD><TD>dictator*, tyrant [n] 2s</TD><TD>diktator, tiranin</TD></TR>
<TR><TD>2419</TD><TD>9497</TD><TD>dictionary [n]</TD><TD>rječnik</TD></TR>
<TR><TD>379</TD><TD>474</TD><TD>die* (pf/impf) [v]</TD><TD>umrijeti, umirati</TD></TR>
<TR><TD>1696</TD><TD>4039</TD><TD>diet** [n]</TD><TD>ishrana</TD></TR>
<TR><TD>682</TD><TD>1020</TD><TD>difference [n]</TD><TD>razlika</TD></TR>
<TR><TD>374</TD><TD>465</TD><TD>different* [aj]</TD><TD>različit</TD></TR>
<TR><TD>703</TD><TD>1064</TD><TD>difficult*, hard [aj]</TD><TD>težak</TD></TR>
<TR><TD>2252</TD><TD>7463</TD><TD>difficulty [n]</TD><TD>teškoća</TD></TR>
<TR><TD>1152</TD><TD>2159</TD><TD>dig* [v]</TD><TD>kopati</TD></TR>
<TR><TD>2804</TD><TD>24106</TD><TD>digestion [n]</TD><TD>probava</TD></TR>
<TR><TD>2683</TD><TD>16930</TD><TD>digit [n]</TD><TD>znamenka</TD></TR>
<TR><TD>2897</TD><TD>37775</TD><TD>dilute [v]</TD><TD>razrijediti</TD></TR>
<TR><TD>386</TD><TD>484</TD><TD>dinner* [n]</TD><TD>večera</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>1307</TD><TD>2601</TD><TD>direction* (orientation of motion) [n]</TD><TD>smjer</TD></TR>
<TR><TD>1277</TD><TD>2498</TD><TD>dirt*, earth (tangible), soil* [n] 2s</TD><TD>prljavštinu, zemlju</TD></TR>
<TR><TD>861</TD><TD>1411</TD><TD>dirty, contra-clean [aj]</TD><TD>prljav</TD></TR>
<TR><TD>2706</TD><TD>17935</TD><TD>disadvantage [n]</TD><TD>nepovoljnost</TD></TR>
<TR><TD>1159</TD><TD>2182</TD><TD>disappear** [v]</TD><TD>nestati</TD></TR>
<TR><TD>2030</TD><TD>5643</TD><TD>disappointment [n]</TD><TD>razočaranje</TD></TR>
<TR><TD>2667</TD><TD>15807</TD><TD>disarm** [v]</TD><TD>razoružati</TD></TR>
<TR><TD>2836</TD><TD>27789</TD><TD>disarmament [n]</TD><TD>razoružanje</TD></TR>
<TR><TD>1282</TD><TD>2516</TD><TD>disaster*, catastrophe [n]</TD><TD>katastrofa</TD></TR>
<TR><TD>2303</TD><TD>8009</TD><TD>discharge [n]</TD><TD>istjecanje</TD></TR>
<TR><TD>2176</TD><TD>6776</TD><TD>discount [n]</TD><TD>popust</TD></TR>
<TR><TD>1730</TD><TD>4154</TD><TD>discover* [v]</TD><TD>otkriti</TD></TR>
<TR><TD>2135</TD><TD>6459</TD><TD>discovery [n]</TD><TD>otkriće</TD></TR>
<TR><TD>2603</TD><TD>13486</TD><TD>discrimination** [n]</TD><TD>diskriminacija</TD></TR>
<TR><TD>775</TD><TD>1212</TD><TD>discuss*, talk about (pf/impf) [v]</TD><TD>raspraviti / raspravljati</TD></TR>
<TR><TD>1358</TD><TD>2743</TD><TD>discussion [n]</TD><TD>diskusija</TD></TR>
<TR><TD>1270</TD><TD>2486</TD><TD>disease*, illness, sickness* [n]</TD><TD>bolest</TD></TR>
<TR><TD>2443</TD><TD>10106</TD><TD>disgust [n]</TD><TD>gađenje</TD></TR>
<TR><TD>1717</TD><TD>4103</TD><TD>dish (any shallow concave container) [n]</TD><TD>posuda</TD></TR>
<TR><TD>2242</TD><TD>7358</TD><TD>disk, disc [n]</TD><TD>disk</TD></TR>
<TR><TD>2424</TD><TD>9572</TD><TD>dislike [n]</TD><TD>nenaklonost</TD></TR>
<TR><TD>2913</TD><TD>40547</TD><TD>dismember [v]</TD><TD>isjeckati</TD></TR>
<TR><TD>2264</TD><TD>7612</TD><TD>dismiss** [v]</TD><TD>otpustiti</TD></TR>
<TR><TD>1940</TD><TD>5164</TD><TD>display [n]</TD><TD>prikaz</TD></TR>
<TR><TD>2794</TD><TD>23372</TD><TD>displeasure [n]</TD><TD>nezadovoljstvo</TD></TR>
<TR><TD>2439</TD><TD>10029</TD><TD>dispose of [v]</TD><TD>raspolagati</TD></TR>
<TR><TD>2340</TD><TD>8298</TD><TD>dispute* [n]</TD><TD>spor</TD></TR>
<TR><TD>2912</TD><TD>40540</TD><TD>dissident** [n]</TD><TD>disident</TD></TR>
<TR><TD>2614</TD><TD>13807</TD><TD>dissolve [v] 2w</TD><TD>rastopiti se</TD></TR>
<TR><TD>1244</TD><TD>2404</TD><TD>distance* (amount of space from X to Y) [n]</TD><TD>udaljenost</TD></TR>
<TR><TD>2677</TD><TD>16610</TD><TD>distinguish, differentiate, tell one from another [v]</TD><TD>razlikovati</TD></TR>
<TR><TD>2489</TD><TD>10910</TD><TD>distribution [n]</TD><TD>distribucija</TD></TR>
<TR><TD>1798</TD><TD>4409</TD><TD>dive** [v]</TD><TD>uroniti</TD></TR>
<TR><TD>2345</TD><TD>8352</TD><TD>divide* [v]</TD><TD>dijeliti</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>1778</TD><TD>4352</TD><TD>division [n]</TD><TD>divizija</TD></TR>
<TR><TD>1404</TD><TD>2872</TD><TD>divorced [aj] 2s</TD><TD>rajveden, rajvedena</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>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>545</TD><TD>766</TD><TD>dog* (Canis familiaris) [n]</TD><TD>pas</TD></TR>
<TR><TD>1186</TD><TD>2243</TD><TD>doll, effigy [n] 2s</TD><TD>lutku, lik</TD></TR>
<TR><TD>1049</TD><TD>1880</TD><TD>dollar** [n]</TD><TD>dolar</TD></TR>
<TR><TD>2518</TD><TD>11659</TD><TD>dome (anything shaped like an upside-down bowl) [n]</TD><TD>kupolu</TD></TR>
<TR><TD>2280</TD><TD>7778</TD><TD>donate** [v]</TD><TD>donirati</TD></TR>
<TR><TD>2353</TD><TD>8440</TD><TD>donkey, ass (Equus asinus) [n] 2s</TD><TD>magarca, magarac</TD></TR>
<TR><TD>362</TD><TD>450</TD><TD>door* [n]</TD><TD>vrata</TD></TR>
<TR><TD>752</TD><TD>1170</TD><TD>double** (pf/impf) [v]</TD><TD>udvostručiti / udvostručivati</TD></TR>
<TR><TD>688</TD><TD>1032</TD><TD>doubt [n]</TD><TD>sumnja</TD></TR>
<TR><TD>689</TD><TD>1032</TD><TD>doubt [v]</TD><TD>sumnjati</TD></TR>
<TR><TD>122</TD><TD>127</TD><TD>down* [av]</TD><TD>dolje</TD></TR>
<TR><TD>2008</TD><TD>5515</TD><TD>dragon (winged serpent with crested head and large claws) [n]</TD><TD>zmaj</TD></TR>
<TR><TD>1986</TD><TD>5400</TD><TD>drain (device that removes unwanted liquid) [n]</TD><TD>slivnik</TD></TR>
<TR><TD>1987</TD><TD>5400</TD><TD>drain [v] 2w</TD><TD>izjaloviti se</TD></TR>
<TR><TD>1642</TD><TD>3782</TD><TD>drawer [n]</TD><TD>ladica</TD></TR>
<TR><TD>517</TD><TD>710</TD><TD>dream* [n] 2s</TD><TD>san</TD></TR>