-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSAY_BC_INT_03_Calendar.conllu
3265 lines (3087 loc) · 221 KB
/
SAY_BC_INT_03_Calendar.conllu
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
# sent_id = SAY_BC_INT_03_Calendar_001-004
# speaker_id = SP2
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_03_CALENDAR.WAV
# sent_timecode = 2860, 10780
# text = gín myǎː ʧêt gòs tu àː fúːmí yáddà ɗan kə̀tàyáː fî gyáː lə̌pmwâːn ɗan gyáː kə́rmə̂s ɗan myǎː fǐ tsə́n //
# text_ortho = gín myǎː ʧêt gòs tu àː fúːmí yáddà ɗan kə̀tàyáː fî gyáː lə̌pmwâːn ɗan gyáː kə́rmə̂s ɗan myàː fǐ tsə́n //
# text_en = Now we are asking tell us how you used to do your festivals like our Christmas that we do like this.
1 gín giní PRON _ Deixis=Prox|PronType=Dem 2 dislocated@top _ AlignBegin=2860|AlignEnd=3100|Gloss=Prox
2 myǎː yáː AUX _ Aspect=Imp|Number=Plur|Person=1 0 root _ AlignBegin=3100|AlignEnd=3340|Gloss=1Plur.Imp
3 ʧêt ʧet VERB _ _ 2 comp:aux _ AlignBegin=3340|AlignEnd=3580|Gloss=ask
4 gòs gòs PRON _ Case=Gen|Number=Sing|Person=3|PronType=Prs 3 mod@ethical _ AlignBegin=3580|AlignEnd=3820|Gloss=3Sing.Gen
5 tu tu SCONJ _ _ 3 comp:obj _ AlignBegin=3820|AlignEnd=4060|Gloss=COMP
6 àː àː AUX _ Aspect=Perf|Number=Sing|Person=3 5 comp:obj _ AlignBegin=4640|AlignEnd=4934|Gloss=2Sing.Sub
7-8 fúːmí _ _ _ _ _ _ _ _
7 fúː fuː VERB _ _ 6 comp:aux _ AlignBegin=4934|AlignEnd=5081|Gloss=tell
8 =mí =mí PRON _ Case=Acc|Number=Plur|Person=1|PronType=Prs 7 comp:obj@R _ AlignBegin=5081|AlignEnd=5228|Gloss=1Plur.Obj
9 yáddà yáddà ADV _ PronType=Rel 7 mod _ AlignBegin=5228|AlignEnd=5522|Gloss=how
10 ɗan ɗan SCONJ _ _ 9 mod@relcl _ AlignBegin=5522|AlignEnd=5816|Gloss=that
11 kə̀tàyáː ta-yáː AUX _ Number=Sing|Person=2|Tense=Rem 10 comp:obj _ AlignBegin=5816|AlignEnd=6110|Gloss=2Plur.Rem.Imp
12 fî fi VERB _ _ 11 comp:aux _ AlignBegin=6110|AlignEnd=6404|Gloss=do
13 gyáː gyáː DET _ Number=Plur 14 det _ AlignBegin=6404|AlignEnd=6700|Gloss=Plur
14-15 lə̌pmwâːn _ _ _ _ _ _ _ _
14 lə̌pm lə̌pm NOUN _ _ 12 comp:obj _ AlignBegin=6880|AlignEnd=7270|Gloss=festival
15 =wâːn =waːn PRON _ Case=Gen|Number=Sing|Person=3|PronType=Prs 14 mod@poss _ AlignBegin=7270|AlignEnd=7660|Gloss=2Plur.Gen
16 ɗan ɗan ADP _ _ 14 mod _ AlignBegin=9360|AlignEnd=9538|Gloss=as
17 gyáː gyáː DET _ Number=Plur 18 det _ AlignBegin=9538|AlignEnd=9716|Gloss=Plur
18 kə́rmə̂s kə́rmə̂s NOUN _ _ 16 comp:obj _ AlignBegin=9716|AlignEnd=9894|Gloss=Christmas|Lang=ha
19 ɗan ɗan SCONJ _ _ 18 mod@relcl _ AlignBegin=9894|AlignEnd=10072|Gloss=REL
20 myǎː yáː AUX _ Aspect=Imp|Number=Plur|Person=1 19 comp:obj _ AlignBegin=10072|AlignEnd=10250|Gloss=1Plur.Imp
21 fǐ fi VERB _ _ 20 comp:aux _ AlignBegin=10250|AlignEnd=10428|Gloss=do
22 tsə́n tsəní ADV _ _ 21 mod _ AlignBegin=10428|AlignEnd=10606|Gloss=like_this
23 // // PUNCT _ _ 2 punct _ AlignBegin=10606|AlignEnd=10780|Gloss=PUNCT
# sent_id = SAY_BC_INT_03_Calendar_005-005
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_03_CALENDAR.WAV
# sent_timecode = 10780, 11213
# text = m̀ː //
# text_ortho = m̀ː //
# text_en = Yes.
1 m̀ː m̀ː INTJ _ _ 0 root _ AlignBegin=10780|AlignEnd=10996|Gloss=yes
2 // // PUNCT _ _ 1 punct _ AlignBegin=10996|AlignEnd=11213|Gloss=PUNCT
# sent_id = SAY_BC_INT_03_Calendar_007-007
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_03_CALENDAR.WAV
# sent_timecode = 13280, 13558
# text = m̀ː //
# text_ortho = m̀ː //
# text_en = Yes.
1 m̀ː m̀ː INTJ _ _ 0 root _ AlignBegin=13280|AlignEnd=13419|Gloss=yes
2 // // PUNCT _ _ 1 punct _ AlignBegin=13419|AlignEnd=13558|Gloss=PUNCT
# sent_id = SAY_BC_INT_03_Calendar_006-008
# speaker_id = SP2
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_03_CALENDAR.WAV
# sent_timecode = 11213, 14000
# text = tôː kə̀tà yír gyáː gwàːn káʃi wuriː ?//
# text_ortho = tôː kə̀tà yír gyáː gwàːn káʃi wuriː ?//
# text_en = Well how many types did you have?
1 tôː tôː PART _ _ 2 discourse _ AlignBegin=11213|AlignEnd=11486|Gloss=DM
2 kə̀tà ta AUX _ Number=Plur|Person=2|Tense=Rem 0 root _ AlignBegin=11486|AlignEnd=11759|Gloss=2Plur.Rem
3 yír yír VERB _ _ 2 comp:aux _ AlignBegin=11759|AlignEnd=12032|Gloss=have
4 gyáː gyáː DET _ Number=Plur 5 det _ AlignBegin=12032|AlignEnd=12305|Gloss=Plur
5 gwàːn gwàːn PRON _ Number=Plur 3 comp:obj _ AlignBegin=12305|AlignEnd=12580|Gloss=2Plur.Gen
6 káʃi káʃi NOUN _ _ 5 mod _ AlignBegin=13280|AlignEnd=13520|Gloss=type
7 wuriː wuri DET _ PronType=Int 6 det _ AlignBegin=13520|AlignEnd=13760|Gloss=how_many
8 ?// ?// PUNCT _ _ 2 punct _ AlignBegin=13760|AlignEnd=14000|Gloss=PUNCT
# sent_id = SAY_BC_INT_03_Calendar_009-009
# speaker_id = SP2
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_03_CALENDAR.WAV
# sent_timecode = 14760, 15620
# text = àː kwáːnmí mə́n !//
# text_ortho = àː kwáːnmí mə́n !//
# text_en = Tell us.
1 àː tə̀ AUX _ Mood=Sub|Number=Sing|Person=2 0 root _ AlignBegin=14760|AlignEnd=14975|Gloss=2Sing.Sub
2-3 kwáːnmí _ _ _ _ _ _ _ _
2 kwáːn kon VERB _ Number=Plur 1 comp:aux _ AlignBegin=14975|AlignEnd=15083|Gloss=say-Plur
3 =mí =mí PRON _ Case=Acc|Number=Plur|Person=1|PronType=Prs 2 comp:obj@R _ AlignBegin=15083|AlignEnd=15190|Gloss=1Plur.Obj
4 mə́n mə́n PART _ Case=Ben 2 compound:prt _ AlignBegin=15190|AlignEnd=15405|Gloss=BEN
5 !// !// PUNCT _ _ 1 punct _ AlignBegin=15405|AlignEnd=15620|Gloss=PUNCT
# sent_id = SAY_BC_INT_03_Calendar_010-010
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_03_CALENDAR.WAV
# sent_timecode = 16760, 17331
# text = ləpâː ?//
# text_ortho = ləpâː ?//
# text_en = Festivals?
1-2 ləpâː _ _ _ _ _ _ _ _
1 lə̌pm lə̌pm NOUN _ _ 0 root _ AlignBegin=16760|AlignEnd=16950|Gloss=festival
2 a: a: PART _ _ 1 mod _ AlignBegin=16950|AlignEnd=17140|Gloss=VRT|PartType=Int
3 ?// ?// PUNCT _ _ 1 punct _ AlignBegin=17140|AlignEnd=17331|Gloss=PUNCT
# sent_id = SAY_BC_INT_03_Calendar_011-014
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_03_CALENDAR.WAV
# sent_timecode = 18300, 21700
# text = m̀ː < lə̌pm < mì tə́ lə̌pm káʃi mâːy //
# text_ortho = m̀ː < lə̌pm < mì tə́ lə̌pm káʃi mâːy //
# text_en = Well, festivals, we had ... three types of festivals.
1 m̀ː m̀ː INTJ _ _ 6 discourse _ AlignBegin=18300|AlignEnd=18580|Gloss=yes
2 < < PUNCT _ _ 1 punct _ AlignBegin=18580|AlignEnd=18860|Gloss=PUNCT
3 lə̌pm lə̌pm NOUN _ _ 6 dislocated@top _ AlignBegin=19900|AlignEnd=19982|Gloss=festival
4 < < PUNCT _ _ 3 punct _ AlignBegin=19982|AlignEnd=20064|Gloss=PUNCT
5-6 mì _ _ _ _ _ _ _ _
5 mə̀ mə̀ PRON _ Number=Plur|Person=1|PronType=Prs 6 subj _ AlignBegin=20064|Gloss=1Plur
6 yi yi VERB _ _ 0 root _ AlignEnd=20381|Gloss=be
7 tə́ tə́ ADP _ _ 6 comp:pred _ AlignBegin=20381|AlignEnd=20698|Gloss=with
8 lə̌pm lə̌pm NOUN _ Definite=Cons 7 comp:obj _ AlignBegin=20698|AlignEnd=21015|Gloss=festival-CONS
9 káʃi káʃi NOUN _ _ 8 mod _ AlignBegin=21015|AlignEnd=21243|Gloss=type
10 mâːy mâːy NUM _ _ 9 mod:num _ AlignBegin=21243|AlignEnd=21471|Gloss=three
11 // // PUNCT _ _ 6 punct _ AlignBegin=21471|AlignEnd=21700|Gloss=PUNCT
# sent_id = SAY_BC_INT_03_Calendar_015-016
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_03_CALENDAR.WAV
# sent_timecode = 23800, 28360
# text = kə́ nàmbóɲi ɗan tá faːrá fíɣə̂n lə̌pm < myǎː ʧímtə tu lə̌pm Žàːr //
# text_ortho = kə́ nàmbóɲi ɗan tá fâːrá fíɣə̂n lə̌pm < myǎː ʧîmtə̀ tu lə̌pm ʒàːr //
# text_en = The first one that they started celebrating, we called it the Jar festival.
1 kə́ kə́ ADP _ _ 9 parataxis@discourse _ AlignBegin=23800|AlignEnd=24110|Gloss=of
2 nàmbóɲi nàmbóŋ NUM _ Definite=Ind 1 comp:obj _ AlignBegin=24110|AlignEnd=24420|Gloss=one-Ind
3 ɗan ɗan SCONJ _ _ 1 mod@relcl _ AlignBegin=24420|AlignEnd=24730|Gloss=REL
4 tá a AUX _ Number=Plur|Person=3|Tense=Fut 3 comp:obj _ AlignBegin=24730|AlignEnd=25040|Gloss=3Plur.Fut
5 faːrá faːrá VERB _ _ 4 comp:aux _ AlignBegin=25040|AlignEnd=25350|Gloss=start
6 fíɣə̂n fi VERB _ VerbForm=Vnoun 5 comp:obj _ AlignBegin=25350|AlignEnd=25660|Gloss=do-Vnoun
7 lə̌pm lə̌pm NOUN _ _ 6 comp:obj _ AlignBegin=25660|AlignEnd=25815|Gloss=festival
8 < < PUNCT _ _ 1 punct _ AlignBegin=25970|AlignEnd=26280|Gloss=PUNCT
9 myǎː yáː AUX _ Aspect=Imp|Number=Plur|Person=1 0 root _ AlignBegin=27060|AlignEnd=27277|Gloss=1Plur.Imp
10-11 ʧímtə _ _ _ _ _ _ _ _
10 ʧîm ʧim VERB _ _ 9 comp:aux _ AlignBegin=27277|AlignEnd=27385|Gloss=call
11 =tə =tə PRON _ Case=Acc|Number=Sing|Person=3|PronType=Prs 10 comp:obj _ AlignBegin=27385|AlignEnd=27494|Gloss=3Sing.Obj
12 tu tu ADP _ Mood=Qot 10 comp:pred _ AlignBegin=27494|AlignEnd=27711|Gloss=COMP
13 lə̌pm lə̌pm NOUN _ Definite=Cons 12 comp:obj _ AlignBegin=27711|AlignEnd=27928|Gloss=festival-CONS
14 Žàːr Žàːr PROPN _ _ 13 mod _ AlignBegin=27928|AlignEnd=28145|Gloss=Jar
15 // // PUNCT _ _ 9 punct _ AlignBegin=28145|AlignEnd=28360|Gloss=PUNCT
# sent_id = SAY_BC_INT_03_Calendar_017-017
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_03_CALENDAR.WAV
# sent_timecode = 30140, 32160
# text = àmá mə́n yóːɗan ʧǎː fi nə mə́n Mársəŋ //
# text_ortho = àmá mə́n yóːɗan ʧǎː fî nə mə́n Mársəŋ //
# text_en = But the people who did it were the people of Lusa.
1 àmá àmá CCONJ _ _ 6 discourse _ AlignBegin=30140|AlignEnd=30364|Gloss=but
2 mə́n múr NOUN _ Number=Plur 6 dislocated@subj _ AlignBegin=30364|AlignEnd=30588|Gloss=people
3 yóːɗan yóːɗan PRON _ PronType=Rel 2 mod@relcl _ AlignBegin=30588|AlignEnd=30812|Gloss=who
4 ʧǎː yáː AUX _ Aspect=Imp|Number=Plur|Person=3 3 comp:obj _ AlignBegin=30812|AlignEnd=31036|Gloss=3Plur.Imp
5 fi fi VERB _ _ 4 comp:aux _ AlignBegin=31036|AlignEnd=31260|Gloss=do
6 nə nə PART _ _ 0 root _ AlignBegin=31260|AlignEnd=31484|Gloss=be
7 mə́n múr NOUN _ Number=Plur 6 comp:pred _ AlignBegin=31484|AlignEnd=31708|Gloss=people
8 Mársəŋ Mársəŋ PROPN _ _ 7 compound _ AlignBegin=31708|AlignEnd=31932|Gloss=Lusa
9 // // PUNCT _ _ 6 punct _ AlignBegin=31932|AlignEnd=32160|Gloss=PUNCT
# sent_id = SAY_BC_INT_03_Calendar_018-019
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_03_CALENDAR.WAV
# sent_timecode = 33620, 35037
# text = tôː < tá ngyǎːr &//
# text_ortho = tôː < tá ngyǎːr &//
# text_en = Well, They would slaughter...
1 tôː tôː PART _ _ 3 discourse _ AlignBegin=33620|AlignEnd=33790|Gloss=DM
2 < < PUNCT _ _ 1 punct _ AlignBegin=33790|AlignEnd=33960|Gloss=PUNCT
3 tá a AUX _ Number=Plur|Person=3|Tense=Fut 0 root@scrap _ AlignBegin=34540|AlignEnd=34706|Gloss=3Plur.Fut
4 ngyǎːr nger VERB _ Number=Plur 3 comp:aux _ AlignBegin=34706|AlignEnd=34789|Gloss=slaughter.PlurAC
5 &// &// PUNCT _ _ 3 punct _ AlignBegin=34872|AlignEnd=35037|Gloss=PUNCT
# sent_id = SAY_BC_INT_03_Calendar_020-021
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_03_CALENDAR.WAV
# sent_timecode = 35037, 37140
# text = tá tá tá tûːr ɗûː sòːséy //
# text_ortho = tá tá tá tûːr ɗûː sòːséy //
# text_en = They would brew a lot of beer.
1 tá a AUX _ Number=Plur|Person=3|Tense=Fut 0 root _ AlignBegin=35037|AlignEnd=35395|Gloss=3Plur.Fut
2 tá a AUX _ Number=Plur|Person=3|Tense=Fut 1 conj:dicto _ AlignBegin=35395|AlignEnd=35753|Gloss=3Plur.Fut
3 tá a AUX _ Number=Plur|Person=3|Tense=Fut 2 conj:dicto _ AlignBegin=35753|AlignEnd=36030|Gloss=3Plur.Fut
4 tûːr tuːr VERB _ _ 3 comp:aux _ AlignBegin=36030|AlignEnd=36307|Gloss=cook
5 ɗûː ɗûː NOUN _ _ 4 comp:obj _ AlignBegin=36307|AlignEnd=36584|Gloss=beer
6 sòːséy sòːséy ADV _ _ 4 mod _ AlignBegin=36584|AlignEnd=36861|Gloss=quite
7 // // PUNCT _ _ 1 punct _ AlignBegin=36861|AlignEnd=37140|Gloss=PUNCT
# sent_id = SAY_BC_INT_03_Calendar_022-023
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_03_CALENDAR.WAV
# sent_timecode = 37460, 39720
# text = tôː dzàŋ gíː ɗan lə̂p wò ɬaː tá ɮə̌pm //
# text_ortho = tôː dzàŋ gíː ɗan lə̂p wò ɬaː tá ɮə̌pm //
# text_en = Well that day ... early on that day, they will gather.
1 tôː tôː PART _ _ 8 discourse _ AlignBegin=37460|AlignEnd=37811|Gloss=DM
2 dzàŋ dzàŋ NOUN _ _ 8 mod _ AlignBegin=37811|AlignEnd=38162|Gloss=day
3 gíː gíː PRON _ Deixis=Dist|PronType=Dem 2 mod _ AlignBegin=38162|AlignEnd=38513|Gloss=Remt
4 ɗan ɗan SCONJ _ _ 8 mod@relcl _ AlignBegin=38513|AlignEnd=38863|Gloss=as
5 lə̂p lə̂p NOUN _ _ 6 subj _ AlignBegin=38863|AlignEnd=39006|Gloss=place
6 wò a AUX _ Number=Sing|Person=3|Tense=Fut 4 comp:obj _ AlignBegin=39006|AlignEnd=39149|Gloss=3Sing.Fut
7 ɬaː ɬaː VERB _ _ 6 comp:aux _ AlignBegin=39149|AlignEnd=39292|Gloss=cut
8 tá a AUX _ Number=Plur|Person=3|Tense=Fut 0 root _ AlignBegin=39292|AlignEnd=39435|Gloss=then
9 ɮə̌pm ɮə́pm VERB _ _ 8 comp:aux _ AlignBegin=39435|AlignEnd=39578|Gloss=gather
10 // // PUNCT _ _ 8 punct _ AlignBegin=39578|AlignEnd=39720|Gloss=PUNCT
# sent_id = SAY_BC_INT_03_Calendar_024-026
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_03_CALENDAR.WAV
# sent_timecode = 40320, 44280
# text = tôː ká ngyǎːr galtsə́ //+ nə́ durɣə́ ləpês //
# text_ortho = tôː ká ngyǎːr galtsə́ //+ nə́ durɣə́ ləpês //
# text_en = Well, you would slaughter cows because of the festival.
1 tôː tôː PART _ _ 2 discourse _ AlignBegin=40320|AlignEnd=40680|Gloss=DM
2 ká a AUX _ Number=Plur|Person=2|Tense=Fut 0 root _ AlignBegin=41020|AlignEnd=41225|Gloss=2Plur.Fut
3 ngyǎːr nger VERB _ Number=Plur 2 comp:aux _ AlignBegin=41225|AlignEnd=41327|Gloss=slaughter.PlurAC
4 galtsə́ gàːl NOUN _ Number=Plur 3 comp:obj _ AlignBegin=41430|AlignEnd=41635|Gloss=cow-Plur
5 //+ //+ PUNCT _ _ 6 punct _ AlignBegin=41635|AlignEnd=41840|Gloss=PUNCT
6 nə́ nə́ ADP _ ExtPos=ADP 3 mod _ AlignBegin=43560|AlignEnd=43740|Gloss=for|Idiom=Yes
7 durɣə́ durkə́ ADP _ _ 6 unk _ AlignBegin=43740|AlignEnd=43920|Gloss=concerning|InIdiom=Yes
8 lə̌pm lə̌pm NOUN _ Definite=Def 6 comp:obj _ AlignBegin=43920|AlignEnd=44100|Gloss=festival|wordform=ləpês
9 -ês -ês DET _ Definite=Def 8 det/m _ Gloss=-Def
10 // // PUNCT _ _ 2 punct _ AlignBegin=44100|AlignEnd=44280|Gloss=PUNCT
# sent_id = SAY_BC_INT_03_Calendar_027-028
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_03_CALENDAR.WAV
# sent_timecode = 45360, 47220
# text = tôː kə́ mbə́ɬi < nə lə̌pm Zaːr //
# text_ortho = tôː kə́ mbə́ɬi < nə lə̌pm Zaːr //
# text_en = Well the second, is the Zaar festival.
1 tôː tôː PART _ _ 5 discourse _ AlignBegin=45360|AlignEnd=45540|Gloss=DM
2 kə́ á ADP _ _ 5 dislocated@subj _ AlignBegin=45540|AlignEnd=45720|Gloss=of
3 mbə́ɬi mbə́ɬəŋ NUM _ Definite=Ind 2 comp:obj _ AlignBegin=45720|AlignEnd=45900|Gloss=two-Ind
4 < < PUNCT _ _ 2 punct _ AlignBegin=45900|AlignEnd=46080|Gloss=PUNCT
5 nə nə PART _ _ 0 root _ AlignBegin=46440|AlignEnd=46635|Gloss=be
6 lə̌pm lə̌pm VERB _ Definite=Cons 5 comp:pred _ AlignBegin=46635|AlignEnd=46830|Gloss=festival-CONS
7 Zaːr Zaːr PROPN _ _ 6 mod _ AlignBegin=46830|AlignEnd=47025|Gloss=Zaar
8 // // PUNCT _ _ 5 punct _ AlignBegin=47025|AlignEnd=47220|Gloss=PUNCT
# sent_id = SAY_BC_INT_03_Calendar_029-029
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_03_CALENDAR.WAV
# sent_timecode = 49060, 50176
# text = tôː yâːn máː yi ʧík sát //
# text_ortho = tôː yâːn máː yi ʧík sát //
# text_en = Well it too is just like this.
1 tôː tôː PART _ _ 4 discourse _ AlignBegin=49060|AlignEnd=49219|Gloss=DM
2 yâːn yáːni PRON _ Number=Sing|Person=3|PronType=Prs 4 dislocated@subj _ AlignBegin=49219|AlignEnd=49378|Gloss=3Sing.IDP
3 máː máː PART _ _ 2 mod _ AlignBegin=49378|AlignEnd=49537|Gloss=also
4 yi yi VERB _ _ 0 root _ AlignBegin=49537|AlignEnd=49696|Gloss=be
5 ʧík ʧík ADV _ _ 4 comp:pred _ AlignBegin=49696|AlignEnd=49855|Gloss=thus
6 sát sát IDEO _ _ 4 mod _ AlignBegin=49855|AlignEnd=50014|Gloss=indeed
7 // // PUNCT _ _ 4 punct _ AlignBegin=50014|AlignEnd=50176|Gloss=PUNCT
# sent_id = SAY_BC_INT_03_Calendar_030-031
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_03_CALENDAR.WAV
# sent_timecode = 50176, 52480
# text = ká tûːr ɣá ɗûː //= kə́ ngyǎːr galtsə́ //
# text_ortho = ká tûːr ɣá ɗûː //= kə́ ngyǎːr galtsə́ //
# text_en = You would brew beer and slaughter cows.
1 ká a AUX _ Number=Plur|Person=2|Tense=Fut 0 root _ AlignBegin=50176|AlignEnd=50353|Gloss=2Plur.Fut
2 tûːr tuːr VERB _ _ 1 comp:aux _ AlignBegin=50353|AlignEnd=50530|Gloss=cook
3 ɣá ká ADP _ _ 2 comp:obl _ AlignBegin=50530|AlignEnd=50707|Gloss=at
4 ɗûː ɗûː NOUN _ _ 3 comp:obj _ AlignBegin=50707|AlignEnd=50884|Gloss=beer
5 //= //= PUNCT _ _ 6 punct _ AlignBegin=50884|AlignEnd=51060|Gloss=PUNCT
6 kə́ á AUX _ Aspect=Aor|Number=Sing|Person=2 1 parataxis _ AlignBegin=51620|AlignEnd=51835|Gloss=2Plur.Aor
7 ngyǎːr nger VERB _ Number=Plur 6 comp:aux _ AlignBegin=51835|AlignEnd=51943|Gloss=slaughter.Plur
8 galtsə́ gàːl NOUN _ _ 7 comp:obj _ AlignBegin=52050|AlignEnd=52265|Gloss=cow.Plur
9 // // PUNCT _ _ 1 punct _ AlignBegin=52265|AlignEnd=52480|Gloss=PUNCT
# sent_id = SAY_BC_INT_03_Calendar_032-032
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_03_CALENDAR.WAV
# sent_timecode = 53940, 55140
# text = tôː kə́ máːyi nə lə̌pm Ngas //
# text_ortho = tôː kə́ máːyi nə lə̌pm Ngas //
# text_en = Well the third one is the Angas festival.
1 tôː tôː PART _ _ 4 discourse _ AlignBegin=53940|AlignEnd=54111|Gloss=DM
2 kə́ kə́ ADP _ _ 4 subj _ AlignBegin=54111|AlignEnd=54282|Gloss=of
3 máːyi mâːy NUM _ Definite=Ind 2 comp:obj _ AlignBegin=54282|AlignEnd=54453|Gloss=three
4 nə nə PART _ _ 0 root _ AlignBegin=54453|AlignEnd=54624|Gloss=be
5 lə̌pm lə̌pm NOUN _ Definite=Cons 4 comp:pred _ AlignBegin=54624|AlignEnd=54795|Gloss=festival
6 Ngas Ngas PROPN _ _ 5 mod _ AlignBegin=54795|AlignEnd=54966|Gloss=Angas
7 // // PUNCT _ _ 4 punct _ AlignBegin=54966|AlignEnd=55140|Gloss=PUNCT
# sent_id = SAY_BC_INT_03_Calendar_033-035
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_03_CALENDAR.WAV
# sent_timecode = 56420, 60686
# text = kúmá < yàːʃí kàmán mìsáːli mə́n Malâːr < kúmá myǎː wûl tu ʧìn Ngas //
# text_ortho = kúmá < yàːʃí kàmán mìsáːli mə́n Malâːr < kúmá myǎː wûl tu ʧì nə Ngas //
# text_en = And... them, like for example the people of Malar, we would call them Angas too.
1 kúmá kúmá PART _ _ 10 discourse _ AlignBegin=56420|AlignEnd=56670|Gloss=and
2 < < PUNCT _ _ 1 punct _ AlignBegin=56670|AlignEnd=56920|Gloss=PUNCT
3 yàːʃí yàːʃí PRON _ _ 10 dislocated@top _ AlignBegin=57460|AlignEnd=57703|Gloss=3Plur.IDP
4 kàmán kàmán ADP _ ExtPos=ADV 6 mod _ AlignBegin=57703|AlignEnd=57946|Gloss=like|Idiom=Yes
5 mìsáːli mìsáːli NOUN _ _ 4 unk _ AlignBegin=57946|AlignEnd=58189|Gloss=example|InIdiom=Yes
6 mə́n múr NOUN _ Number=Plur 3 conj:appos _ AlignBegin=58189|AlignEnd=58432|Gloss=people
7 Malâːr Malâːr PROPN _ Definite=Def 6 compound _ AlignBegin=58432|AlignEnd=58675|Gloss=Malar
8 < < PUNCT _ _ 3 punct _ AlignBegin=58675|AlignEnd=58920|Gloss=PUNCT
9 kúmá kúmá PART _ _ 10 discourse _ AlignBegin=59340|AlignEnd=59508|Gloss=and
10 myǎː yáː AUX _ Aspect=Imp|Number=Plur|Person=1 0 root _ AlignBegin=59508|AlignEnd=59676|Gloss=1Plur.Imp
11 wûl wul VERB _ _ 10 comp:aux _ AlignBegin=59676|AlignEnd=59844|Gloss=say
12 tu tu SCONJ _ _ 11 comp:obj _ AlignBegin=59844|AlignEnd=60012|Gloss=COMP
13 ʧìn yi AUX _ _ 12 comp:obj _ AlignEnd=60180|Gloss=3Plur.be.X|wordform=yi
14 Ngas Ngas PROPN _ _ 13 comp:pred _ AlignBegin=60348|AlignEnd=60516|Gloss=Angas
15 // // PUNCT _ _ 10 punct _ AlignBegin=60516|AlignEnd=60686|Gloss=PUNCT
# sent_id = SAY_BC_INT_03_Calendar_036-036
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_03_CALENDAR.WAV
# sent_timecode = 62580, 64700
# text = tôː myàːní kúmá < myàːyí nat kâːrwàːsə̀ŋ háy yànzú //
# text_ortho = tôː myàːní kúmá < myàːyí nat kâːrwàːsə̀ŋ hár yànzú //
# text_en = Well and us, we used to support them up till now.
1 tôː tôː PART _ _ 5 discourse _ AlignBegin=62580|AlignEnd=62792|Gloss=DM
2 myàːní myàːní PRON _ Number=Sing|Person=1|PronType=Prs 5 dislocated@subj _ AlignBegin=62792|AlignEnd=63004|Gloss=1Plur.IDP
3 kúmá kúmá PART _ _ 2 discourse _ AlignBegin=63004|AlignEnd=63216|Gloss=too
4 < < PUNCT _ _ 2 punct _ AlignBegin=63216|AlignEnd=63428|Gloss=PUNCT
5 myàːyí yáː-yiː AUX _ Aspect=ImpIter|Number=Sing|Person=1 0 root _ AlignBegin=63428|AlignEnd=63640|Gloss=1Plur.Imp.Iter
6 nat nat VERB _ _ 5 comp:aux _ AlignBegin=63640|AlignEnd=63852|Gloss=tie
7-8 kâːrwàːsə̀ŋ _ _ _ _ _ _ _ _
7 kâːr kâːr NOUN _ _ 6 comp:obj _ AlignBegin=63852|AlignEnd=63958|Gloss=back
8 =wàːsə̀ŋ =wáːsə̀ŋ PRON _ Number=Plur|Person=3|Poss=Yes|PronType=Prs 7 mod@poss _ AlignBegin=63958|AlignEnd=64064|Gloss=3Plur.Gen
9 háy hár ADP _ _ 5 mod _ AlignBegin=64064|AlignEnd=64276|Gloss=up_to
10 yànzú yànzú ADV _ _ 9 comp:obj _ AlignBegin=64276|AlignEnd=64488|Gloss=now
11 // // PUNCT _ _ 5 punct _ AlignBegin=64488|AlignEnd=64700|Gloss=PUNCT
# sent_id = SAY_BC_INT_03_Calendar_037-037
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_03_CALENDAR.WAV
# sent_timecode = 65420, 66220
# text = mə́ tûːr gyaː ɗûː //
# text_ortho = mə́ tûːr gyaː ɗûː //
# text_en = We brewed beer.
1 mə́ á AUX _ Aspect=Aor|Number=Plur|Person=1 0 root _ AlignBegin=65420|AlignEnd=65580|Gloss=1Plur.Aor
2 tûːr tuːr VERB _ _ 1 comp:aux _ AlignBegin=65580|AlignEnd=65740|Gloss=cook
3 gyaː gyáː DET _ Number=Plur 4 det _ AlignBegin=65740|AlignEnd=65900|Gloss=Plur
4 ɗûː ɗûː VERB _ _ 2 comp:obj _ AlignBegin=65900|AlignEnd=66060|Gloss=beer
5 // // PUNCT _ _ 1 punct _ AlignBegin=66060|AlignEnd=66220|Gloss=PUNCT
# sent_id = SAY_BC_INT_03_Calendar_038-039
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_03_CALENDAR.WAV
# sent_timecode = 67040, 69680
# text = tôː mə́ ngyǎːr gyáː gàːl ɓét ɗan kóː gèri kóː maːt //
# text_ortho = tôː mə́ ngyǎːr gyaː gàːl ɓét ɗan kóː gèri kóː maːt //
# text_en = Well we slaughtered cows too Or chicken or goats.
1 tôː tôː PART _ _ 2 discourse _ AlignBegin=67040|AlignEnd=67223|Gloss=DM
2 mə́ á AUX _ Aspect=Aor|Number=Plur|Person=1 0 root _ AlignBegin=67223|AlignEnd=67406|Gloss=1Plur.Aor
3 ngyǎːr nger VERB _ _ 2 comp:aux _ AlignBegin=67406|AlignEnd=67498|Gloss=slaughter.Plur
4 gyáː gyáː DET _ Number=Plur 5 det _ AlignBegin=67589|AlignEnd=67772|Gloss=Plur
5 gàːl gàːl NOUN _ _ 3 comp:obj _ AlignBegin=67772|AlignEnd=67955|Gloss=cow
6 ɓét ɓét PART _ _ 3 mod _ AlignBegin=67955|AlignEnd=68138|Gloss=all
7 ɗan ɗan ADV _ _ 3 mod _ AlignBegin=68138|AlignEnd=68320|Gloss=too
8 kóː kóː CCONJ _ _ 9 cc _ AlignBegin=68740|AlignEnd=68928|Gloss=COORD|Lang=ha
9 gèri gèri NOUN _ _ 5 conj:coord _ AlignBegin=68928|AlignEnd=69116|Gloss=chicken
10 kóː kóː CCONJ _ _ 11 cc _ AlignBegin=69116|AlignEnd=69304|Gloss=COORD|Lang=ha
11 maːt maːt NOUN _ _ 9 conj:coord _ AlignBegin=69304|AlignEnd=69492|Gloss=goat
12 // // PUNCT _ _ 2 punct _ AlignBegin=69492|AlignEnd=69680|Gloss=PUNCT
# sent_id = SAY_BC_INT_03_Calendar_040-040
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_03_CALENDAR.WAV
# sent_timecode = 71068, 71760
# text = tôː átâ yi ʧǐː //
# text_ortho = tôː átâ yi ʧǐː //
# text_en = Well that's how it was.
1 tôː tôː PART _ _ 2 discourse _ AlignBegin=71068|AlignEnd=71206|Gloss=DM
2 átâ ta AUX _ Number=Sing|Person=3|Tense=Rem 0 root _ AlignBegin=71206|AlignEnd=71344|Gloss=3Sing.Rem
3 yi yi VERB _ _ 2 comp:aux _ AlignBegin=71344|AlignEnd=71482|Gloss=be
4 ʧǐː ʧík ADV _ _ 2 mod _ AlignBegin=71482|AlignEnd=71551|Gloss=thus
5 // // PUNCT _ _ 2 punct _ AlignBegin=71620|AlignEnd=71760|Gloss=PUNCT
# sent_id = SAY_BC_INT_03_Calendar_042-042
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_03_CALENDAR.WAV
# sent_timecode = 74286, 74652
# text = m̀ː //
# text_ortho = m̀ː //
# text_en = Oui.
1 m̀ː m̀ː INTJ _ _ 0 root _ AlignBegin=74286|AlignEnd=74469|Gloss=yes
2 // // PUNCT _ _ 1 punct _ AlignBegin=74469|AlignEnd=74652|Gloss=PUNCT
# sent_id = SAY_BC_INT_03_Calendar_041-043
# speaker_id = SP2
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_03_CALENDAR.WAV
# sent_timecode = 72500, 75550
# text = tôː ɗan giní ɗan káː ʧim tu lə̌pm Ngasǒːy tôː áy bàː á wûn~ &//
# text_ortho = tôː ɗan giní ɗan káː ʧim tu lə̌pm Ngasǒːy tôː áy bàː á wûn~ &//
# text_en = Well like what you call the Angas festival, well it doesn't...
1 tôː tôː PART _ _ 14 discourse _ AlignBegin=72500|AlignEnd=72662|Gloss=DM
2 ɗan ɗan ADP _ _ 14 dislocated@top _ AlignBegin=72662|AlignEnd=72824|Gloss=like
3 giní giní PRON _ Deixis=Prox|PronType=Dem 2 comp:obj _ AlignBegin=72824|AlignEnd=72986|Gloss=Prox
4 ɗan ɗan SCONJ _ _ 3 mod@relcl _ AlignBegin=72986|AlignEnd=73148|Gloss=REL
5 káː àː AUX _ Aspect=Perf|Number=Sing|Person=2 4 comp:obj _ AlignBegin=73148|AlignEnd=73310|Gloss=2Sing.Perf
6 ʧim ʧim VERB _ _ 5 comp:aux _ AlignBegin=73310|AlignEnd=73472|Gloss=call
7 tu tu ADP _ Mood=Qot 6 comp:pred _ AlignBegin=73472|AlignEnd=73634|Gloss=COMP
8 lə̌pm lə̌pm NOUN _ _ 7 comp:obj _ AlignBegin=73634|AlignEnd=73796|Gloss=festival
9-10 Ngasǒːy _ _ _ _ _ _ _ _
9 Ngas Ngas PROPN _ _ 8 mod _ AlignBegin=73796|AlignEnd=73958|Gloss=Angas
10 ǒːy oː PART _ _ 2 discourse _ AlignBegin=73958|AlignEnd=74120|Gloss=Emp|PartType=Emp
11 tôː tôː PART _ _ 14 discourse _ AlignBegin=74652|AlignEnd=74802|Gloss=DM
12 áy áy INTJ _ _ 14 discourse _ AlignBegin=74802|AlignEnd=74952|Gloss=indeed
13 bàː bàː PART _ Polarity=Neg 14 mod _ AlignBegin=74952|AlignEnd=75102|Gloss=Neg1
14 á á AUX _ Aspect=Aor|Number=Sing|Person=3 0 root@scrap _ AlignBegin=75102|AlignEnd=75252|Gloss=3Sing.Aor
15 wûn~ wul VERB _ _ 14 comp:aux _ AlignBegin=75252|AlignEnd=75402|Gloss=HESIT
16 &// &// PUNCT _ _ 14 punct _ AlignBegin=75402|AlignEnd=75550|Gloss=PUNCT
# sent_id = SAY_BC_INT_03_Calendar_044-044
# speaker_id = SP2
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_03_CALENDAR.WAV
# sent_timecode = 75688, 76165
# text = á wû tu &//
# text_ortho = á wû tu &//
# text_en = It says that...
1 á á AUX _ Aspect=Aor|Number=Sing|Person=3 0 root@scrap _ AlignBegin=75688|AlignEnd=75807|Gloss=3Sing.Aor
2 wû wul VERB _ _ 1 comp:aux _ AlignBegin=75807|AlignEnd=75926|Gloss=say
3 tu tu SCONJ _ _ 2 comp:obj _ AlignBegin=75926|AlignEnd=76045|Gloss=COMP
4 &// &// PUNCT _ _ 1 punct _ AlignBegin=76045|AlignEnd=76165|Gloss=PUNCT
# sent_id = SAY_BC_INT_03_Calendar_045-045
# speaker_id = SP2
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_03_CALENDAR.WAV
# sent_timecode = 76165, 77900
# text = á gìtmí tu nə gwàːn hŋ́ gəndí //
# text_ortho = á gìtmí tu nə gwàːn hŋ́ gəndí //
# text_en = It shows us that it is not yours.
1 á á AUX _ Aspect=Aor|Number=Sing|Person=3 0 root _ AlignBegin=76165|AlignEnd=76382|Gloss=3Sing.Aor
2-3 gìtmí _ _ _ _ _ _ _ _
2 gìt git VERB _ _ 1 comp:aux _ AlignBegin=76382|AlignEnd=76490|Gloss=show
3 =mí =mí PRON _ Case=Acc|Number=Plur|Person=1|PronType=Prs 2 comp:obj@R _ AlignBegin=76490|AlignEnd=76599|Gloss=1Plur.Obj
4 tu tu SCONJ _ _ 2 comp:obj@T _ AlignBegin=76599|AlignEnd=76816|Gloss=COMP
5 nə nə PART _ _ 4 comp:obj _ AlignBegin=76816|AlignEnd=77033|Gloss=be
6 gwàːn gwàːn PRON _ PronType=Prs 5 comp:pred _ AlignBegin=77033|AlignEnd=77250|Gloss=2Plur.Gen
7 hŋ́ hŋ́ PART _ Polarity=Neg 5 mod _ AlignBegin=77250|AlignEnd=77467|Gloss=Neg2
8 gəndí kəndí PART _ _ 5 mod _ AlignBegin=77467|AlignEnd=77684|Gloss=be
9 // // PUNCT _ _ 1 punct _ AlignBegin=77684|AlignEnd=77900|Gloss=PUNCT
# sent_id = SAY_BC_INT_03_Calendar_046-046
# speaker_id = SP2
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_03_CALENDAR.WAV
# sent_timecode = 78540, 80280
# text = gíː nə kə́ Ngas kəndí kə mbíː kə gə́m ngə́r gwàːn //
# text_ortho = gíː nə kə́ Ngas kəndí kə mbíː kə gə́m ngə́r gwàːn //
# text_en = That one is the Angasawa's that you took for yourself.
1 gíː gíː PRON _ Deixis=Dist|PronType=Dem 2 subj _ AlignBegin=78540|AlignEnd=78685|Gloss=Remt
2 nə nə PART _ _ 0 root _ AlignBegin=78685|AlignEnd=78830|Gloss=be
3 kə́ á ADP _ _ 2 comp:pred _ AlignBegin=78830|AlignEnd=78975|Gloss=of
4 Ngas Ngas PROPN _ _ 3 comp:obj _ AlignBegin=78975|AlignEnd=79120|Gloss=Angas
5 kəndí kəndí PART _ _ 2 mod _ AlignBegin=79120|AlignEnd=79265|Gloss=be
6 kə á AUX _ Aspect=Aor|Number=Sing|Person=2 2 comp:cleft _ AlignBegin=79265|AlignEnd=79410|Gloss=2Sing.Aor
7 mbíː mbiː VERB _ _ 6 comp:aux _ AlignBegin=79410|AlignEnd=79555|Gloss=take
8 kə á AUX _ Aspect=Aor|Number=Sing|Person=2 6 conj:svc _ AlignBegin=79555|AlignEnd=79700|Gloss=2Sing.Aor
9 gə́m gəm VERB _ _ 8 comp:aux _ AlignBegin=79700|AlignEnd=79845|Gloss=put
10 ngə́r ngə́tn NOUN _ _ 9 mod _ AlignBegin=79845|AlignEnd=79990|Gloss=thing
11 gwàːn gwàːn PRON _ _ 10 mod@poss _ AlignBegin=79990|AlignEnd=80135|Gloss=2Plur.Gen
12 // // PUNCT _ _ 2 punct _ AlignBegin=80135|AlignEnd=80280|Gloss=PUNCT
# sent_id = SAY_BC_INT_03_Calendar_047-048
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_03_CALENDAR.WAV
# sent_timecode = 80420, 83430
# text = èː tôː àmá ʧì ɓasmí ɣə̂n ʧiɣə́y //
# text_ortho = èː tôː àmá ʧì ɓasmí kə̂n ʧikə́y //
# text_en = Yes, well but they are with us like this.
1 èː èː INTJ _ _ 4 discourse _ AlignBegin=80420|AlignEnd=80643|Gloss=HESIT
2 tôː tôː PART _ _ 4 discourse _ AlignBegin=80643|AlignEnd=80866|Gloss=DM
3 àmá àmá CCONJ _ _ 4 discourse _ AlignBegin=80866|AlignEnd=81089|Gloss=but
4 ʧì yi AUX _ _ 0 root _ AlignEnd=81312|Gloss=3Plur.be|wordform=yi
5-6 ɓasmí _ _ _ _ _ _ _ _
5 ɓas ɓas ADP _ _ 4 comp:pred _ AlignBegin=81312|AlignEnd=81424|Gloss=at
6 =mí =mí PRON _ Case=Acc|Number=Plur|Person=1|PronType=Prs 5 comp:obj _ AlignBegin=81424|AlignEnd=81535|Gloss=1Plur.Obj
7 ɣə̂n kən PART _ _ 4 discourse@foc _ AlignBegin=81535|AlignEnd=81757|Gloss=be
8 ʧiɣə́y ʧík ADV _ Deixis=Dist 4 mod _ AlignBegin=82935|AlignEnd=83059|Gloss=like_that
9 // // PUNCT _ _ 4 punct _ AlignBegin=83183|AlignEnd=83430|Gloss=PUNCT
# sent_id = SAY_BC_INT_03_Calendar_049-049
# speaker_id = SP2
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_03_CALENDAR.WAV
# sent_timecode = 83430, 85200
# text = tôː ngə́tn wón nə́ lə̌pm Ngas ɗúːni a: ?//
# text_ortho = tòː ngə́tn wón nə lə̌pm Ngas ɗúːniyaː ?//
# text_en = Well is there something here for the Angas festival?
1 tôː tôː PART _ _ 2 discourse _ AlignBegin=83430|AlignEnd=83607|Gloss=DM
2 ngə́tn ngə́tn NOUN _ _ 0 root _ AlignBegin=83607|AlignEnd=83784|Gloss=thing
3 wón wón DET _ Definite=Spec 2 det _ AlignBegin=83784|AlignEnd=83961|Gloss=SPEC
4 nə́ nə́ ADP _ _ 2 mod _ AlignBegin=83961|AlignEnd=84138|Gloss=for
5 lə̌pm lə̌pm NOUN _ Definite=Cons 4 comp:pred _ AlignBegin=84315|AlignEnd=84492|Gloss=festival
6 Ngas Ngas PROPN _ _ 5 mod _ AlignBegin=84492|AlignEnd=84669|Gloss=Angas
7 ɗúːni ɗúːni ADV _ PronType=Dem 2 mod _ AlignBegin=84669|AlignEnd=84846|Gloss=here
8 a: a: PART _ _ 2 mod _ AlignBegin=84846|AlignEnd=85023|Gloss=VRT|PartType=Int
9 ?// ?// PUNCT _ _ 2 punct _ AlignBegin=85023|AlignEnd=85200|Gloss=PUNCT
# sent_id = SAY_BC_INT_03_Calendar_050-050
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_03_CALENDAR.WAV
# sent_timecode = 85440, 86180
# text = èː myàːní ɣə̂n ?//
# text_ortho = èː myàːní ɣə̂n ?//
# text_en = Yes,for us?
1 èː èː INTJ _ _ 3 discourse _ AlignBegin=85440|AlignEnd=85625|Gloss=yes
2 myàːní myàːáːni PRON _ Number=Sing|Person=1|PronType=Prs 3 comp:pred _ AlignBegin=85625|AlignEnd=85810|Gloss=1Plur.IDP
3 ɣə̂n kən PART _ _ 0 root _ AlignBegin=85810|AlignEnd=85995|Gloss=be
4 ?// ?// PUNCT _ _ 3 punct _ AlignBegin=85995|AlignEnd=86180|Gloss=PUNCT
# sent_id = SAY_BC_INT_03_Calendar_051-052
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_03_CALENDAR.WAV
# sent_timecode = 86320, 88160
# text = myǎː tûːr ɗûː //+ hár náɣat //
# text_ortho = myǎː tûːr ɗûː // hár náɣat //
# text_en = We brewed beer and cooked food too.
1 myǎː yáː AUX _ Aspect=Imp|Number=Plur|Person=1 0 root _ AlignBegin=86320|AlignEnd=86495|Gloss=1Plur.Imp
2 tûːr tuːr VERB _ _ 1 comp:aux _ AlignBegin=86495|AlignEnd=86670|Gloss=cook
3 ɗûː ɗûː ADV _ _ 2 comp:obj _ AlignBegin=86670|AlignEnd=86845|Gloss=beer
4 //+ //+ PUNCT _ _ 6 punct _ AlignBegin=86845|AlignEnd=87020|Gloss=PUNCT
5 hár hár ADP _ _ 6 cc _ AlignBegin=87480|AlignEnd=87707|Gloss=up_to
6 náɣat náɣat NOUN _ _ 3 conj:coord _ AlignBegin=87707|AlignEnd=87934|Gloss=food
7 // // PUNCT _ _ 1 punct _ AlignBegin=87934|AlignEnd=88160|Gloss=PUNCT
# sent_id = SAY_BC_INT_03_Calendar_053-053
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_03_CALENDAR.WAV
# sent_timecode = 88300, 89374
# text = má tûːr náɣat nə́ lə̌pm Ngas //
# text_ortho = má tûːr náɣat nə́ lə̌pm Ngas //
# text_en = We used to cook food for the Angas festival.
1 má a AUX _ Number=Plur|Person=1|Tense=Fut 0 root _ AlignBegin=88300|AlignEnd=88453|Gloss=1Plur.Fut
2 tûːr tuːr VERB _ _ 1 comp:aux _ AlignBegin=88453|AlignEnd=88606|Gloss=cook
3 náɣat náɣat NOUN _ _ 2 comp:obj _ AlignBegin=88606|AlignEnd=88759|Gloss=food
4 nə́ nə́ ADP _ _ 2 comp:obl _ AlignBegin=88759|AlignEnd=88912|Gloss=for
5 lə̌pm lə̌pm NOUN _ Definite=Cons 4 comp:obj _ AlignBegin=88912|AlignEnd=89065|Gloss=festival
6 Ngas Ngas PROPN _ _ 5 mod _ AlignBegin=89065|AlignEnd=89218|Gloss=Angas
7 // // PUNCT _ _ 1 punct _ AlignBegin=89218|AlignEnd=89374|Gloss=PUNCT
# sent_id = SAY_BC_INT_03_Calendar_054-055
# speaker_id = SP2
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_03_CALENDAR.WAV
# sent_timecode = 89374, 91765
# text = kə́ kâŋ nə́ bə̀kês kəndí ŋǎ:n ?//
# text_ortho = kə́ kâŋ nə́ bə̀kês kəndí ŋǎːn ?//
# text_en = You gathered for... the festival, didn't you?
1 kə́ á AUX _ Aspect=Aor|Number=Sing|Person=2 0 root _ AlignBegin=89374|AlignEnd=89857|Gloss=2Plur.Aor
2 kâŋ kaŋ VERB _ _ 1 comp:aux _ AlignBegin=89857|AlignEnd=90099|Gloss=join
3 nə́ nə́ PART _ _ 2 mod _ AlignBegin=90099|AlignEnd=90340|Gloss=for
4 bə̀kês bə̀ki NOUN _ Definite=Def 3 comp:obj _ AlignBegin=90800|AlignEnd=90993|Gloss=celebration
5 kəndí kəndí PART _ _ 3 mod _ AlignBegin=90993|AlignEnd=91186|Gloss=be
6 ŋǎ:n ǎ:n PART _ Polarity=Neg 1 mod _ AlignBegin=91186|AlignEnd=91379|Gloss=Q.Neg|PartType=Int
7 ?// ?// PUNCT _ _ 1 punct _ AlignBegin=91572|AlignEnd=91765|Gloss=PUNCT
# sent_id = SAY_BC_INT_03_Calendar_056-056
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_03_CALENDAR.WAV
# sent_timecode = 91765, 92392
# text = yâwwàː //
# text_ortho = yâwwàː //
# text_en = That's it!
1 yâwwàː yâwwàː INTJ _ _ 0 root _ AlignBegin=91765|AlignEnd=92079|Gloss=OK
2 // // PUNCT _ _ 1 punct _ AlignBegin=92079|AlignEnd=92392|Gloss=PUNCT
# sent_id = SAY_BC_INT_03_Calendar_057-060
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_03_CALENDAR.WAV
# sent_timecode = 92392, 97740
# text = kàmán yàːʃí mə́n Maláːri máː < lə̌pm Zaːr máː < tá tûːr gyáː ɗûː //= tá tûːr gyáː náɣat //
# text_ortho = kàmán yàːʃí mə́n malâːri máː < lə̌pm Zaːr máː < tá tûːr gyáː ɗûː //= tá tûːr gyáː náɣat //
# text_en = Like them, those people of Malar... at the Zaar festival, they would brew beer, they would cook food.
1 kàmán kàmán ADP _ _ 11 discourse _ AlignBegin=92392|AlignEnd=93065|Gloss=like
2 yàːʃí yàːʃí PRON _ Number=Sing|Person=3|PronType=Prs 11 dislocated@subj _ AlignBegin=93538|AlignEnd=93856|Gloss=3Plur.IDP
3 mə́n múr NOUN _ Number=Plur 2 conj:appos _ AlignBegin=93856|AlignEnd=94174|Gloss=people
4 Maláːri Malâːr PROPN _ Definite=Ind 3 compound _ AlignBegin=94174|AlignEnd=94492|Gloss=Malar-Ind
5 máː máː PART _ _ 3 mod _ AlignBegin=94492|AlignEnd=94810|Gloss=also
6 < < PUNCT _ _ 2 punct _ AlignBegin=94810|AlignEnd=95128|Gloss=PUNCT
7 lə̌pm lə̌pm NOUN _ _ 11 mod _ AlignBegin=95128|AlignEnd=95316|Gloss=festival
8 Zaːr Zaːr PROPN _ _ 7 mod _ AlignBegin=95316|AlignEnd=95504|Gloss=Zaar
9 máː máː PART _ _ 7 mod _ AlignBegin=95504|AlignEnd=95692|Gloss=also
10 < < PUNCT _ _ 7 punct _ AlignBegin=95692|AlignEnd=95880|Gloss=PUNCT
11 tá a AUX _ Number=Plur|Person=3|Tense=Fut 0 root _ AlignBegin=96280|AlignEnd=96426|Gloss=3Plur.Fut
12 tûːr tuːr VERB _ _ 11 comp:aux _ AlignBegin=96426|AlignEnd=96572|Gloss=cook
13 gyáː gyáː DET _ Number=Plur 14 det _ AlignBegin=96572|AlignEnd=96718|Gloss=Plur
14 ɗûː ɗû VERB _ _ 12 comp:obj _ AlignBegin=96718|AlignEnd=96864|Gloss=beer
15 //= //= PUNCT _ _ 16 punct _ AlignBegin=96864|AlignEnd=97010|Gloss=PUNCT
16 tá a AUX _ Number=Plur|Person=3|Tense=Fut 11 conj:svc _ AlignBegin=97010|AlignEnd=97156|Gloss=3Plur.Fut
17 tûːr tuːr VERB _ _ 16 comp:aux _ AlignBegin=97156|AlignEnd=97302|Gloss=cook
18 gyáː gyáː DET _ Number=Plur 19 det _ AlignBegin=97302|AlignEnd=97448|Gloss=Plur
19 náɣat náɣat NOUN _ _ 17 comp:obj _ AlignBegin=97448|AlignEnd=97594|Gloss=food
20 // // PUNCT _ _ 11 punct _ AlignBegin=97594|AlignEnd=97740|Gloss=PUNCT
# sent_id = SAY_BC_INT_03_Calendar_061-062
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_03_CALENDAR.WAV
# sent_timecode = 98320, 102547
# text = tôː myàːní máː < ʧǎː ndâ gwàːsə̀ŋə́y < tôː má sômʃíɣáy ɓét ʧík dùmín yàːrês yi vìː nàmbóŋ ɗangəní //
# text_ortho = tôː myàːní máː < ʧǎː ndâ gwàːsə̀ŋə́y < tôː má sômʃíɣáy ɓét ʧík dùmín yàːrês yi vìː nàmbóŋ ɗangəní //
# text_en = Well, we too, if they start their [festival] we would help them like this because we have the same language now.
1 tôː tôː PART _ _ 10 discourse _ AlignBegin=98320|AlignEnd=98476|Gloss=DM
2 myàːní myàːní PRON _ Number=Sing|Person=1|PronType=Prs 10 dislocated@subj _ AlignBegin=98476|AlignEnd=98632|Gloss=1Plur.IDP
3 máː máː PART _ _ 2 discourse _ AlignBegin=98632|AlignEnd=98788|Gloss=also
4 < < PUNCT _ _ 2 punct _ AlignBegin=98788|AlignEnd=98944|Gloss=PUNCT
5 ʧǎː yáː AUX _ _ 10 mod _ AlignBegin=98944|AlignEnd=99100|Gloss=3Plur.Cnd
6 ndâ nda VERB _ _ 5 comp:aux _ AlignBegin=99100|AlignEnd=99256|Gloss=start
7 gwàːsə̀ŋə́y gwàːsə̀ŋ PRON _ Case=Gen|Number=Plur|Person=3|PronType=Prs 6 comp:obj _ AlignBegin=99256|AlignEnd=99412|Gloss=3Plur.Gen
8 < < PUNCT _ _ 5 punct _ AlignBegin=99412|AlignEnd=99568|Gloss=PUNCT
9 tôː tôː PART _ _ 10 discourse _ AlignBegin=99568|AlignEnd=99724|Gloss=DM
10 má a AUX _ Number=Plur|Person=1|Tense=Fut 0 root _ AlignBegin=99724|AlignEnd=99880|Gloss=1Plur.Fut
11-13 sômʃíɣáy _ _ _ _ _ _ _ _
11 sôm som VERB _ _ 10 comp:aux _ AlignBegin=99880|AlignEnd=99958|Gloss=help
12 =ʃí =ʃí PRON _ Case=Acc|Number=Plur|Person=3|PronType=Prs 11 comp:obj _ AlignBegin=99958|AlignEnd=100036|Gloss=3Plur.Obj
13 ɣáy káy PRON _ Person=3|PronType=Prs 11 comp:obl@expl _ AlignBegin=100036|AlignEnd=100192|Gloss=ANAPH
14 ɓét ɓét ADV _ _ 11 mod _ AlignBegin=100192|AlignEnd=100348|Gloss=all
15 ʧík ʧík ADV _ _ 11 mod _ AlignBegin=100348|AlignEnd=100504|Gloss=thus
16 dùmín dùmín SCONJ _ _ 11 mod _ AlignBegin=100504|AlignEnd=100660|Gloss=because
17 yàːrês yàːre NOUN _ _ 18 subj _ AlignBegin=101160|AlignEnd=101391|Gloss=language
18 yi yi VERB _ _ 16 comp:obj _ AlignBegin=101391|AlignEnd=101622|Gloss=be
19 vìː vìː NOUN _ _ 18 comp:pred _ AlignBegin=101622|AlignEnd=101853|Gloss=mouth
20 nàmbóŋ nàmbóŋ NUM _ _ 19 mod:num _ AlignBegin=101853|AlignEnd=102084|Gloss=one
21 ɗangəní ɗangəní ADV _ _ 18 mod _ AlignBegin=102084|AlignEnd=102315|Gloss=now
22 // // PUNCT _ _ 10 punct _ AlignBegin=102315|AlignEnd=102547|Gloss=PUNCT
# sent_id = SAY_BC_INT_03_Calendar_063-064
# speaker_id = SP2
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_03_CALENDAR.WAV
# sent_timecode = 102296, 106720
# text = tôː dèk kə̀ fíɣə̂n lə̌pm Zaːr < ka vərəm fasárawòsàː ɗan kə́ ʧâː ɗan kyǎː fítə !//
# text_ortho = tòː dèk kə̀ fíɣə̂n lə̌pm Zaːr < ka vərəm fasárawòsàː ɗaŋ kə́ ʧâː ɗaŋ kyǎː fítə //
# text_en = Well the reason for doing the Zaar festival, explain the reason why you do it!
1 tôː tôː PART _ _ 8 discourse _ AlignBegin=102296|AlignEnd=102502|Gloss=DM
2 dèk dèy NOUN _ _ 8 dislocated@top _ AlignBegin=102502|AlignEnd=102605|Gloss=reason
3 kə̀ kə́ ADP _ _ 2 mod _ AlignBegin=102708|AlignEnd=102914|Gloss=of
4 fíɣə̂n fi VERB _ ExtPos=NOUN|VerbForm=Vnoun 3 comp:obj _ AlignBegin=102914|AlignEnd=103120|Gloss=do-Vnoun
5 lə̌pm lə̌pm NOUN _ Definite=Cons 4 comp:obj _ AlignBegin=103120|AlignEnd=103326|Gloss=festival-CONS
6 Zaːr Zaːr PROPN _ _ 5 mod _ AlignBegin=103326|AlignEnd=103532|Gloss=Zaar
7 < < PUNCT _ _ 2 punct _ AlignBegin=103532|AlignEnd=103740|Gloss=PUNCT
8 ka a AUX _ Number=Sing|Person=2|Tense=Fut 0 root _ AlignBegin=103860|AlignEnd=104120|Gloss=2Sing.Fut
9-10 vərəm _ _ _ _ _ _ _ _
9 vər vər VERB _ _ 8 comp:aux _ AlignBegin=104120|AlignEnd=104250|Gloss=give
10 =mə =mə PRON _ Case=Acc|Number=Sing|Person=1|PronType=Prs 9 comp:obj@R _ AlignBegin=104250|AlignEnd=104380|Gloss=1Sing.Obj
11-13 fasárawòsàː _ _ _ _ _ _ _ _
11 fasára fasára NOUN _ _ 9 comp:obj@T _ AlignBegin=104380|AlignEnd=104510|Gloss=reason|Lang=ha
12 =wôs =wos PRON _ Case=Gen|Number=Sing|Person=3|PronType=Prs 11 mod@poss _ AlignBegin=104510|AlignEnd=104640|Gloss=3Sing.Gen
13 a: a: PART _ _ 8 mod _ AlignBegin=104640|AlignEnd=104900|Gloss=VRT|PartType=Int
14 ɗan ɗan SCONJ _ _ 11 mod@relcl _ AlignBegin=104900|AlignEnd=105160|Gloss=REL
15 kə́ á AUX _ Aspect=Aor|Number=Sing|Person=2 14 comp:obj _ AlignBegin=105160|AlignEnd=105420|Gloss=2Plur.Aor
16 ʧâː ʧaː VERB _ _ 15 comp:aux _ AlignBegin=105420|AlignEnd=105680|Gloss=put
17 ɗan ɗan SCONJ _ _ 16 mod _ AlignBegin=105680|AlignEnd=105940|Gloss=as
18 kyǎː yáː AUX _ Aspect=Imp|Number=Plur|Person=1 17 comp:obj _ AlignBegin=105940|AlignEnd=106200|Gloss=2Plur.Imp
19-20 fítə _ _ _ _ _ _ _ _
19 fî fi VERB _ _ 18 comp:aux _ AlignBegin=106200|AlignEnd=106330|Gloss=do
20 =tə =tə PRON _ Case=Acc|Number=Sing|Person=3|PronType=Prs 19 comp:obj _ AlignBegin=106330|AlignEnd=106460|Gloss=3Sing.Obj
21 !// !// PUNCT _ _ 8 punct _ AlignBegin=106460|AlignEnd=106720|Gloss=PUNCT
# sent_id = SAY_BC_INT_03_Calendar_065-068
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_03_CALENDAR.WAV
# sent_timecode = 107560, 114220
# text = èː tôː lə̌pm Zaːr yâːn ʧi tu á vònì < ə́ŋ ká fítə̀ < nə́ pólɣə́nì ɣəndí //
# text_ortho = èː tôː lə̌pm Zaːr yâːn ʧi tu á vònì < ə́ŋ ká fítə̀ < nə́ pólɣə́nì ɣəndí //
# text_en = Yes, well the Zaar festival if you do it every year, it's because you're happy.
1 èː èː INTJ _ _ 6 discourse _ AlignBegin=107560|AlignEnd=107800|Gloss=HESIT
2 tôː tôː PART _ _ 6 discourse _ AlignBegin=107800|AlignEnd=108040|Gloss=DM
3 lə̌pm lə̌pm NOUN _ Definite=Cons 6 dislocated@top _ AlignBegin=108040|AlignEnd=108280|Gloss=festival-CONS
4 Zaːr Zaːr NOUN _ _ 3 compound _ AlignBegin=108280|AlignEnd=108520|Gloss=Zaar
5 yâːn yâːn SCONJ _ _ 6 subj _ AlignBegin=108520|AlignEnd=108760|Gloss=if
6 ʧi yi AUX _ _ 0 root _ AlignEnd=109000|Gloss=3Sing.be|wordform=yi
7 tu tu SCONJ _ _ 6 unk _ AlignBegin=109000|AlignEnd=109240|Gloss=COMP
8 á ká ADP _ _ 18 mod _ AlignBegin=110040|AlignEnd=110193|Gloss=at
9 vònì vòn NOUN _ Definite=Ind 8 comp:obj _ AlignBegin=110193|AlignEnd=110346|Gloss=year-Ind
10 < < PUNCT _ _ 8 punct _ AlignBegin=110346|AlignEnd=110500|Gloss=PUNCT
11 ə́ŋ ín SCONJ _ _ 18 mod _ AlignBegin=111640|AlignEnd=111790|Gloss=if
12 ká a AUX _ Number=Sing|Person=2|Tense=Fut 11 comp:obj _ AlignBegin=111790|AlignEnd=111940|Gloss=2Plur.Fut
13-14 fítə̀ _ _ _ _ _ _ _ _
13 fí fi VERB _ _ 12 comp:aux _ AlignBegin=111940|AlignEnd=112015|Gloss=do
14 =tə =tə PRON _ Case=Acc|Number=Sing|Person=3|PronType=Prs 13 comp:obj _ AlignBegin=112015|AlignEnd=112090|Gloss=3Sing.Obj
15 < < PUNCT _ _ 11 punct _ AlignBegin=112090|AlignEnd=112240|Gloss=PUNCT
16 nə́ nə́ ADP _ _ 18 comp:pred _ AlignBegin=113240|AlignEnd=113485|Gloss=for
17 pólɣə́nì pol VERB _ ExtPos=NOUN|VerbForm=Vnoun 16 comp:obj _ AlignBegin=113485|AlignEnd=113730|Gloss=please-Vnoun
18 ɣəndí kəndí PART _ _ 7 comp:obj _ AlignBegin=113730|AlignEnd=113975|Gloss=be
19 // // PUNCT _ _ 6 punct _ AlignBegin=113975|AlignEnd=114220|Gloss=PUNCT
# sent_id = SAY_BC_INT_03_Calendar_069-072
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_03_CALENDAR.WAV
# sent_timecode = 114580, 121400
# text = dùmín < Tʃokŋ á ɗyǎːkí́ hár ɣə́ mân á ləpí gíː < tôː ká fî lə̌pm Zaːr //
# text_ortho = dùmín < Tʃokŋ á ɗyǎːkí́ hár ɣə́ mân á ləpí gíː < tôː ká fî lə̌pm Zaːr //
# text_en = Because God has enabled you to reach that month, well, you would do the Zaar festival.
1 dùmín dùmín ADV _ _ 15 mod _ AlignBegin=114580|AlignEnd=115070|Gloss=because
2 < < PUNCT _ _ 4 punct _ AlignBegin=115070|AlignEnd=115560|Gloss=PUNCT
3 Tʃokŋ Tʃokŋ PROPN _ _ 4 subj _ AlignBegin=116560|AlignEnd=116933|Gloss=God
4 á á AUX _ Aspect=Aor|Number=Sing|Person=3 1 comp:obj _ AlignBegin=116933|AlignEnd=117306|Gloss=3Sing.Aor
5-6 ɗyǎːkí́ _ _ _ _ _ _ _ _
5 ɗyǎː ɗyáː VERB _ _ 4 comp:aux _ AlignBegin=117306|AlignEnd=117493|Gloss=be_able
6 =kí =kí PRON _ Case=Acc|Number=Sing|Person=2|PronType=Prs 5 comp:obj _ AlignBegin=117493|AlignEnd=117680|Gloss=2Plur.Obj
7 hár hár ADP _ _ 5 comp:obl _ AlignBegin=118560|AlignEnd=118720|Gloss=up_to
8 ɣə́ á AUX _ Aspect=Aor|Number=Sing|Person=2 7 comp:obj _ AlignBegin=118720|AlignEnd=118880|Gloss=2Plur.Aor
9 mân máni VERB _ _ 8 comp:aux _ AlignBegin=118880|AlignEnd=119040|Gloss=come
10 á ká ADP _ _ 9 comp:obl _ AlignBegin=119040|AlignEnd=119200|Gloss=at
11 ləpí lə̌pm NOUN _ Definite=Ind 10 comp:obj _ AlignBegin=119200|AlignEnd=119360|Gloss=festival-Ind
12 gíː gíː PRON _ Deixis=Dist|PronType=Dem 11 mod _ AlignBegin=119360|AlignEnd=119520|Gloss=Remt
13 < < PUNCT _ _ 1 punct _ AlignBegin=119520|AlignEnd=119680|Gloss=PUNCT
14 tôː tôː PART _ _ 15 discourse _ AlignBegin=120060|AlignEnd=120283|Gloss=DM
15 ká a AUX _ Number=Sing|Person=2|Tense=Fut 0 root _ AlignBegin=120283|AlignEnd=120506|Gloss=2Plur.Fut
16 fî fi VERB _ _ 15 comp:aux _ AlignBegin=120506|AlignEnd=120729|Gloss=do
17 lə̌pm lə̌pm NOUN _ Definite=Cons 16 comp:obj _ AlignBegin=120729|AlignEnd=120952|Gloss=festival-CONS
18 Zaːr Zaːr PROPN _ _ 17 mod _ AlignBegin=120952|AlignEnd=121175|Gloss=Zaar
19 // // PUNCT _ _ 15 punct _ AlignBegin=121175|AlignEnd=121400|Gloss=PUNCT
# sent_id = SAY_BC_INT_03_Calendar_073-076
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_03_CALENDAR.WAV
# sent_timecode = 122400, 126220
# text = dùmín èː àː yìsə́ŋə́y tu Tʃokn á lə̌ːrkíɗi á lə̂p || á l~ || á ləpí gíː //
# text_ortho = dùmín èː àː yìsə́ŋə́y tu Tʃokn á lə̌ːrkíɗi á lə̂p || á l~ || á ləpí gíː //
# text_en = So that er... you should know that God has taken you to the month... to... to that festival.
1 dùmín dùmín ADV _ _ 3 discourse _ AlignBegin=122400|AlignEnd=123032|Gloss=because
2 èː èː INTJ _ _ 3 discourse _ AlignBegin=123032|AlignEnd=123665|Gloss=HESIT
3 àː àː AUX _ Aspect=Perf|Number=Sing|Person=3 0 root _ AlignBegin=123665|AlignEnd=123865|Gloss=2Plur.Sub
4 yìsə́ŋ yìsə́ŋ VERB _ _ 3 comp:aux _ AlignBegin=123865|AlignEnd=124065|Gloss=know|wordform=yìsə́ŋə́y
5 =íː =íː PART _ _ 4 mod/m _ Gloss=Res|Result=Yes|wordform=-íː
6 tu tu SCONJ _ _ 4 comp:obj _ AlignBegin=124065|AlignEnd=124265|Gloss=COMP
7 Tʃokn Tʃokn PROPN _ _ 8 subj _ AlignBegin=124265|AlignEnd=124465|Gloss=God
8 á á AUX _ Aspect=Aor|Number=Sing|Person=3 6 comp:obj _ AlignBegin=124465|AlignEnd=124665|Gloss=3Sing.Aor
9-11 lə̌ːrkíɗi _ _ _ _ _ _ _ _
9 lə̌ːr lə́ːr VERB _ _ 8 comp:aux _ AlignBegin=124665|AlignEnd=124732|Gloss=bring
10 =kí =kí PRON _ Case=Acc|Number=Sing|Person=2|PronType=Prs 9 comp:obj@T _ AlignBegin=124732|AlignEnd=124799|Gloss=2Plur.Obj
11 ɗi ɗi PART _ _ 9 compound:prt _ AlignBegin=124799|AlignEnd=124865|Gloss=Ctp|wordform==ɗi
12 á ká ADP _ _ 9 comp:obl _ AlignBegin=124865|AlignEnd=125065|Gloss=at
13 lə̂p lə̂p NOUN _ _ 12 comp:obj _ AlignBegin=125065|AlignEnd=125264|Gloss=place
14 || || PUNCT _ _ 15 punct _ AlignBegin=125264|AlignEnd=125264|Gloss=PUNCT
15 á ká ADP _ _ 12 conj:dicto _ AlignBegin=125264|AlignEnd=125463|Gloss=at
16 l~ lə̂p NOUN _ _ 15 comp:obj _ AlignBegin=125463|AlignEnd=125662|Gloss=place
17 || || PUNCT _ _ 18 punct _ AlignBegin=125662|AlignEnd=125662|Gloss=PUNCT
18 á ká ADP _ _ 15 conj:dicto _ AlignBegin=125662|AlignEnd=125802|Gloss=at
19 ləpí lə̌pm NOUN _ Definite=Ind 18 comp:obj _ AlignBegin=125802|AlignEnd=125942|Gloss=festival-Ind
20 gíː gíː PRON _ Deixis=Dist|PronType=Dem 19 mod _ AlignBegin=125942|AlignEnd=126082|Gloss=Remt
21 // // PUNCT _ _ 3 punct _ AlignBegin=126082|AlignEnd=126220|Gloss=PUNCT
# sent_id = SAY_BC_INT_03_Calendar_077-077
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_03_CALENDAR.WAV
# sent_timecode = 127520, 127904
# text = tôː //
# text_ortho = tôː //
# text_en = Well.
1 tôː tôː PART _ _ 0 root _ AlignBegin=127520|AlignEnd=127712|Gloss=DM
2 // // PUNCT _ _ 1 punct _ AlignBegin=127712|AlignEnd=127904|Gloss=PUNCT
# sent_id = SAY_BC_INT_03_Calendar_078-078
# speaker_id = SP2
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_03_CALENDAR.WAV
# sent_timecode = 127520, 129843
# text = èː tôː kóː ləpí gyòː máː Tʃokn á lə̌ːrkíɗi áy //
# text_ortho = èː tôː kóː ləpí gyòː máː Tʃokn á lə̌ːrkíɗi áy //
# text_en = Yes, every festival, God has kept you alive.
1 èː èː INTJ _ _ 7 discourse _ AlignBegin=127520|AlignEnd=127731|Gloss=HESIT
2 tôː tôː PART _ _ 7 discourse _ AlignBegin=127731|AlignEnd=127942|Gloss=DM
3 kóː kóː DET _ _ 7 mod _ AlignBegin=127942|AlignEnd=128153|Gloss=UNIV
4 ləpí lə̌pm NOUN _ Definite=Ind 3 mod _ AlignBegin=128153|AlignEnd=128364|Gloss=festival-Ind
5 gyòː gyòː DET _ Number=Plur 4 det _ AlignBegin=128364|AlignEnd=128575|Gloss=UNIV
6 máː máː PART _ _ 3 mod _ AlignBegin=128575|AlignEnd=128786|Gloss=also
7 Tʃokn Tʃokn PROPN _ _ 0 root _ AlignBegin=128786|AlignEnd=128997|Gloss=God
8 á á AUX _ Aspect=Aor|Number=Sing|Person=3 7 comp:obj _ AlignBegin=128997|AlignEnd=129208|Gloss=3Sing.Aor
9-11 lə̌ːrkíɗi _ _ _ _ _ _ _ _
9 lə̌ːr lə́ːr VERB _ _ 8 comp:aux _ AlignBegin=129208|AlignEnd=129278|Gloss=bring
10 =kí =kí PRON _ Case=Acc|Number=Sing|Person=2|PronType=Prs 9 comp:obj _ AlignBegin=129278|AlignEnd=129348|Gloss=2Plur.Obj
11 ɗi ɗi PART _ _ 9 compound:prt _ AlignBegin=129348|AlignEnd=129419|Gloss=Ctp|wordform==ɗi
12 áy áy INTJ _ _ 7 discourse _ AlignBegin=129419|AlignEnd=129630|Gloss=indeed
13 // // PUNCT _ _ 7 punct _ AlignBegin=129630|AlignEnd=129843|Gloss=PUNCT
# sent_id = SAY_BC_INT_03_Calendar_079-079
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_03_CALENDAR.WAV
# sent_timecode = 129843, 130239
# text = èː //
# text_ortho = èː //
# text_en = Yes.
1 èː èː INTJ _ _ 0 root _ AlignBegin=129843|AlignEnd=130041|Gloss=yes
2 // // PUNCT _ _ 1 punct _ AlignBegin=130041|AlignEnd=130239|Gloss=PUNCT
# sent_id = SAY_BC_INT_03_Calendar_080-080
# speaker_id = SP2
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_03_CALENDAR.WAV
# sent_timecode = 130239, 131580
# text = àmá ɗa gìːri dà &//
# text_ortho = àmá ɗa gìːri dà &//
# text_en = But really, would...
1 àmá àmá CCONJ _ _ 4 discourse _ AlignBegin=130239|AlignEnd=130507|Gloss=but
2 ɗa ɗa ADP _ _ 4 mod _ AlignBegin=130507|AlignEnd=130775|Gloss=at
3 gìːri gìːri ADV _ _ 2 comp:obj _ AlignBegin=130775|AlignEnd=131043|Gloss=properly
4 dà dà ADP _ _ 0 root@scrap _ AlignBegin=131043|AlignEnd=131311|Gloss=there_is|Lang=ha
5 &// &// PUNCT _ _ 4 punct _ AlignBegin=131311|AlignEnd=131580|Gloss=PUNCT
# sent_id = SAY_BC_INT_03_Calendar_081-084
# speaker_id = SP2
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_03_CALENDAR.WAV
# sent_timecode = 132320, 137120
# text = ŋaː dèːwòs ʧíː yi ɗa tu dèk ngəʃín ɗan myǎːyi zaktíː < yâːn yi ɣənín //= yâːn yi ɣənín ?//
# text_ortho = ŋaː dèːwòs ʧíː yi ɗa tu dèk ngəʃín ɗan myǎːyi zaktíː < yâːn yi ɣənín //= yâːn yi ɣənín //
# text_en = Would there be any reason like the reason why we used to celebrate is such and such?
1 ŋaː ŋaː ADJ _ _ 2 mod _ AlignBegin=132320|AlignEnd=132543|Gloss=small
2-3 dèːwòs _ _ _ _ _ _ _ _
2 dèː dèː NOUN _ _ 4 subj _ AlignBegin=132543|AlignEnd=132655|Gloss=reason
3 =wòs =wos PRON _ Case=Gen|Number=Sing|Person=3|PronType=Prs 2 mod@poss _ AlignBegin=132655|AlignEnd=132766|Gloss=3Sing.Gen
4 ʧíː yí AUX _ Mood=Irr 0 root _ Mood=Sub|Number=Sing|Person=3
5 yi yi VERB _ _ 4 comp:aux _ AlignBegin=132989|AlignEnd=133212|Gloss=be
6 ɗa ɗa SCONJ _ _ 5 compound:prt _ AlignBegin=133212|AlignEnd=133435|Gloss=at
7 tu tu SCONJ _ _ 5 comp:pred _ AlignBegin=133435|AlignEnd=133660|Gloss=COMP
8-9 dèk _ _ _ _ _ _ _ _
8 dèy dèy NOUN _ _ 19 dislocated@subj _ AlignBegin=134120|AlignEnd=134254|Gloss=reason
9 kə́ kə́ ADP _ _ 8 mod _ AlignBegin=134254|AlignEnd=134387|Gloss=of
10 ngəʃí ngə́tn NOUN _ _ 9 comp:obj _ AlignBegin=134387|AlignEnd=134654|Gloss=thing|wordform=ngəʃín
11 -ə́n -ə́n DET _ Deixis=Prox 10 det/m _ Gloss=-Prox
12 ɗan ɗan SCONJ _ _ 10 mod@relcl _ AlignBegin=134654|AlignEnd=134921|Gloss=REL
13 myǎːyi yáː-yiː AUX _ Aspect=ImpIter|Number=Plur|Person=1 12 comp:obj _ AlignBegin=134921|AlignEnd=135188|Gloss=1Plur.Imp.Iter
14-16 zaktíː _ _ _ _ _ _ _ _
14 zak zak VERB _ _ 13 comp:aux _ AlignBegin=135188|AlignEnd=135455|Gloss=celebrate|wordform=*zak-íː
15 =tə =tə PRON _ Case=Acc|Number=Sing|Person=3|PronType=Prs 14 comp:obj _ AlignBegin=135277|AlignEnd=135366|Gloss=3Sing.Obj
16 =íː =íː PART _ _ 14 mod/m _ Gloss=Res|Result=Yes|wordform=-íː
17 < < PUNCT _ _ 8 punct _ AlignBegin=135455|AlignEnd=135720|Gloss=PUNCT
18 yâːn yáːni PRON _ Number=Sing|Person=3|PronType=Prs 19 subj _ AlignBegin=135860|AlignEnd=136022|Gloss=3Sing.IDP
19 yi yi VERB _ _ 7 comp:obj _ AlignBegin=136022|AlignEnd=136184|Gloss=be
20 kəní kəní PART _ _ 19 comp:pred _ AlignBegin=136184|AlignEnd=136346|Gloss=be|wordform=ɣənín
21 -ə́n -ə́n DET _ Deixis=Prox 20 det/m _ Gloss=-Prox
22 //= //= PUNCT _ _ 24 punct _ AlignBegin=136346|AlignEnd=136508|Gloss=PUNCT
23 yâːn yáːni PRON _ Number=Sing|Person=3|PronType=Prs 24 subj _ AlignBegin=136508|AlignEnd=136661|Gloss=3Sing.IDP
24 yi yi VERB _ _ 19 conj:svc _ AlignBegin=136661|AlignEnd=136814|Gloss=be
25 kəní kəní PART _ _ 24 comp:pred _ AlignBegin=136814|AlignEnd=136967|Gloss=be|wordform=ɣənín
26 -ə́n -ə́n DET _ Deixis=Prox 25 det/m _ Gloss=-Prox
27 ?// ?// PUNCT _ _ 4 punct _ AlignBegin=136967|AlignEnd=137120|Gloss=PUNCT
# sent_id = SAY_BC_INT_03_Calendar_085-086
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_03_CALENDAR.WAV
# sent_timecode = 137340, 140080
# text = yâːn dèːwòs ɓét kəndí tu lə̌pm Zaːroː //
# text_ortho = yâːn dèːwòs < ɓét kəndí tu lə̌pm Zaːroː //
# text_en = Its reason, all there is is the Zaar festival.
1 yâːn yáːni PRON _ Number=Sing|Person=3|PronType=Prs 5 dislocated@top _ AlignBegin=137340|AlignEnd=137758|Gloss=3Sing.IDP
2-3 dèːwòs _ _ _ _ _ _ _ _
2 dèy dèy NOUN _ _ 5 dislocated@top _ AlignBegin=137758|AlignEnd=137967|Gloss=reason
3 =wôs =wos PRON _ Case=Gen|Number=Sing|Person=3|PronType=Prs 2 mod@poss _ AlignBegin=137967|AlignEnd=138176|Gloss=3Sing.Gen
4 ɓét ɓét VERB _ _ 5 comp:pred _ AlignBegin=138595|AlignEnd=138807|Gloss=all
5 kəndí kəndí PART _ _ 0 root _ AlignBegin=138807|AlignEnd=139019|Gloss=be
6 tu tu SCONJ _ _ 7 discourse _ AlignBegin=139019|AlignEnd=139231|Gloss=COMP
7 lə̌pm lə̌pm NOUN _ Definite=Cons 5 comp:cleft _ AlignBegin=139231|AlignEnd=139443|Gloss=festival-CONS
8-9 Zaːroː _ _ _ _ _ _ _ _
8 Zaːr Zaːr NOUN _ _ 7 compound _ AlignBegin=139443|AlignEnd=139655|Gloss=Zaar
9 oː oː PART _ _ 5 mod _ AlignBegin=139655|AlignEnd=139867|Gloss=Emp|PartType=Emp
10 // // PUNCT _ _ 5 punct _ AlignBegin=139867|AlignEnd=140080|Gloss=PUNCT
# sent_id = SAY_BC_INT_03_Calendar_087-087
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_03_CALENDAR.WAV
# sent_timecode = 140620, 141500
# text = dèːwòs ɓét kəndí //
# text_ortho = dèːwòs ɓét kəndí //
# text_en = That's its only reason.
1-2 dèːwòs _ _ _ _ _ _ _ _
1 dèy dèy NOUN _ _ 4 dislocated@subj _ AlignBegin=140620|AlignEnd=140730|Gloss=reason
2 =wôs =wos PRON _ Case=Gen|Number=Sing|Person=3|PronType=Prs 1 mod@poss _ AlignBegin=140730|AlignEnd=140840|Gloss=3Sing.Gen
3 ɓét ɓét PART _ _ 4 comp:pred _ AlignBegin=140840|AlignEnd=141060|Gloss=all
4 kəndí kən PART _ _ 0 root _ AlignBegin=141060|AlignEnd=141280|Gloss=be
5 // // PUNCT _ _ 4 punct _ AlignBegin=141280|AlignEnd=141500|Gloss=PUNCT
# sent_id = SAY_BC_INT_03_Calendar_088-093
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_03_CALENDAR.WAV
# sent_timecode = 142040, 149800
# text = lə̌pm Zaːr < m̀ː gistə́ < myàːyí fitə gistə́ |a deːdéː á wátan || dǎː máː tôː wátan tára kóː góːma //
# text_ortho = lə̌pm Zaːr < m̀ː gistə́ < myàːyí fitə gistə́ || deːdéː á wátan || dǎː máː tôː wátan tára kóː góːma //
# text_en = The Zaar festival, er... in the dry season, we did it in the dry season exacly in < the month of ...> Well actually in September or October .
1 lə̌pm lə̌pm NOUN _ Definite=Cons 7 mod _ AlignBegin=142040|AlignEnd=142287|Gloss=festival-CONS
2 Zaːr Zaːr PROPN _ _ 1 compound _ AlignBegin=142287|AlignEnd=142534|Gloss=Zaar
3 < < PUNCT _ _ 1 punct _ AlignBegin=142534|AlignEnd=142781|Gloss=PUNCT
4 m̀ː m̀ː INTJ _ _ 7 discourse _ AlignBegin=142781|AlignEnd=143579|Gloss=HESIT
5 gistə́ gistə́ NOUN _ _ 7 mod _ AlignBegin=143579|AlignEnd=143819|Gloss=harvest_season
6 < < PUNCT _ _ 5 punct _ AlignBegin=143819|AlignEnd=144060|Gloss=PUNCT
7 myàːyí yáː-yiː AUX _ Number=Plur|Person=1 0 root _ AlignBegin=144960|AlignEnd=145180|Gloss=1Plur.Imp.Iter
8-9 fitə _ _ _ _ _ _ _ _
8 fi fi VERB _ _ 7 comp:aux _ AlignBegin=145180|AlignEnd=145290|Gloss=do
9 =tə =tə PRON _ Case=Acc|Number=Sing|Person=3|PronType=Prs 8 comp:obj _ AlignBegin=145290|AlignEnd=145400|Gloss=3Sing.Obj
10 gistə́ gistə́ NOUN _ _ 8 mod _ AlignBegin=145400|AlignEnd=145620|Gloss=harvest_season
11 |a |a PUNCT _ _ 13 punct _ AlignBegin=145620|AlignEnd=145840|Gloss=PUNCT
12 deːdéː deːdéː ADV _ _ 13 mod _ AlignBegin=146200|AlignEnd=146525|Gloss=exactly|Lang=ha
13 á ká ADP _ _ 10 conj:appos _ AlignBegin=146525|AlignEnd=146850|Gloss=at
14 wátan wátan DET _ Definite=Spec 13 comp:obj _ AlignBegin=146850|AlignEnd=147175|Gloss=month_of|Lang=ha
15 || || PUNCT _ _ 19 punct _ AlignBegin=147175|AlignEnd=147500|Gloss=PUNCT|Lang=ha
16 dǎː dǎː ADV _ ExtPos=ADV|Foreign=Yes 19 mod _ AlignBegin=147760|AlignEnd=148015|Gloss=formerly|Idiom=Yes|Lang=ha
17 máː máː PART _ Foreign=Yes 16 unk _ AlignBegin=148015|AlignEnd=148270|Gloss=just|InIdiom=Yes|Lang=ha
18 tôː tôː PART _ _ 19 discourse _ AlignBegin=148270|AlignEnd=148525|Gloss=well|Lang=ha
19 wátan wátan NOUN _ _ 14 conj:dicto _ AlignBegin=148525|AlignEnd=148780|Gloss=month|Lang=ha
20 tára tára NUM _ _ 19 mod:num _ AlignBegin=148780|AlignEnd=149035|Gloss=nine|Lang=ha
21 kóː kóː CCONJ _ _ 22 cc _ AlignBegin=149035|AlignEnd=149290|Gloss=COORD|Lang=ha
22 góːma góːma NUM _ _ 20 conj:coord _ AlignBegin=149290|AlignEnd=149545|Gloss=ten|Lang=ha
23 // // PUNCT _ _ 7 punct _ AlignBegin=149545|AlignEnd=149800|Gloss=PUNCT
# sent_id = SAY_BC_INT_03_Calendar_094-096
# speaker_id = SP2
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_03_CALENDAR.WAV
# sent_timecode = 150260, 155860
# text = tôː àkwéy gyáː Nyamri tsə́n < ʧàːyí zak ləpí gwàːsə̀ŋ tu lə̌pm geɗí //
# text_ortho = tôː àkwéy gyáː ɲamri tsə́n < ʧàːyí zak ləpí gwàːsə̀ŋ tu lə̌pm geɗí //
# text_en = Well there are some Igbos like this who used to celebrate their festival named the Yam festival.
1 tôː tôː PART _ _ 7 discourse _ AlignBegin=150260|AlignEnd=150560|Gloss=DM
2 àkwéy àkwéy PART _ _ 7 parataxis@top _ AlignBegin=150560|AlignEnd=150860|Gloss=there_is|Lang=ha
3 gyáː gyáː DET _ Number=Plur 4 det _ AlignBegin=150860|AlignEnd=151160|Gloss=Plur
4 Nyamri Nyamri PROPN _ _ 2 comp:pred _ AlignBegin=151160|AlignEnd=151460|Gloss=Igbo
5 tsə́n tsəní ADV _ _ 4 mod _ AlignBegin=151460|AlignEnd=151760|Gloss=like_this
6 < < PUNCT _ _ 2 punct _ AlignBegin=151760|AlignEnd=152060|Gloss=PUNCT
7 ʧàːyí yáː-yiː AUX _ Aspect=ImpIter|Number=Sing|Person=3 0 root _ AlignBegin=152380|AlignEnd=152756|Gloss=3Plur.Imp.Iter
8 zak zak VERB _ _ 7 comp:aux _ AlignBegin=152756|AlignEnd=153132|Gloss=celebrate
9 ləpí lə̌pm NOUN _ Definite=Ind 8 comp:obj _ AlignBegin=153132|AlignEnd=153508|Gloss=festival-Ind
10 gwàːsə̀ŋ gwàːsə̀ŋ PRON _ Case=Gen|Number=Plur|Person=3|PronType=Prs 9 mod@poss _ AlignBegin=153508|AlignEnd=153884|Gloss=3Plur.Gen
11 tu tu SCONJ _ _ 9 mod@relcl _ AlignBegin=153884|AlignEnd=154260|Gloss=EVID
12 lə̌pm lə̌pm NOUN _ Definite=Cons 11 comp:pred _ AlignBegin=155160|AlignEnd=155393|Gloss=festival-CONS
13 geɗí geɗí NOUN _ Number=Plur 12 mod _ AlignBegin=155393|AlignEnd=155626|Gloss=tuber
14 // // PUNCT _ _ 7 punct _ AlignBegin=155626|AlignEnd=155860|Gloss=PUNCT
# sent_id = SAY_BC_INT_03_Calendar_097-097
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_03_CALENDAR.WAV
# sent_timecode = 157500, 158580
# text = èː tôː gíː ɗaɣás //
# text_ortho = èː tôː gíː ɗaɣás //
# text_en = Yes, well, remains this one.
1 èː èː INTJ _ _ 4 discourse _ AlignBegin=157500|AlignEnd=157716|Gloss=HESIT
2 tôː tôː PART _ _ 4 discourse _ AlignBegin=157716|AlignEnd=157932|Gloss=DM
3 gíː gíː PRON _ Deixis=Dist|PronType=Dem 4 subj _ AlignBegin=157932|AlignEnd=158148|Gloss=Remt
4 ɗaɣás ɗaɣás VERB _ _ 0 root _ AlignBegin=158148|AlignEnd=158364|Gloss=be_unfinished
5 // // PUNCT _ _ 4 punct _ AlignBegin=158364|AlignEnd=158580|Gloss=PUNCT
# sent_id = SAY_BC_INT_03_Calendar_098-099
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_03_CALENDAR.WAV
# sent_timecode = 160380, 162740
# text = lə̌pm geɗí < gwàːsə̀ŋ ʧǎː gìː geɗí ɣəndí //
# text_ortho = lə̌pm geɗí < gwàːsə̀ŋ ʧǎː gìː geɗí ɣəndí //
# text_en = The yam festival, they do farm yam.
1 lə̌pm lə̌pm NOUN _ _ 5 subj _ AlignBegin=160380|AlignEnd=160640|Gloss=festival
2 geɗí geɗí NOUN _ Number=Plur 1 compound _ AlignBegin=160640|AlignEnd=160900|Gloss=tuber
3 < < PUNCT _ _ 1 punct _ AlignBegin=160900|AlignEnd=161160|Gloss=PUNCT
4 gwàːsə̀ŋ gwàːsə̀ŋ PRON _ _ 5 dislocated@top _ AlignBegin=161400|AlignEnd=161623|Gloss=3Plur.Gen
5 ʧǎː yáː AUX _ Aspect=Imp|Number=Plur|Person=3 0 root _ AlignBegin=161623|AlignEnd=161846|Gloss=3Plur.Imp
6 gìː giː VERB _ _ 5 comp:aux _ AlignBegin=161846|AlignEnd=162069|Gloss=plough
7 geɗí geɗí PRON _ _ 6 comp:obj _ AlignBegin=162069|AlignEnd=162292|Gloss=tuber
8 ɣəndí kəndí PART _ _ 5 mod _ AlignBegin=162292|AlignEnd=162515|Gloss=be
9 // // PUNCT _ _ 5 punct _ AlignBegin=162515|AlignEnd=162740|Gloss=PUNCT
# sent_id = SAY_BC_INT_03_Calendar_101-101
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_03_CALENDAR.WAV
# sent_timecode = 164426, 165000
# text = m̀ːhm̂ː //
# text_ortho = m̀ːhm̂ː //
# text_en = Mm...
1 m̀ːhm̂ː m̀ːhm̂ː INTJ _ _ 0 root _ AlignBegin=164426|AlignEnd=164713|Gloss=OK
2 // // PUNCT _ _ 1 punct _ AlignBegin=164713|AlignEnd=165000|Gloss=PUNCT
# sent_id = SAY_BC_INT_03_Calendar_100-102
# speaker_id = SP2
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_03_CALENDAR.WAV
# sent_timecode = 162860, 166720
# text = yâwwàː geɗí yáː ɲâŋə́y < tôː tə́ zàk lə̌pm gáy //
# text_ortho = yâwwàː geɗí yáː ɲâŋə́y < tôː tə́ zàk lə̌pm káy //
# text_en = That's right, when the yams are ripe well, they celebrated the festival with it.
1 yâwwàː yâwwàː INTJ _ _ 8 discourse _ AlignBegin=162860|AlignEnd=163173|Gloss=OK
2 geɗí geɗí NOUN _ Number=Plur 3 subj _ AlignBegin=163173|AlignEnd=163486|Gloss=tuber
3 yáː yáː AUX _ Mood=Cnd|Number=Sing|Person=3 8 mod _ AlignBegin=163486|AlignEnd=163799|Gloss=3Sing.Cnd
4 ɲáŋ ɲáŋ VERB _ _ 3 comp:aux _ AlignBegin=163799|AlignEnd=164112|Gloss=be_ripe|wordform=ɲâŋə́y
5 =íː =íː PART _ _ 4 mod/m _ Gloss=Res|Result=Yes|wordform=-íː
6 < < PUNCT _ _ 3 punct _ AlignBegin=164112|AlignEnd=164426|Gloss=PUNCT
7 tôː tôː PART _ _ 8 discourse _ AlignBegin=165700|AlignEnd=165870|Gloss=DM
8 tə́ á AUX _ Aspect=Aor|Number=Plur|Person=3 0 root _ AlignBegin=165870|AlignEnd=166040|Gloss=3Plur.Aor
9 zàk zak VERB _ _ 8 comp:aux _ AlignBegin=166040|AlignEnd=166210|Gloss=celebrate
10 lə̌pm lə̌pm NOUN _ _ 9 comp:obj _ AlignBegin=166210|AlignEnd=166380|Gloss=festival
11 gáy káy PRON _ Person=3|PronType=Prs 9 comp:obl@expl _ AlignBegin=166380|AlignEnd=166550|Gloss=ANAPH
12 // // PUNCT _ _ 8 punct _ AlignBegin=166550|AlignEnd=166720|Gloss=PUNCT
# sent_id = SAY_BC_INT_03_Calendar_103-103
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_03_CALENDAR.WAV
# sent_timecode = 166900, 167560
# text = tə́ zàk lə̌pm gáy //
# text_ortho = tə́ zàk lə̌pm gáy //
# text_en = they celebrate their festival with it.
1 tə́ á AUX _ _ 0 root _ AlignBegin=166900|AlignEnd=167032|Gloss=3Plur.Aor
2 zàk zak VERB _ _ 1 comp:aux _ AlignBegin=167032|AlignEnd=167164|Gloss=celebrate
3 lə̌pm lə̌pm NOUN _ _ 2 comp:obj _ AlignBegin=167164|AlignEnd=167296|Gloss=festival
4 gáy káy PRON _ Person=3|PronType=Prs 2 comp:obl@expl _ AlignBegin=167296|AlignEnd=167428|Gloss=ANAPH
5 // // PUNCT _ _ 1 punct _ AlignBegin=167428|AlignEnd=167560|Gloss=PUNCT
# sent_id = SAY_BC_INT_03_Calendar_104-104
# speaker_id = SP2
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_03_CALENDAR.WAV
# sent_timecode = 167820, 169360
# text = tôː gwàːn kúmá tu lə̌pm Zaːr //
# text_ortho = tôː gwàːn kúmá tu lə̌pm Zaːr //
# text_en = well, yours is called the Zaar festival.
1 tôː tôː PART _ _ 4 discourse _ AlignBegin=167820|AlignEnd=168040|Gloss=DM
2 gwàːn gwàːn PRON _ Number=Plur|Person=2 4 dislocated@top _ AlignBegin=168040|AlignEnd=168260|Gloss=2Plur.Gen
3 kúmá kúmá PART _ _ 2 discourse _ AlignBegin=168260|AlignEnd=168480|Gloss=too