-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapertium-tur-uzb.uzb.lexc
5291 lines (4819 loc) · 150 KB
/
apertium-tur-uzb.uzb.lexc
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
Multichar_Symbols
%<n%> ! Noun
%<np%> ! Proper noun
%<adj%>
%<adv%>
%<cnjcoo%> ! Co-ordinating conjunction
%<cnjadv%>
%<cnjsub%>
%<num%>
%<prn%>
%<abbr%>
%<px1sg%>
%<px3sp%>
! Cases ! "Case is a lie!" (quot.)
%<nom%>
%<gen%>
%<dat%>
%<acc%>
%<abl%>
%<loc%>
%<ins%> ! Instrumental=comitative
!!!!!! MISC!!!!
%<top%> ! TOPONYMS
%<al%> ! ALTER
%<m%> !
%<f%> !
%<mf%> !
%<v%>
%<iv%>
%<tv%>
%<ger5%>
%<pcont%>
%<pcond%>
%<evid%>
%<past%>
%<aor%>
%<kan%>
%<imp%>
%<perm%>
%<inf%>
%<gna1%>
%<gna2%>
%<gna3%>
%<gna4%>
%<pass%>
%<attr%>
%<subst%>
%<p1%>
%<p2%>
%<p3%>
%<sg%>
%<pl%>
%<prn%>
%<adv%>
%<ref%>
%<pers%>
%<dem%>
%<tv%>
%<iv%>
!!!! PUNCTUATION !!!
%<sent%>
%<guio%>
%<cm%>
%<apos%>
%<lquot%>
%<rquot%>
%<lpar%>
%<rpar%>
!!!! JAWOHL TWOL!!!!
%{s%} ! Becomes "s" after a vowel, otherwise null
%{i%} ! Becomes as "i" after a consonant, otherwise null
%{E%} ! Becomes as "a" after a consonant, otherwise "y"
%{K%}
%>
%'
%`
%ʻ
%
LEXICON Root
Nouns ;
Postpositions ;
Adjectives ;
Determinatives ;
Conjunctions ;
Verbs ;
Adverbs ;
Numerals ;
Punctuation ;
Titles ;
Digits ;
Pronouns ;
Interjections ;
Qst-pron ;
Mistakes ;
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!!!!!!!! CONJUNCTIONS, CAUSE EVEN SENTENCES AND WORDS WANNA BE TOGETHER !!!!!!!!!!!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
LEXICON PRON-DEM-BU
%<prn%>%<dem%>%<nom%>: # ;
%<prn%>%<dem%>%<gen%>:ning # ;
%<prn%>%<dem%>%<dat%>:nga # ;
%<prn%>%<dem%>%<acc%>:ni # ;
%<prn%>%<dem%>%<abl%>:ndan # ;
%<prn%>%<dem%>%<loc%>:nda # ;
! %<prn%>%<dem%>%<px%>:nuki%{pN%} CASE ;
%<prn%>%<dem%>%<loc%>%<attr%>:ndagi CASE ;
!%<prn%>%<dem%>%<com%>:nunla # ;
!%<prn%>%<dem%>%<px3sp%>:nu%{pN%} CASE ;
%<prn%>%<dem%>%<pl%>:nlar CASE-ETC ;
! %<prn%>%<dem%>%<pl%>%<px3sp%>:nları%{pN%} CASE ;
LEXICON CA
%<cnjadv%>: # ;
LEXICON CS
%<cnjsub%>: # ;
LEXICON CC
%<cnjcoo%>: # ;
LEXICON VERB-IV
%<v%>%<iv%>: VERB-IV-FULL ;
%<v%>%<iv%>%<pass%>:il VERB-IV-FULL ;
%<v%>%<iv%>%<ref%>:in VERB-IV-FULL ;
%<v%>%<iv%>%<neg%>:ma VERB-IV-FULL ;
%<v%>%<iv%>%<pass%>%<neg%>:ilma VERB-IV-FULL ;
%<v%>%<iv%>%<ref%>%<neg%>:inma VERB-IV-FULL ;
LEXICON VERB-IV-FULL
GERUND ;
PRES-CONT ;
PRES-COND ;
AORIST ;
INDEF-PAST ;
PAST ;
EVIDENTIAL-PAST ;
NON-FINITE ;
PERMISSIVE ;
IMPERATIVE ;
!!!!!!!COPULA SUFFIXES!!!!!!
LEXICON VERB-TV
%<v%>%<tv%>%<pass%>:il VERB-TV-FULL ;
%<v%>%<tv%>%<pass%>%<neg%>:ilma VERB-TV-FULL ;
%<v%>%<tv%>%<ref%>:in VERB-TV-FULL ;
%<v%>%<tv%>%<ref%>%<neg%>:inma VERB-TV-FULL ;
%<neg%>:ma VERB-TV-FULL ;
%<v%>%<tv%>: VERB-TV-FULL ;
LEXICON VERB-TV-FULL
GERUND ;
PRES-CONT ;
PRES-COND ;
AORIST ;
INDEF-PAST ;
PAST ;
EVIDENTIAL-PAST ;
NON-FINITE ;
PERMISSIVE ;
IMPERATIVE ;
LEXICON VERB-COPULA
%<cop%>: GERUND ;
%<cop%>: PRES-CONT ;
%<cop%>: PRES-COND ;
%<cop%>: INDEF-PAST ;
%<cop%>: PAST ;
%<cop%>: EVIDENTIAL-PAST ;
%<cop%>: NON-FINITE ;
%<cop%>: KAN ;
%<cop%>: PERS ;
LEXICON KAN
%<kan%>:%>kan # ;
%<kan%>%<neg%>:%>kansiz # ;
LEXICON NON-FINITE
%<inf%>:%>moq CASE ;
%<gna2%>:%>ib # ;
%<part%>:%>ing SUBST ;
%<gna3%>:%>gach # ;
%<gna1%>:%>ish # ;
%<gna4%>:%>ayotgan SUBST;
LEXICON PRES-COND
%<pcond%>:%>sa PERS2 ;
LEXICON GERUND
%<ger5%>:%>gan SUBST ;
%<ger5%>:%>ish SUBST ;
LEXICON IMPERATIVE
%<imp%>:%> # ;
LEXICON INDEF-PAST
%<past%>:%>gan PERS2 ;
LEXICON PAST
%<past%>:%>%di PERS2 ;
LEXICON EVIDENTIAL-PAST
%<evid%>:%>mish PERS ;
LEXICON PERMISSIVE
%<perm%>:%>sin # ;
LEXICON PRES-CONT
%<pcont%>:%>yap PERS ;
LEXICON AORIST
%<aor%>:%>%{E%} PERS3 ;
LEXICON PERS
%<p1%>%<sg%>:%>man # ;
%<p2%>%<sg%>:%>san # ;
%<p3%>%<sg%>:%>ti # ;
%<p3%>%<sg%>:%> # ;
%<p3%>%<pl%>:%>siz # ;
%<p1%>%<pl%>:%>miz # ;
%<p2%>%<pl%>:%>tilar # ;
LEXICON PERS2
%<p1%>%<sg%>:%>m # ;
%<p2%>%<sg%>:%>ng # ;
%<p3%>%<sg%>:%> # ;
%<p1%>%<pl%>:%>k # ;
%<p2%>%<pl%>:%>ning # ;
%<p3%>%<pl%>:%>ishsa # ;
%<p3%>%<pl%>:%>lar # ;
LEXICON PERS3
%<p1%>%<sg%>:%>man # ;
%<p2%>%<sg%>:%>san # ;
%<p3%>%<sg%>:%>di # ;
! %<p3%>%<sg%>:%> # ;
%<p3%>%<pl%>:%>siz # ;
%<p1%>%<pl%>:%>miz # ;
%<p2%>%<pl%>:%>tilar # ;
LEXICON ADV1
%<adv%>: # ; ! this is for when the adverb is used as an adverb
%<adv%>%<subst%>: SUBST ;
%<adv%>%<attr%>: # ;
LEXICON ADV2
%<adv%>: # ;
%<adv%>%<attr%>: # ;
LEXICON ADV3
%<adv%>: # ;
LEXICON DET-IND
%<det%>%<ind%>: # ;
LEXICON DET-DEM
%<det%>%<dem%>: #;
LEXICON DET-QNT
%<det%>%<qnt%>: # ;
LEXICON PRON-QNT
%<prn%>%<qnt%>: SUBST ;
LEXICON DET-ITG
%<det%>%<itg%>: # ;
LEXICON CC
%<cnjcoo%>: # ;
LEXICON A1
%<adj%>: # ;
%<adj%>%<subst%>: SUBST ;
%<adj%>%<advl%>: # ;
LEXICON A2
%<adj%>: # ;
%<adj%>%<subst%>: SUBST ;
LEXICON A4
%<adj%>: # ;
LEXICON PRON-REF
%<prn%>%<ref%>: # ;
LEXICON PRON-ADV
%<prn%>%<adv%>: CASE-NONOM ;
%<prn%>%<adv%>: POSS-REAL-NONOM ;
LEXICON POST
%<post%>: # ;
!!!!!!!!!!!!!!NOUNS!!!!!!!!!!!!!!!!!!!!!!!!!!
LEXICON N1 ! Lexicon used for general nouns with no particularities. It takes PLURAL*-POSSESSIVE*-CASE in this order
%<n%>: SUBST ;
%<n%>%<attr%>: # ;
LEXICON MIST
%<mistake%>: # ;
LEXICON N3 ! Nationalities which can form language, etc.
! e.g. turk, turkçe
%<n%>: SUBST ;
LEXICON NP-TOP
%<np%>%<top%>: SUBST ;
LEXICON NP1-ANT-M
%<np%>%<ant%>%<m%>: SUBST;
LEXICON NP1-ANT-F
%<np%>%<ant%>%<f%>: SUBST ;
LEXICON NP1-COG-MF
%<np%>%<cog%>%<mf%>: SUBST ;
LEXICON NP1-AL
%<np%>%<al%>%: SUBST;
LEXICON NUM
%<num%>%<subst%>: SUBST ;
%<num%>%<ord%>:%>inchi # ;
%<num%>: # ;
LEXICON NP1-ORG
%<np%>%<org%>%<nom%>: # ;
%<np%>%<org%>: SUBST ;
%<np%>%<org%>%<attr%>: # ;
LEXICON SUBST
N-INFL-COMMON ;
%<pl%>:%>lar N-INFL-COMMON ;
%<loc%>%<attr%>:%>dagi # ;
! LEXICON #
!
!# ;
LEXICON N-INFL-COMMON
POSS-REAL ;
CASE-ETC ;
LEXICON POSS-REAL
%<px1sg%>:%>%{i%}m CASE-ETC ;
%<px2sg%>:%>%{i%}ng CASE-ETC ;
%<px3sp%>:%>%{s%}i CASE-ETC ;
%<px1pl%>:%>%{i%}miz CASE-ETC ;
%<px2pl%>:%>%{i%}ngiz CASE-ETC ;
%<px3pl%>:%>lari CASE-ETC ;
LEXICON POSS-REAL-NONOM
%<px1sg%>:%>%{i%}m CASE-NONOM ;
%<px2sg%>:%>%{i%}ng CASE-NONOM ;
%<px3sp%>:%>%{s%}i CASE-NONOM ;
%<px1pl%>:%>%{i%}miz CASE-NONOM ;
%<px2pl%>:%>%{i%}ngiz CASE-NONOM;
%<px3pl%>:%>lari CASE-NONOM ;
LEXICON CASE-ETC
CASE ;
GENPOSS-ETC ;
%<nom%>: SUB-COP ; ! FIXME
LEXICON CASE
%<nom%>: # ;
%<gen%>:%>ning # ;
%<dat%>:%>ga # ;
%<acc%>:%>ni # ;
%<loc%>:%>da # ;
%<abl%>:%>dan # ;
! %<ins%>:%>ins # ;
LEXICON CASE-NONOM
%<gen%>:%>ning # ;
%<dat%>:%>ga # ;
%<acc%>:%>ni # ;
%<loc%>:%>da # ;
%<abl%>:%>dan # ;
! %<ins%>:%>ins # ;
LEXICON GENPOSS-ETC
! %<px%>:%>%{n%}%{I%}ki%{pN%} CASE ;
%<loc%>%<attr%>:%>dagi # ;
LEXICON SUB-COP
%+e%<cop%>:%>dir # ;
LEXICON PRON-PERS
men%<prn%>%<pers%>%<p1%>%<sg%>%<nom%>:men # ;
men%<prn%>%<pers%>%<p1%>%<sg%>%<gen%>:mening # ;
men%<prn%>%<pers%>%<p1%>%<sg%>%<dat%>:menga # ;
men%<prn%>%<pers%>%<p1%>%<sg%>%<acc%>:meni # ;
men%<prn%>%<pers%>%<p1%>%<sg%>%<loc%>:menda # ;
men%<prn%>%<pers%>%<p1%>%<sg%>%<abl%>:mendan # ;
sen%<prn%>%<pers%>%<p2%>%<sg%>%<nom%>:sen # ;
sen%<prn%>%<pers%>%<p2%>%<sg%>%<gen%>:sening # ;
sen%<prn%>%<pers%>%<p2%>%<sg%>%<dat%>:senga # ;
sen%<prn%>%<pers%>%<p2%>%<sg%>%<acc%>:seni # ;
sen%<prn%>%<pers%>%<p2%>%<sg%>%<loc%>:senda # ;
sen%<prn%>%<pers%>%<p2%>%<sg%>%<abl%>:sendan # ;
u%<prn%>%<pers%>%<p3%>%<sg%>%<nom%>:u # ;
u%<prn%>%<pers%>%<p3%>%<sg%>%<gen%>:uning # ;
u%<prn%>%<pers%>%<p3%>%<sg%>%<dat%>:unga # ;
u%<prn%>%<pers%>%<p3%>%<sg%>%<acc%>:uni # ;
u%<prn%>%<pers%>%<p3%>%<sg%>%<loc%>:unda # ;
u%<prn%>%<pers%>%<p3%>%<sg%>%<abl%>:undan # ;
biz%<prn%>%<pers%>%<p1%>%<pl%>%<nom%>:biz # ;
biz%<prn%>%<pers%>%<p1%>%<pl%>%<nom%>:bizlar # ;
biz%<prn%>%<pers%>%<p1%>%<pl%>%<gen%>:bizning # ;
biz%<prn%>%<pers%>%<p1%>%<pl%>%<dat%>:bizga # ;
biz%<prn%>%<pers%>%<p1%>%<pl%>%<acc%>:bizni # ;
biz%<prn%>%<pers%>%<p1%>%<pl%>%<loc%>:bizda # ;
biz%<prn%>%<pers%>%<p1%>%<pl%>%<abl%>:bizdan # ;
sizlar%<prn%>%<pers%>%<p2%>%<pl%>%<nom%>:sizlar # ;
sizlar%<prn%>%<pers%>%<p2%>%<pl%>%<gen%>:sizlarning # ;
sizlar%<prn%>%<pers%>%<p2%>%<pl%>%<dat%>:sizlarga # ;
sizlar%<prn%>%<pers%>%<p2%>%<pl%>%<acc%>:sizlarni # ;
sizlar%<prn%>%<pers%>%<p2%>%<pl%>%<loc%>:sizlarda # ;
sizlar%<prn%>%<pers%>%<p2%>%<pl%>%<abl%>:sizlardan # ;
siz%<prn%>%<pers%>%<p2%>%<pl%>%<nom%>:siz # ;
siz%<prn%>%<pers%>%<p2%>%<pl%>%<gen%>:sizning # ;
siz%<prn%>%<pers%>%<p2%>%<pl%>%<dat%>:sizga # ;
siz%<prn%>%<pers%>%<p2%>%<pl%>%<acc%>:sizni # ;
siz%<prn%>%<pers%>%<p2%>%<pl%>%<loc%>:sizda # ;
siz%<prn%>%<pers%>%<p2%>%<pl%>%<abl%>:sizdan # ;
ular%<prn%>%<pers%>%<p3%>%<pl%>%<nom%>:ular # ;
ular%<prn%>%<pers%>%<p3%>%<pl%>%<gen%>:ularning # ;
ular%<prn%>%<pers%>%<p3%>%<pl%>%<dat%>:ularga # ;
ular%<prn%>%<pers%>%<p3%>%<pl%>%<acc%>:ularni # ;
ular%<prn%>%<pers%>%<p3%>%<pl%>%<loc%>:ularda # ;
ular%<prn%>%<pers%>%<p3%>%<pl%>%<abl%>:ulardan # ;
LEXICON TIT
%<title%>: # ;
LEXICON ABBR
%<abbr%>: # ;
LEXICON INTERJ
%<ij%>: # ;
LEXICON DIGITLEX
%0:%0 LOOP ;
1:1 LOOP ;
2:2 LOOP ;
3:3 LOOP ;
4:4 LOOP ;
5:5 LOOP ;
6:6 LOOP ;
7:7 LOOP ;
8:8 LOOP ;
9:9 LOOP ;
LEXICON LOOP
%,:%, DIGITLEX ;
%.:%. DIGITLEX ;
%,:%, LASTDIGIT ;
%.:%. LASTDIGIT ;
%,:%, LASTDIGIT-REST ;
%.:%. LASTDIGIT-REST ;
%,:%, POWERS ;
%.:%. POWERS ;
DIGITLEX ;
LASTDIGIT ;
LASTDIGIT-REST ;
POWERS ;
LEXICON POWERS
%0%0:%0%0 NUM-DIGIT ; ! "yüz"
%0%0%0:%0%0%0 NUM-DIGIT ; ! "bin"
LEXICON NUM-DIGIT
%<num%>: # ;
%<num%>%<subst%>%<nom%>: # ;
%<num%>%<subst%>: # ; ! Dir/LR
!%<num%>%<ord%>:%'%{i%}nc%{I%} # ;
!%<num%>%<ord%>%<subst%>%<nom%>:%'%{I%}nc%{I%} # ;
!%<num%>%<ord%>%<subst%>:%'%{I%}nc%{i%} # ;
!%<num%>%<coll%>%<advl%>:%-%{A%}у # ;
!%<num%>%<coll%>%<nom%>:%-%{A%}у # ;
!%<num%>%<coll%>:%-%{A%}у # ;
!%<num%>%<percent%>:%% # ;
!%<num%>%<percent%>%<subst%>%<nom%>:%% # ;
!%<num%>%<percent%>%<subst%>:%%{а%}%{з%}%- # ;
LEXICON LASTDIGIT
1:1 NUM-DIGIT ; ! "bir"
2:2 NUM-DIGIT ; ! "iki"
3:3 NUM-DIGIT ; ! "üç"
4:4 NUM-DIGIT ; ! "dört"
5:5 NUM-DIGIT ; ! "beş"
6:6 NUM-DIGIT ; ! "altı"
7:7 NUM-DIGIT ; ! "yedi"
8:8 NUM-DIGIT ; ! "sekiz"
9:9 NUM-DIGIT ; ! "dokuz"
LEXICON LASTDIGIT-REST
1%0:1%0 NUM-DIGIT ; ! "on"
2%0:2%0 NUM-DIGIT ; ! "yirmi"
3%0:3%0 NUM-DIGIT ; ! "otuz"
4%0:4%0 NUM-DIGIT ; ! "kırk"
5%0:5%0 NUM-DIGIT ; ! "elli"
6%0:6%0 NUM-DIGIT ; ! "altmış"
7%0:7%0 NUM-DIGIT ; ! "yetmiş"
8%0:8%0 NUM-DIGIT ; ! "seksen"
9%0:9%0 NUM-DIGIT ; ! "doksan"
LEXICON PRON-ITG-INFL
%<prn%>%<itg%>: SUBST ;
LEXICON Titles
Professor:Professor TIT ; ! ""
prof:prof TIT ; ! ""
Sulton:Sulton TIT ; ! ""
Posho:Posho TIT ; ! ""
sarkarda:sarkarda N1 ; ! "colonel"
LEXICON Mistakes
ra:ra MIST ; !!
ir:ir MIST ; !!
ma:ma MIST ; !!
ida:ida MIST ;
FA:FA MIST ;
lab:lab MIST ;
iy:iy MIST ;
ar:ar MIST ;
lgan:lgan MIST ; !""
po:po MIST ; ! ""
w:w MIST ;
m:m MIST ;
i:i MIST ;
a:a MIST ;
q:q MIST ;
s:s MIST ;
ng:ng MIST ; ! ""
hoz:hoz MIST ; ! ""
t:t MIST ;
d:d MIST ;
v:v MIST ;
n:n MIST ;
e:e MIST ;
r:r MIST ;
j:j MIST ;
r:r MIST ;
n:n MIST ;
ning:ning MIST ; ! ""
da:da MIST ; ! ""
lar:lar MIST ; ! ""
ni:ni MIST ; ! ""
larning:larning MIST ; ! ""
ga:ga MIST ; ! ""
p:p MIST ; ! ""
f:f MIST ; ! !
ba:ba MIST ; !!
h:h MIST ; ! ""
mln:mln MIST ; ! ""
sh:sh MIST ; ! ""
av:av MIST ; ! ""
ta:ta MIST ; ! ""
larda:larda MIST ; ! ""
gacha:gacha MIST ; ! ""
l:l MIST ; ! ""
sh:sh MIST ; ! ""
x:x MIST ; ! ""
me:me MIST ; ! ""
li:li MIST ; ! ""
mo:mo MIST ; ! ""
mas:mas MIST ; ! ""
ch:ch MIST ; ! ""
zi:zi MIST ; ! ""
la:la MIST ; ! ""
to:to MIST ; ! ""
she:she MIST ; ! ""
qo:qo MIST ; ! ""
qad:qad MIST ; ! ""
mm:mm MIST ; ! ""
zan:zan MIST ; ! ""
la:la MIST ; ! ""
ro:ro MIST ; ! ""
sm:sm MIST ; ! ""
en:sm MIST ; ! ""
z:z MIST ; ! ""
le:le MIST ; ! ""
ri:ri MIST ; ! ""
si:si MIST ; ! ""
al:al MIST ; ! ""
lari:lari MIST ; ! ""
dagi:dagi MIST ; ! ""
S%0:S%0 MIST ; ! ""
lon:lon MIST ; ! ""
LEXICON Pronouns
PRON-PERS ;
bu:bu PRON-DEM-BU ; ! "this"
shu:shu PRON-DEM-BU ; ! "this"
o:o PRON-DEM-BU ; ! "this"
ushbu:ushbu PRON-DEM-BU ; ! "this"
LEXICON Nouns
shtab:shtab N1 ; ! "headquarters"
majlis:majlis N1 ; ! "assembly"
familiya:familiya N1 ; ! "surname"
qirg%'in:qirg%'in N1 ; ! "extermination"
qirg%'ovul:qirg%'ovul N1 ; ! "pheasant"
qirg%'oq:qirg%'oq N1 ; ! "shore"
qirg%'iz:qirg%'iz N3 ; ! "kirgiz"
qirg%'ich:qirg%'ich N1 ; ! "scraper"
chiqqan:chiqqan N1 ; ! "publication"
qishlog:qishlog N1 ; ! "village"
asl:asl N1 ; ! "point"
vujud:vujud N1 ; ! "body"
yuza:yuza N1 ; ! "surface"
ich:ich N1 ; ! "inside, interior"
hisob:hisob N1 ; ! "counting, account"
tartib:tartib N1 ; ! "order"
davr:davr N1 ; ! "age, era"
rivojlanish:rivojlanish N1 ; ! "development"
daraja:daraja N1 ; ! "degree"
qism:qism N1 ; ! "part, chapter"
surat:surat N1 ; ! "picture, drawing"
ost:ost N1 ; ! "underside, beneath"
xususiyat:xususiyat N1 ; ! "pecularity, notability"
rivoj:rivoj N1 ; ! "development, flourishing"
yakun:yakun N1 ; ! "result, end"
voya:voya N1 ; ! "maturity, majority"
foydalanish:foydalanish N1 ; ! "taking advantage of"
turkum:turkum N1 ; ! "group, series"
chet:chet N1 ; ! "outside area, outskirts"
ijod:ijod N1 ; ! "invention, creating"
g%'arb:g%'arb N1 ; ! "west"
nom:nom N1 ; ! "name"
tizim:tizim N1 ; ! "string, system"
shakl:shakl N1 ; ! "shape, form"
holat:holat N1 ; ! "state, condition"
sinf:sinf N1 ; ! "class"
taxt:taxt N1 ; ! "throne"
hudud:hudud N1 ; ! "border, limit"
reja:reja N1 ; ! "plan"
reaksiya:reaksiya N1 ; ! "reaction"
sharaf:sharaf N1 ; ! "honor"
ta%'sir:ta%'sir N1 ; ! "effect"
sharoit:sharoit N1 ; ! "condition"
nazariya:nazariya N1 ; ! "theory"
maqsad:maqsad N1 ; ! "intention, purpose"
rivojlantirish:rivojlantirish N1 ; ! "development (causative)"
qator:qator N1 ; ! "line, row"
masofa:masofa N1 ; ! "distance"
oxir:oxir N1 ; ! "end"
yuqori:yuqori N1 ; ! "above"
taraqqiyot:taraqqiyot N1 ; ! "progress"
diqqat:diqqat N1 ; ! "attention"
evaz:evaz N1 ; ! "substitution"
oshirish:oshirish N1 ; ! "exceeding"
shakllanish:shakllanish N1 ; ! "taking form"
faoliyat:faoliyat N1 ; ! "activity"
kasallik:kasallik N1 ; ! "sickness"
jumla:jumla N1 ; ! "sentence"
jumla:jumla N1 ; ! "totality, whole"
usul:usul N1 ; ! "way, method"
shakl:shakl N1 ; ! "shape, form"
unvon:unvon N1 ; ! "title, degree"
o'zgartirish:o'zgartirish N1 ; ! "change"
karbonat:karbonat N1 ; ! "carbonat"
dod:dod N1 ; ! "a complain"
burun:burun N1 ; ! "nose, protuberance"
og'iz:og'iz N1 ; ! "mouth"
sharqshunoslik:sharqshunoslik N1 ; ! "oriental studies"
siydik:siydik N1 ; ! "pee"
qatl:qatl N1 ; ! "assassine"
dumaloq:dumaloq N1 ; ! "sphere"
nikel:nikel N1 ; ! "nikel"
qish:qish N1 ; ! "winter"
zabt:zabt N1 ; ! "conquest"
shirkat:shirkat N1 ; ! "company"
fosfor:fosfor N1 ; ! "fosfor"
texnologiya:texnologiya N1 ; ! ""
nazar:nazar N1 ; ! ""
valyuta:valyuta N1 ; ! "currency"
qoraqalpoq:qoraqalpoq N1 ; ! "karakalpaq"
astronomiya:astronomiya N1 ; ! ""
vino:vino N1 ; ! "wine"
tayanch:tayanch N1 ; ! "support"
tarqalish:tarqalish N1 ; ! "separation"
chizig:chizig N1 ; ! "line"
yasash:yasash N1 ; ! "production"
tatbiq:tatbiq N1 ; ! "use"
tahsil:tahsil N1 ; ! "studies"
kattalik:kattali%{K%} N1 ; ! "dimension"
chorva:chorva N1 ; ! "cattle"
pedagog:pedagog N1 ; ! "pedagog"
kvars:kvars N1 ; ! ""
foyda:foyda N1 ; ! "profit"
arpa:arpa N1 ; ! "parsley"
urf:urf N1 ; ! "habit"
konsert:konsert N1 ; ! "concert"
orkestr:orkestr N1 ; ! "orchestra"
boshqarma:boshqarma N1 ; ! "management"
borlik:borli%{K%} N1 ; ! "existence"
fermer:fermer N1 ; ! "farmer"
barham:barham N1 ; ! "ending"
xlorid:xlorid N1 ; ! "clorid"
hukmron:hukmron N1 ; ! "rule
grammatik:grammatik N1 ; ! "grammar"
ukrain:ukrain N3 ; ! "ucrainian"
jigar:jigar N1 ; ! "liver"
xristian:xristian N1 ; ! "christian"
qo%'shig:qo%'shig N1 ; ! "song"
o%'lkashunoslik:o%'lkashunoslik N1 ; ! "regioal studies"
voz:voz N1 ; ! "refusal"
natriy:natriy N1 ; ! "nitrium"
fuqarolik:fuqaroli%{K%} N1 ; ! "citizenship"
kishilik:kishilik N1 ; ! "mankind"
aylanma:aylanma N1 ; ! " Whirl"
chuqurlik:chuqurli%{K%} N1 ; ! "depth"
yapon:yapon N3 ; ! "japanese"
raketa:raketa N1 ; ! "rocket"
parranda:parranda N1 ; ! "poultry"
doira:doira N1 ; ! "circle"
aksar:aksar N1 ; ! "majority"
zid:zid N1 ; ! "opposition"
uran:uran N1 ; ! "uranium"
tanqid:tanqid N1 ; ! "criticism"
sentabr:sentabr N1 ; ! "september"
podsho:podsho N1 ; ! "king"
iklim:iklim N1 ; ! "climate"
simob:simob N1 ; ! "mercury"
o%'ymakorlik:o%'ymakorli%{K%} N1 ; ! "carving"
o%'rik:o%'rik N1 ; ! "apricot"
podsholik:podsholi%{K%} N1 ; ! "kingdom"
saroy:saroy N1 ; ! "palace"
qumtosh:qumtosh N1 ; ! "sandstone"
granit:granit N1 ; ! "granit"
ahvol:ahvol N1 ; ! "condition"
munisipalitet:munisipalitet N1 ; ! "municipality"
yo%'nalish:yo%'nalish N1 ; ! "direction"
to%'g%'il:to%'g%'il N1 ; ! "wheel"
ibodat:ibodat N1 ; ! "worship"
bog%'cha:bog%'cha N1 ; ! "garden
daraxt:daraxt N1 ; ! "tree"
havo:havo N1 ; ! "weather"
it:it N1 ; ! "dog"
mushuk:mushuk N1 ; ! "cat"
o%'g%'il% bola:o'%g%'il% bola N1 ; ! "boy"
o%'yin:o%'yin N1 ; ! "game"
qiz% bola:qiz% bola N1 ; ! "girl"
qo%'l:qo%'l N1 ; ! "hand"
uy:uy N1 ; ! "house"
hava:hava N1 ; ! "weather"
odam:odam N1 ; ! "man"
vijdan:vijdan N1 ; ! "conscience"
aql:aql N1 ; ! "mind"
san'%at:san%'at N1 ; ! "art"
festival:festival N1 ; ! "festival"
hafta:hafta N1 ; ! "week"
tasvir:tasvir N1 ; ! "representation"
mukofot:mukofot N1 ; ! "reward"
inson:inson N1 ; ! "human being"
amal:amal N1 ; ! "experience"
taxta:taxta N1 ; ! "board"
akademiya:akademiya N1 ; ! "academy"
madaniyat:madaniyat N1 ; ! "civilization"
maqasad:maqasad N1 ; ! "objective/target"
mintaqa:mintaqa N1 ; ! ""
yil:yil N1 ; ! "year"
saviya:saviya N1 ; ! "level"
poytaxt:poytaxt N1 ; ! "capital city"
orqa:orqa N1 ; ! "the behind"
san%'atkor:san%'atkor N1 ; ! "artist"
sertifika:sertifika N1 ; ! "certificate"
tomosha:tomosha N1 ; ! "show"
nasl:nasl N1 ; ! "generation"
tajriba:tajriba N1 ; ! "experience"
raqs:raqs N1 ; ! "dance"
namoyish:namoyish N1 ; ! "show"
o%'rin:o%'rin N1 ; ! "place"
ochilish:ochilish N1 ; ! "opening"
marosim:marosim N1 ; ! "ceremony"
sevor:sevor N1 ; ! "lover" "fan"
tuproq:tuproq N1 ; ! "land"
suv:suv N1 ; ! "water"
asar:asar N1 ; ! "work" "art"
naqsh:naqsh N1 ; ! "engraving"
xayol:xayol N1 ; ! "dream imagination"
dunyo:dunyo N1 ; ! "world"
siluet:siluet N1 ; ! "silhouette"
rasm:rasm N1 ; ! "picture"
gilam:gilam N1 ; ! "rag"
haykal:haykal N1 ; ! "statue"
loy:loy N1 ; ! "clay"
qobiliyat:qobiliyat N1 ; ! "capability"
tomon:tomon N1 ; ! "side"
forum:forum N1 ; ! "forum"
vakolatxona:vakolatxona N1 ; ! "representive office"
hissa:hissa N1 ; ! "share, part"
to%'siq:to%'siq N1 ; ! "barrier/obstacle"
o%'ymakorlik:o%'ymakorlik N1 ; ! "profession"
terror:terror N1 ; ! "terror"
hujum:hujum N1 ; ! "attack"
aholi:aholi N1 ; ! "population"
prezident:prezident N1 ; ! "president"
maktub:maktub N1 ; ! "letter"
matbuot:matbuot N1 ; ! "press"
hukumat:hukumat N1 ; ! "government"
hamjamiyat:hamjamiyat N1 ; ! "community"
hamdardlik:hamdardlik N1 ; ! "commiseration"
taziya:taziya N1 ; ! "condolences"
terrorizm:terrorizm N1 ; ! "terrorism"
qardosh:qardosh N1 ; ! "friend" NOT SURE
turk:turk N1 ; ! "turk" NOT SURE
turkman:turkman N1 ; ! "turkmen"
oila:oila N1 ; ! "family"
xalq:xalq N1 ; ! "people"
harakat:harakat N1 ; ! "movement"
tuman:tuman N1 ; ! "district"
hayot:hayot N1 ; ! "life"
qurbon:qurbon N1 ; ! "victim"
davlat:davlat N1 ; ! "devlet / government""
guruh:guruh N1 ; ! "group"
yer:yer N1 ; ! "yer"