-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMini.json
More file actions
1060 lines (1060 loc) · 61.3 KB
/
Copy pathMini.json
File metadata and controls
1060 lines (1060 loc) · 61.3 KB
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
{
"Omniglot": [
{ "tra": "Welcome", "txt": "Bon-veni" },
{ "tra": "Hello", "txt": "Salu!" },
{ "tra": "How are you?", "txt": "Tu e ke? Tu i senti ke?" },
{ "tra": "Reply to 'How are you?'", "txt": "Mi e bon. Tu e ke?" },
{ "tra": "Long time no see", "txt": "Longo tempo, no mira." },
{ "tra": "What's your name?", "txt": "Tu name a ke?" },
{ "tra": "My name is...", "txt": "Mi name a..." },
{ "tra": "Where are you from?", "txt": "Tu e de ke?" },
{ "tra": "I'm from...", "txt": "Mi e de..." },
{ "tra": "Pleased to meet you", "txt": "Bon go-i enkonte a tu" },
{ "tra": "Good morning", "txt": "Bon maten" },
{ "tra": "Good afternoon", "txt": "Bon dia" },
{ "tra": "Good evening", "txt": "Bon eve" },
{ "tra": "Good night", "txt": "Bon eve / bon luna" },
{ "tra": "Goodbye", "txt": "Adio!" },
{ "tra": "Good luck!", "txt": "Bon luki!" },
{ "tra": "Cheers! Good health!", "txt": "Salu! Bon sano!" },
{ "tra": "Have a nice day", "txt": "I ave a bon dia" },
{ "tra": "Bon appetit", "txt": "Bon manja" },
{ "tra": "Bon voyage", "txt": "Bon safari" },
{ "tra": "Yes", "txt": "Ja" },
{ "tra": "No", "txt": "No" },
{ "tra": "Maybe", "txt": "Mebi" },
{ "tra": "Do you understand?", "txt": "Tu i savi?" },
{ "tra": "I understand", "txt": "Mi i savi" },
{ "tra": "I don't understand", "txt": "Mi no savi" },
{ "tra": "I don't know", "txt": "Mi no savi" },
{ "tra": "Please speak more slowly", "txt": "I favo dire o ma lenta" },
{ "tra": "Please say that again", "txt": "I favo dire gen a da" },
{ "tra": "Please write it down", "txt": "I favo note a si" },
{ "tra": "Do you speak English?", "txt": "Tu i pale a Engli?" },
{ "tra": "Do you speak Mini?", "txt": "Tu i pale a Mini?" },
{ "tra": "Yes, a little", "txt": "Ja, mini" },
{ "tra": "Speak to me in Mini", "txt": "I pale go mi en Mini" },
{ "tra": "How do you say ... in Mini?", "txt": "Tu i dire a ... en ke moda en Mini?" },
{ "tra": "Excuse me", "txt": "I padon a mi" },
{ "tra": "How much is this?", "txt": "Di a ke mui?" },
{ "tra": "Sorry", "txt": "Sori" },
{ "tra": "Please", "txt": "Favo" },
{ "tra": "Thank you", "txt": "Danke" },
{ "tra": "Reply to thank you", "txt": "De nulo / sama-sama" },
{ "tra": "Where's the toilet?", "txt": "Toilete e en ke?" },
{ "tra": "This gentleman will pay for everything.", "txt": "Di viro i go paga a ale." },
{ "tra": "Would you like to dance with me?", "txt": "Tu i vole dansa kon mi?" },
{ "tra": "I miss you", "txt": "Mi misi tu." },
{ "tra": "I love you", "txt": "Mi amo tu." },
{ "tra": "Get well soon", "txt": "I veni sun e sano" },
{ "tra": "Leave me alone!", "txt": "I lase solo a mi!" },
{ "tra": "Help!", "txt": "Ade!" },
{ "tra": "Fire!", "txt": "Fogo!" },
{ "tra": "Stop!", "txt": "I para!" },
{ "tra": "Call the police!", "txt": "I voka a polisa!" },
{ "tra": "Christmas greetings", "txt": "Joli Jesu-nati!" },
{ "tra": "Easter greetings", "txt": "Joli Jesu-veni!" },
{ "tra": "One language is never enough", "txt": "Uno linga e ni sufi." },
{ "tra": "My hovercraft is full of eels.", "txt": "Mi aero-lubi-navi e fule de naga-pisi." }
],
"Mini Kore": [
{ "txt": "Mini", "tra": "English (short definition)", "tra2": "Additional meanings", "tra3": "Metaphorical meaning (Mini Kore only)" },
{ "txt": "a", "tra": "introduces direct object & nominal complement" },
{ "txt": "e", "tra": "introduces adjectival & adverbial complement" },
{ "txt": "i", "tra": "introduces verb" },
{ "txt": "o", "tra": "modifier separator" },
{ "txt": "mi", "tra": "first person" },
{ "txt": "tu", "tra": "second person" },
{ "txt": "si", "tra": "third person" },
{ "txt": "da", "tra": "that, there, would" },
{ "txt": "di", "tra": "this, here" },
{ "txt": "ke", "tra": "what, that" },
{ "txt": "an", "tra": "and, also", "tra2": "additionally, add" },
{ "txt": "pero", "tra": "but", "tra2": "except", "tra3": "however, only, spite" },
{ "txt": "u", "tra": "or, either" },
{ "txt": "de", "tra": "from, of, about, by", "tra3": "out, away, absence" },
{ "txt": "en", "tra": "in, at, on", "tra3": "exist" },
{ "txt": "go", "tra": "to, go, towards, for", "tra3": "motion, move" },
{ "txt": "kon", "tra": "with", "tra2": "include" },
{ "txt": "sama", "tra": "like, as, than, same", "tra3": "equals, equality" },
{ "txt": "ja", "tra": "yes", "tra2": "definitely, certainly" },
{ "txt": "no", "tra": "no, not" },
{ "txt": "ale", "tra": "all, everything", "tra2": "every, wholly, completely" },
{ "txt": "nulo", "tra": "nothing, zero", "tra2": "null, no one, not-at-all, nullify" },
{ "txt": "ma", "tra": "more" },
{ "txt": "mui", "tra": "very, many, much, a lot" },
{ "txt": "su", "tra": "too, too much", "tra2": "excess, excessive, surplus" },
{ "txt": "uno", "tra": "one", "tra2": "single, unite" },
{ "txt": "duo", "tra": "two", "tra2": "pair, double" },
{ "txt": "san", "tra": "three" },
{ "txt": "fo", "tra": "four" },
{ "txt": "afa", "tra": "after", "tra3": "behind, back, next, following time" },
{ "txt": "animale", "tra": "animal", "tra3": "wild, meat, beast" },
{ "txt": "ante", "tra": "before", "tra3": "ahead, front, previous, last time" },
{ "txt": "aroma", "tra": "smell, taste", "tra2": "aroma, odor, fragrant" },
{ "txt": "ave", "tra": "have", "tra2": "possession, hail, property", "tra3": "hello, goodbye" },
{ "txt": "bata", "tra": "beat, fight, battle", "tra2": "struggle, strike, attack" },
{ "txt": "baton", "tra": "stick, pole", "tra2": "rod, baton, a cylindrical object" },
{ "txt": "begin", "tra": "start, beginning", "tra2": "initial, turn on", "tra3": "open" },
{ "txt": "bodi", "tra": "body", "tra2": "bodily", "tra3": "physical, health, condition, state" },
{ "txt": "boka", "tra": "mouth", "tra3": "an opening, hole, orifice, cave, entrance, kiss, dig" },
{ "txt": "bon", "tra": "good", "tra3": "fix, virtue" },
{ "txt": "debe", "tra": "should", "tra2": "debt, obligation" },
{ "txt": "demo", "tra": "demonstration, indicate, show", "tra3": "performance, spectacle" },
{ "txt": "dona", "tra": "give, gift", "tra3": "put, send, place, release, emit" },
{ "txt": "duro", "tra": "hard, difficult, problem", "tra3": "heavy" },
{ "txt": "eleki", "tra": "electric", "tra2": "electricity", "tra3": "digital, energy, energetic" },
{ "txt": "fami", "tra": "family, relative", "tra3": "relation, relate" },
{ "txt": "feme", "tra": "woman, female" },
{ "txt": "fini", "tra": "finish, final, end", "tra2": "turn off", "tra3": "close" },
{ "txt": "fogo", "tra": "fire", "tra2": "fiery, burn", "tra3": "hot, cook, spicy, heat" },
{ "txt": "imaje", "tra": "image, picture", "tra2": "imagine, depict", "tra3": "draw, paint" },
{ "txt": "jalan", "tra": "path, way, road", "tra3": "walk, traverse, manner, mode" },
{ "txt": "junta", "tra": "join, group, together", "tra2": "joint, juncture, junta, club", "tra3": "society, collection" },
{ "txt": "jura", "tra": "law, rule, instruction", "tra2": "legal", "tra3": "governmental, govern" },
{ "txt": "kaja", "tra": "box", "tra3": "a container, cup, vessel, to box up, to contain" },
{ "txt": "kaka", "tra": "feces, s***", "tra3": "mess, trash, dirty, gross, filth, f*** up" },
{ "txt": "kali", "tra": "dark, black", "tra2": "darkness, blacken, negative", "tra3": "shadow, hide, secret" },
{ "txt": "kan", "tra": "can, may, able", "tra2": "ability, skill, skilled, talent, -able" },
{ "txt": "kapo", "tra": "head", "tra2": "main, primary", "tra3": "mind, leader, lead" },
{ "txt": "kipa", "tra": "keep, stay, remain", "tra2": "remainder, maintain, the rest, residual", "tra3": "still (adv), wait, patient (adj)" },
{ "txt": "kolo", "tra": "color", "tra2": "colorful", "tra3": "interesting" },
{ "txt": "kore", "tra": "heart", "tra3": "love, feel, feelings, core, meaning, please, dear, cordial" },
{ "txt": "kosa", "tra": "thing, stuff", "tra3": "anything" },
{ "txt": "kula", "tra": "cool, cold", "tra3": "ice, freeze, chill" },
{ "txt": "lado", "tra": "side, adjacent", "tra3": "hip" },
{ "txt": "leva", "tra": "level, elevate, rise", "tra2": "raise, elevation", "tra3": "height, wake up, lift, climb" },
{ "txt": "line", "tra": "line", "tra3": "string, length, distance, list" },
{ "txt": "loke", "tra": "location, place", "tra2": "locate", "tra3": "room, house, space, spot" },
{ "txt": "ludi", "tra": "game, play", "tra3": "fun, entertainment, amusing, funny" },
{ "txt": "luna", "tra": "moon", "tra2": "lunar", "tra3": "night, month" },
{ "txt": "luse", "tra": "light", "tra2": "illuminate, light-colored", "tra3": "white" },
{ "txt": "make", "tra": "make, do, create", "tra3": "action, work, job" },
{ "txt": "mala", "tra": "bad", "tra3": "evil, terrible, ruin" },
{ "txt": "man", "tra": "person, human", "tra2": "-er", "tra3": "someone" },
{ "txt": "manja", "tra": "food, eat", "tra3": "consume, to drink" },
{ "txt": "mano", "tra": "hand", "tra2": "manual", "tra3": "five, grab" },
{ "txt": "mebi", "tra": "maybe, possibility", "tra2": "possibly, might", "tra3": "chance" },
{ "txt": "mega", "tra": "big, great, large", "tra2": "enlarge, million" },
{ "txt": "mesa", "tra": "table", "tra3": "furniture, any horizontal extended surface" },
{ "txt": "mini", "tra": "small, little", "tra2": "a little, a few, diminish" },
{ "txt": "mira", "tra": "see, look, watch, sight", "tra3": "perceive, appearance" },
{ "txt": "mone", "tra": "money", "tra3": "dollar" },
{ "txt": "name", "tra": "name, word" },
{ "txt": "note", "tra": "write, a writing", "tra3": "note, document, composition, text" },
{ "txt": "nu", "tra": "new", "tra2": "recently, news", "tra3": "young, fresh" },
{ "txt": "numa", "tra": "number", "tra2": "enumerate, quantity", "tra3": "count, -th (ordinal)" },
{ "txt": "ota", "tra": "other, different", "tra2": "differently", "tra3": "change, changed" },
{ "txt": "pale", "tra": "talk, speech, discussion", "tra2": "chat", "tra3": "say, utter, tell, language" },
{ "txt": "pan", "tra": "bread", "tra3": "cake, noodles, cereals, carbohydrates" },
{ "txt": "pasa", "tra": "pass, happen, past", "tra2": "used to, spend time, pass through", "tra3": "occurrence" },
{ "txt": "pensa", "tra": "think, thought", "tra3": "consider, idea, believe" },
{ "txt": "peso", "tra": "piece, part, component", "tra2": "fraction", "tra3": "divide, granulated" },
{ "txt": "poten", "tra": "power, force, strong", "tra2": "empower, forceful, strength", "tra3": "support" },
{ "txt": "rapi", "tra": "fast, speed, quickly" },
{ "txt": "raro", "tra": "rare, weird, strange", "tra3": "special" },
{ "txt": "rason", "tra": "reason, cause, explanation", "tra2": "rational, justify, thus, warrant", "tra3": "purpose, goal" },
{ "txt": "resi", "tra": "rest, sleep", "tra3": "calm, peace, peaceful" },
{ "txt": "roka", "tra": "rock", "tra2": "rocky, mineral", "tra3": "metal, solid" },
{ "txt": "rondo", "tra": "circle, round, around", "tra2": "encircle, surround, circular", "tra3": "ball, sphere" },
{ "txt": "ropa", "tra": "clothing, wear", "tra3": "a covering, cover" },
{ "txt": "santi", "tra": "holy, spiritual", "tra2": "sacred, bless", "tra3": "God, religious" },
{ "txt": "savi", "tra": "know, understand, knowledge", "tra3": "savvy, wisdom" },
{ "txt": "selo", "tra": "sky", "tra2": "heaven", "tra3": "air, weather" },
{ "txt": "senta", "tra": "center", "tra2": "middle", "tra3": "inside" },
{ "txt": "sole", "tra": "sun", "tra2": "solar, sunny", "tra3": "day" },
{ "txt": "sono", "tra": "sound", "tra2": "noise, noisy", "tra3": "music, voice, sing" },
{ "txt": "suga", "tra": "sugar, sweet", "tra2": "sweeten", "tra3": "candy, cute, nice, cajole" },
{ "txt": "supa", "tra": "above, over, up", "tra3": "high, superior" },
{ "txt": "tempo", "tra": "time", "tra3": "moment, duration" },
{ "txt": "tera", "tra": "earth", "tra2": "trillion", "tra3": "soil, land, outdoors, country, world" },
{ "txt": "toma", "tra": "take", "tra3": "receive, accept, choose, choice, selection" },
{ "txt": "unda", "tra": "under, below, down", "tra2": "to fall", "tra3": "bottom, butt, deep, depth" },
{ "txt": "uti", "tra": "use, tool", "tra2": "utilize", "tra3": "machine, device" },
{ "txt": "vasa", "tra": "water", "tra2": "wet, watery", "tra3": "a liquid, a body of water, wash" },
{ "txt": "veji", "tra": "plant, vegetable", "tra2": "vegetation", "tra3": "herb, to plant" },
{ "txt": "veni", "tra": "come, become", "tra2": "arrive, arrival, coming", "tra3": "approaching" },
{ "txt": "vere", "tra": "true, truth, really", "tra2": "real", "tra3": "right, correct, fact" },
{ "txt": "via", "tra": "through, across", "tra2": "trans-, over, to cross" },
{ "txt": "viro", "tra": "man, male", "tra2": "virile" },
{ "txt": "viva", "tra": "life, live", "tra2": "lively" },
{ "txt": "vole", "tra": "want, desire", "tra2": "the will, voluntary", "tra3": "need" }
],
"Mini Mundo": [
{ "txt": "abuso", "tra": "abuse, violate, rape, assault, abusive" },
{ "txt": "ade", "tra": "aid, care, concern, help, care for" },
{ "txt": "adere", "tra": "adhere, stick, cling, sticky, glue" },
{ "txt": "adio", "tra": "bye, farewell, valediction" },
{ "txt": "aeji", "tra": "shield, armor" },
{ "txt": "aero", "tra": "air, atmosphere, gas" },
{ "txt": "afoga", "tra": "drown, submerge, a drowning" },
{ "txt": "agila", "tra": "eagle, hawk, a bird of prey" },
{ "txt": "aje", "tra": "age, to age, eon, aged" },
{ "txt": "ajenda", "tra": "program, agenda, plan, computer program" },
{ "txt": "ake", "tra": "ax, hatchet, machete, to chop" },
{ "txt": "akonto", "tra": "account, ledger, report, to recount" },
{ "txt": "akuse", "tra": "accuse, accusation, charge (legal)" },
{ "txt": "akuta", "tra": "sharp, acute, keen" },
{ "txt": "alien", "tra": "foreign, alien" },
{ "txt": "alio", "tra": "garlic" },
{ "txt": "amidala", "tra": "almond, tonsil, amygdala" },
{ "txt": "amigo", "tra": "friend, acquaintance, befriend, friendly" },
{ "txt": "amo", "tra": "love, dear" },
{ "txt": "amuse", "tra": "amuse, entertain, fun, entertainment" },
{ "txt": "ani", "tra": "any (determiner), whichever, anyone" },
{ "txt": "anima", "tra": "soul, spirit" },
{ "txt": "anjo", "tra": "angel, angelic" },
{ "txt": "ankora", "tra": "yet, even, still" },
{ "txt": "ano", "tra": "year, annual" },
{ "txt": "ansio", "tra": "anxious, anxiety, nervous" },
{ "txt": "anti", "tra": "against, anti-, opposite, opposing, oppose" },
{ "txt": "antika", "tra": "old, to age, antique, ancient" },
{ "txt": "anunsi", "tra": "announce, announcement, declare, declaration" },
{ "txt": "apara", "tra": "seem, appear, apparent, appearance" },
{ "txt": "apojo", "tra": "support, backing, advocacy, backup, bolster" },
{ "txt": "ara", "tra": "bee, hornet, wasp" },
{ "txt": "arana", "tra": "spider, arachnid" },
{ "txt": "arapan", "tra": "hope, wait for, expectation, wish" },
{ "txt": "area", "tra": "area, region, zone, domain, extent, size" },
{ "txt": "aro", "tra": "arrow, dart" },
{ "txt": "aseta", "tra": "accept, consent, agree, agreement, accord, pact" },
{ "txt": "asido", "tra": "acid, sour, acidic, vinegar" },
{ "txt": "asilu", "tra": "asylum, refuge, shelter" },
{ "txt": "atira", "tra": "attract, attraction" },
{ "txt": "ato", "tra": "act, performance, behavior, active" },
{ "txt": "atomo", "tra": "atom, atomic" },
{ "txt": "avion", "tra": "airplane" },
{ "txt": "aviso", "tra": "attention, warn, caution, warning, alert, notification" },
{ "txt": "ba", "tra": "eight" },
{ "txt": "bagaje", "tra": "luggage, baggage, gear, personal effects, to lug" },
{ "txt": "bai", "tra": "bay, golf, cove" },
{ "txt": "bajo", "tra": "low, short (height)" },
{ "txt": "baka", "tra": "back (body + adv), rear side, backward, behind" },
{ "txt": "balansa", "tra": "balance, equilibrium, a scale, balanced, fair" },
{ "txt": "balena", "tra": "whale, dolphin, porpoise, cetacean" },
{ "txt": "balo", "tra": "ball, a spherical object, roll" },
{ "txt": "balon", "tra": "balloon" },
{ "txt": "balu", "tra": "bear (animal)" },
{ "txt": "banana", "tra": "banana" },
{ "txt": "banda", "tra": "band, strip, ribbon, tape, stripe" },
{ "txt": "bandera", "tra": "flag, banner" },
{ "txt": "banka", "tra": "bank, bench, river bank, financial institution" },
{ "txt": "bano", "tra": "bath, bathe" },
{ "txt": "baraje", "tra": "barrage, dam, block, impede, obstruct, hinder" },
{ "txt": "bari", "tra": "weight, weigh, heavy" },
{ "txt": "basara", "tra": "market, bazaar, fair, to shop" },
{ "txt": "base", "tra": "base, foundation, ground, floor, basis, fundamental" },
{ "txt": "basilo", "tra": "bacteria, bacillus, germ, microbe" },
{ "txt": "batisa", "tra": "dip, dunk, immerse, baptise, baptism" },
{ "txt": "bebe", "tra": "baby" },
{ "txt": "bela", "tra": "beautiful, beauty, beautify" },
{ "txt": "beli", "tra": "stomach, belly, abdomen" },
{ "txt": "benda", "tra": "bend, curve, flex" },
{ "txt": "bene", "tra": "benefit, advantage, perk, beneficial" },
{ "txt": "bensin", "tra": "fuel, gasoline, benzene" },
{ "txt": "beri", "tra": "berry, grape, olive" },
{ "txt": "beso", "tra": "kiss" },
{ "txt": "besonde", "tra": "special, especially, particular, exceptional" },
{ "txt": "bete", "tra": "monster, beast, beastly" },
{ "txt": "beton", "tra": "cement, concrete, pave" },
{ "txt": "bianka", "tra": "white" },
{ "txt": "bibe", "tra": "drink" },
{ "txt": "biju", "tra": "jewel, gem, jewelry" },
{ "txt": "bike", "tra": "bicycle" },
{ "txt": "biko", "tra": "beak, to peck, spout" },
{ "txt": "bileta", "tra": "ticket, a pass, bill, banknote" },
{ "txt": "bira", "tra": "beer, ale" },
{ "txt": "bisi", "tra": "hurry, rush, haste, busy" },
{ "txt": "bisinesa", "tra": "business, company, negotiate, conduct business" },
{ "txt": "bitume", "tra": "tar, pitch, bitumen" },
{ "txt": "boba", "tra": "bubble, boil" },
{ "txt": "bogen", "tra": "arch, vault, bow (weapon)" },
{ "txt": "bola", "tra": "bowl" },
{ "txt": "boli", "tra": "glass, crystal, a transparent material" },
{ "txt": "bomba", "tra": "bomb" },
{ "txt": "bore", "tra": "boring, bore, tedium" },
{ "txt": "boroda", "tra": "beard, facial hair" },
{ "txt": "botega", "tra": "shop, store, boutique" },
{ "txt": "botelo", "tra": "bottle" },
{ "txt": "boton", "tra": "button, pressbutton, knob, stud" },
{ "txt": "bovi", "tra": "cow, bovine, steer, ox, bison, buffalo" },
{ "txt": "buku", "tra": "book" },
{ "txt": "bulu", "tra": "blue" },
{ "txt": "buo", "tra": "float, buoy, buoyant, a float" },
{ "txt": "butero", "tra": "butter, buttery" },
{ "txt": "dalili", "tra": "evidence, proof, demonstration, testimony" },
{ "txt": "danja", "tra": "danger, dangerous" },
{ "txt": "danke", "tra": "thanks, to thank, thankful" },
{ "txt": "dansa", "tra": "dance" },
{ "txt": "dare", "tra": "dare, daring, bold, brave, to challenge" },
{ "txt": "debate", "tra": "argue, debate, dispute, argument" },
{ "txt": "debile", "tra": "weak, weakness, feeble" },
{ "txt": "defende", "tra": "defend, guard, protect, protection, defense" },
{ "txt": "degu", "tra": "disgust, disgusting, revulsion, sicken" },
{ "txt": "deja", "tra": "already, by now/then" },
{ "txt": "dekora", "tra": "decorate, ornamentation, adorn, fancy" },
{ "txt": "deluje", "tra": "flood, torrent, inundate, overwhelm, overwhelming" },
{ "txt": "demon", "tra": "devil, demon, diabolical" },
{ "txt": "den", "tra": "then, in that case" },
{ "txt": "denta", "tra": "tooth, bite" },
{ "txt": "deo", "tra": "god, divine" },
{ "txt": "dereka", "tra": "right (direction + moral + legal), straight, orthodox" },
{ "txt": "deside", "tra": "decide, decision, adjudicate, resolve, settle" },
{ "txt": "desini", "tra": "design, sketch, blueprint, pattern" },
{ "txt": "detali", "tra": "detail, detailed, meticulous" },
{ "txt": "deteki", "tra": "detect, find, notice, discovery, discovery" },
{ "txt": "develo", "tra": "develop, grow, growth, development" },
{ "txt": "dia", "tra": "day, date" },
{ "txt": "diamante", "tra": "diamond, adamant" },
{ "txt": "difuse", "tra": "spread, diffuse, diffusion" },
{ "txt": "dijesi", "tra": "digest, digestion" },
{ "txt": "diji", "tra": "finger, toe, digit" },
{ "txt": "dika", "tra": "fat, thick" },
{ "txt": "dimenti", "tra": "forget, forgive" },
{ "txt": "dinosoro", "tra": "dinosaur" },
{ "txt": "dipa", "tra": "deep, depth, profound" },
{ "txt": "dire", "tra": "say, tell, utter, recite, utterance, saying" },
{ "txt": "direto", "tra": "direction, orientation, guidance, course, direct" },
{ "txt": "disipa", "tra": "waste (use without good purpose), squander" },
{ "txt": "dive", "tra": "dive, plunge, submerge" },
{ "txt": "divi", "tra": "divide, split, division, separate" },
{ "txt": "dogi", "tra": "dog" },
{ "txt": "domo", "tra": "home, domestic, reside, domesticate" },
{ "txt": "doragon", "tra": "dragon" },
{ "txt": "dua", "tra": "request, ask, prayer, invocation, plea, petition" },
{ "txt": "dubi", "tra": "doubt" },
{ "txt": "duka", "tra": "suffer, pain, suffering, hurt, painful" },
{ "txt": "dulo", "tra": "slave, servant, serf, enslave" },
{ "txt": "dusa", "tra": "shower, to shower, downpour" },
{ "txt": "edu", "tra": "teach, educate, education, educated" },
{ "txt": "efeto", "tra": "effect, result, to effect, effective" },
{ "txt": "egala", "tra": "equal, equality, equation, equally" },
{ "txt": "ego", "tra": "self, own (adj)" },
{ "txt": "eki", "tra": "out, ex-, away, external" },
{ "txt": "eko", "tra": "echo, reflection" },
{ "txt": "ekonomi", "tra": "economy, economic, thrifty" },
{ "txt": "elasi", "tra": "spring, coil, elastic, springy" },
{ "txt": "elefante", "tra": "elephant" },
{ "txt": "eleti", "tra": "elect, election, select, choose, selection" },
{ "txt": "elika", "tra": "helix, curl, twist, curly, spiral, coil, propeller" },
{ "txt": "emo", "tra": "emotion, emotional, passionate, emote" },
{ "txt": "enejia", "tra": "energy, energize, energetic" },
{ "txt": "enemi", "tra": "enemy, nemesis" },
{ "txt": "enigema", "tra": "puzzle, enigma, riddle" },
{ "txt": "enkonte", "tra": "meet, encounter, meeting" },
{ "txt": "entero", "tra": "intestines, bowel, entrails, gut" },
{ "txt": "envi", "tra": "envy, jealous" },
{ "txt": "environ", "tra": "environment, habitat, ambient, milieu" },
{ "txt": "epigo", "tra": "emergency, urgent, to urge, press for" },
{ "txt": "erase", "tra": "erase, erasure, remove, wipe away" },
{ "txt": "ereki", "tra": "to stand, upright, erect" },
{ "txt": "ero", "tra": "error, mistake, err" },
{ "txt": "esamin", "tra": "exam, test, interview, examination, investigation" },
{ "txt": "esato", "tra": "exact, precise, precision, exactly, methodical" },
{ "txt": "ese", "tra": "east" },
{ "txt": "esi", "tra": "exist, existence, existent" },
{ "txt": "esita", "tra": "excite, excited" },
{ "txt": "etudi", "tra": "learn, study, research" },
{ "txt": "eve", "tra": "evening, night" },
{ "txt": "evento", "tra": "event, case (instance), occurence" },
{ "txt": "evita", "tra": "avoid, dodge, shun, avoidance" },
{ "txt": "fama", "tra": "fame, famous, glory" },
{ "txt": "famine", "tra": "hungry, hunger, famine" },
{ "txt": "fantome", "tra": "ghost, spirit, phantom" },
{ "txt": "fara", "tra": "far, distance, remote, extreme" },
{ "txt": "farina", "tra": "flour, dust, a granulated substance, sand, grind" },
{ "txt": "fase", "tra": "face, to face someone" },
{ "txt": "fasile", "tra": "easy, ease, simple, straightforward" },
{ "txt": "fata", "tra": "fate, destiny" },
{ "txt": "fatiga", "tra": "tire, tired" },
{ "txt": "fatoria", "tra": "factory, mill, plant" },
{ "txt": "fava", "tra": "bean, legume, pea, lentil" },
{ "txt": "favo", "tra": "favor, like, favorite, please" },
{ "txt": "fekun", "tra": "fertile, fecund, fertilizer, productive" },
{ "txt": "fen", "tra": "fen, swamp, bog, marsh" },
{ "txt": "fense", "tra": "fence, barrier, partition, hedge, fence off" },
{ "txt": "feo", "tra": "ugly" },
{ "txt": "feri", "tra": "fairy, sprite, pixie" },
{ "txt": "fero", "tra": "iron, steel" },
{ "txt": "feruta", "tra": "fruit, bear fruit" },
{ "txt": "fete", "tra": "party, celebrate" },
{ "txt": "fevere", "tra": "fever, feverish" },
{ "txt": "fiba", "tra": "fiber, string, thread, wire, ply, roughage, strand" },
{ "txt": "fide", "tra": "faith, to trust, loyal" },
{ "txt": "figado", "tra": "liver" },
{ "txt": "figura", "tra": "figure, form, shape, structure, statue, figurine" },
{ "txt": "filete", "tra": "steak, fillet, to fillet" },
{ "txt": "fili", "tra": "son, daughter" },
{ "txt": "filoso", "tra": "philosophy, philosophical, philosophize" },
{ "txt": "fiore", "tra": "flower" },
{ "txt": "fisika", "tra": "physics, physical, physique" },
{ "txt": "fisu", "tra": "crack, fissure, cracked" },
{ "txt": "fobo", "tra": "fear, horror, fearful, scary" },
{ "txt": "foli", "tra": "sheet, leaf, flat, flatten" },
{ "txt": "foma", "tra": "foam, froth, suds, mousse, lather" },
{ "txt": "fon", "tra": "phone" },
{ "txt": "fonte", "tra": "fountain, spring, well" },
{ "txt": "fore", "tra": "front, forehead, forward" },
{ "txt": "foreta", "tra": "forest" },
{ "txt": "fosi", "tra": "dig, bury" },
{ "txt": "fuji", "tra": "flee, escape, run away" },
{ "txt": "fule", "tra": "full, to fill, whole" },
{ "txt": "fume", "tra": "smoke" },
{ "txt": "fungi", "tra": "fungus, mold, mildew" },
{ "txt": "fura", "tra": "hole, gap, aperture, to drill, bore" },
{ "txt": "furi", "tra": "anger, angry" },
{ "txt": "fusi", "tra": "pour, fuse, melt, fusion" },
{ "txt": "gaden", "tra": "garden, a park, recreation area" },
{ "txt": "gadi", "tra": "grass, herb, lawn" },
{ "txt": "gama", "tra": "gram (SI)" },
{ "txt": "gana", "tra": "win, gain, victory, earn, earnings, profit, prize" },
{ "txt": "gape", "tra": "yawn, gape" },
{ "txt": "garaje", "tra": "garage" },
{ "txt": "gare", "tra": "station, depot" },
{ "txt": "gato", "tra": "cat, feline, catty" },
{ "txt": "geko", "tra": "lizard" },
{ "txt": "gen", "tra": "again, repeat, repetition, re-" },
{ "txt": "gene", "tra": "inherit, inheritance, genetic, gene" },
{ "txt": "gera", "tra": "war" },
{ "txt": "giga", "tra": "billion" },
{ "txt": "gitara", "tra": "guitar, lute, a strummed instrument" },
{ "txt": "goma", "tra": "rubber, rubbery" },
{ "txt": "gomba", "tra": "mushroom" },
{ "txt": "gota", "tra": "drop, bead, blob, spot, drip" },
{ "txt": "gove", "tra": "government, govern" },
{ "txt": "gule", "tra": "throat, gullet" },
{ "txt": "gun", "tra": "gun, rifle, shoot" },
{ "txt": "guru", "tra": "teacher, expert, priest, guru" },
{ "txt": "ia", "tra": "hear, listen, ear" },
{ "txt": "idea", "tra": "idea, concept, conceptual, ideate" },
{ "txt": "igi", "tra": "tree, wood" },
{ "txt": "ila", "tra": "island" },
{ "txt": "imperi", "tra": "command, imperative, rule, empire, imperial" },
{ "txt": "impotan", "tra": "important, importance, to matter" },
{ "txt": "induseri", "tra": "industry, industrial" },
{ "txt": "infero", "tra": "hell, to damn, hellish" },
{ "txt": "infiniti", "tra": "infinity, infinite" },
{ "txt": "info", "tra": "information, inform, informative" },
{ "txt": "inja", "tra": "wound, injure, injury" },
{ "txt": "inseto", "tra": "insect, bug, pest, bother" },
{ "txt": "inta", "tra": "between, inter-" },
{ "txt": "inteli", "tra": "smart, intelligence" },
{ "txt": "interesa", "tra": "interest, interesting" },
{ "txt": "inventi", "tra": "invent, invention, inventive" },
{ "txt": "inveti", "tra": "invest, investment" },
{ "txt": "invite", "tra": "invite, invitation" },
{ "txt": "ironi", "tra": "irony, ironic, sarcasm" },
{ "txt": "ise", "tra": "ice, freeze" },
{ "txt": "jage", "tra": "search, hunt, pursuit, seek, quest" },
{ "txt": "jaketa", "tra": "jacket, coat" },
{ "txt": "janji", "tra": "promise, vow, pledge, swear" },
{ "txt": "jara", "tra": "jar, pitcher, jug, carafe, mug, beaker" },
{ "txt": "jari", "tra": "shrub, bush" },
{ "txt": "jeli", "tra": "gel, goop, jelly, blob, paste, mush" },
{ "txt": "jemelo", "tra": "twin" },
{ "txt": "jenti", "tra": "polite, gentle, gracious, courteous" },
{ "txt": "jeo", "tra": "prison, jail, imprison" },
{ "txt": "jeritan", "tra": "yell, scream, shout, exclaim" },
{ "txt": "jeti", "tra": "throw, shot, shoot, hit" },
{ "txt": "jin", "tra": "gold, golden" },
{ "txt": "jira", "tra": "turn, gyrate, spin, whirl" },
{ "txt": "joke", "tra": "joke, jest" },
{ "txt": "joli", "tra": "happy, joy, frolic, enjoy" },
{ "txt": "jue", "tra": "cheek, jowl" },
{ "txt": "jumpa", "tra": "jump, bounce, leap, hop, skip, bounce" },
{ "txt": "jusa", "tra": "just (adv), very recently, to have just ...," },
{ "txt": "jusi", "tra": "juice, juicy" },
{ "txt": "ka", "tra": "because" },
{ "txt": "kabinete", "tra": "cabinet, hutch, wardrobe" },
{ "txt": "kabon", "tra": "carbon, coal" },
{ "txt": "kabuma", "tra": "explode, explosion, blast, detonate, pop" },
{ "txt": "kada", "tra": "each, respectively" },
{ "txt": "kadena", "tra": "chain, fetters" },
{ "txt": "kadi", "tra": "card, placard, cardboard, charter" },
{ "txt": "kafe", "tra": "coffee, cafe" },
{ "txt": "kaje", "tra": "cage, ribcage" },
{ "txt": "kakao", "tra": "chocolate" },
{ "txt": "kalenda", "tra": "calendar, schedule, timetable" },
{ "txt": "kalite", "tra": "quality, property, to attribute, feature, trait, -ness" },
{ "txt": "kalori", "tra": "heat, hot, calorie" },
{ "txt": "kama", "tra": "bed" },
{ "txt": "kambio", "tra": "exchange, trade, barter" },
{ "txt": "kamera", "tra": "chamber, room, partition, hall, camera" },
{ "txt": "kamina", "tra": "walk, ambulate, stroll, hike" },
{ "txt": "kamisa", "tra": "shirt" },
{ "txt": "kampo", "tra": "field, camp, to camp, countryside, meadow, rural" },
{ "txt": "kanali", "tra": "canal, channel, gutter, moat" },
{ "txt": "kanda", "tra": "shoulder, shrug" },
{ "txt": "kandela", "tra": "candle" },
{ "txt": "kanela", "tra": "cinnamon" },
{ "txt": "kanon", "tra": "cannon, artillery, gun barrel" },
{ "txt": "kansera", "tra": "crab, cancer, cancerous" },
{ "txt": "kanti", "tra": "sing, song, tune, melody" },
{ "txt": "kapa", "tra": "capture, catch, seize, grasp, captive, grab" },
{ "txt": "kare", "tra": "square, plaza" },
{ "txt": "karera", "tra": "race, competition, compete" },
{ "txt": "karo", "tra": "car, vehicle, drive" },
{ "txt": "kasa", "tra": "house, building" },
{ "txt": "kasele", "tra": "castle, fortress" },
{ "txt": "kasi", "tra": "almost" },
{ "txt": "kata", "tra": "cut, incision, slice, chop" },
{ "txt": "katana", "tra": "sword" },
{ "txt": "kavalo", "tra": "horse, donkey, mule" },
{ "txt": "kave", "tra": "cave, cavern" },
{ "txt": "keju", "tra": "cheese" },
{ "txt": "keki", "tra": "cake" },
{ "txt": "kelabu", "tra": "gray" },
{ "txt": "kemi", "tra": "chemical, drug" },
{ "txt": "kera", "tra": "horn (animal + instrument), spike" },
{ "txt": "kerami", "tra": "ceramic, pottery, china, terracota, clay pot" },
{ "txt": "keredo", "tra": "believe, belief, creed" },
{ "txt": "kerusa", "tra": "cross, intersect, intersection, crucifix" },
{ "txt": "kia", "tra": "key, unlock" },
{ "txt": "kilo", "tra": "thousand" },
{ "txt": "kinde", "tra": "child" },
{ "txt": "kino", "tra": "film, movie, cinema, to film" },
{ "txt": "kirikiti", "tra": "cricket, grasshopper, locust" },
{ "txt": "kite", "tra": "leave, quit, abandon, exit" },
{ "txt": "koda", "tra": "tail, coda" },
{ "txt": "kode", "tra": "code, cipher, program code" },
{ "txt": "koleki", "tra": "collect, collection, gather" },
{ "txt": "kolenka", "tra": "knee" },
{ "txt": "kolidi", "tra": "crash, collision, collide" },
{ "txt": "kolina", "tra": "hill" },
{ "txt": "koloni", "tra": "colony, colonial, colonize" },
{ "txt": "kolun", "tra": "column, pillar, pole, spine" },
{ "txt": "koma", "tra": "clause, comma" },
{ "txt": "komedi", "tra": "comedy, humor, funny" },
{ "txt": "kompare", "tra": "compare, comparison" },
{ "txt": "komputa", "tra": "computer, compute" },
{ "txt": "komun", "tra": "community, communal, public" },
{ "txt": "kona", "tra": "corner, angle" },
{ "txt": "konditi", "tra": "condition, state" },
{ "txt": "konfi", "tra": "comfortable, comfort, cozy" },
{ "txt": "konfuse", "tra": "confusion, confuse, confusing, perplex" },
{ "txt": "konka", "tra": "shell" },
{ "txt": "kono", "tra": "cone" },
{ "txt": "konsiense", "tra": "conscience, awareness, conscious, consciousness" },
{ "txt": "kopa", "tra": "cup, drinking vessel, chalice" },
{ "txt": "kopen", "tra": "buy, a purchase" },
{ "txt": "kopere", "tra": "copper" },
{ "txt": "koredora", "tra": "hall, corridor" },
{ "txt": "koreo", "tra": "mail, letter, post" },
{ "txt": "kosina", "tra": "kitchen, to cook" },
{ "txt": "kote", "tra": "cost, price, to cost" },
{ "txt": "koton", "tra": "cotton" },
{ "txt": "kova", "tra": "cover, covering, conceal, blanket, cloak, shawl" },
{ "txt": "kubita", "tra": "elbow, nudge, cubit" },
{ "txt": "kubo", "tra": "brick, cube, block" },
{ "txt": "kujara", "tra": "spoon" },
{ "txt": "kulutura", "tra": "culture, cultural" },
{ "txt": "kuneli", "tra": "rabbit, hare, bunny" },
{ "txt": "kuretina", "tra": "curtain, drape, screen, blinds" },
{ "txt": "kuri", "tra": "run, sprint, jog" },
{ "txt": "kusin", "tra": "cousin" },
{ "txt": "kuve", "tra": "tub, barrel, vat, tank" },
{ "txt": "labi", "tra": "lip, rim, brim" },
{ "txt": "labora", "tra": "work, labor, hard-working" },
{ "txt": "lada", "tra": "ladder, escalator, stairs, steps" },
{ "txt": "lagima", "tra": "tears, to cry" },
{ "txt": "lago", "tra": "lake, loch, pond" },
{ "txt": "laji", "tra": "trash, garbage, waste, to throw away" },
{ "txt": "lakoni", "tra": "short (length), curt, brief" },
{ "txt": "lampa", "tra": "lamp" },
{ "txt": "lan", "tra": "land, territory, domain, state" },
{ "txt": "lana", "tra": "wool" },
{ "txt": "lase", "tra": "let, allow, license, permission, licit" },
{ "txt": "lasi", "tra": "lazy, indolence, inactivity" },
{ "txt": "lati", "tra": "wide, broad, width, latitude" },
{ "txt": "lava", "tra": "wash" },
{ "txt": "leje", "tra": "read, a reading, well-read" },
{ "txt": "lense", "tra": "lens, eyeglasses, magnifying glass" },
{ "txt": "lenta", "tra": "slow, slowly" },
{ "txt": "leon", "tra": "lion, tiger, panther, a big cat" },
{ "txt": "levi", "tra": "left (direction)" },
{ "txt": "liabili", "tra": "responsible, liable, liability, responsibility" },
{ "txt": "libera", "tra": "freedom, free, liberate" },
{ "txt": "lida", "tra": "lead, leader, direct, guide" },
{ "txt": "liga", "tra": "tie, bind, knot, league, link, connection" },
{ "txt": "liki", "tra": "liquid, liquify, fluid" },
{ "txt": "lila", "tra": "purple, lilac" },
{ "txt": "limako", "tra": "snail, slug, a mollusk" },
{ "txt": "limi", "tra": "limit, limited, restriction, boundary, border" },
{ "txt": "limon", "tra": "lemon, lime, citrus" },
{ "txt": "limpe", "tra": "limp, flaccid, floppy, to limp, lax" },
{ "txt": "lin", "tra": "flash, lightning, bolt" },
{ "txt": "linga", "tra": "tongue, lick, language" },
{ "txt": "lipo", "tra": "fat, fatty, grease, fatten, to fry" },
{ "txt": "lisa", "tra": "fox" },
{ "txt": "lita", "tra": "liter (SI)" },
{ "txt": "litera", "tra": "letter, literature, character, to spell, literary" },
{ "txt": "litora", "tra": "shore, beach, coast, littoral" },
{ "txt": "loji", "tra": "logic, logical" },
{ "txt": "loka", "tra": "lock, to lock, latch, bolt, clasp" },
{ "txt": "loko", "tra": "crazy, mad, insane, madden" },
{ "txt": "longo", "tra": "long, length, longitude" },
{ "txt": "lose", "tra": "lose, loss, failure, fail" },
{ "txt": "lubi", "tra": "slip, slide, slippery, glide" },
{ "txt": "lujo", "tra": "luxury, luxurious, opulence, fancy" },
{ "txt": "luki", "tra": "fortune, luck, lucky" },
{ "txt": "lulu", "tra": "pearl" },
{ "txt": "lunge", "tra": "lungs" },
{ "txt": "lupo", "tra": "wolf" },
{ "txt": "madu", "tra": "honey" },
{ "txt": "mageneti", "tra": "magnet, magnetic" },
{ "txt": "maisa", "tra": "corn" },
{ "txt": "maji", "tra": "magic, magical, conjure" },
{ "txt": "makina", "tra": "machine, apparatus" },
{ "txt": "maladi", "tra": "malady, sickness, ill" },
{ "txt": "maleta", "tra": "hammer, mallet" },
{ "txt": "mandiba", "tra": "jaw, mandible" },
{ "txt": "manka", "tra": "mark, stain, blemish, spot" },
{ "txt": "mapa", "tra": "map, chart" },
{ "txt": "mare", "tra": "ocean, sea, marine" },
{ "txt": "mari", "tra": "marry, marriage" },
{ "txt": "maron", "tra": "brown" },
{ "txt": "masa", "tra": "mass, pile, heap, to amass, massive" },
{ "txt": "masala", "tra": "spice, curry, spiced" },
{ "txt": "matemati", "tra": "math, mathematical" },
{ "txt": "maten", "tra": "morning" },
{ "txt": "materi", "tra": "matter, material, substance" },
{ "txt": "matura", "tra": "mature, ripe, adult" },
{ "txt": "medi", "tra": "average, medium, normal, usual, standard, norm" },
{ "txt": "media", "tra": "media, communication, press" },
{ "txt": "medika", "tra": "medicine, medicinal" },
{ "txt": "melanje", "tra": "mixture, mix" },
{ "txt": "melankoli", "tra": "sad, melancholy, mourn" },
{ "txt": "melon", "tra": "melon, gourd, pumpkin" },
{ "txt": "memba", "tra": "member, adherent" },
{ "txt": "memo", "tra": "memory, remember" },
{ "txt": "menase", "tra": "threat, menace, menacing, threaten" },
{ "txt": "meno", "tra": "less (comparison), fewer, minus" },
{ "txt": "menta", "tra": "mind, mental" },
{ "txt": "mentira", "tra": "lie, false, deceive, deception" },
{ "txt": "menu", "tra": "menu" },
{ "txt": "merite", "tra": "deserve, merit, -worthy" },
{ "txt": "mesaje", "tra": "message, notification, notify" },
{ "txt": "mesura", "tra": "measure, measurement, size (clothing), dimension" },
{ "txt": "metali", "tra": "metal, metallic" },
{ "txt": "metodo", "tra": "method, procedure, technique, means, methodical" },
{ "txt": "midori", "tra": "green" },
{ "txt": "milita", "tra": "military, army" },
{ "txt": "mime", "tra": "mimic, copy, imitation" },
{ "txt": "mina", "tra": "mine (place + action)" },
{ "txt": "minute", "tra": "minute" },
{ "txt": "misi", "tra": "miss, absent, lack, fail to reach/hit/notice" },
{ "txt": "mita", "tra": "meter, metric" },
{ "txt": "mobili", "tra": "furniture" },
{ "txt": "moda", "tra": "mode, way, fashion, mood" },
{ "txt": "mogi", "tra": "fly, gnat, mosquito" },
{ "txt": "moloko", "tra": "milk, milky" },
{ "txt": "momen", "tra": "moment, instant, instantaneous, immediate" },
{ "txt": "monato", "tra": "month, monthly" },
{ "txt": "monki", "tra": "monkey, gorilla, chimpanzee" },
{ "txt": "monte", "tra": "mountain, hill, bump, protrusion, protrude, bumpy" },
{ "txt": "morale", "tra": "moral, morality, moralize, morale, virtue" },
{ "txt": "more", "tra": "custom, habit, customary, tradition, traditional" },
{ "txt": "mori", "tra": "death, die, dead, kill" },
{ "txt": "moto", "tra": "motor, engine" },
{ "txt": "move", "tra": "move, movement, motion, movie" },
{ "txt": "mudi", "tra": "purpose, goal, objective, aim, end, intend, target" },
{ "txt": "muko", "tra": "mucus, snot, phlegm" },
{ "txt": "mumi", "tra": "wax, waxy" },
{ "txt": "mun", "tra": "door, gate" },
{ "txt": "mundo", "tra": "world, globe, global" },
{ "txt": "muravi", "tra": "ant" },
{ "txt": "muro", "tra": "wall" },
{ "txt": "musele", "tra": "muscle, muscular" },
{ "txt": "musika", "tra": "music, musical" },
{ "txt": "muso", "tra": "mouse, rat" },
{ "txt": "muta", "tra": "change, modify, modification, mutation" },
{ "txt": "nafasa", "tra": "breathe, breath" },
{ "txt": "naga", "tra": "snake, slither" },
{ "txt": "naje", "tra": "swim" },
{ "txt": "najima", "tra": "star, to highlight, celebrity" },
{ "txt": "nami", "tra": "wave, undulation" },
{ "txt": "naro", "tra": "narrow, thin, strait" },
{ "txt": "nase", "tra": "nose" },
{ "txt": "nata", "tra": "cream, creamy" },
{ "txt": "nati", "tra": "birth, give birth" },
{ "txt": "natura", "tra": "nature, natural" },
{ "txt": "navi", "tra": "boat, ship" },
{ "txt": "navu", "tra": "predict, prophecy, prediction, prophetic" },
{ "txt": "nea", "tra": "near, neighborhood, close by, approach, nearly" },
{ "txt": "nebu", "tra": "mist, fog, foggy, nebulous" },
{ "txt": "neka", "tra": "neck" },
{ "txt": "nese", "tra": "need, necessity, requirement, necessary" },
{ "txt": "neso", "tra": "abstract, abstraction, -ness, -ity" },
{ "txt": "neto", "tra": "net, network, mesh, web, enmesh" },
{ "txt": "neve", "tra": "snow" },
{ "txt": "ni", "tra": "never, ever" },
{ "txt": "nida", "tra": "nest, hive, den" },
{ "txt": "niku", "tra": "meat, flesh" },
{ "txt": "nin", "tra": "nine" },
{ "txt": "ninja", "tra": "spy (noun), snoop, scout, surveil" },
{ "txt": "nise", "tra": "sneeze" },
{ "txt": "noga", "tra": "leg" },
{ "txt": "nonga", "tra": "farm, cultivate, agricultural" },
{ "txt": "nore", "tra": "north" },
{ "txt": "nube", "tra": "cloud, cloudy" },
{ "txt": "nudelo", "tra": "noodle" },
{ "txt": "nudi", "tra": "nude, naked, nudity" },
{ "txt": "nuga", "tra": "rub, friction, massage, caress, tickle, chafe" },
{ "txt": "nuki", "tra": "nut" },
{ "txt": "nun", "tra": "now" },
{ "txt": "nuta", "tra": "neutral, bland, neuter, boring, impartial" },
{ "txt": "obe", "tra": "obey, compliance, obedient" },
{ "txt": "odi", "tra": "hate, hatred, enmity" },
{ "txt": "ofensa", "tra": "crime, offense, sin, offensive, criminal" },
{ "txt": "ofera", "tra": "sacrifice, offering" },
{ "txt": "ofisi", "tra": "office, official, bureau, desk" },
{ "txt": "oko", "tra": "eye, glance, one's sight" },
{ "txt": "ole", "tra": "oil, unctuous" },
{ "txt": "onion", "tra": "onion, bulb" },
{ "txt": "onore", "tra": "honor, honorable, reputation" },
{ "txt": "open", "tra": "open" },
{ "txt": "opitala", "tra": "hospital" },
{ "txt": "ora", "tra": "hour, o'clock, clock time" },
{ "txt": "oranje", "tra": "orange" },
{ "txt": "orijen", "tra": "origin, source, original" },
{ "txt": "osila", "tra": "oscillate, swing, a swing" },
{ "txt": "oso", "tra": "bone" },
{ "txt": "osura", "tra": "shadow, shade, obscure, hide, hidden" },
{ "txt": "otelo", "tra": "hotel" },
{ "txt": "otono", "tra": "autumn" },
{ "txt": "oven", "tra": "oven, furnace, bake, heater" },
{ "txt": "ovi", "tra": "lamb, sheep" },
{ "txt": "ovo", "tra": "egg" },
{ "txt": "padon", "tra": "pardon, forgive, condone, an excuse" },
{ "txt": "paga", "tra": "pay, payment, spend" },
{ "txt": "paisa", "tra": "nation, country, national" },
{ "txt": "paketa", "tra": "package, parcel, packet, bundle" },
{ "txt": "panta", "tra": "pants, trousers" },
{ "txt": "pape", "tra": "paper" },
{ "txt": "papilon", "tra": "butterfly, moth" },
{ "txt": "para", "tra": "stop, halt" },
{ "txt": "parada", "tra": "parade, march, procession" },
{ "txt": "paren", "tra": "parent" },
{ "txt": "pari", "tra": "bet, wager, gamble" },
{ "txt": "parija", "tra": "grill, grid, grate, broiler, gridiron" },
{ "txt": "pase", "tra": "peace, peaceful" },
{ "txt": "paso", "tra": "step, stride, pace" },
{ "txt": "patata", "tra": "potato" },
{ "txt": "patio", "tra": "patio, courtyard, yard" },
{ "txt": "pato", "tra": "duck, goose, swan, waterfowl" },
{ "txt": "pausa", "tra": "pause, break, interruption" },
{ "txt": "pedi", "tra": "foot, by foot, kick, stomp" },
{ "txt": "pele", "tra": "skin, surface, peel, hide (animal)" },
{ "txt": "pelo", "tra": "hair, fur, hairy" },
{ "txt": "pen", "tra": "pen, pencil, stylus" },
{ "txt": "pende", "tra": "hang, hanging, suspension, suspense" },
{ "txt": "penelo", "tra": "brush, comb, sweep" },
{ "txt": "penta", "tra": "five" },
{ "txt": "pepa", "tra": "pepper, spicy" },
{ "txt": "pianeta", "tra": "planet, planetary" },
{ "txt": "piano", "tra": "piano" },
{ "txt": "piato", "tra": "plate, dish, disc, tray, to plate" },
{ "txt": "piega", "tra": "fold, crease" },
{ "txt": "pigi", "tra": "pig, boar" },
{ "txt": "pigu", "tra": "butt" },
{ "txt": "pika", "tra": "prick, pierce, sting" },
{ "txt": "pila", "tra": "yellow" },
{ "txt": "pile", "tra": "pill, pellet, bullet" },
{ "txt": "pilo", "tra": "pillow, cushion" },
{ "txt": "pin", "tra": "pin, needle" },
{ "txt": "pinta", "tra": "paint, painting, painted" },
{ "txt": "pipi", "tra": "pee, urinate" },
{ "txt": "pirami", "tra": "pyramid" },
{ "txt": "pirata", "tra": "pirate" },
{ "txt": "piron", "tra": "fork" },
{ "txt": "pisi", "tra": "fish" },
{ "txt": "pisina", "tra": "pool of water, pond, swimming pool" },
{ "txt": "piti", "tra": "pity, mercy, compassion, sympathy, sympathize" },
{ "txt": "piuma", "tra": "feather" },
{ "txt": "poesi", "tra": "poem, poetry, poetic" },
{ "txt": "poke", "tra": "pocket" },
{ "txt": "polisa", "tra": "police" },
{ "txt": "politi", "tra": "politics, political, politicize" },
{ "txt": "polo", "tra": "chicken, fowl" },
{ "txt": "poma", "tra": "apple" },
{ "txt": "pone", "tra": "put, lay, place" },
{ "txt": "ponte", "tra": "bridge" },
{ "txt": "popula", "tra": "people, population, populate, populous, popular" },
{ "txt": "pota", "tra": "carry, transport, transfer, port, cargo" },
{ "txt": "pote", "tra": "pot, pan, cauldron, crucible, saucepan" },
{ "txt": "pove", "tra": "poor, poverty" },
{ "txt": "pubili", "tra": "print, publish" },
{ "txt": "puja", "tra": "worship, praise, adore, adoration" },
{ "txt": "puko", "tra": "knife, dagger, stab" },
{ "txt": "pulasi", "tra": "plastic, plastics, malleable" },
{ "txt": "pumpa", "tra": "pump (motion + tool)" },
{ "txt": "puni", "tra": "punish, punishment" },
{ "txt": "punjo", "tra": "fist, punch, knob, hilt, handgrip" },
{ "txt": "punto", "tra": "point, dot, spot, indicate, pointy, sharp" },
{ "txt": "pupe", "tra": "doll, puppet" },
{ "txt": "pura", "tra": "pure, clean, cleanse" },
{ "txt": "puse", "tra": "press, push, shove" },
{ "txt": "radi", "tra": "ray, beam, radiate, bolt, radius" },
{ "txt": "radika", "tra": "root, rooted, rhizome, tuber" },
{ "txt": "raja", "tra": "ruler, royal, king, queen" },
{ "txt": "raka", "tra": "rack, shelf, ledge" },
{ "txt": "rama", "tra": "arm, limb, branch" },
{ "txt": "rampa", "tra": "ramp, lean, incline, slope, bow, slant, tilt, tilted" },
{ "txt": "rana", "tra": "frog, toad" },
{ "txt": "randon", "tra": "random, arbitrary, caprice" },
{ "txt": "ranko", "tra": "rank, status, ordering, -th (ordinal)" },
{ "txt": "rano", "tra": "early, too soon" },
{ "txt": "rasa", "tra": "race, ethnicity, racial" },
{ "txt": "raso", "tra": "shave, scrape, graze" },
{ "txt": "ratio", "tra": "ratio, rate, proportion, fraction" },
{ "txt": "reaki", "tra": "answer, response, reaction" },
{ "txt": "rebele", "tra": "rebel, rebellion, revolution, treason, rebellious" },
{ "txt": "redi", "tra": "ready, available, prepare, preparation" },
{ "txt": "refere", "tra": "refer to, reference, mention, allusion" },
{ "txt": "regen", "tra": "rain" },
{ "txt": "regula", "tra": "regulate, regulation, control, ruler (tool), a rule" },
{ "txt": "rela", "tra": "rail, train, bar" },
{ "txt": "relate", "tra": "relate, relation, relationship, connection, connect with" },
{ "txt": "relijon", "tra": "religion, religious" },
{ "txt": "remo", "tra": "oar, rudder, to row" },
{ "txt": "rena", "tra": "kidney" },
{ "txt": "renta", "tra": "rent, borrow" },
{ "txt": "reo", "tra": "flow, current, rhythm, influence" },
{ "txt": "repare", "tra": "fix, correction, improvement, repair, mend" },
{ "txt": "repubika", "tra": "republic, republican" },
{ "txt": "retili", "tra": "reptile, crawl, creep" },
{ "txt": "retorante", "tra": "restaurant" },
{ "txt": "revela", "tra": "reveal, divulge, disclose, revelation, disclosure" },
{ "txt": "rika", "tra": "rich, wealth" },
{ "txt": "rima", "tra": "rhyme, rhyming" },
{ "txt": "ringo", "tra": "ring, loop, hoop, circuit, halo" },
{ "txt": "risa", "tra": "laugh" },
{ "txt": "risiti", "tra": "receive, get, receipt, acknowledge, reception" },
{ "txt": "riso", "tra": "rice" },
{ "txt": "rite", "tra": "rite, ceremony, ceremonial" },
{ "txt": "riva", "tra": "river, stream" },
{ "txt": "roba", "tra": "dress, robe" },
{ "txt": "robare", "tra": "steal, theft" },
{ "txt": "roboto", "tra": "robot" },
{ "txt": "roden", "tra": "rodent (non-mouse), squirrel, beaver" },
{ "txt": "roga", "tra": "ask, question" },
{ "txt": "roketa", "tra": "rocket, missle, projectile" },
{ "txt": "rompe", "tra": "break, rupture, smash, disrupt" },
{ "txt": "ronko", "tra": "snore, grunt" },
{ "txt": "rosa", "tra": "pink, rose" },
{ "txt": "ruina", "tra": "destroy, ruin, destruction, downfall" },
{ "txt": "ruja", "tra": "red" },
{ "txt": "rumora", "tra": "gossip, rumor, rumored" },
{ "txt": "runguma", "tra": "hug, embrace" },
{ "txt": "rusa", "tra": "deer" },
{ "txt": "ruse", "tra": "trick, hoax, ruse, fraud, scam, tricky" },
{ "txt": "ruto", "tra": "burp, belch" },
{ "txt": "saara", "tra": "desert" },
{ "txt": "sadi", "tra": "mean, cruel, sadistic" },
{ "txt": "safari", "tra": "journey, voyage, trip, travel, adventure, adventurous" },
{ "txt": "saga", "tra": "story, narrate, fictional" },
{ "txt": "saje", "tra": "wise, wisdom" },
{ "txt": "sake", "tra": "alcohol, liquor" },
{ "txt": "sako", "tra": "bag, sack" },
{ "txt": "saliva", "tra": "saliva, spit, expectorate" },
{ "txt": "salo", "tra": "salt, salty, seasoning" },
{ "txt": "salon", "tra": "salon, parlor" },
{ "txt": "salu", "tra": "hello, greet, greeting, salute" },
{ "txt": "sando", "tra": "sandwich" },
{ "txt": "sange", "tra": "blood, bleed" },
{ "txt": "sano", "tra": "health, healthy, heal" },
{ "txt": "sapato", "tra": "shoe" },
{ "txt": "sava", "tra": "save, rescue, salvation, salvage, retrieve" },
{ "txt": "savaje", "tra": "wild, savage, feral, uncivilized, wilderness" },
{ "txt": "savon", "tra": "soap" },
{ "txt": "se", "tra": "if, whether" },
{ "txt": "seda", "tra": "silk" },
{ "txt": "sede", "tra": "sit, seat, chair" },
{ "txt": "sekeleton", "tra": "skeleton, framework, scaffolding" },
{ "txt": "seketa", "tra": "secret, mystery" },
{ "txt": "seko", "tra": "dry, dryness" },
{ "txt": "sekola", "tra": "school" },
{ "txt": "sekon", "tra": "second (time)" },
{ "txt": "sekura", "tra": "secure, safe, safety, security" },
{ "txt": "sela", "tra": "cell (biology + room)" },
{ "txt": "semana", "tra": "week, weekly" },
{ "txt": "semen", "tra": "seed" },
{ "txt": "semi", "tra": "half, partial, incompletely" },
{ "txt": "sena", "tra": "scene, stage" },
{ "txt": "sende", "tra": "send, transmit, dispatch, broadcast, a post" },
{ "txt": "seni", "tra": "art, artistic" },
{ "txt": "senjore", "tra": "mr., ms., sir, madam, lord, master" },
{ "txt": "sentense", "tra": "sentence, phrase, proposition, verdict" },
{ "txt": "senti", "tra": "sense, feel, touch, feeling" },
{ "txt": "sento", "tra": "hundred" },
{ "txt": "sera", "tra": "close, shut, seal" },
{ "txt": "sereale", "tra": "grain, cereal, wheat" },
{ "txt": "serebe", "tra": "brain" },
{ "txt": "seri", "tra": "series, list, order, row, enumerate" },
{ "txt": "serio", "tra": "serious, earnest, seriousness" },
{ "txt": "sesi", "tra": "sex, sexy, copulate, gender" },
{ "txt": "sete", "tra": "thirst, thirsty" },
{ "txt": "seven", "tra": "seven" },
{ "txt": "severe", "tra": "severe, strict" },
{ "txt": "sibi", "tra": "sibling, brother, sister" },
{ "txt": "sibila", "tra": "whistle, hiss, fizzle, whiz, zip" },
{ "txt": "siensa", "tra": "science, scientific, -ology" },
{ "txt": "sigaro", "tra": "cigar, cigarette" },
{ "txt": "sige", "tra": "next, follow, subsequent, succeeding" },
{ "txt": "silaba", "tra": "syllable" },
{ "txt": "silara", "tra": "silver, silvery" },
{ "txt": "silen", "tra": "silence, silent" },
{ "txt": "sili", "tra": "silly, foolish, trivial, triviality" },
{ "txt": "sina", "tra": "chest, torso" },
{ "txt": "sinda", "tra": "cinder, ash, ashy" },
{ "txt": "sinifi", "tra": "meaning, to mean, sense, significance, significant" },
{ "txt": "sino", "tra": "sign, mark, symbol, signal, token, logo" },
{ "txt": "sinti", "tra": "sparkle, twinkle" },
{ "txt": "siren", "tra": "bell, siren, alarm, to chime, handbell, doorbell" },
{ "txt": "sisora", "tra": "scissors, shears" },
{ "txt": "sita", "tra": "six" },
{ "txt": "sitema", "tra": "system, systematic, systematize" },
{ "txt": "siti", "tra": "city" },
{ "txt": "sivi", "tra": "citizen, civilian, civil, civilize" },
{ "txt": "so", "tra": "so, such" },
{ "txt": "sofa", "tra": "sofa" },
{ "txt": "sofio", "tra": "blow, inflate, puff" },
{ "txt": "soke", "tra": "sock, stocking" },
{ "txt": "soli", "tra": "soil, dirt, clay, mud" },
{ "txt": "solidi", "tra": "solid, firm" },
{ "txt": "solo", "tra": "single, alone, only" },
{ "txt": "solu", "tra": "solve, solution, loose, untie, dissolve" },
{ "txt": "soma", "tra": "summer" },
{ "txt": "some", "tra": "some, few, an indefinite amount, somewhat" },
{ "txt": "sonjo", "tra": "dream" },
{ "txt": "sonri", "tra": "smile" },
{ "txt": "sori", "tra": "sorry, to be sorry, contrition, remorse" },
{ "txt": "sosia", "tra": "society, social" },
{ "txt": "suave", "tra": "smooth, soft, sleek, even" },
{ "txt": "subita", "tra": "sudden, suddenly, abrupt, to precipitate" },
{ "txt": "sude", "tra": "south" },
{ "txt": "sue", "tra": "sew, stich, seam" },
{ "txt": "sufi", "tra": "enough, sufficient, suffice" },
{ "txt": "sujesi", "tra": "suggest, suggestion, hint, insinuation" },
{ "txt": "sujo", "tra": "dirty, grime, filth, to taint, corruption" },
{ "txt": "suko", "tra": "suck, suction" },
{ "txt": "suma", "tra": "sum, total, calculate, score" },
{ "txt": "sumete", "tra": "surrender, submit, yield, give in, submission" },
{ "txt": "sun", "tra": "soon" },
{ "txt": "supe", "tra": "soup" },
{ "txt": "superise", "tra": "surprise, astonish, shock, unexpected" },
{ "txt": "suponji", "tra": "sponge" },
{ "txt": "supose", "tra": "suppose, guess, conjecture, hypothesis" },
{ "txt": "sure", "tra": "certain, sure, certainty" },
{ "txt": "susura", "tra": "whisper, rustle, murmur" },
{ "txt": "taba", "tra": "board, plank, beam, slat" },
{ "txt": "tabu", "tra": "taboo, forbid, forbidden" },
{ "txt": "tadi", "tra": "late, tardy, delay" },
{ "txt": "talon", "tra": "heel" },
{ "txt": "tambo", "tra": "drum" },
{ "txt": "tamen", "tra": "although, though, nevertheless, in spite of, however" },
{ "txt": "tami", "tra": "filter, sieve, colander" },
{ "txt": "tape", "tra": "carpet, rug" },
{ "txt": "tari", "tra": "history, historical" },
{ "txt": "tarifa", "tra": "charge, bill, tax" },
{ "txt": "tavan", "tra": "ceiling, roof" },
{ "txt": "tea", "tra": "tea" },
{ "txt": "teata", "tra": "theater, theatrical" },
{ "txt": "teke", "tra": "goat, antelope, ibex, a caprine" },
{ "txt": "teki", "tra": "technology, technological, technical" },
{ "txt": "tela", "tra": "cloth, fabric" },
{ "txt": "tema", "tra": "theme, subject, topic, to be about, to concern" },
{ "txt": "ten", "tra": "ten" },
{ "txt": "tenden", "tra": "tendency, bias, inclination, inclined to" },
{ "txt": "teni", "tra": "hold, grasp, cling to" },
{ "txt": "tensa", "tra": "tense (action + state + grammar), stretch, strained" },
{ "txt": "tenta", "tra": "try, attempt, experiment, trial, tentative, provisional" },
{ "txt": "teoria", "tra": "theory, theorize" },
{ "txt": "terapi", "tra": "therapy, treatment, treat, cure, therapeutic" },
{ "txt": "tese", "tra": "weave, woven, knit" },
{ "txt": "teta", "tra": "breast, tit" },
{ "txt": "tie", "tra": "uncle, aunt" },
{ "txt": "tila", "tra": "until, till, up to, approach, reach" },
{ "txt": "timi", "tra": "timid, shy, coy, reserved" },
{ "txt": "tin", "tra": "tin, can" },
{ "txt": "tingi", "tra": "high, tall, height" },
{ "txt": "tinta", "tra": "tint, ink, hue" },
{ "txt": "tipi", "tra": "tent, teepee, hut" },
{ "txt": "tipo", "tra": "type, quality, kind, typical" },
{ "txt": "tira", "tra": "pull, tug" },
{ "txt": "tivi", "tra": "TV, television" },
{ "txt": "tobako", "tra": "tobacco" },
{ "txt": "toilete", "tra": "toilet, urinal, restroom, WC, use bathroom" },
{ "txt": "tolera", "tra": "tolerate, tolerance, tolerant, accepting" },
{ "txt": "tonere", "tra": "thunder" },
{ "txt": "topi", "tra": "cap, hat, top, summit" },
{ "txt": "tore", "tra": "tower, skyscraper, turret, steeple, minaret" },
{ "txt": "tori", "tra": "bird" },
{ "txt": "tose", "tra": "cough, bark" },
{ "txt": "toti", "tra": "turtle, tortoise" },
{ "txt": "tovari", "tra": "companion, spouse, partner, comrade" },
{ "txt": "tubo", "tra": "tube, pipe" },
{ "txt": "tufan", "tra": "storm, stormy, typhoon, hurricane" },
{ "txt": "tuju", "tra": "always, forever, ever" },
{ "txt": "tumba", "tra": "grave, tomb" },
{ "txt": "tumo", "tra": "tumor, swell, swelling, bulge" },