-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapertium-sme-nob.sme-nob.val
3376 lines (2370 loc) · 261 KB
/
apertium-sme-nob.sme-nob.val
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
# THIS FILE IS NOT USED (YET?) IN SME-NOB
# | preprocess | lookup -flags mbTT -utf8 ~/gtsvn/gt/sme/bin/sme-norm.fst | lookup2cg | vislcg3 -g ~/gtsvn/gt/sme/src/gramchk/sme-gramdis.rle -t | vislcg3 -g ~/gtsvn/gt/sme/src/sme-gramchk.rle -t | l
# guoskat + Inf? Sámedikkis lea váldosadji dasa mii guoská lágidit dili nu ahte stáhta geatnegasvuođat sámiide sáhttet dahkkot. ¶+inf/+acc
# čálihit + Ill? - Norgga stáhtaministar lea maid stáhtaministar sámi álbmoga váras mii ássá Norggas ja lea iežas virggi bokte sihke geatnegahttojuvvon ja váldi váikkuhit dilálašvuođaid mat leat nu ahte olbmot duostagohtet čálihit iežaset sámi jienastuslohkui. jes
# čuohcit + Ill ? # Dat čuohcá min birgenláhkái garrasit, čilge Inger Márjá ja imaštallá manne lea girjjiid bokte dárbu bienasta bitnii čilget buot sámi árbevirolaš duodjemáhtuid. jes
# bivdit + Inf? - Gb sámepolitihkalaš konferánsa bivdá stuoradiggeáirasa Johanne Gaup ovddidit dakkár árvalusa farggamusat. jes
# muddet - korrigere, + Com? #Gb sámepolitihkalaš konferánsa deattuha ahte boazodoallu ii galgga dáinna áššiin muddejuvvot. +acc
# muitalit + Inf? Duommá? - Håvard muitala iežas olu meahcis vánddardit, bivdit guliid ja návddašit luonddu lagasvuođa. Ii Inf! muitala iežas = +acc!
# gokčat - * Muhtin golut maid virgevihki njulgestaga lea dagahan, eai gokčojuvo šat álbmotoajuin (omd. billehuvvan čalbmeláset, biktasat ja skuovat ja fievrredeapmi gaskal barggu dahje oahppobáikki). +acc
# Juohke ruvnnos dahje márkkes maid turisttat guđđet, lea stuora oassi maid sahtá gohčodit sámi ruhtta. - gohčodit + Nom boasttut Duommá? Ii dat lea val boastut
# Dattetge áigu Sámediggi garrasit čujuhit dárbbu dakkár hálddašeapmái mii sihkkarastá ja gáhtte šibitdoalu ja boazodoalu vuođu. - čujuhit + Ill Duommá? čujuhit dasa, ja (dás goit: +acc +ill)
# Sii čuoččuhit, ja čujuhit áviissaide, mat leat mielddusin, ahte olgguštuvvojit stuoraservodaga institušuvnnain, ja nu dahket maiddái sámit geat leat dáruiduvvan ja dáččat. jes
# movt láhčit ovttasbargorutiinnaid riikarájiid rastá --- láhčit +acc
# Dán áššis ferte iešguđet vuostálas mihttomeriid ja beroštumiid vihkket nubbi nuppi ektui. -- vihkket? +acc
# Dán bargui lea Suoma, Norgga ja Ruoŧa beale sámedikkit ásahan oktasašorgána namalassii Sámi parlamentáralaš ráđi. - ásahit + inrette +acc + ill
# Konvenšuvdnaevttohusa mearrádusat sáhttet doarjut dánlágan bargguid, ja dat evttohuvvon orgánat sáhttet mearrádusaid dahkamiin doaibmevaš vugiin leat doarjjan ovttasbargguide. # doarjjan + Ill ? Duommá? jes
#Konvenšuvdna gáržžidii mearkkašahtti láhkái ruoŧabeali sápmelaččaid geasseguohtumiid Norggas. -- gáržžidit + Acc (Ill maid?) acc
#Sámediggi lea čoahkkimiin Eanadoallodepartemeanttain ovddidan áššiid nugo boazodoalloberoštumiid sihkkarastin davábealde Aursundda, doaibmabijuid movt čoavdit dan dili go lea váttis vuovdit bohccuid Oarje-Finnmárkkus, struktuvradoaibmabijuid sihkkarastit plánalaš rekrutterema boazodollui ja dásseárvohástalusaid ealáhusas. --- Duommá rekruteret + Ill ? +acc+ill
# eaktudit + Ill ? å ta forbehold
## Ruđat gávdnojit vuogádagas, muhto eai geavahuvo nu go Stuoradiggi lea eaktudan ee. mii guoská SND:ai gos badjel 90% ruđain mannet olmmošvállji guovddáš báikkiide ja gávpogiidda. +acc +inf
#LIST HUMAN-SUBJECT-V = "gilvvohallat" "lágidit" "čađahit" ;
#LIST ANIMATE-SUBJECT-V = "roasmmuhuvvat" ;
## Álttá leansmánnikántuvrras lohket ahte sii eai ge leat leamaš doppe, muhto muitalit ahte ii oktage roasmmuhuvvan go biila vujii badjel luotta.
## Gironis ledje SM-čuoigamat mannan vahkkoloahpa, gos badjel čuođi čuoigi gilvvohalle olles golbma beaivvi.
## Musihkkafeastiválii badjel 33%:ain, dehe 100.000 ruvnnuin, de áigu goitge Guovdageainnu Sámiid Searvi maiddái dán jagi lágidit Sámi Grand Prix:a beassášlávvordaga, cuoŋománu 3. beaivvi.
# ollašuhttat Hum Subj?
## Dál lea son ollašuhttán niegu maid lea niegadan máŋga jagi, namalassii, ahte čuoigat 900 km badjel duoddariid ja ráššaid, jávrriid ja jogaid rastá, čađa stuora vumiid, ávžžiid ja vuvddiid.
# váldit duohtan
# heaittihit? + Acc
# Vihtta ovddádusbellodat politihkkára áigot evttohit heaittihit Sámedikki. Dát dáhpáhuvvá Stuorradikkis bearjadaga. – Áibbas jorgguládje buktit ...
# heaitit + Loc
# Ruitu – mii ii hálidan heaitit duoldamis
# Hoigasit badjel gahčahaga! - DESTINATION?
# hoigadit/hoigat PATIENT-DESTINATION
# njoarostit + Com + Ill?? Acc
#Njoarostan suohpaniin áibbašemiin bodnojuvvon gávpogiid ja miillaid badjel.
# maŋidit TV ja IV, maŋŋonit IV- Acc, obj Time?
## Mii maŋidit barggu nuppi beaivái. Acc+ QU-
##Barggut leat maŋŋonan badjel guokte mánu, ii ge oktage oro diehtime čielga vástádusa mii dasa lea sivvan.
# boršut + Ill ? cirgut, riššat
# dat boršu láse vuostá - DE-0, DE, LO
## Hálseolmmái ja čáhcegoaivu ballagođiiga go čáhci boršugođii ovddageaži badjel, danin go oinniiga ahte soai njuoskaba.
# viežžat + Acc+ Ill, ráigat +Acc?
# Duommá - ahte?? ii : Mon máhcán dál (nu) ahte gearggan...
## –Mii sávvat ahte dakkár bálkkašupmi galgá movttidahttit olbmuid bargat dan badjelii ahte buoridit johtolatsihkarvuođa Finnmárkkus, lohká bajimusinšenevra Astrid Eide Statens Vegvesen:is.
# Divvun & Giellatekno - open source grammars for Sámi and other languages
# Copyright © 2000-2011 The University of Tromsø & the Norwegian Sámi Parliament
# http://giellatekno.uit.no & http://divvun.no
#
# This program is free software; you can redistribute and/or modify
# this file under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version. The GNU General Public License
# is found at http://www.gnu.org/licenses/gpl.html. It is
# also available in the file $GTHOME/LICENSE.txt.
#
# Other licensing options are available upon request, please contact
# giellatekno@uit.no or divvun@samediggi.no
# | preprocess | lookup -flags mbTT -utf8 ~/gtsvn/gt/sme/bin/sme-norm.fst | lookup2cg | vislcg3 -g ~/gtsvn/gt/sme/src/gramchk/sme-gramdis.rle -t | vislcg3 -g ~/gtsvn/gt/sme/src/sme-gramchk.rle -t
# ==================================================================== #
# N O R T H E R N S Á M I G R A M M A R C H E C K E R
# ==================================================================== #
# ==================================================================== #
#%soft error vs. hard errors
BEFORE-SECTIONS
MAPPING-PREFIX = & ;
# ========== #
# Delimiters #
# ========== #
DELIMITERS = "<.>" "<!>" "<?>" "<...>" "<¶>";
# ============= #
# Tags and sets #
# ============= #
SETS
# I define end of clause and beginning of clause in a way so that the file
# may be read both by the CG-2 and the vislcg formalisms.
LIST BOS = (>>>) (<s>);
LIST EOS = (<<<) (</s>);
# CG3 doesn´t function without >>> and <<< !
# Tags declared as single-membered LISTs
# ======================================
# Parts of speech
# ---------------
LIST N = N ;
LIST A = A ;
LIST Adv = Adv ;
LIST V = V ;
LIST Pron = Pron ;
LIST CS = CS ;
LIST CCC = CC ;
SET CC = CCC - ("sihke") ;
SET CC-CS = CC OR CS ;
LIST Po = Po ;
LIST Pr = Pr ;
LIST Pcle = Pcle ;
LIST Num = Num ;
LIST Coll = Coll ;
LIST Actor = Actor ;
LIST G3 = G3 ;
LIST Prop = Prop ;
LIST LEFT = LEFT ;
LIST RIGHT = RIGHT ;
LIST WEB = WEB ;
LIST V* = V* ;
# POS sub-categories
# ------------------
LIST Pers = Pers ;
LIST Dem = Dem ;
LIST Interr = Interr ;
LIST Indef = Indef ;
LIST Recipr = Recipr ;
LIST Refl = Refl ;
LIST Rel = Rel ;
LIST Interj = Interj ;
LIST Adp = Adp ;
# Morphosyntactic properties
# --------------------------
LIST Nom = Nom ;
LIST Acc = Acc ;
LIST Gen = Gen ;
LIST Ill = Ill ;
LIST Loc = Loc ;
LIST Com = Com ;
LIST Ess = Ess ;
LIST Sg = Sg ;
LIST Pl = Pl ;
LIST Du = Du ;
LIST Cmp/SplitR = Cmp/SplitR ;
LIST Cmp/SgNom = Cmp/SgNom ;
LIST Cmp/SgGen = Cmp/SgGen ;
LIST Cmp/Sh = Cmp/Sh ;
LIST PxSg1 = PxSg1 ;
LIST PxSg2 = PxSg2 ;
LIST PxSg3 = PxSg3 ;
LIST PxDu1 = PxDu1 ;
LIST PxDu2 = PxDu2 ;
LIST PxDu3 = PxDu3 ;
LIST PxPl1 = PxPl1 ;
LIST PxPl2 = PxPl2 ;
LIST PxPl3 = PxPl3 ;
LIST Comp = Comp ;
LIST Superl = Superl ;
LIST Attr = Attr ;
LIST Ord = Ord ;
LIST Qst = Qst ;
LIST Foc/ge = Foc/ge ;
LIST Foc/gen = Foc/gen ;
LIST Foc/ges = Foc/ges ;
LIST Foc/gis = Foc/gis ;
LIST Foc/naj = Foc/naj ;
LIST Foc/ba = Foc/ba ;
LIST Foc/be = Foc/be ;
LIST Foc/hal = Foc/hal ;
LIST Foc/han = Foc/han ;
LIST Foc/bat = Foc/bat ;
LIST Foc/son = Foc/son ;
LIST IV = IV ;
LIST TV = TV ;
LIST Der/Pass = Der/PassL Der/PassS ;
LIST Prt = Prt;
LIST Prs = Prs ;
LIST Ind = Ind ;
LIST Pot = Pot ;
LIST Cond = Cond ;
LIST Imprt = Imprt ;
LIST ImprtII = ImprtII ;
LIST Sg1 = Sg1 ;
LIST Sg2 = Sg2 ;
LIST Sg3 = Sg3 ;
LIST Du1 = Du1 ;
LIST Du2 = Du2 ;
LIST Du3 = Du3 ;
LIST Pl1 = Pl1 ;
LIST Pl2 = Pl2 ;
LIST Pl3 = Pl3 ;
LIST Inf = Inf ;
LIST ConNeg = ConNeg ;
LIST Neg = Neg ;
LIST PrfPrc = PrfPrc ;
LIST VGen = VGen ;
LIST PrsPrc = PrsPrc ;
LIST Ger = Ger ;
LIST Sup = Sup ;
LIST Actio = Actio ;
LIST VActor = (Der2 Actor) ;
LIST VAbess = VAbess ;
# Derivation
# ----------
LIST Der/adda = Der/adda ;
LIST Der/ahtti = Der/ahtti ;
LIST Der/alla = Der/alla ;
LIST Der/asti = Der/asti ;
LIST Der/easti = Der/easti ;
LIST Der/d = Der/d ;
LIST Der/eaddji = Der/eaddji ;
LIST Der/eamoš = Der/eamoš ;
LIST Der/amoš = Der/amoš ;
LIST Der/eapmi = Der/eapmi ;
LIST Der/geahtes = Der/geahtes ;
LIST Der/gielat = Der/gielat ;
LIST !better: = !better: ;
LIST Der/NuA = Der/NuA ;
LIST Der/h = Der/h ;
LIST Der/heapmi = Der/heapmi ;
LIST Der/hudda = Der/hudda ;
LIST Der/huhtti = Der/huhtti ;
LIST Der/huvva = Der/huvva ;
LIST Der/halla = Der/halla ;
LIST Der/j = Der/j ;
LIST Der/l = Der/l ;
LIST Der/laš = Der/laš ;
LIST Der/las = Der/las ;
LIST Der/hat = Der/hat ;
LIST Der/meahttun = Der/meahttun ;
LIST Der/muš = Der/muš ;
LIST Der/n = Der/n ;
LIST Der/st = Der/st ;
LIST Der/stuvva = Der/stuvva ;
LIST Der/upmi = Der/upmi ;
LIST Der/supmi = Der/supmi ;
LIST Der/vuota = Der/vuota ;
LIST Der/inchl = Der/inchl ;
LIST Der/lágan = Der/lágan ;
LIST Der/lágán = Der/lágán ;
LIST Der/lágaš = Der/lágaš ;
LIST Der/jagáš = Der/jagáš ;
LIST Der/jahkásaš = Der/jahkásaš ;
LIST Der/diibmosaš = Der/diibmosaš ;
LIST Der/Dimin = Der/Dimin ;
LIST Der/viđá = Der/viđá ;
LIST Der/viđi = Der/viđi ;
LIST Der/veara = Der/veara ;
LIST Der/duohke = Der/duohke ;
LIST Der/duohkai = Der/duohkai ;
LIST Der/vuolle = Der/vuolle ;
LIST Der/vuollai = Der/vuollai ;
LIST Der/vuolde = Der/vuolde ;
# Syntactic tags
# --------------
LIST @+FAUXV = @+FAUXV ;
LIST @+FMAINV = @+FMAINV ;
LIST @-FAUXV = @-FAUXV ;
LIST @-FMAINV = @-FMAINV ;
LIST @-FSUBJ> = @-FSUBJ> ;
LIST @-F<OBJ = @-F<OBJ ;
LIST @-FOBJ> = @-FOBJ> ;
LIST @SPRED<OBJ = @SPRED<OBJ ;
LIST @-F<ADVL = @-F<ADVL ;
LIST @-FADVL> = @-FADVL> ;
LIST @-F<SPRED = @-F<SPRED ;
LIST @-F<OPRED = @-F<OPRED ;
LIST @-FSPRED> = @-FSPRED> ;
LIST @-FOPRED> = @-FOPRED> ;
SET FOBJ = @-F<OBJ OR @-FOBJ> ;
SET FMAINV = @-FMAINV OR @+FMAINV ;
SET FAUXV = @-FAUXV OR @+FAUXV ;
LIST @ADVL = @ADVL @ADVL> @ADVL< @<ADVL @>ADVL @-F<ADVL @-FADVL> ;
LIST @>ADVL = @>ADVL ;
LIST @ADVL< = @ADVL< ;
LIST @<ADVL = @<ADVL ;
LIST @ADVL> = @ADVL> ;
LIST @HAB = @HAB ;
LIST @>N = @>N ;
LIST @N< = @N< ;
LIST @>A = @>A ;
LIST @P< = @P< ;
LIST @>P = @>P ;
LIST @HNOUN = @HNOUN ;
LIST @INTERJ = @INTERJ ;
LIST @>Num = @>Num;
LIST @Pron< = @Pron< ;
LIST @>Pron = @>Pron ;
LIST @Num< = @Num< ;
LIST @OBJ = @OBJ ;
LIST @<OBJ = @<OBJ ;
LIST @OBJ> = @OBJ> ;
LIST @OPRED = @OPRED ;
LIST @<OPRED = @<OPRED ;
LIST @OPRED> = @OPRED> ;
LIST @PCLE = @PCLE ;
LIST @COMP-CS< = @COMP-CS< ;
LIST @SPRED = @SPRED ;
LIST @<SPRED = @<SPRED ;
LIST @SPRED> = @SPRED> ;
LIST @SUBJ = @SUBJ ;
LIST @<SUBJ = @<SUBJ ;
LIST @SUBJ> = @SUBJ> ;
SET SUBJ = @<SUBJ OR @SUBJ> OR @SUBJ ;
SET SPRED = @<SPRED OR @SPRED> OR @SPRED ;
SET OPRED = @<OPRED OR @OPRED> OR @OPRED ;
LIST @PPRED = @PPRED ;
LIST @APP = @APP ;
LIST @APP-N< = @APP-N< ;
LIST @APP-Pron< = @APP-Pron< ;
LIST @APP>Pron = @APP>Pron ;
LIST @APP-Num< = @APP-Num< ;
LIST @APP-ADVL< = @APP-ADVL< ;
LIST @VOC = @VOC ;
LIST @CVP = @CVP ;
LIST @CNP = @CNP ;
SET OBJ = (@<OBJ) OR (@OBJ>) OR (@OBJ) OR (@-F<OBJ) OR (@-FOBJ>) ;
LIST <OBJ = @-F<OBJ @<OBJ ;
LIST OBJ> = @OBJ> @-FOBJ> ;
SET <OBJ-OTHERS = <OBJ OR (Gen) OR (Nom) OR (Ess) OR (Loc) OR (Adv) ;
SET OBJ>-OTHERS = OBJ> OR (Gen) OR (Nom) OR (Ess) OR (Loc) OR (Adv) ;
LIST @X = @X ;
# Semantic tags
# -------------
LIST Ani = Ani ;
LIST Hum = Hum ;
LIST Plant = Plant ;
LIST Group = Group ;
LIST Time = Time ;
LIST Txt = Txt ;
LIST Route = Route ;
LIST Measr = Measr ;
LIST Wthr = Wthr ;
LIST Build = Build ;
LIST Edu = Edu ;
LIST Veh = Veh ;
LIST Event = Event ;
LIST Fem = Fem ;
LIST Mal = Mal ;
LIST Obj = Obj ;
LIST Org = Org ;
LIST Plc = Plc ;
LIST Sur = Sur ;
#LIST Tit = Tit ;
# secondary tags
# --------------
LIST <vdic> = <vdic> ;
LIST <copula> = <copula> ;
# theme:
LIST <TH-0> = <TH-0> ;
LIST <TH-Ill-Any> = <TH-Ill-Any> ;
LIST <TH-Ill-Plc> = <TH-Ill-Plc> ;
LIST <TH-Ill-Org> = <TH-Ill-Org> ;
LIST <TH-Ill-Event> = <TH-Ill-Event> ;
LIST <TH-Acc-*Plc> = <TH-Acc-*Plc> ;
LIST <TH-Acc-Any> = <TH-Acc-Any> ;
LIST <TH-Acc-*Ani> = <TH-Acc-*Ani> ;
LIST <TH-Acc-Impers> = <TH-Acc-Impers> ;
LIST <TH-Acc-Edu> = <TH-Acc-Edu> ;
LIST <TH-Ess-Any> = <TH-Ess-Any> ;
LIST <TH-Com-Any> = <TH-Com-Any> ;
LIST <TH-Com-*Ani> = <TH-Com-*Ani> ;
LIST <TH-Loc-Impers> = <TH-Loc-Impers> ;
LIST <TH-Loc-Plc> = <TH-Loc-Plc> ;
LIST <TH-Loc-Event> = <TH-Loc-Event> ;
LIST <TH-Loc-Concept> = <TH-Loc-Concept> ;
LIST <TH-Loc-Any> = <TH-Loc-Any> ;
LIST <TH-lusa-Plc*Prop> = <TH-lusa-Plc*Prop> ;
LIST <TH-lusa-Ani> = <TH-lusa-Ani> ;
LIST <TH-lusa-Build> = <TH-lusa-Build> ;
LIST <TH-lusa-Veh> = <TH-lusa-Veh> ;
LIST <TH-maŋŋái-*Plc> = <TH-maŋŋái-*Plc> ;
LIST <TH-ala-Any> = <TH-ala-Any> ;
LIST <TH-ala-*Plc> = <TH-ala-*Plc> ;
LIST <TH-birra-Any> = <TH-birra-Any> ;
LIST <TH-ahte> = <TH-ahte> ;
LIST <TH-go> = <TH-go> ;
LIST <TH-AktioEss> = <TH-AktioEss> ;
LIST <TH-AktioLoc> = <TH-AktioLoc> ;
LIST <TH-Inf> = <TH-Inf> ;
LIST <TH-Acc-Txt><DE-Ill-Hum> = <TH-Acc-Txt><DE-Ill-Hum> ;
LIST <TH-Acc-Obj><DE-Ill-WPlc> = <TH-Acc-Obj><DE-Ill-WPlc> ;
LIST <TH-Acc-Obj><DE-DePp-Any> = <TH-Acc-Obj><DE-DePp-Any> ;
LIST <TH-Acc-Obj><CO-Com-Ani> = <TH-Acc-Obj><CO-Com-Ani> ;
LIST <TH-Acc-*Ani><RE-Ill-WAni> = <TH-Acc-*Ani><RE-Ill-WAni> ;
LIST <TH-Acc-TxtA><DE-Ill-TxtC> = <TH-Acc-TxtA><DE-Ill-TxtC> ;
LIST <AG-Nom-Abs><TH-Ill-Abs/Plc> = <AG-Nom-Abs><TH-Ill-Abs/Plc> ;
LIST <TH-Ill-Hum> = <TH-Ill-Hum> ;
LIST <TH-AktioLoc> = <TH-AktioLoc> ;
LIST <Loc-Hum> = <Loc-Hum> ;
LIST <TH-Acc-Food> = <Acc-Food> ;
LIST <TH-Acc-Any> = <TH-Acc-Any> ;
LIST <TH-Acc-*Ani><RE-Loc-Ani> = <TH-Acc-*Ani><RE-Loc-Ani> ;
# location
LIST <LO-Loc-WPlc> = <LO-Loc-WPlc> ;
LIST <LO-Ill-WPlc> = <LO-Ill-WPlc> ;
LIST <LO-luhtte-WPlc> = <LO-luhtte-WPlc> ;
LIST <LO-luhtte-Ani> = <LO-luhtte-Ani> ;
# destination
LIST <DE-0> = <DE-0> ;
LIST <DE-Ill-WPlc> = <DE-Ill-WPlc> ;
LIST <DE-Ill-Any> = <DE-Ill-Any> ;
LIST <DE-Ill-WPlc> = <DE-Ill-WPlc> ;
LIST <DE-lusa-Ani> = <DE-lusa-Ani> ;
LIST <DE-sisa-Build> = <DE-sisa-Build> ;
# recipient
LIST <RE-Ill-WAni> = <RE-Ill-WAni> ;
LIST <RE-Loc-Ani> = <RE-Loc-Ani> ;
# source
LIST <SO-Loc-WPlc> = <SO-Loc-WPlc> ;
# topic
LIST <TO-Acc-Any> = <TO-Acc-Any> ;
LIST <TO-Acc-*Ani><RE-Loc-Ani> = <TO-Acc-*Ani><RE-Loc-Ani> ;
# co-agent/theme
LIST <CO-0> = <CO-0> ;
LIST <CO-Com-Ani> = <CO-Com-Ani> ;
LIST <CO-Acc-Ani> = <CO-Acc-Ani> ;
# quantifier
LIST <QU-Acc-Measure> = <QU-Acc-Measure> ;
LIST <QU-Com-Money> = <QU-Com-Money> ;
LIST <QU-Com-Measure> = <QU-Com-Measure> ;
LIST <PA-Acc-Obj><QU-Acc-Measure> = <PA-Acc-Obj><QU-Acc-Measure> ;
# patient
LIST <PA-0> = <PA-0> ;
LIST <PA-Acc-Any> = <PA-Acc-Any> ;
# purpose
LIST <PS-Inf> = <PS-Inf> ;
# SEMANTIC ROLES
# --------------
LIST <§TH> = <§TH> ; #theme
LIST <§AG> = <§AG> ; #agent
LIST <§EX> = <§EX> ; #experiencer
LIST <§RE> = <§RE> ; #recipient
LIST <§DE> = <§DE> ; #destination
LIST <§MA> = <§MA> ; #manner
LIST <§LO> = <§LO> ; #location
LIST <§SO> = <§SO> ; #source
LIST <§PA> = <§PA> ; #patient
LIST <§PR> = <§PR> ; #product
LIST <§PT> = <§PT> ; #path
LIST <§TO> = <§TO> ; #topic
LIST <§IN> = <§IN> ; #instrument
LIST <§QU> = <§QU> ; #quantitiy
LIST <§CO> = <§CO> ; #Co-Agent
LIST <§PS> = <§PS> ; #Purpose "beahkit" "beassat" "boahtit" "borjjastit" "ciŋkut" "čáhpihit" "čierastit" "čuoigat" "čuoigalit" "čuovvut" "gakcut" "gállit" "gállilit" "girdit" "gárrut" "goargŋut" "guokkardit" "goarbmot" "goastat" "hurgalit" "ihtit" "jávkkehit" "jávkkihit" "jorgalit" "jorggihit" "lávket" "lávkestit" "lávkut" "máhccat" "mannat" "mátkkoštit" "murdit" "murdilit" "njoammut" "haskat" "haskadit" "njuiket" "njuikut" "ollet" "ollit" "riidet" "ruohttat" "ruohtastit" "sihkkelastit" "skierbmut" "suhkat" "suobbulit" "soabbut" "šloahtat" "steavžut" "stávžut" "vázzit" "vázzilit" "viehkalit" "viehkat" "viežžat" "vuodjalit" "vuodjat" "vuodjit" "vuojistit" "vuolgit" "sirdit";
# Error tags
# ----------
LIST &syn-finitev_missing = &syn-finitev_missing ;
LIST &syn-conneg = &syn-conneg ;
LIST &syn-not-aidna = &syn-not-aidna ;
LIST &syn-not-dego = &syn-not-dego ;
LIST &syn-not-maŋga = &syn-not-maŋga ;
LIST &syn-go-not-ahte = &syn-go-not-ahte ;
LIST &syn-relpron = &syn-relpron ;
LIST &syn-not_actio = &syn-not_actio ;
LIST &syn-case_congruence = &syn-case_congruence ;
LIST &syn-comp = &syn-comp ;
LIST &syn-redundant_ahte = &syn-redundant_ahte ;
LIST &syn-inf-after-soaitit = &syn-inf-after-soaitit ;
LIST &syn-add-go = &syn-add-go ;
LIST &syn-wrong-transitivity = &syn-wrong-transitivity ;
LIST &syn-object_missing = &syn-object_missing ;
LIST &syn-timeadverbial-accusative = &syn-timeadverbial-accusative ;
LIST &syn-number_congruence = &syn-number_congruence ;
LIST &syn-case_congruence = &syn-case_congruence ;
LIST &msyn-acc-to-comp = &msyn-acc-to-comp ;
LIST &msyn-acc-to-velggolaš = &msyn-acc-to-velggolaš ;
LIST &msyn-acc/gen-to-adv = &msyn-acc/gen-to-adv ;
LIST &msyn-compound/&msyn-wrong-case = &msyn-compound/&msyn-wrong-case ;
LIST &msyn-addhyphen = &msyn-addhyphen ;
LIST &msyn-compound = &msyn-compound ;
LIST &msyn-loc-not-guin = &msyn-loc-not-guin ;
LIST &msyn-wrong-case = &msyn-wrong-case ;
LIST &msyn-inf_not_actio = &msyn-inf_not_actio ;
LIST &msyn-valency = &msyn-valency ;
LIST &msyn-valency-illative = &msyn-valency-illative ;
LIST &msyn-valency-locative = &msyn-valency-locative ;
LIST &msyn-missing-argument = &msyn-missing-argument ;
LIST &msyn-attr_not_pred = &msyn-attr_not_pred ;
LIST &msyn-partitive-loc = &msyn-partitive-loc ;
LIST &msyn-gen-before-postp = &msyn-gen-before-postp ;
LIST &msyn-gen-after-prep = &msyn-gen-after-prep ;
LIST &msyn-prs_not_prt_subclause = &msyn-prs_not_prt_subclause ;
LIST &lex-majuscule = &lex-majuscule ;
LIST &lex-transitive = &lex-transitive ;
LIST &lex-maŋis-not-maŋŋelis = &lex-maŋis-not-maŋŋelis ;
LIST &lex-ollugat-not-máŋggas = &lex-ollugat-not-máŋggas ;
LIST &lex-not-maŋga = &lex-not-maŋga ;
LIST &lex-acc-not-badjel = &lex-acc-not-badjel ;
LIST &lex-rastá-not-badjel = &lex-rastá-not-badjel ;
LIST &lex-bokte-not-badjel = &lex-bokte-not-badjel ;
LIST &lex-badjelii-not-badjel = &lex-badjelii-not-badjel ;
LIST &lex-mielde-not-rastá = &lex-mielde-not-rastá ;
LIST &lex-ollis-not-miehtá = &lex-ollis-not-miehtá ;
LIST &lex-guorrasit-not-guorralit = &lex-guorrasit-not-guorralit ;
LIST &real-áddet = real-áddet ;
LIST &real-almmaiduvvat = &real-almmaiduvvat ;
LIST &real-almmáiduvvat = &real-almmáiduvvat ;
LIST &real-beassat = &real-beassat ;
LIST &real-buorránastit = &real-buorránastit ;
LIST &real-buorranastit = &real-buorranastit ;
LIST &real-buorraneastit = &real-buorraneastit ;
LIST &real-buorráneastit = &real-buorráneastit ;
LIST &real-buorranaddat = &real-buorranaddat ;
LIST &real-buorránaddat = &real-buorránaddat ;
LIST &real-čohkkát = &real-čohkkát ;
LIST &real-čohkka = &real-čohkka ;
LIST &real-dakko = &real-dakko ;
LIST &real-duolmmastuvvat = &real-duolmmastuvvat ;
LIST &real-duolmmástuvvat = &real-duolmmástuvvat ;
LIST &real-eahkes = &real-eahkes ;
LIST &real-eallit = &real-eallit ;
LIST &real-earret = &real-earret ;
LIST &real-givssástuvvat = &real-givssástuvvat ;
LIST &real-givssastuvvat = &real-givssastuvvat ;
LIST &real-gierástallat = &real-gierástallat ;
LIST &real-gierastallat = &real-gierastallat ;
LIST &real-gierástaddat = &real-gierástaddat ;
LIST &real-gierastaddat = &real-gierastaddat ;
LIST &real-guhká = &real-guhká ;
LIST &real-guhkás = &real-guhkás ;
LIST &real-iežá = &real-iežá ;
LIST &real-jáhkkit = &real-jáhkkit ;
LIST &real-jámas = &real-jámas ;
LIST &real-láse = &real-láse ;
LIST &real-liikkastuvvat = &real-liikkastuvvat ;
LIST &real-liikkástuvvat = &real-liikkástuvvat ;
LIST &real-lánjastuvvat = &real-lánjastuvvat ;
LIST &real-lohkat = &real-lohkat ;
LIST &real-lohkat = &real-lohkat ;
LIST &real-maŋŋit = &real-maŋŋit ;
LIST &real-oastit = &real-oastit ;
LIST &real-orrut = &real-orrut ;
LIST &real-rikkastallat = &real-rikkastallat ;
LIST &real-rikkástallat = &real-rikkástallat ;
LIST &real-rikkastaddat = &real-rikkastaddat ;
LIST &real-rikkástaddat = &real-rikkástaddat ;
LIST &real-ráđastallat = &real-ráđastallat ;
LIST &real-rađastallat = &real-rađastallat ;
LIST &real-ráđastaddat = &real-ráđastaddat ;
LIST &real-rađastaddat = &real-rađastaddat ;
LIST &real-ruovttoluotta = &real-ruovttoluotta ;
LIST &real-sádji = &real-sádji ;
LIST &real-sahkki = &real-sahkki ;
LIST &real-sáhttit = &real-sáhttit ;
LIST &real-veahkki = &real-veahkki ;
LIST &real-valljái = &real-valljái ;
LIST &real-várra = &real-várra ;
LIST &real-vuolgit = &real-vuolgit ;
LIST &real-vuosttaš = &real-vuosttaš ;
# correct tags
LIST &corr-not-compound = &corr-not-compound ;
LIST &corr-no-missing-argument = &corr-no-missing-argument ;
# &err-spellingerror spellingerror word is not in lexicon
# &grm-NoEret there should be "eret"
# &grm-falAdv "fal" can never be initial
# &grm-naPcle "na" can only be initial
# &grm-notInterj Interj can only be initial or final
# &grm-missing-Acc there should be an accusative
# &grm-missing-Com there should be a comitative
# &grm-missing-Ess there should be an essive
# &grm-missing-Gen there should be a genetive
# &grm-missing-Ill there should be an illative
# &grm-missing-Loc there should be a locative
# &grm-missing-Nom there should be a nominative
# &grm-missing-Loc-PP there should be a Loc or a PP
# &grm-missing-Ill-PP there should be an Ill or a PP
# &grm-should-LocPP you should answer with a LocPo
# &grm-should-IllPP you should answer with an IllPo
# &grm-missing-Gen-PP there should be a Gen in front of the Po
# &grm-wrong-case wrong case
# &grm-incorr-time-expr incorrect time expression
# &grm-incorr-tense
# &grm-incorr-tense-future
# &grm-incorr-tense-past
# &grm-incorr-pers-nr you should answer with another Person-Number
# &grm-missing-NumSg You should answer with Num Sg
# &grm-missing-NumPl You should answer with Num Pl
# &grm-missing-NNum You should answer with Coll
# &grm-missing-Ord You should answer with A Ord
# &grm-non-agreement-Dem should be agreement
# &grm-non-agreement-Adj should be agreement
# &grm-non-agreement-Num should be agreement
# &grm-non-agreement-buorre should be agreement
# &grm-non-agr-subj-v should be agreement subj/verbal
# &grm-shouldAttr this adjective should have Attr form
# &grm-shouldNotAttr this adjective should be predicative form
# &grm-should-be-Vfin your answer should always contain a finite verb
# &grm-should-not-Vfin this verb should not be finite
# &grm-should-negV wrong verb-form after Neg
# &grm-should-pers you shold answer with a pronoun
# &grm-habitive wrong habitiv-construction
# &sem-answer-with-same-verb you should answer with the same verb
# &grm-Px-shouldbe-Loc
# &grm-not-verb-after-workverb
# &grm-should-not-Nom
# &grm-Vehicle-Com
# &grm-Loc-leaving
# &grm-numeral-wrong-case
# &grm-soaitit
# &orth-prop Proper nouns should begin with capital letter
SET REAL-W-ERROR = &real-čohkka OR &real-čohkkát OR &real-almmaiduvvat OR &real-almmáiduvvat OR &real-beassat OR &real-buorránastit OR &real-buorranastit OR &real-buorraneastit OR &real-buorráneastit OR &real-buorranaddat OR &real-buorránaddat OR &real-dakko OR &real-duolmmastuvvat OR &real-duolmmástuvvat OR &real-eahkes OR &real-eallit OR &real-earret OR &real-givssastuvvat OR &real-givssástuvvat OR &real-gierástallat OR &real-gierastallat OR &real-gierástaddat OR &real-gierastaddat OR &real-guhká OR &real-guhkás OR &real-iežá OR &real-jáhkkit OR &real-lánjastuvvat OR &real-láse OR &real-liikkastuvvat OR &real-liikkástuvvat OR &real-rikkastallat OR &real-rikkástallat OR &real-rikkastaddat OR &real-rikkástaddat OR &real-ráđastallat OR &real-rađastallat OR &real-ráđastaddat OR &real-rađastaddat OR &real-lohkat OR &real-lohkat OR &real-maŋŋit OR &real-oastit OR &real-orrut OR &real-ruovttoluotta OR &real-sádji OR &real-sahkki OR &real-sáhttit OR &real-veahkki OR &real-valljái OR &real-várra OR &real-vuolgit OR &real-vuosttaš ;
# Other tags
# ----------
LIST ABBR = ABBR ;
LIST ACR = ACR ;
LIST CLB = CLB ;
LIST QMARK = """ ; # ADD " FOR SYNTAX COLOURING.
LIST PPUNCT = PUNCT ;
SET PUNCT = PPUNCT - QMARK ;
# Single-word sets
# ----------------
LIST COMMA = "," ;
LIST CITATION = """ ;
LIST HYPHEN = "-" ;
LIST ¶ = ¶;
LIST OKTA = "akta" "okta";
LIST go = "go" ;
# Initials
# --------
LIST INITIAL = "a" "b" "c" "d" "e" "f" "g" "h" "i" "j" "k" "l" "m"
"n" "o" "p" "q" "r" "s" "t" "u" "v" "w" "x" "y" "z"
"á" "æ" "ø" "å" "ö" "ä" ;
LIST CAP-INITIAL = "A" "B" "C" "D" "E" "F" "G" "H" "I" "J" "K" "L" "M"
"N" "O" "P" "Q" "R" "S" "T" "U" "V" "W" "X" "Y" "Z"
"Á" "Æ" "Ø" "Å" "Ö" "Ä" ;
# Tag sets
# ========
SETS
# ========
# Word or not
# -----------
LIST WORD = N A Adv V Pron CS CC Po Pr Interj Pcle Num ABBR ACR \? ;
# any word
SET REALWORD = WORD - Num - Ord ;
SET REALWORD-NOTABBR = WORD - Num - Ord - ABBR ;
SET WORD-NOTDE = WORD - ("de") ;
# Derivational affixes
# --------------------
LIST V-DER = Der/adda Der/alla Der/asti Der/d Der/g Der/h Der/halla Der/hudda Der/huhtti Der/huvva Der/j Der/l Der/ahtti Der/st Der/stuvva Der/inchl ;
LIST N-DER = Der/eaddji Der/Dimin Der/eamoš Der/eapmi Der/heapmi Der/n Der/š Der/muš Der/upmi Der/us Der/vuota (Der2 Actor) ;
# Actio ;
LIST A-DER = Der/diibmosaš Der/eaddji Der/geahtes Der/keahtes Der/heapmi Der/lágan Der/laš Der/meahttun Der/lágán (V* A);
LIST A-V = (V* A) ;
SET A-NOT-V = A - A-V ;
LIST Der1 = Der1 ;
LIST Der2 = Der2 ;
LIST Der3 = Der3 ;
SET V-ACT = V - Der/Pass ;
# Case sets
# ---------
LIST ADVLCASE = Ill Loc Com Ess ;
# Sg Nom - Sg Nom | Pl Nom - Pl Nom
# Sg Acc - Sg Acc | Pl Acc - Pl Acc
# Sg Gen - Sg Gen | Pl Gen - Pl Gen
# Sg Gen - Sg Ill | Pl Gen/Ill - Pl Ill
# Sg Gen - Sg Loc | Pl Loc - Pl Loc
# Sg Com - Sg Com | Pl Gen/Com - Pl Com
# Ess - Ess
LIST CASE-HALFAGREEMENT = Ill (Sg Loc) (Pl Com) Ess ;
LIST CASE-AGREEMENT = Nom Acc Gen (Pl Ill) Loc Com Ess ;
LIST CASE = Nom Acc Gen Ill Loc Com Ess ;
SET NOT-NOM = CASE - Nom ;
SET NOT-GEN = CASE - Gen ;
SET NOT-ACC = CASE - Acc ;
SET NOT-ACC-GEN = CASE - Acc - Gen ;
# Verb sets
# ---------
# Verbs and their complements
# - - - - - - - - - - - - - -
SET NOT-VERB = WORD - V ;
# Finiteness and mood
# - - - - - - - - - -
SET V-IND-FIN = Prs OR Prt ;
# Problem: "In boahtán" is an invisible indicative
SET V-MOOD = Ind OR Pot OR Imprt OR ImprtII OR Cond OR (Neg Sup) ;
LIST GC = ("gč") ;
SET VFIN = GC OR V-MOOD - ConNeg ;
SET VFIN-POS = V-MOOD - ConNeg - Neg ;
SET VFIN-NOT-IMP = VFIN - Imprt ;
SET VFIN-NOT-NEG = VFIN - Neg ;
# this might be to strict, besides, "iige" can be written "ii ge"
SET NOT-PRFPRC = WORD - PrfPrc ;
# Person
# - - - -
LIST V-SG1 = (V Ind Prs Sg1) (V Ind Prt Sg1) (V Cond Prs Sg1)
(V Cond Prt Sg1) (V Pot Prs Sg1) (V Neg Ind Sg1);
LIST V-SG2 = (V Ind Prs Sg2) (V Ind Prt Sg2) (V Cond Prs Sg2)
(V Cond Prt Sg2) (V Pot Prs Sg2) (V Neg Ind Sg2);
LIST V-SG3 = (V Ind Prs Sg3) (V Ind Prt Sg3) (V Cond Prs Sg3)
(V Cond Prt Sg3) (V Pot Prs Sg3) (V Neg Ind Sg3);
LIST V-DU1 = (V Ind Prs Du1) (V Ind Prt Du1) (V Cond Prs Du1)
(V Cond Prt Du1) (V Pot Prs Du1) (V Neg Ind Du1);
LIST V-DU2 = (V Ind Prs Du2) (V Ind Prt Du2) (V Cond Prs Du2)
(V Cond Prt Du2) (V Pot Prs Du2) (V Neg Ind Du2);
LIST V-DU3 = (V Ind Prs Du3) (V Ind Prt Du3) (V Cond Prs Du3)
(V Cond Prt Du3) (V Pot Prs Du3) (V Neg Ind Du3);
LIST V-PL1 = (V Ind Prs Pl1) (V Ind Prt Pl1) (V Cond Prs Pl1)
(V Cond Prt Pl1) (V Pot Prs Pl1) (V Neg Ind Pl1);
LIST V-PL2 = (V Ind Prs Pl2) (V Ind Prt Pl2) (V Cond Prs Pl2)
(V Cond Prt Pl2) (V Pot Prs Pl2) (V Neg Ind Pl2);
LIST V-PL3 = (V Ind Prs Pl3) (V Ind Prt Pl3) (V Cond Prs Pl3)
(V Cond Prt Pl3) (V Pot Prs Pl3) (V Neg Ind Pl3);
# Note that imperative verbs are not included in these sets!
# Some subsets of the VFIN sets
# - - - - - - - - - - - - - - -
SET V-SG = V-SG1 OR V-SG2 OR V-SG3 ;
SET V-DU = V-DU1 OR V-DU2 OR V-DU3 ;
SET V-PL = V-PL1 OR V-PL2 OR V-PL3 ;
SET V-DU-PL = V-DU1 OR V-DU2 OR V-DU3 OR V-PL1 OR V-PL2 OR V-PL3 ;
SET V-NOT-SG1 = VFIN-NOT-IMP - V-SG1 ;
SET V-NOT-SG2 = VFIN-NOT-IMP - V-SG2 ;
SET V-NOT-SG3 = VFIN-NOT-IMP - V-SG3 ;
SET V-NOT-DU1 = VFIN-NOT-IMP - V-DU1 ;
SET V-NOT-DU2 = VFIN-NOT-IMP - V-DU2 ;
SET V-NOT-DU3 = VFIN-NOT-IMP - V-DU3 ;
SET V-NOT-PL1 = VFIN-NOT-IMP - V-PL1 ;
SET V-NOT-PL2 = VFIN-NOT-IMP - V-PL2 ;
SET V-NOT-PL3 = VFIN-NOT-IMP - V-PL3 ;
SET V-1-2 = V-SG1 OR V-SG2 OR V-DU1 OR V-DU2 OR V-PL1 OR V-PL2 ;
SET V-3 = V-SG3 OR V-DU3 OR V-PL3 ;
# Sets consisting of forms of "leat" (these ones need to be rewritten)
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
LIST LEAN = ("leat" V Ind Prs Sg1) ("leat" V PrfPrc);
LIST LEAT = ("leat" V Ind Prs Pl1) ("leat" V Ind Prs Pl3)
("leat" V Ind Prs Sg2) ("leat" V Inf) ("leat" V Ind Prs ConNeg);
LIST LEAT-FIN-NOT-IMP = ("leat" V Ind) ("leat" V Cond) ("leat" V Pot);
LIST VPRFPRC = (V PrfPrc) ;
LIST LEATPRFPRC = ("leat" PrfPrc) ;
SET PRC-NOT-LEAT = VPRFPRC - LEATPRFPRC ;
# In order to distinguish between real leat-constructions and participles of other verbs
LIST HABEO-SG3 = ("leat" Sg3) (V Neg Sg3) ("šaddat" Sg3) ;
LIST HABEO-PL3 = ("leat" Pl3) (V Neg Pl3) ("šaddat" Pl3) ;
SET HABEO-3 = HABEO-SG3 OR HABEO-PL3 ;
# Pronoun sets
# ------------
LIST MUN = (Pron Pers Sg1 Nom);
LIST DON = (Pron Pers Sg2 Nom);
LIST SON = ("son" Pron Pers Sg3 Nom);
LIST MOAI = (Pron Pers Du1 Nom);
LIST DOAI = (Pron Pers Du2 Nom);
LIST SOAI = (Pron Pers Du3 Nom);
LIST MII-PERS = (Pron Pers Pl1 Nom);
LIST DII = (Pron Pers Pl2 Nom);
LIST SII = ("son" Pron Pers Pl3 Nom);
SET PPRON-NOM-NOT-DAT = MUN OR DON OR SON OR MOAI OR DOAI OR SOAI OR MII-PERS OR DII OR SII ;
SET PPRON-NOT-DAT = (Pron Pers) - ("dat") ;
SET PPRON-DU-PL = MOAI OR DOAI OR SOAI OR MII-PERS OR DII OR SII ;
SET PPRON-PL = MII-PERS OR DII OR SII ;
SET PRON-DU = MOAI OR DOAI OR SOAI ;
SET PPRON-NOT-SII = MUN OR DON OR SON OR MOAI OR DOAI OR SOAI OR MII-PERS OR DII ;