-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathafar-pdgms.json
5416 lines (5416 loc) · 185 KB
/
afar-pdgms.json
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
{
"lang": "afar",
"subfamily": "Lowland East Cushitic Saho-Afar",
"lgpref": "afr",
"datasource": "Parker, E. M., and Richard J. Hayward. 1985. 'A Concise Outline of Phonology and Morphology. Appendix A in E. M. Parker & Richard J. Hayward, An Afar-English-French Dictionary. London: School of Oriental and African Studies, University of London. pp. 214-297. abbrev. in :note with Page and Table number as 'PHpnnn-nnn-t' -- e.g. 'PHp274-279-s' = 'Parker-Hayward1985 pp.274-279; table s'",
"dadaso8urceJNotes": "",
"geodemoURL": "http://www.ethnologue.com/language/aar",
"geodemoTXT": "Varieties and subdialects of Afar are spoken by more than a million individuals in Ethiopia, Djibouti, and Eritrea. It is very closely relateSaho.",
"schemata": {
"conjClass": [
"CompInt",
"CompStat",
"CompTran",
"Prefix",
"Stative",
"Suffix"
],
"gender": [
"Common",
"Fem",
"Masc"
],
"lexeme": [
"ab",
"anay-qunda",
"eedheg",
"fak",
"kad-hee",
"meq",
"ruffa-edh",
"uduur"
],
"mainStem": [
"EForm_invar",
"Imperative",
"Imperfect",
"ImperfectParticiple",
"Imperfect_m",
"Jussive",
"Ma_requestive",
"Mà_imperfect",
"Mà_stem",
"Mà_stem_in_imperative",
"Participle_k_invar",
"Perfect",
"PerfectParticiple",
"Perfect_m",
"Requestive",
"Stem",
"U_Form"
],
"morphass": [
"SubjMarker"
],
"number": [
"Plural",
"Singular"
],
"person": [
"Common",
"Person1",
"Person2",
"Person3",
"PersonNon_1"
],
"polarity": [
"Affirmative",
"Negative"
],
"pos": [
"Pronoun",
"Verb"
],
"proClass": [
"Absolutive",
"Emphatic",
"Emphatic_m",
"Nominative",
"PossessiveDefinite",
"Possessive_m",
"Reflexive1",
"Reflexive2"
],
"tam": [
"Anticipatory",
"Conditional1",
"Conditional2",
"Contrafactual",
"ContrafactualStative",
"Hypothetical",
"I_Form",
"Imperative",
"Imperfect",
"ImperfectAnticipatory",
"ImperfectPast1",
"ImperfectPast2",
"ImperfectPresent",
"ImperfectProbable1",
"ImperfectProbable2",
"Infinitive",
"Intentive",
"Jussive",
"PastState1",
"PastState2",
"Perfect",
"PerfectAnticipatory",
"PerfectConditional",
"PerfectPast1",
"PerfectPast2",
"PerfectPresent",
"PerfectProbable",
"PresentState1",
"PresentState2",
"Probable",
"Purposive1",
"Purposive2",
"RelativeIndeterminate",
"Requestive",
"Requestive_p1Only",
"VH_Participle"
],
"tamClass": [
"StemForm",
"TComp"
]
},
"lexemes": {
"ab": {
"pos": "Verb",
"lemma": "ab-",
"gloss": "do",
"conjClass": "Suffix"
},
"anay-qunda": {
"pos": "Verb",
"lemma": "anày-ʕunɗa-",
"gloss": "be softly spoken",
"conjClass": "CompStat"
},
"eedheg": {
"pos": "Verb",
"lemma": "eeɗeg-",
"gloss": "know",
"conjClass": "Prefix"
},
"fak": {
"pos": "Verb",
"lemma": "fak-",
"gloss": "open",
"conjClass": "Suffix"
},
"kad-hee": {
"pos": "Verb",
"lemma": "kàɗ-hee",
"gloss": "bow",
"conjClass": "CompTran"
},
"le": {
"pos": "Verb",
"lemma": "le-",
"gloss": "have",
"conjClass": "StativeIrregular"
},
"meq": {
"pos": "Verb",
"lemma": "meʕ-",
"gloss": "be good",
"conjClass": "Stative"
},
"ruffa-edh": {
"pos": "Verb",
"lemma": "ruffa-eɗḥ-",
"gloss": "become happy",
"conjClass": "CompInt"
},
"uduur": {
"pos": "Verb",
"lemma": "uduur-",
"gloss": "return",
"conjClass": "Prefix"
}
},
"pdgmPropOrder": ["pos","morphClass","proClass","conjClass","tamClass","lexxeme","tam","polarity"],
"termclusters": [
{
"label": "afr-PronounAbsolutive",
"note": "PHp235-6-7; Hp237-238-8-9-11-12-13",
"common": {
"pos": "Pronoun",
"proClass": "Absolutive"
},
"terms": [
["number" ,"person" ,"gender" ,"token"],
["Singular" ,"Person1" ,"Common" ,"yo(o)"],
["Singular" ,"Person2" ,"Common" ,"ko(o)"],
["Singular" ,"Person3" ,"Masc" ,"kà(a)"],
["Singular" ,"Person3" ,"Fem" ,"tet(teèti)"],
["Plural" ,"Person1" ,"Common" ,"ne(e)"],
["Plural" ,"Person2" ,"Common" ,"sin(siìni)"],
["Plural" ,"Person3" ,"Common" ,"ken(keèni)"]
]
},
{
"label": "afr-PronounEmphatic",
"note": "PHp235-6-7; Hp237-238-8-9-11-12-13",
"common": {
"pos": "Pronoun",
"proClass": "Emphatic"
},
"terms": [
["number" ,"person" ,"gender" ,"token"],
["Singular" ,"Person1" ,"Common" ,"(anù) ìnnih"],
["Singular" ,"PersonNon_1" ,"Common" ,"(atù ~ ùsuk ~ ìs) ìssih"],
["Plural" ,"Person1" ,"Common" ,"(nanù) nìnnih"],
["Plural" ,"PersonNon_1" ,"Common" ,"(ìsin ~ òson) isìnnih/sìnnih"]
]
},
{
"label": "afr-PronounEmphatic_m",
"note": "PHp235-6-7; Hp237-238-8-9-11-12-13",
"common": {
"pos": "Pronoun",
"proClass": "Emphatic_m"
},
"terms": [
["number" ,"person" ,"gender" ,"token"],
["Singular" ,"Person1" ,"Common" ,"innim(inniìmi)"],
["Singular" ,"PersonNon_1" ,"Common" ,"issim(issiìmi)"],
["Plural" ,"Person1" ,"Common" ,"ninnim(ninniìmi)"],
["Plural" ,"PersonNon_1" ,"Common" ,"isinnim(isinniìmi)"]
]
},
{
"label": "afr-PronounNominative",
"note": "PHp235-6-7; Hp237-238-8-9-11-12-13",
"common": {
"pos": "Pronoun",
"proClass": "Nominative"
},
"terms": [
["number" ,"person" ,"gender" ,"token"],
["Singular" ,"Person1" ,"Common" ,"anu"],
["Singular" ,"Person2" ,"Common" ,"atu"],
["Singular" ,"Person3" ,"Masc" ,"ùsuk"],
["Singular" ,"Person3" ,"Fem" ,"is"],
["Plural" ,"Person1" ,"Common" ,"nanu"],
["Plural" ,"Person2" ,"Common" ,"isin"],
["Plural" ,"Person3" ,"Common" ,"òson"]
]
},
{
"label": "afr-PronounPossessiveDefinite",
"note": "PHp235-6-7; Hp237-238-8-9-11-12-13",
"common": {
"pos": "Pronoun",
"proClass": "PossessiveDefinite"
},
"terms": [
["number" ,"person" ,"gender" ,"token"],
["Singular" ,"Person1" ,"Common" ,"yi"],
["Singular" ,"Person2" ,"Common" ,"ky"],
["Singular" ,"Person3" ,"Masc" ,"kay"],
["Singular" ,"Person3" ,"Fem" ,"tet"],
["Plural" ,"Person1" ,"Common" ,"ni"],
["Plural" ,"Person2" ,"Common" ,"sin"],
["Plural" ,"Person3" ,"Common" ,"ken"]
]
},
{
"label": "afr-PronounPossessive_m",
"note": "PHp235-6-7; Hp237-238-8-9-11-12-13",
"common": {
"pos": "Pronoun",
"proClass": "Possessive_m"
},
"terms": [
["number" ,"person" ,"gender" ,"token"],
["Singular" ,"Person1" ,"Common" ,"yiim(yiìmi)"],
["Singular" ,"Person2" ,"Common" ,"kuum(kuùmu)"],
["Singular" ,"Person3" ,"Masc" ,"kàyim(kàyimi)"],
["Singular" ,"Person3" ,"Fem" ,"tètim(tètimi"],
["Plural" ,"Person1" ,"Common" ,"niim(niìmi)"],
["Plural" ,"Person2" ,"Common" ,"sìnim(sìnimi)"],
["Plural" ,"Person3" ,"Common" ,"kènim(kènimi)"]
]
},
{
"label": "afr-PronounReflexive1",
"note": "PHp235-6-7; Hp237-238-8-9-11-12-13",
"common": {
"pos": "Pronoun",
"proClass": "Reflexive1"
},
"terms": [
["number" ,"person" ,"gender" ,"token"],
["Singular" ,"Person1" ,"Common" ,"ìnni"],
["Singular" ,"PersonNon_1" ,"Common" ,"is"],
["Plural" ,"Person1" ,"Common" ,"ìnni"],
["Plural" ,"PersonNon_1" ,"Common" ,"isìnni"]
]
},
{
"label": "afr-PronounReflexive2",
"note": "PHp235",
"common": {
"pos": "Pronoun",
"proClass": "Reflexive2"
},
"terms": [
["number" ,"person" ,"gender" ,"token"],
["Singular" ,"Person1" ,"Common" ,"inni"],
["Singular" ,"PersonNon_1" ,"Common" ,"issi"],
["Plural" ,"Person1" ,"Common" ,"ninni"],
["Plural" ,"PersonNon_1" ,"Common" ,"isinni ~ sinni"]
]
},
{
"label": "afr-Verb",
"note": "PHp252-18",
"common": {
"pos": "Verb",
"morphass": "SubjMarker"
},
"terms": [
["conjClass" ,"number" ,"person" ,"gender" ,"token"],
["CompInt" ,"Singular" ,"Person1" ,"Common" ,"Ø"],
["CompInt" ,"Singular" ,"Person2" ,"Common" ,"-t"],
["CompInt" ,"Singular" ,"Person3" ,"Masc" ,"-y"],
["CompInt" ,"Singular" ,"Person3" ,"Fem" ,"-t"],
["CompInt" ,"Plural" ,"Person1" ,"Common" ,"-n"],
["CompInt" ,"Plural" ,"Person2" ,"Common" ,"-t-n"],
["CompInt" ,"Plural" ,"Person3" ,"Common" ,"-y-n"],
["CompTran" ,"Singular" ,"Person1" ,"Common" ,"Ø"],
["CompTran" ,"Singular" ,"Person2" ,"Common" ,"-t"],
["CompTran" ,"Singular" ,"Person3" ,"Masc" ,"Ø"],
["CompTran" ,"Singular" ,"Person3" ,"Fem" ,"-t"],
["CompTran" ,"Plural" ,"Person1" ,"Common" ,"-n"],
["CompTran" ,"Plural" ,"Person2" ,"Common" ,"-t-n"],
["CompTran" ,"Plural" ,"Person3" ,"Common" ,"Ø-n"],
["Prefix" ,"Singular" ,"Person1" ,"Common" ,"Ø"],
["Prefix" ,"Singular" ,"Person2" ,"Common" ,"t-"],
["Prefix" ,"Singular" ,"Person3" ,"Masc" ,"y-"],
["Prefix" ,"Singular" ,"Person3" ,"Fem" ,"t-"],
["Prefix" ,"Plural" ,"Person1" ,"Common" ,"n-"],
["Prefix" ,"Plural" ,"Person2" ,"Common" ,"t- -n"],
["Prefix" ,"Plural" ,"Person3" ,"Common" ,"y- -n"],
["Stative" ,"Singular" ,"Person1" ,"Common" ,"-iyo"],
["Stative" ,"Singular" ,"Person2" ,"Common" ,"-ito"],
["Stative" ,"Singular" ,"Person3" ,"Masc" ,"-V"],
["Stative" ,"Singular" ,"Person3" ,"Fem" ,"-V"],
["Stative" ,"Plural" ,"Person1" ,"Common" ,"-ino"],
["Stative" ,"Plural" ,"Person2" ,"Common" ,"-iton"],
["Stative" ,"Plural" ,"Person3" ,"Common" ,"-on"],
["Suffix" ,"Singular" ,"Person1" ,"Common" ,"Ø"],
["Suffix" ,"Singular" ,"Person2" ,"Common" ,"-t"],
["Suffix" ,"Singular" ,"Person3" ,"Masc" ,"Ø"],
["Suffix" ,"Singular" ,"Person3" ,"Fem" ,"-t"],
["Suffix" ,"Plural" ,"Person1" ,"Common" ,"-n"],
["Suffix" ,"Plural" ,"Person2" ,"Common" ,"-t-n"],
["Suffix" ,"Plural" ,"Person3" ,"Common" ,"Ø-n"]
]
},
{
"label": "afr-VerbCompIntNegative",
"note": "PHp270-274-za",
"common": {
"conjClass": "CompInt",
"lexeme": "ruffa-edh",
"polarity": "Negative",
"pos": "Verb"
},
"terms": [
["tam" ,"token"],
["I_Form" ,"rùffa-àɗḥi"],
["Infinitive" ,"rùffa-àɗḥiyya"],
["RelativeIndeterminate" ,"rùffa-àɗḥi nnaànih / nnaàn"],
["VH_Participle" ,"rùffa-àɗiḥ"]
]
},
{
"label": "afr-VerbCompIntTCompAnticipatoryAffirmative",
"note": "PHp270-274-i",
"common": {
"conjClass": "CompInt",
"lexeme": "ruffa-edh",
"tamClass": "TComp",
"polarity": "Affirmative",
"pos": "Verb",
"tam": "Anticipatory"
},
"terms": [
["number" ,"person" ,"gender" ,"token"],
["Singular" ,"Person1" ,"Common" ,"rùffa-àɗḥè-liyo"],
["Singular" ,"Person2" ,"Common" ,"rùffa-àɗḥè-lito"],
["Singular" ,"Person3" ,"Masc" ,"rùffa-àɗḥè-le"],
["Singular" ,"Person3" ,"Fem" ,"rùffa-àɗḥè-le"],
["Plural" ,"Person1" ,"Common" ,"rùffa-àɗḥè-lino"],
["Plural" ,"Person2" ,"Common" ,"rùffa-àɗḥè-liton"],
["Plural" ,"Person3" ,"Common" ,"rùffa-àɗḥè-lon"]
]
},
{
"label": "afr-VerbCompIntTCompAnticipatoryNegative",
"note": "PHp270-274-i",
"common": {
"conjClass": "CompInt",
"lexeme": "ruffa-edh",
"tamClass": "TComp",
"polarity": "Negative",
"pos": "Verb",
"tam": "Anticipatory"
},
"terms": [
["number" ,"person" ,"gender" ,"token"],
["Singular" ,"Person1" ,"Common" ,"rùffa-màɗḥa"],
["Singular" ,"Person2" ,"Common" ,"rùffa-mànta"],
["Singular" ,"Person3" ,"Masc" ,"rùffa-màyya"],
["Singular" ,"Person3" ,"Fem" ,"rùffa-mànta"],
["Plural" ,"Person1" ,"Common" ,"rùffa-mànna"],
["Plural" ,"Person2" ,"Common" ,"rùffa-màntan"],
["Plural" ,"Person3" ,"Common" ,"rùffa-màyyan"]
]
},
{
"label": "afr-VerbCompIntTCompConditional1Affirmative",
"note": "PHp270-274-s",
"common": {
"conjClass": "CompInt",
"lexeme": "ruffa-edh",
"tamClass": "TComp",
"polarity": "Affirmative",
"pos": "Verb",
"tam": "Conditional1"
},
"terms": [
["number" ,"person" ,"gender" ,"token"],
["Singular" ,"Person1" ,"Common" ,"rùffa-eɗḥek"],
["Singular" ,"Person2" ,"Common" ,"rùffa-intek"],
["Singular" ,"Person3" ,"Masc" ,"rùffa-iyyek"],
["Singular" ,"Person3" ,"Fem" ,"rùffa-intek"],
["Plural" ,"Person1" ,"Common" ,"rùffa-innek"],
["Plural" ,"Person2" ,"Common" ,"rùffa-inteenik"],
["Plural" ,"Person3" ,"Common" ,"rùffa-iyyeenik"]
]
},
{
"label": "afr-VerbCompIntTCompConditional1Negative",
"note": "PHp270-274-s",
"common": {
"conjClass": "CompInt",
"lexeme": "ruffa-edh",
"tamClass": "TComp",
"polarity": "Negative",
"pos": "Verb",
"tam": "Conditional1"
},
"terms": [
["number" ,"person" ,"gender" ,"token"],
["Singular" ,"Person1" ,"Common" ,"rùffa-àɗḥè week"],
["Singular" ,"Person2" ,"Common" ,"rùffa-àɗḥè waytek"],
["Singular" ,"Person3" ,"Masc" ,"rùffa-àɗḥè week"],
["Singular" ,"Person3" ,"Fem" ,"rùffa-àɗḥè waytek"],
["Plural" ,"Person1" ,"Common" ,"rùffa-àɗḥè waynek"],
["Plural" ,"Person2" ,"Common" ,"rùffa-àɗḥè wayteenik"],
["Plural" ,"Person3" ,"Common" ,"rùffa-àɗḥè weenik"]
]
},
{
"label": "afr-VerbCompIntTCompConditional2Affirmative",
"note": "PHp270-274-t",
"common": {
"conjClass": "CompInt",
"lexeme": "ruffa-edh",
"tamClass": "TComp",
"polarity": "Affirmative",
"pos": "Verb",
"tam": "Conditional2"
},
"terms": [
["number" ,"person" ,"gender" ,"token"],
["Singular" ,"Person1" ,"Common" ,"rùffa-eɗḥe yoo tekkek"],
["Singular" ,"Person2" ,"Common" ,"rùffa-inte koo tekkek"],
["Singular" ,"Person3" ,"Masc" ,"rùffa-iyye kaa tekkek"],
["Singular" ,"Person3" ,"Fem" ,"rùffa-inte tet tekkek"],
["Plural" ,"Person1" ,"Common" ,"rùffa-inne nee tekkek"],
["Plural" ,"Person2" ,"Common" ,"rùffa-inten sin tekkek"],
["Plural" ,"Person3" ,"Common" ,"rùffa-iyyen ken tekkek"]
]
},
{
"label": "afr-VerbCompIntTCompConditional2Negative",
"note": "PHp270-274-t",
"common": {
"conjClass": "CompInt",
"lexeme": "ruffa-edh",
"tamClass": "TComp",
"polarity": "Negative",
"pos": "Verb",
"tam": "Conditional2"
},
"terms": [
["number" ,"person" ,"gender" ,"token"],
["Singular" ,"Person1" ,"Common" ,"rùffa-àɗḥè waa yoo tekkek"],
["Singular" ,"Person2" ,"Common" ,"rùffa-àɗḥè wayta koo tekkek"],
["Singular" ,"Person3" ,"Masc" ,"rùffa-àɗḥè waa kaa tekkek"],
["Singular" ,"Person3" ,"Fem" ,"rùffa-àɗḥè wayta tet tekkek"],
["Plural" ,"Person1" ,"Common" ,"rùffa-àɗḥè wayna nee tekkek"],
["Plural" ,"Person2" ,"Common" ,"rùffa-àɗḥè waytan sin tekkek"],
["Plural" ,"Person3" ,"Common" ,"rùffa-àɗḥè waan ken tekkek"]
]
},
{
"label": "afr-VerbCompIntTCompContrafactualAffirmative",
"note": "PHp270-274-v",
"common": {
"conjClass": "CompInt",
"lexeme": "ruffa-edh",
"tamClass": "TComp",
"polarity": "Affirmative",
"pos": "Verb",
"tam": "Contrafactual"
},
"terms": [
["number" ,"person" ,"gender" ,"token"],
["Singular" ,"Person1" ,"Common" ,"rùffa-aɗḥinniyoy"],
["Singular" ,"Person2" ,"Common" ,"rùffa-aɗḥinnitoy"],
["Singular" ,"Person3" ,"Masc" ,"rùffa-aɗḥinnay"],
["Singular" ,"Person3" ,"Fem" ,"rùffa-aɗḥinnay"],
["Plural" ,"Person1" ,"Common" ,"rùffa-aɗḥinninoy"],
["Plural" ,"Person2" ,"Common" ,"rùffa-aɗḥinnitoonuy"],
["Plural" ,"Person3" ,"Common" ,"rùffa-aɗḥinnoonuy"]
]
},
{
"label": "afr-VerbCompIntTCompContrafactualNegative",
"note": "PHp270-274-v",
"common": {
"conjClass": "CompInt",
"lexeme": "ruffa-edh",
"tamClass": "TComp",
"polarity": "Negative",
"pos": "Verb",
"tam": "Contrafactual"
},
"terms": [
["number" ,"person" ,"gender" ,"token"],
["Singular" ,"Person1" ,"Common" ,"rùffa-àɗḥè wanniyoy"],
["Singular" ,"Person2" ,"Common" ,"rùffa-àɗḥè wannitoy"],
["Singular" ,"Person3" ,"Masc" ,"rùffa-àɗḥè wannay"],
["Singular" ,"Person3" ,"Fem" ,"rùffa-àɗḥè wannay"],
["Plural" ,"Person1" ,"Common" ,"rùffa-àɗḥè wanninoy"],
["Plural" ,"Person2" ,"Common" ,"rùffa-àɗḥè wannitoonuy"],
["Plural" ,"Person3" ,"Common" ,"rùffa-àɗḥè wannoonuy"]
]
},
{
"label": "afr-VerbCompIntTCompHypotheticalAffirmative",
"note": "PHp270-274-y",
"common": {
"conjClass": "CompInt",
"lexeme": "ruffa-edh",
"tamClass": "TComp",
"polarity": "Affirmative",
"pos": "Verb",
"tam": "Hypothetical"
},
"terms": [
["number" ,"person" ,"gender" ,"token"],
["Singular" ,"Person1" ,"Common" ,"rùffa-àɗḥè ɗaaɗe"],
["Singular" ,"Person2" ,"Common" ,"rùffa-àɗḥè ɗaɗɗe"],
["Singular" ,"Person3" ,"Masc" ,"rùffa-àɗḥè ɗaaɗe"],
["Singular" ,"Person3" ,"Fem" ,"rùffa-àɗḥè ɗaɗɗe"],
["Plural" ,"Person1" ,"Common" ,"rùffa-àɗḥè ɗanɗe"],
["Plural" ,"Person2" ,"Common" ,"rùffa-àɗḥè ɗaɗɗen"],
["Plural" ,"Person3" ,"Common" ,"rùffa-àɗḥè ɗaaɗen"]
]
},
{
"label": "afr-VerbCompIntTCompHypotheticalNegative",
"note": "PHp270-274-y",
"common": {
"conjClass": "CompInt",
"lexeme": "ruffa-edh",
"tamClass": "TComp",
"polarity": "Negative",
"pos": "Verb",
"tam": "Hypothetical"
},
"terms": [
["number" ,"person" ,"gender" ,"token"],
["Singular" ,"Person1" ,"Common" ,"rùffa-àɗḥè màɗaaɗe"],
["Singular" ,"Person2" ,"Common" ,"rùffa-àɗḥè màɗaɗɗe"],
["Singular" ,"Person3" ,"Masc" ,"rùffa-àɗḥè màɗaaɗe"],
["Singular" ,"Person3" ,"Fem" ,"rùffa-àɗḥè màɗaɗɗe"],
["Plural" ,"Person1" ,"Common" ,"rùffa-àɗḥè màɗanɗe"],
["Plural" ,"Person2" ,"Common" ,"rùffa-àɗḥè màɗaɗɗen"],
["Plural" ,"Person3" ,"Common" ,"rùffa-àɗḥè màɗaaɗen"]
]
},
{
"label": "afr-VerbCompIntTCompImperativeAffirmative",
"note": "PHp270-274-r",
"common": {
"tamClass": "TComp",
"pos": "Verb",
"lexeme": "ruffa-edh",
"conjClass": "CompInt",
"polarity": "Affirmative",
"tam": "Imperative"
},
"terms": [
["number" ,"person" ,"gender" ,"token"],
["Singular" ,"Person2" ,"Common" ,"rùffa-inɗiḥ"],
["Plural" ,"Person2" ,"Common" ,"rùffa-inɗiḥa"]
]
},
{
"label": "afr-VerbCompIntTCompImperativeNegative",
"note": "PHp270-274-r",
"common": {
"tamClass": "TComp",
"pos": "Verb",
"lexeme": "ruffa-edh",
"conjClass": "CompInt",
"polarity": "Negative",
"tam": "Imperative"
},
"terms": [
["number" ,"token"],
["Singular" ,"Person2" ,"Common" ,"rùffa-màɗḥin"],
["Plural" ,"Person2" ,"Common" ,"rùffa-màɗḥina"]
]
},
{
"label": "afr-VerbCompIntTCompImperfectAffirmative",
"note": "PHp270-274-b",
"common": {
"conjClass": "CompInt",
"lexeme": "ruffa-edh",
"tamClass": "TComp",
"polarity": "Affirmative",
"pos": "Verb",
"tam": "Imperfect"
},
"terms": [
["number" ,"person" ,"gender" ,"token"],
["Singular" ,"Person1" ,"Common" ,"rùffa-aɗḥeh"],
["Singular" ,"Person2" ,"Common" ,"rùffa-intah"],
["Singular" ,"Person3" ,"Masc" ,"rùffa-iyyah"],
["Singular" ,"Person3" ,"Fem" ,"rùffa-intah"],
["Plural" ,"Person1" ,"Common" ,"rùffa-innah"],
["Plural" ,"Person2" ,"Common" ,"rùffa-intaanah"],
["Plural" ,"Person3" ,"Common" ,"rùffa-iyyaanah"]
]
},
{
"label": "afr-VerbCompIntTCompImperfectAnticipatoryAffirmative",
"note": "PHp270-274-k",
"common": {
"conjClass": "CompInt",
"lexeme": "ruffa-edh",
"tamClass": "TComp",
"polarity": "Affirmative",
"pos": "Verb",
"tam": "ImperfectAnticipatory"
},
"terms": [
["number" ,"person" ,"gender" ,"token"],
["Singular" ,"Person1" ,"Common" ,"rùffa-àɗḥuk sugèyyo"],
["Singular" ,"Person2" ,"Common" ,"rùffa-àɗḥuk sugètto"],
["Singular" ,"Person3" ,"Masc" ,"rùffa-àɗḥuk sugèle"],
["Singular" ,"Person3" ,"Fem" ,"rùffa-àɗḥuk sugèle"],
["Plural" ,"Person1" ,"Common" ,"rùffa-àɗḥuk sugènno"],
["Plural" ,"Person2" ,"Common" ,"rùffa-àɗḥuk sugètton"],
["Plural" ,"Person3" ,"Common" ,"rùffa-àɗḥuk sugèlon"]
]
},
{
"label": "afr-VerbCompIntTCompImperfectAnticipatoryNegative",
"note": "PHp270-274-k",
"common": {
"conjClass": "CompInt",
"lexeme": "ruffa-edh",
"tamClass": "TComp",
"polarity": "Negative",
"pos": "Verb",
"tam": "ImperfectAnticipatory"
},
"terms": [
["number" ,"person" ,"gender" ,"token"],
["Singular" ,"Person1" ,"Common" ,"rùffa-àɗḥuk màsuga"],
["Singular" ,"Person2" ,"Common" ,"rùffa-àɗḥuk màsugta"],
["Singular" ,"Person3" ,"Masc" ,"rùffa-àɗḥuk màsuga"],
["Singular" ,"Person3" ,"Fem" ,"rùffa-àɗḥuk màsugta"],
["Plural" ,"Person1" ,"Common" ,"rùffa-àɗḥuk màsugna"],
["Plural" ,"Person2" ,"Common" ,"rùffa-àɗḥuk màsugtan"],
["Plural" ,"Person3" ,"Common" ,"rùffa-àɗḥuk màsugan"]
]
},
{
"label": "afr-VerbCompIntTCompImperfectNegative",
"note": "PHp270-274-b",
"common": {
"conjClass": "CompInt",
"lexeme": "ruffa-edh",
"tamClass": "TComp",
"polarity": "Negative",
"pos": "Verb",
"tam": "Imperfect"
},
"terms": [
["number" ,"person" ,"gender" ,"token"],
["Singular" ,"Person1" ,"Common" ,"rùffa-màɗḥa"],
["Singular" ,"Person2" ,"Common" ,"rùffa-mànta"],
["Singular" ,"Person3" ,"Masc" ,"rùffa-màyya"],
["Singular" ,"Person3" ,"Fem" ,"rùffa-mànta"],
["Plural" ,"Person1" ,"Common" ,"rùffa-mànna"],
["Plural" ,"Person2" ,"Common" ,"rùffa-màntan"],
["Plural" ,"Person3" ,"Common" ,"rùffa-màyyan"]
]
},
{
"label": "afr-VerbCompIntTCompImperfectPast1Affirmative",
"note": "PHp270-274-f",
"common": {
"conjClass": "CompInt",
"lexeme": "ruffa-edh",
"tamClass": "TComp",
"polarity": "Affirmative",
"pos": "Verb",
"tam": "ImperfectPast1"
},
"terms": [
["number" ,"person" ,"gender" ,"token"],
["Singular" ,"Person1" ,"Common" ,"rùffa-àɗḥuk en"],
["Singular" ,"Person2" ,"Common" ,"rùffa-àɗḥuk ten"],
["Singular" ,"Person3" ,"Masc" ,"rùffa-àɗḥuk yen"],
["Singular" ,"Person3" ,"Fem" ,"rùffa-àɗḥuk ten"],
["Plural" ,"Person1" ,"Common" ,"rùffa-àɗḥuk nen"],
["Plural" ,"Person2" ,"Common" ,"rùffa-àɗḥuk tenen"],
["Plural" ,"Person3" ,"Common" ,"rùffa-àɗḥuk yenen"]
]
},
{
"label": "afr-VerbCompIntTCompImperfectPast1Negative",
"note": "PHp270-274-f",
"common": {
"conjClass": "CompInt",
"lexeme": "ruffa-edh",
"tamClass": "TComp",
"polarity": "Negative",
"pos": "Verb",
"tam": "ImperfectPast1"
},
"terms": [
["number" ,"person" ,"gender" ,"token"],
["Singular" ,"Person1" ,"Common" ,"rùffa-àɗḥuk mànanniyo"],
["Singular" ,"Person2" ,"Common" ,"rùffa-àɗḥuk mànannito"],
["Singular" ,"Person3" ,"Masc" ,"rùffa-àɗḥuk mànanna"],
["Singular" ,"Person3" ,"Fem" ,"rùffa-àɗḥuk mànanna"],
["Plural" ,"Person1" ,"Common" ,"rùffa-àɗḥuk mànannino"],
["Plural" ,"Person2" ,"Common" ,"rùffa-àɗḥuk mànanniton"],
["Plural" ,"Person3" ,"Common" ,"rùffa-àɗḥuk mànannon"]
]
},
{
"label": "afr-VerbCompIntTCompImperfectPast2Affirmative",
"note": "PHp270-274-g",
"common": {
"conjClass": "CompInt",
"lexeme": "ruffa-edh",
"tamClass": "TComp",
"polarity": "Affirmative",
"pos": "Verb",
"tam": "ImperfectPast2"
},
"terms": [
["number" ,"person" ,"gender" ,"token"],
["Singular" ,"Person1" ,"Common" ,"rùffa-àɗḥuk suge"],
["Singular" ,"Person2" ,"Common" ,"rùffa-àɗḥuk sugte"],
["Singular" ,"Person3" ,"Masc" ,"rùffa-àɗḥuk suge"],
["Singular" ,"Person3" ,"Fem" ,"rùffa-àɗḥuk sugte"],
["Plural" ,"Person1" ,"Common" ,"rùffa-àɗḥuk sugne"],
["Plural" ,"Person2" ,"Common" ,"rùffa-àɗḥuk sugten"],
["Plural" ,"Person3" ,"Common" ,"rùffa-àɗḥuk sugen"]
]
},
{
"label": "afr-VerbCompIntTCompImperfectPast2Negative",
"note": "PHp270-274-g",
"common": {
"conjClass": "CompInt",
"lexeme": "ruffa-edh",
"tamClass": "TComp",
"polarity": "Negative",
"pos": "Verb",
"tam": "ImperfectPast2"
},
"terms": [
["number" ,"person" ,"gender" ,"token"],
["Singular" ,"Person1" ,"Common" ,"rùffa-àɗḥuk màsuginniyo"],
["Singular" ,"Person2" ,"Common" ,"rùffa-àɗḥuk màsuginnito"],
["Singular" ,"Person3" ,"Masc" ,"rùffa-àɗḥuk màsuginna"],
["Singular" ,"Person3" ,"Fem" ,"rùffa-àɗḥuk màsuginna"],
["Plural" ,"Person1" ,"Common" ,"rùffa-àɗḥuk màsuginnino"],
["Plural" ,"Person2" ,"Common" ,"rùffa-àɗḥuk màsuginniton"],
["Plural" ,"Person3" ,"Common" ,"rùffa-àɗḥuk màsuginnon"]
]
},
{
"label": "afr-VerbCompIntTCompImperfectPresentAffirmative",
"note": "PHp270-274-h",
"common": {
"conjClass": "CompInt",
"lexeme": "ruffa-edh",
"tamClass": "TComp",
"polarity": "Affirmative",
"pos": "Verb",
"tam": "ImperfectPresent"
},
"terms": [
["number" ,"person" ,"gender" ,"token"],
["Singular" ,"Person1" ,"Common" ,"rùffa-aɗḥèk an"],
["Singular" ,"Person2" ,"Common" ,"rùffa-intàk tan"],
["Singular" ,"Person3" ,"Masc" ,"rùffa-iyyàk yan"],
["Singular" ,"Person3" ,"Fem" ,"rùffa-intàk tan"],
["Plural" ,"Person1" ,"Common" ,"rùffa-innàk nan"],
["Plural" ,"Person2" ,"Common" ,"rùffa-intaanàk tanin"],
["Plural" ,"Person3" ,"Common" ,"rùffa-iyyaanàk yanin"]
]
},
{
"label": "afr-VerbCompIntTCompImperfectPresentNegative",
"note": "PHp270-274-h",
"common": {
"conjClass": "CompInt",
"lexeme": "ruffa-edh",
"tamClass": "TComp",
"polarity": "Negative",
"pos": "Verb",
"tam": "ImperfectPresent"
},
"terms": [
["number" ,"person" ,"gender" ,"token"],
["Singular" ,"Person1" ,"Common" ,"rùffa-aɗḥèh màan"],
["Singular" ,"Person2" ,"Common" ,"rùffa-intàh màtan"],
["Singular" ,"Person3" ,"Masc" ,"rùffa-iyyàh màyan"],
["Singular" ,"Person3" ,"Fem" ,"rùffa-intàh màtan"],
["Plural" ,"Person1" ,"Common" ,"rùffa-innàh mànan"],
["Plural" ,"Person2" ,"Common" ,"rùffa-intaanàh màtanin"],
["Plural" ,"Person3" ,"Common" ,"rùffa-iyyaanàh màyanin"]
]
},
{
"label": "afr-VerbCompIntTCompImperfectProbable1Affirmative",
"note": "PHp270-274-o",
"common": {
"conjClass": "CompInt",
"lexeme": "ruffa-edh",
"tamClass": "TComp",
"polarity": "Affirmative",
"pos": "Verb",
"tam": "ImperfectProbable1"
},
"terms": [
["number" ,"person" ,"gender" ,"token"],
["Singular" ,"Person1" ,"Common" ,"rùffa-àɗḥu(h) takkeh"],
["Singular" ,"Person2" ,"Common" ,"rùffa-ìntu(h) takkeh"],
["Singular" ,"Person3" ,"Masc" ,"rùffa-ìyyu(h) takkeh"],
["Singular" ,"Person3" ,"Fem" ,"rùffa-ìntu(h) takkeh"],
["Plural" ,"Person1" ,"Common" ,"rùffa-ìnnu(h) takkeh"],
["Plural" ,"Person2" ,"Common" ,"rùffa-intoònu(h) takkeh"],
["Plural" ,"Person3" ,"Common" ,"rùffa-iyyoònu(h) takkeh"]
]
},
{
"label": "afr-VerbCompIntTCompImperfectProbable1Negative",
"note": "PHp270-274-o",
"common": {
"conjClass": "CompInt",
"lexeme": "ruffa-edh",
"tamClass": "TComp",
"polarity": "Negative",
"pos": "Verb",
"tam": "ImperfectProbable1"
},
"terms": [
["number" ,"person" ,"gender" ,"token"],
["Singular" ,"Person1" ,"Common" ,"rùffa-àɗḥè wàyu(h) takkeh"],
["Singular" ,"Person2" ,"Common" ,"rùffa-àɗḥè wàytu(h) takkeh"],
["Singular" ,"Person3" ,"Masc" ,"rùffa-àɗḥè wàyu(h) takkeh"],
["Singular" ,"Person3" ,"Fem" ,"rùffa-àɗḥè wàytu(h) takkeh"],
["Plural" ,"Person1" ,"Common" ,"rùffa-àɗḥè wànu(h) takkeh"],
["Plural" ,"Person2" ,"Common" ,"rùffa-àɗḥè watoònu(h) takkeh"],
["Plural" ,"Person3" ,"Common" ,"rùffa-àɗḥè wayoònu(h) takkeh"]
]
},
{
"label": "afr-VerbCompIntTCompImperfectProbable2Affirmative",
"note": "PHp270-274-p",
"common": {
"conjClass": "CompInt",
"lexeme": "ruffa-edh",
"tamClass": "TComp",
"polarity": "Affirmative",
"pos": "Verb",
"tam": "ImperfectProbable2"
},
"terms": [
["number" ,"person" ,"gender" ,"token"],
["Singular" ,"Person1" ,"Common" ,"rùffa-aɗḥèm takkeh"],
["Singular" ,"Person2" ,"Common" ,"rùffa-intàm takkeh"],
["Singular" ,"Person3" ,"Masc" ,"rùffa-iyyàm takkeh"],
["Singular" ,"Person3" ,"Fem" ,"rùffa-intàm takkeh"],
["Plural" ,"Person1" ,"Common" ,"rùffa-innàm takkeh"],
["Plural" ,"Person2" ,"Common" ,"rùffa-intaanàm takkeh"],
["Plural" ,"Person3" ,"Common" ,"rùffa-iyyaanàm takkeh"]
]
},
{
"label": "afr-VerbCompIntTCompImperfectProbable2Negative",
"note": "PHp270-274-p",
"common": {
"conjClass": "CompInt",
"lexeme": "ruffa-edh",
"tamClass": "TComp",
"polarity": "Negative",
"pos": "Verb",
"tam": "ImperfectProbable2"
},
"terms": [
["number" ,"person" ,"gender" ,"token"],
["Singular" ,"Person1" ,"Common" ,"rùffa-àɗḥè waam takkeh"],
["Singular" ,"Person2" ,"Common" ,"rùffa-àɗḥè waytam takkeh"],
["Singular" ,"Person3" ,"Masc" ,"rùffa-àɗḥè waam takkeh"],
["Singular" ,"Person3" ,"Fem" ,"rùffa-àɗḥè waytam takkeh"],
["Plural" ,"Person1" ,"Common" ,"rùffa-àɗḥè waynam takkeh"],
["Plural" ,"Person2" ,"Common" ,"rùffa-àɗḥè wayteenim takkeh"],
["Plural" ,"Person3" ,"Common" ,"rùffa-àɗḥè waanam takkeh"]
]
},
{
"label": "afr-VerbCompIntTCompIntentiveAffirmative",
"note": "PHp270-274-n",
"common": {
"conjClass": "CompInt",
"lexeme": "ruffa-edh",
"tamClass": "TComp",
"polarity": "Affirmative",
"pos": "Verb",
"tam": "Intentive"
},
"terms": [
["number" ,"person" ,"gender" ,"token"],
["Singular" ,"Person1" ,"Common" ,"rùffa-àɗḥu waa"],
["Singular" ,"Person2" ,"Common" ,"rùffa-ìntu wayta"],
["Singular" ,"Person3" ,"Masc" ,"rùffa-ìyyu waa"],
["Singular" ,"Person3" ,"Fem" ,"rùffa-ìntu wayta"],
["Plural" ,"Person1" ,"Common" ,"rùffa-ìnnu wayna"],
["Plural" ,"Person2" ,"Common" ,"rùffa-intoònu waytan"],
["Plural" ,"Person3" ,"Common" ,"rùffa-iyyoònu waan"]
]
},
{
"label": "afr-VerbCompIntTCompIntentiveNegative",
"note": "PHp270-274-n",
"common": {
"conjClass": "CompInt",
"lexeme": "ruffa-edh",
"tamClass": "TComp",
"polarity": "Negative",
"pos": "Verb",
"tam": "Intentive"
},
"terms": [
["number" ,"person" ,"gender" ,"token"],
["Singular" ,"Person1" ,"Common" ,"rùffa-àɗḥu màwaa"],
["Singular" ,"Person2" ,"Common" ,"rùffa-ìntu màwayta"],
["Singular" ,"Person3" ,"Masc" ,"rùffa-ìyyu màwaa"],
["Singular" ,"Person3" ,"Fem" ,"rùffa-ìntu màwayta"],
["Plural" ,"Person1" ,"Common" ,"rùffa-ìnnu màwayna"],
["Plural" ,"Person2" ,"Common" ,"rùffa-intoònu màwaytan"],
["Plural" ,"Person3" ,"Common" ,"rùffa-iyyoònu màwaan"]
]
},
{
"label": "afr-VerbCompIntTCompJussiveAffirmative",
"note": "PHp270-274-l",
"common": {
"conjClass": "CompInt",
"lexeme": "ruffa-edh",
"tamClass": "TComp",
"polarity": "Affirmative",
"pos": "Verb",
"tam": "Jussive"
},
"terms": [
["number" ,"person" ,"gender" ,"token"],
["Singular" ,"Person1" ,"Common" ,"rùffa-àɗḥay"],
["Singular" ,"Person2" ,"Common" ,"rùffa-ìntay"],