-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSAY_BC_INT_04_Hunt.conllu
2412 lines (2289 loc) · 166 KB
/
SAY_BC_INT_04_Hunt.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_04_Hunt_001-002
# speaker_id = SP2
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_04_HUNT.WAV
# sent_timecode = 1060, 3504
# text = myǎː ʧêt tu kə̀tàyáː fî nǎːrwâːn wuriː tánnáŋèː ?//
# text_ortho = myǎː ʧêt tu kə̀tàyáː fî nǎːrwâːn wuriː tánnâŋeː ?//
# text_en = We are asking how did you use to hunt?
1 myǎː yáː AUX _ Aspect=Imp|Number=Plur|Person=1 0 root _ AlignBegin=1060|AlignEnd=1296|Gloss=1Plur.Imp
2 ʧêt ʧet VERB _ _ 1 comp:aux _ AlignBegin=1296|AlignEnd=1532|Gloss=ask
3 tu tu SCONJ _ _ 2 comp:obj _ AlignBegin=1532|AlignEnd=1768|Gloss=COMP
4 kə̀tàyáː ta-yáː AUX _ Aspect=Imp|Number=Plur|Person=2|Tense=Rem 3 comp:obj _ AlignBegin=1768|AlignEnd=2016|Gloss=2Plur.Rem.Imp
5 fî fi VERB _ _ 4 comp:aux _ AlignBegin=2016|AlignEnd=2264|Gloss=do
6-7 nǎːrwâːn _ _ _ _ _ _ _ _
6 nǎːr naːr NOUN _ _ 5 comp:obj _ AlignBegin=2264|AlignEnd=2388|Gloss=hunting
7 =wâːn =waːn PRON _ Case=Gen|Number=Sing|Person=3|PronType=Prs 6 mod@poss _ AlignBegin=2388|AlignEnd=2512|Gloss=2Plur.Gen
8 wuriː wuriː ADV _ PronType=Int 5 mod _ AlignBegin=2512|AlignEnd=2760|Gloss=how
9-10 tánnáŋèː _ _ _ _ _ _ _ _
9 tánnâŋ tánnâŋ ADV _ _ 5 mod _ AlignBegin=2760|AlignEnd=3008|Gloss=really
10 eː eː PART _ _ 1 mod _ AlignBegin=3008|AlignEnd=3256|Gloss=Q
11 ?// ?// PUNCT _ _ 1 punct _ AlignBegin=3256|AlignEnd=3504|Gloss=PUNCT
# sent_id = SAY_BC_INT_04_Hunt_003-008
# speaker_id = SP2
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_04_HUNT.WAV
# sent_timecode = 3780, 10012
# text = kə̀tàyáː fîn tə́ kaɗaŋʃyâː |c kóː kə̀tàyáː fîn tə́ mámaː |c kóː nə bəndígàː |c kóː kúmá kə̀tà yír gyáː ngə́ʃi gónaː ?//
# text_ortho = kə̀tàyáː fîn tə́ kaɗaŋʃyâː |c kóː kə̀tàyáː fîn tə́ mámaː |c kóː nə bəndígàː |c kóː kúmá kə̀tà yír gyáː ngə́ʃi gónaː ?//
# text_en = Did you use to hunt with dogs or did you use to hunt with bows of with guns or else did you have some other things?
1 kə̀tàyáː ta-yáː AUX _ Aspect=Imp|Number=Plur|Person=2|Tense=Rem 0 root _ AlignBegin=3780|AlignEnd=4007|Gloss=2Plur.Rem.Imp
2-3 fîn _ _ _ _ _ _ _ _
2 fî fi VERB _ _ 1 comp:aux _ AlignBegin=4007|AlignEnd=4121|Gloss=do
3 =ni =ni PART _ Aspect=Inch 2 compound:prt _ AlignBegin=4121|AlignEnd=4234|Gloss=Iter|wordform=-ni
4 tə́ tə́ ADP _ _ 2 comp:obl _ AlignBegin=4234|AlignEnd=4462|Gloss=with
5-6 kaɗaŋʃyâː _ _ _ _ _ _ _ _
5 kaɗaŋʃí káɗi NOUN _ Number=Plur 4 comp:obj _ AlignBegin=4462|AlignEnd=4710|Gloss=dog.Plur|wordform=káɗi
6 a: a: PART _ _ 1 mod _ AlignBegin=4710|AlignEnd=4958|Gloss=VRT|PartType=Int
7 |c |c PUNCT _ _ 9 punct _ AlignBegin=4958|AlignEnd=5205|Gloss=PUNCT
8 kóː kóː CCONJ _ _ 9 cc _ AlignBegin=5205|AlignEnd=5453|Gloss=or|Lang=ha
9 kə̀tàyáː ta-yáː AUX _ Aspect=Imp|Number=Plur|Person=2|Tense=Rem 1 conj:coord _ AlignBegin=5453|AlignEnd=5701|Gloss=2Plur.Rem.Imp
10-11 fîn _ _ _ _ _ _ _ _
10 fî fi VERB _ _ 9 comp:aux _ AlignBegin=5701|AlignEnd=5825|Gloss=do
11 =ni =ni PART _ Aspect=Inch 10 compound:prt _ AlignBegin=5825|AlignEnd=5949|Gloss=Iter|wordform=-ni
12 tə́ tə́ ADP _ _ 10 comp:obl _ AlignBegin=5949|AlignEnd=6197|Gloss=with
13-14 mámaː _ _ _ _ _ _ _ _
13 mâm mâm NOUN _ _ 12 comp:obj _ AlignBegin=6197|AlignEnd=6321|Gloss=bow
14 a: a: PART _ _ 9 mod _ AlignBegin=6321|AlignEnd=6445|Gloss=VRT|PartType=Int
15 |c |c PUNCT _ _ 17 punct _ AlignBegin=6445|AlignEnd=6690|Gloss=PUNCT
16 kóː kóː CCONJ _ _ 17 cc _ AlignBegin=6690|AlignEnd=6878|Gloss=or|Lang=ha
17 nə nə PART _ _ 9 conj:coord _ AlignBegin=6878|AlignEnd=7066|Gloss=be
18-19 bəndígàː _ _ _ _ _ _ _ _
18 bəndígà bəndígà NOUN _ _ 17 comp:pred _ AlignBegin=7066|AlignEnd=7254|Gloss=gun|Lang=ha
19 a: a: PART _ _ 17 mod _ AlignBegin=7254|AlignEnd=7442|Gloss=VRT|PartType=Int
20 |c |c PUNCT _ _ 23 punct _ AlignBegin=7442|AlignEnd=7630|Gloss=PUNCT
21 kóː kóː CCONJ _ _ 23 cc _ AlignBegin=7630|AlignEnd=7922|Gloss=or|Lang=ha
22 kúmá kúmá PART _ _ 21 discourse _ AlignBegin=7922|AlignEnd=8215|Gloss=else|Lang=ha
23 kə̀tà ta AUX _ Number=Sing|Person=2|Tense=Rem 17 conj:coord _ AlignBegin=8900|AlignEnd=9059|Gloss=2Plur.Rem
24 yír yír VERB _ _ 23 comp:aux _ AlignBegin=9059|AlignEnd=9218|Gloss=have
25 gyáː gyáː DET _ Number=Plur 26 det _ AlignBegin=9218|AlignEnd=9377|Gloss=Plur
26 ngə́ʃi ngə́tn NOUN _ Definite=Ind|Number=Plur 24 comp:obj _ AlignBegin=9377|AlignEnd=9536|Gloss=thing-Ind.Plur|wordform=ngə́tn
27-28 gónaː _ _ _ _ _ _ _ _
27 gón gón DET _ Definite=Spec 26 det _ AlignBegin=9536|AlignEnd=9695|Gloss=SPEC
28 a: a: PART _ _ 23 mod _ AlignBegin=9695|AlignEnd=9854|Gloss=VRT|PartType=Int
29 ?// ?// PUNCT _ _ 1 punct _ AlignBegin=9854|AlignEnd=10012|Gloss=PUNCT
# sent_id = SAY_BC_INT_04_Hunt_009-015
# speaker_id = SP2
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_04_HUNT.WAV
# sent_timecode = 10155, 19694
# text = kúmá zaːr < wò ɗyáː fi nda ndə̂ːr ngə́tnwôs ngap mbwáːɣə̂n ngə́taː |c kóː séː gùŋ pîːswàːn yáː wûl tu [ tôː dzàŋ tsə́n má ɬə́ //] a: |c kóː yi wuriː ?//
# text_ortho = kúmá zaːr < wò ɗyáː fi nda ndə̂ːr ngə́tnwôs ngap mbwáːɣə̂n ngə́taː |c kóː séː gùŋ pîːswàːn yáː wûl tu [ tôː dzàŋ tsə́n má ɬə́ //] a: |c kóː yi wuriː ?//
# text_en = And people would be able to go into the bush on their own and start shooting on their own, or must your chief hunter say on such a day we will go or how was it?
1 kúmá kúmá PART _ _ 4 discourse _ AlignBegin=10155|AlignEnd=10360|Gloss=and
2 zaːr zaːr NOUN _ _ 4 dislocated@top _ AlignBegin=10360|AlignEnd=10565|Gloss=person
3 < < PUNCT _ _ 2 punct _ AlignBegin=10565|AlignEnd=10771|Gloss=PUNCT
4 wò a AUX _ Number=Sing|Person=3|Tense=Fut 0 root _ AlignBegin=11160|AlignEnd=11484|Gloss=3Sing.Fut
5 ɗyáː ɗyáː VERB _ _ 4 comp:aux _ AlignBegin=11484|AlignEnd=11808|Gloss=can
6 fi fi VERB _ _ 5 compound:svc _ AlignBegin=11808|AlignEnd=12131|Gloss=do
7 nda nda VERB _ _ 6 comp:obj _ AlignBegin=12840|AlignEnd=13103|Gloss=enter
8 ndə̂ːr ndə̂ːr NOUN _ _ 7 comp:obj@L _ AlignBegin=13103|AlignEnd=13366|Gloss=bush
9-10 ngə́tnwôs _ _ _ _ _ _ _ _
9 ngə́tn ngə́tn NOUN _ _ 7 mod _ AlignBegin=13366|AlignEnd=13498|Gloss=thing
10 =wôs =wos PRON _ Case=Gen|Number=Sing|Person=3|PronType=Prs 9 mod@poss _ AlignBegin=13498|AlignEnd=13629|Gloss=3Sing.Gen
11 ngap ngap VERB _ _ 7 conj:coord _ AlignBegin=13629|AlignEnd=13892|Gloss=take
12 mbwáːɣə̂n mbwaː VERB _ ExtPos=NOUN|VerbForm=Vnoun 11 comp:obj _ AlignBegin=13892|AlignEnd=14153|Gloss=shoot-Vnoun|wordform=mbwaː
13-14 ngə́taː _ _ _ _ _ _ _ _
13 ngə́tn ngə́tn NOUN _ _ 12 comp:obj _ AlignBegin=14153|AlignEnd=14249|Gloss=thing
14 a: a: PART _ _ 4 mod _ AlignBegin=14249|AlignEnd=14346|Gloss=VRT|PartType=Int
15 |c |c PUNCT _ _ 21 punct _ AlignBegin=14346|AlignEnd=14539|Gloss=PUNCT
16 kóː kóː CCONJ _ _ 21 cc _ AlignBegin=14539|AlignEnd=14732|Gloss=or|Lang=ha
17 séː séː SCONJ _ _ 21 mod _ AlignBegin=14732|AlignEnd=14925|Gloss=must
18 gùŋ gùŋ NOUN _ _ 21 subj _ AlignBegin=14925|AlignEnd=15116|Gloss=chief
19-20 pîːswàːn _ _ _ _ _ _ _ _
19 pîːs pîːs NOUN _ _ 18 mod _ AlignBegin=15646|AlignEnd=15750|Gloss=arrow
20 =wâːn =waːn PRON _ Case=Gen|Number=Sing|Person=3|PronType=Prs 19 mod@poss _ AlignBegin=15750|AlignEnd=15855|Gloss=2Plur.Gen
21 yáː yáː AUX _ Mood=Cnd|Number=Sing|Person=3 4 conj:coord _ AlignBegin=15855|AlignEnd=16064|Gloss=3Sing.Cnd
22 wûl wul VERB _ _ 21 comp:aux _ AlignBegin=16064|AlignEnd=16273|Gloss=say
23 tu tu SCONJ _ _ 22 comp:obj _ AlignBegin=16273|AlignEnd=16482|Gloss=COMP
24 [ [ PUNCT _ _ 28 punct _ AlignBegin=16482|AlignEnd=16691|Gloss=PUNCT
25 tôː tôː PART _ _ 28 discourse _ AlignBegin=16691|AlignEnd=16900|Gloss=DM
26 dzàŋ dzàŋ NOUN _ _ 28 mod _ AlignBegin=17480|AlignEnd=17605|Gloss=day
27 tsə́n tsəní ADV _ _ 26 mod _ AlignBegin=17605|AlignEnd=17730|Gloss=like_this
28 má a AUX _ Number=Plur|Person=1|Tense=Fut 23 comp:obj _ AlignBegin=17730|AlignEnd=17855|Gloss=1Plur.Fut
29 ɬə́ ɬə VERB _ _ 28 comp:aux _ AlignBegin=17855|AlignEnd=17980|Gloss=go
30 //] //] PUNCT _ _ 28 punct _ AlignBegin=18105|AlignEnd=18230|Gloss=PUNCT
31 a: a: PART _ _ 21 mod _ AlignBegin=18230|AlignEnd=18355|Gloss=VRT|PartType=Int
32 |c |c PUNCT _ _ 34 punct _ AlignBegin=18355|AlignEnd=18480|Gloss=PUNCT
33 kóː kóː CCONJ _ _ 34 cc _ AlignBegin=19025|AlignEnd=19192|Gloss=or|Lang=ha
34 yi yi VERB _ _ 21 conj:coord _ AlignBegin=19192|AlignEnd=19359|Gloss=be
35 wuriː wuriː ADV _ PronType=Int 34 comp:pred _ AlignBegin=19359|AlignEnd=19526|Gloss=how
36 ?// ?// PUNCT _ _ 4 punct _ AlignBegin=19526|AlignEnd=19694|Gloss=PUNCT
# sent_id = SAY_BC_INT_04_Hunt_016-016
# speaker_id = SP2
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_04_HUNT.WAV
# sent_timecode = 19835, 20522
# text = mə̀ wùm bàyáːni //
# text_ortho = mə̀ wùm bàyáːni //
# text_en = Let's hear the explanation.
1 mə̀ tə̀ AUX _ Mood=Sub|Number=Plur|Person=1 0 root _ AlignBegin=19835|AlignEnd=20007|Gloss=1Plur.Sub
2 wùm wum VERB _ _ 1 comp:aux _ AlignBegin=20007|AlignEnd=20179|Gloss=hear
3 bàyáːni bàyáːni NOUN _ Foreign=Yes 2 comp:obj _ AlignBegin=20179|AlignEnd=20351|Gloss=explanation|Lang=ha
4 // // PUNCT _ _ 1 punct _ AlignBegin=20351|AlignEnd=20522|Gloss=PUNCT
# sent_id = SAY_BC_INT_04_Hunt_017-018
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_04_HUNT.WAV
# sent_timecode = 21188, 23752
# text = èː tôː < gíː ʧì káʃi mbə́ɬəŋ áy !//
# text_ortho = èː tôː < gíː ʧì káʃi mbə́ɬəŋ áy !//
# text_en = Well er... there are two different things.
1 èː èː INTJ _ _ 5 discourse _ AlignBegin=21188|AlignEnd=21455|Gloss=HESIT
2 tôː tôː PART _ _ 5 discourse _ AlignBegin=21455|AlignEnd=21722|Gloss=DM
3 < < PUNCT _ _ 2 punct _ AlignBegin=21722|AlignEnd=21988|Gloss=PUNCT
4 gíː gíː PRON _ Deixis=Dist|PronType=Dem 5 subj _ AlignBegin=22280|AlignEnd=22525|Gloss=Remt
5 ʧì yi AUX _ _ 0 root _ AlignBegin=22525|AlignEnd=22770|Gloss=3Plur.be
6 káʃi káʃi NOUN _ _ 5 comp:pred _ AlignBegin=22770|AlignEnd=23015|Gloss=times
7 mbə́ɬəŋ mbə́ɬəŋ NUM _ _ 6 mod:num _ AlignBegin=23015|AlignEnd=23260|Gloss=two
8 áy áy INTJ _ _ 5 discourse _ AlignBegin=23260|AlignEnd=23505|Gloss=indeed
9 !// !// PUNCT _ _ 5 punct _ AlignBegin=23505|AlignEnd=23752|Gloss=PUNCT
# sent_id = SAY_BC_INT_04_Hunt_019-020
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_04_HUNT.WAV
# sent_timecode = 24440, 26463
# text = gyaːgón ka ʃiʃí ngə́tnwâː tə́ kǐpmwâː ndáy námtsə //
# text_ortho = gyaːgón ka ʃiʃí ngə́tnwâː tə́ kǐpmwâː ndáy námtsə //
# text_en = Sometimes you would go on your own with your quiver and go to the bush.
1 gyaːgón gón PRON _ Definite=Spec|Number=Plur 2 dislocated@top _ AlignBegin=24649|AlignEnd=24858|Gloss=SPEC-Plur
2 ka a AUX _ Number=Sing|Person=2|Tense=Fut 0 root _ AlignBegin=24858|AlignEnd=25067|Gloss=2Sing.Fut
3 ʃiʃí ʃiʃí VERB _ _ 2 comp:aux _ AlignBegin=25067|AlignEnd=25276|Gloss=leave
4-5 ngə́tnwâː _ _ _ _ _ _ _ _
4 ngə́tn ngə́tn NOUN _ _ 3 comp:obj _ AlignBegin=25276|AlignEnd=25380|Gloss=thing
5 =wâː =wâː PRON _ Case=Gen|Number=Sing|Person=2|PronType=Prs 4 mod@poss _ AlignBegin=25380|AlignEnd=25484|Gloss=2Sing.Gen
6 tə́ tə́ ADP _ _ 4 mod _ AlignBegin=25484|AlignEnd=25680|Gloss=with
7-8 kǐpmwâː _ _ _ _ _ _ _ _
7 kǐpm kipm NOUN _ _ 6 comp:obj _ AlignBegin=25680|AlignEnd=25700|Gloss=quiver
8 =wâː =wâː PRON _ Case=Gen|Number=Sing|Person=2|PronType=Prs 7 mod@poss _ AlignBegin=25700|AlignEnd=25876|Gloss=2Sing.Gen
9 nda nda VERB _ _ 3 compound:svc _ AlignBegin=25876|AlignEnd=26072|Gloss=enter
10 =íː =íː PART _ _ 9 mod/m _ Gloss=Res|Result=Yes|wordform=-íː
11 námtsə námtsə NOUN _ _ 9 comp:obj@L _ AlignBegin=26072|AlignEnd=26268|Gloss=bush
12 // // PUNCT _ _ 2 punct _ AlignBegin=26268|AlignEnd=26463|Gloss=PUNCT
# sent_id = SAY_BC_INT_04_Hunt_021-022
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_04_HUNT.WAV
# sent_timecode = 27430, 29000
# text = k~ || kə ɬíː ŋálɣə̂n námtsə kúrûm //
# text_ortho = k~ || kə ɬíː ŋálɣə̂n námtsə kúrûm ///
# text_en = Y... you would just go to the bush.
1 k~ á AUX _ _ 0 root _ AlignBegin=27430|AlignEnd=27670|Gloss=y...
2 || || PUNCT _ _ 3 punct _ AlignBegin=27670|AlignEnd=27911|Gloss=PUNCT
3 kə á AUX _ Aspect=Aor|Number=Sing|Person=2 1 conj:dicto _ AlignBegin=27911|AlignEnd=28093|Gloss=2Sing.Aor
4 ɬə ɬə VERB _ _ 3 comp:aux _ AlignBegin=28093|AlignEnd=28275|Gloss=go
5 =íː =íː PART _ _ 4 mod/m _ Gloss=Res|Result=Yes|wordform=-íː
6 ŋálɣə̂n ŋal VERB _ ExtPos=NOUN|VerbForm=Vnoun 4 comp:obj@G _ AlignBegin=28275|AlignEnd=28457|Gloss=walk_around-Vnoun|wordform=ŋal
7 námtsə námtsə NOUN _ _ 6 comp:obj _ AlignBegin=28457|AlignEnd=28639|Gloss=bush
8 kúrûm kúrûm ADV _ _ 4 mod _ AlignBegin=28639|AlignEnd=28821|Gloss=only
9 // // PUNCT _ _ 1 punct _ AlignBegin=28821|AlignEnd=29000|Gloss=PUNCT
# sent_id = SAY_BC_INT_04_Hunt_023-024
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_04_HUNT.WAV
# sent_timecode = 29940, 31500
# text = kyáː tu ɬûː kə mbwáːy |c kə lə́ːríːɗi //
# text_ortho = kyáː tu ɬûː kə mbwáːy |c kə lə́ːríːɗi //
# text_en = If you found some animal you would shoot it and take it back.
1 kyáː yáː AUX _ Mood=Cnd|Number=Sing|Person=2 4 mod _ AlignBegin=29940|AlignEnd=30113|Gloss=2Sing.Cnd
2 tu tu VERB _ _ 1 comp:aux _ AlignBegin=30113|AlignEnd=30286|Gloss=meet
3 ɬûː ɬûː NOUN _ _ 2 comp:obj _ AlignBegin=30286|AlignEnd=30459|Gloss=animal
4 kə á AUX _ Aspect=Aor|Number=Sing|Person=2 0 root _ AlignBegin=30459|AlignEnd=30632|Gloss=2Sing.Aor
5 mbwaː mbwaː VERB _ _ 4 comp:aux _ AlignBegin=30632|AlignEnd=30805|Gloss=shoot
6 =íː =íː PART _ _ 5 mod/m _ Gloss=Res|Result=Yes|wordform=-íː
7 |c |c PUNCT _ _ 8 punct _ AlignBegin=30805|AlignEnd=30979|Gloss=PUNCT
8 kə á AUX _ Aspect=Aor|Number=Sing|Person=2 4 conj:coord _ AlignBegin=30979|AlignEnd=31153|Gloss=2Sing.Aor
9 lə́ːr lə́ːr VERB _ _ 8 comp:aux _ AlignBegin=31153|AlignEnd=31269|Gloss=bring
10-11 lə́ːríːɗi _ _ _ _ _ _ _ _
10 =íː =íː PART _ _ 9 mod/m _ Gloss=Res|Result=Yes|wordform=-íː
11 =ɗi =ɗi PART _ _ 9 compound:prt _ AlignBegin=31269|AlignEnd=31327|Gloss=Ctp
12 // // PUNCT _ _ 4 punct _ AlignBegin=31327|AlignEnd=31500|Gloss=PUNCT
# sent_id = SAY_BC_INT_04_Hunt_025-028
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_04_HUNT.WAV
# sent_timecode = 32666, 37536
# text = tôː àmâː < á ləpí gón < yâːn ʧàː ʧímtə tu əː naːr //
# text_ortho = tôː àmâː < á ləpí gón < yâːn ʧàː ʧímtə tu əː naːr //
# text_en = Well but sometimes they would call it communal hunting.
1 tôː tòː PART _ _ 9 discourse _ AlignBegin=32666|AlignEnd=32894|Gloss=DM
2 àmâː àmá CCONJ _ _ 9 discourse _ AlignBegin=32894|AlignEnd=33122|Gloss=but
3 < < PUNCT _ _ 2 punct _ AlignBegin=33122|AlignEnd=33351|Gloss=PUNCT
4 á ká ADP _ _ 9 mod _ AlignBegin=33620|AlignEnd=33814|Gloss=at
5 ləpí ləp̌pm NOUN _ Definite=Ind 4 comp:obj _ AlignBegin=33814|AlignEnd=34008|Gloss=month|wordform=lə̌pm
6 gón gón DET _ Definite=Spec 5 det _ AlignBegin=34008|AlignEnd=34202|Gloss=SPEC
7 < < PUNCT _ _ 4 punct _ AlignBegin=34202|AlignEnd=34397|Gloss=PUNCT
8 yâːn yáːni PRON _ Number=Sing|Person=3|PronType=Prs 9 dislocated@subj _ AlignBegin=35209|AlignEnd=35538|Gloss=3Sing.IDP
9 ʧàː yáː AUX _ Aspect=Imp|Number=Plur|Person=3 0 root _ AlignBegin=35538|AlignEnd=35867|Gloss=3Plur.Imp
10-11 ʧímtə _ _ _ _ _ _ _ _
10 ʧîm ʧim VERB _ _ 9 comp:aux _ AlignBegin=35867|AlignEnd=36031|Gloss=call
11 =tə =tə PRON _ Case=Acc|Number=Sing|Person=3|PronType=Prs 10 comp:obj _ AlignBegin=36031|AlignEnd=36196|Gloss=3Sing.Obj
12 tu tu ADP _ Mood=Qot 10 comp:pred _ AlignBegin=36196|AlignEnd=36525|Gloss=COMP
13 əː əː INTJ _ _ 14 discourse _ AlignBegin=36525|AlignEnd=36856|Gloss=HESIT
14 naːr naːr NOUN _ _ 12 comp:obj _ AlignBegin=37161|AlignEnd=37349|Gloss=hunting
15 // // PUNCT _ _ 9 punct _ AlignBegin=37349|AlignEnd=37536|Gloss=PUNCT
# sent_id = SAY_BC_INT_04_Hunt_029-034
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_04_HUNT.WAV
# sent_timecode = 38680, 46280
# text = tôː kə́ fûː zàrsə̀ || kə́ fûː kamsaːwàːn tu [ tôː dzàŋ gín fáː || dzàŋ gíː < má fî naːr á gàri || á yǎːɬwâːníː |c kóː kwǎː á wǔːrwâːníː //] //
# text_ortho = tôː kə́ fûː zàrsə̀ || kə́ fûː kamsaːwàːn tu [ tôː dzàŋ gín fáː || dzàŋ gíː < má fî naːr á gàri || á yǎːɬwâːníː |c kóː kwǎː á wǔːrwâːníː //] //
# text_en = Well you (sing.) would tell people, you (plur.) would tell your friends: "On such and such a day, on that day we will go hunting at ... at your place or else on your mountain."
1 tôː tôː PART _ _ 2 discourse _ AlignBegin=38680|AlignEnd=38833|Gloss=DM
2 kə́ á AUX _ Aspect=Aor|Number=Plur|Person=2 0 root _ AlignBegin=38833|AlignEnd=38986|Gloss=2Plur.Aor
3 fûː fuː VERB _ _ 2 comp:aux _ AlignBegin=38986|AlignEnd=39139|Gloss=tell
4 zàrsə̀ zaːr NOUN _ Number=Plur 3 comp:obj@R _ AlignBegin=39139|AlignEnd=39292|Gloss=person|wordform=zaːr
5 || || PUNCT _ _ 6 punct _ AlignBegin=39292|AlignEnd=39445|Gloss=PUNCT
6 kə́ á AUX _ Aspect=Aor|Number=Plur|Person=2 2 conj:dicto _ AlignBegin=39445|AlignEnd=39598|Gloss=2Plur.Aor
7 fûː fuː VERB _ _ 6 comp:aux _ AlignBegin=39598|AlignEnd=39751|Gloss=tell
8-9 kamsaːwàːn _ _ _ _ _ _ _ _
8 kamsə kâːm NOUN _ _ 7 comp:obj@R _ AlignBegin=39751|AlignEnd=39853|Gloss=friend|wordform=kâːm
9 =wàːn =waːn PRON _ Case=Gen|Number=Sing|Person=3|PronType=Prs 8 mod@poss _ AlignBegin=39853|AlignEnd=39904|Gloss=2Plur.Gen
10 tu tu SCONJ _ _ 7 comp:obj@T _ AlignBegin=39904|AlignEnd=40057|Gloss=COMP
11 [ [ PUNCT _ _ 20 punct _ AlignBegin=40057|AlignEnd=40210|Gloss=PUNCT
12 tôː tôː PART _ _ 20 discourse _ AlignBegin=40210|AlignEnd=40363|Gloss=DM
13 dzàŋ dzàŋ NOUN _ _ 20 mod _ AlignBegin=41100|AlignEnd=41338|Gloss=day
14 gín giní DET _ Deixis=Prox|PronType=Dem 13 det _ AlignBegin=41338|AlignEnd=41576|Gloss=Prox
15 fáː fáː PART _ _ 13 mod _ AlignBegin=41576|AlignEnd=41814|Gloss=indeed
16 || || PUNCT _ _ 17 punct _ AlignBegin=41814|AlignEnd=42050|Gloss=PUNCT
17 dzàŋ dzàŋ NOUN _ _ 13 conj:dicto _ AlignBegin=42050|AlignEnd=42182|Gloss=day
18 gíː gíː PRON _ Deixis=Dist|PronType=Dem 17 mod _ AlignBegin=42182|AlignEnd=42314|Gloss=Remt
19 < < PUNCT _ _ 13 punct _ AlignBegin=42314|AlignEnd=42446|Gloss=PUNCT
20 má a AUX _ Number=Plur|Person=1|Tense=Fut 10 comp:obj _ AlignBegin=42446|AlignEnd=42578|Gloss=1Plur.Fut
21 fî fi VERB _ _ 20 comp:aux _ AlignBegin=42578|AlignEnd=42710|Gloss=do
22 naːr naːr NOUN _ _ 21 comp:obj _ AlignBegin=42710|AlignEnd=42840|Gloss=hunting
23 á ká ADP _ _ 21 mod _ AlignBegin=43140|AlignEnd=43370|Gloss=at
24 gàri gàri NOUN _ _ 23 comp:obj _ AlignBegin=43370|AlignEnd=43600|Gloss=village
25 || || PUNCT _ _ 26 punct _ AlignBegin=43600|AlignEnd=43829|Gloss=PUNCT
26 á ká ADP _ _ 23 conj:dicto _ AlignBegin=43829|AlignEnd=44073|Gloss=at
27-29 yǎːɬwâːníː _ _ _ _ _ _ _ _
27 yaːɬ yaːɬ NOUN _ Definite=Cons 26 comp:obj _ AlignBegin=44073|AlignEnd=44317|Gloss=country-CONS
28 =wâːn =waːn PRON _ Case=Gen|Number=Plur|Person=2|PronType=Prs 27 mod@poss _ AlignBegin=44195|AlignEnd=44256|Gloss=2Plur.Gen
29 -íː -íː DET _ Deixis=Dist 27 det _ Gloss=Remt
30 |c |c PUNCT _ _ 33 punct _ AlignBegin=44317|AlignEnd=44560|Gloss=PUNCT
31 kóː kóː CCONJ _ _ 33 cc _ AlignBegin=45220|AlignEnd=45371|Gloss=or
32 kwǎː kwǎː PART _ _ 31 discourse _ AlignBegin=45371|AlignEnd=45522|Gloss=else
33 á ká ADP _ _ 26 conj:coord _ AlignBegin=45522|AlignEnd=45673|Gloss=at
34-36 wǔːrwâːníː _ _ _ _ _ _ _ _
34 wuːr wuːr NOUN _ Definite=Cons 33 comp:obj _ AlignBegin=45673|AlignEnd=45824|Gloss=sacred_groove-CONS
35 =wâːn =waːn PRON _ Case=Gen|Number=Plur|Person=2|PronType=Prs 34 mod@poss _ AlignBegin=45749|AlignEnd=45787|Gloss=2Plur.Gen
36 -íː -íː DET _ Deixis=Dist 34 det _ Gloss=Remt
37 //] //] PUNCT _ _ 20 punct _ AlignBegin=45824|AlignEnd=45975|Gloss=PUNCT
38 // // PUNCT _ _ 2 punct _ AlignBegin=46126|AlignEnd=46280|Gloss=PUNCT
# sent_id = SAY_BC_INT_04_Hunt_035-035
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_04_HUNT.WAV
# sent_timecode = 47320, 48694
# text = tôː zàrsə̀ tá ɲwǎːlɗi mondá //
# text_ortho = tôː zàrsə̀ tá ɲwǎːlɗi mondá //
# text_en = Well people would gather plenty.
1 tôː tôː PART _ _ 3 discourse _ AlignBegin=47320|AlignEnd=47549|Gloss=DM
2 zàrsə̀ zaːr NOUN _ Number=Plur 3 subj _ AlignBegin=47549|AlignEnd=47778|Gloss=person-Plur|wordform=zaːr
3 tá a AUX _ Number=Plur|Person=3|Tense=Fut 0 root _ AlignBegin=47778|AlignEnd=48007|Gloss=3Plur.Fut
4-5 ɲwǎːlɗi _ _ _ _ _ _ _ _
4 ɲwǎːl ɲol VERB _ Number=Plur 3 comp:aux _ AlignBegin=48007|AlignEnd=48121|Gloss=go_out-Plur
5 =ɗi =ɗi PART _ _ 4 compound:prt _ AlignBegin=48121|AlignEnd=48236|Gloss=Ctp
6 mondá mondá ADV _ _ 4 mod _ AlignBegin=48236|AlignEnd=48465|Gloss=many
7 // // PUNCT _ _ 3 punct _ AlignBegin=48465|AlignEnd=48694|Gloss=PUNCT
# sent_id = SAY_BC_INT_04_Hunt_036-037
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_04_HUNT.WAV
# sent_timecode = 49540, 52120
# text = tôː ɣə́ ɲwǎːlɗi tə́ gyáː kipm |c gyáː rôm //
# text_ortho = tôː kə́ ɲwǎːlɗi tə́ gyáː kipm |c gyáː rôm //
# text_en = Then you would gather with quivers and axes.
1 tôː tôː PART _ _ 2 discourse _ AlignBegin=49540|AlignEnd=49705|Gloss=DM
2 ɣə́ á AUX _ Aspect=Aor|Number=Plur|Person=2 0 root _ AlignBegin=49705|AlignEnd=49870|Gloss=2Plur.Aor
3-4 ɲwǎːlɗi _ _ _ _ _ _ _ _
3 ɲwǎːl ɲol VERB _ _ 2 comp:aux _ AlignBegin=49870|AlignEnd=49952|Gloss=go_out
4 =ɗi =ɗi PART _ _ 3 compound:prt _ AlignBegin=49952|AlignEnd=50035|Gloss=Ctp
5 tə́ tə́ ADP _ _ 3 comp:obl _ AlignBegin=50035|AlignEnd=50200|Gloss=with
6 gyáː gyáː DET _ Number=Plur 7 det _ AlignBegin=50200|AlignEnd=50365|Gloss=Plur
7 kipm kipm NOUN _ _ 5 comp:obj _ AlignBegin=50365|AlignEnd=50530|Gloss=quiver
8 |c |c PUNCT _ _ 10 punct _ AlignBegin=50530|AlignEnd=50698|Gloss=PUNCT
9 gyáː gyáː DET _ Number=Plur 10 det _ AlignBegin=51600|AlignEnd=51773|Gloss=Plur
10 rôm rôm NOUN _ _ 7 conj:coord _ AlignBegin=51773|AlignEnd=51946|Gloss=axe
11 // // PUNCT _ _ 2 punct _ AlignBegin=51946|AlignEnd=52120|Gloss=PUNCT
# sent_id = SAY_BC_INT_04_Hunt_038-041
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_04_HUNT.WAV
# sent_timecode = 53620, 57883
# text = èː ki tə́ kǐpmwâːn tə́ rômwàːn tə́ pîːs //
# text_ortho = èː ki tə́ kǐpmwâːn tə́ rômwàːn tə́ pîːs //
# text_en = Er... you would have your quiver and your axe and your arrows.
1 èː èː INTJ _ _ 3 discourse _ AlignBegin=53620|AlignEnd=54420|Gloss=HESIT
2-3 ki _ _ _ _ _ _ _ _
2 kə kə PRON _ Number=Sing|Person=2|PronType=Prs 3 subj _ AlignBegin=56020|Gloss=2Sing
3 yi yi VERB _ _ 0 root _ AlignEnd=56216|Gloss=be
4 tə́ tə́ ADP _ _ 3 comp:pred _ AlignBegin=56216|AlignEnd=56413|Gloss=with
5-6 kǐpmwâːn _ _ _ _ _ _ _ _
5 kǐpm kipm- NOUN _ Definite=Cons 4 comp:obj _ AlignBegin=56413|AlignEnd=56633|Gloss=quiver-CONS|wordform=kipm
6 =wâːn =waːn PRON _ Case=Gen|Number=Plur|Person=2|PronType=Prs 5 mod@poss _ AlignBegin=56633|AlignEnd=56744|Gloss=2Plur.Gen
7 tə́ tə́ ADP _ _ 4 conj:coord _ AlignBegin=56744|AlignEnd=57075|Gloss=with
8-9 rômwàːn _ _ _ _ _ _ _ _
8 rôm rôm NOUN _ Definite=Cons 7 comp:obj _ AlignBegin=57075|AlignEnd=57241|Gloss=axe-CONS
9 =wàːn =waːn PRON _ Case=Gen|Number=Plur|Person=2|PronType=Prs 8 mod@poss _ AlignBegin=57241|AlignEnd=57406|Gloss=2Plur.Gen
10 tə́ tə́ ADP _ _ 7 conj:coord _ AlignBegin=57406|AlignEnd=57565|Gloss=with
11 pîːs pîːs NOUN _ _ 10 comp:obj _ AlignBegin=57565|AlignEnd=57724|Gloss=arrow
12 // // PUNCT _ _ 3 punct _ AlignBegin=57724|AlignEnd=57883|Gloss=PUNCT
# sent_id = SAY_BC_INT_04_Hunt_042-043
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_04_HUNT.WAV
# sent_timecode = 59140, 60458
# text = tôː < kəndá ɣə́ ɲwǎːl //
# text_ortho = tôː < kəndá ɣə́ ɲwǎːl //
# text_en = Well then you would walk around.
1 tôː tôː PART _ _ 4 discourse _ AlignBegin=59140|AlignEnd=59328|Gloss=DM
2 < < PUNCT _ _ 1 punct _ AlignBegin=59328|AlignEnd=59517|Gloss=PUNCT
3 kəndá kəndá ADV _ _ 4 mod _ AlignBegin=59808|AlignEnd=59970|Gloss=then
4 ɣə́ á AUX _ Aspect=Aor|Number=Plur|Person=2 0 root _ AlignBegin=59970|AlignEnd=60132|Gloss=2Plur.Aor
5 ɲwǎːl ɲol VERB _ Number=Plur 4 comp:aux _ AlignBegin=60132|AlignEnd=60294|Gloss=go_out-Plur
6 // // PUNCT _ _ 4 punct _ AlignBegin=60294|AlignEnd=60458|Gloss=PUNCT
# sent_id = SAY_BC_INT_04_Hunt_044-045
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_04_HUNT.WAV
# sent_timecode = 61320, 63820
# text = kyǎː tû ɮə̌pm < kə́ kə́ káttə kə́ ngaɓíː //
# text_ortho = kyǎː tû ɮə̌pm < kə́ kə́ káttə̀ kə́ ngaɓíː //
# text_en = if you found some guineafowl you... you would follow it and catch it.
1 kyǎː yáː AUX _ Mood=Cnd|Number=Plur|Person=2 5 mod _ AlignBegin=61320|AlignEnd=61450|Gloss=2Plur.Imp
2 tû tu VERB _ _ 1 comp:aux _ AlignBegin=61450|AlignEnd=61580|Gloss=meet
3 ɮə̌pm ɮə̌pm NOUN _ _ 2 comp:obj _ AlignBegin=61580|AlignEnd=61710|Gloss=guineafowl
4 < < PUNCT _ _ 1 punct _ AlignBegin=61710|AlignEnd=61840|Gloss=PUNCT
5 kə́ á AUX _ Aspect=Aor|Number=Sing|Person=2 0 root _ AlignBegin=62520|AlignEnd=62737|Gloss=2Plur.Aor
6 kə́ á AUX _ Aspect=Aor|Number=Plur|Person=2 5 comp:aux _ AlignBegin=62737|AlignEnd=62954|Gloss=2Plur.Aor
7-8 káttə _ _ _ _ _ _ _ _
7 kât kat VERB _ _ 6 comp:aux _ AlignBegin=62954|AlignEnd=63062|Gloss=follow
8 =tə =tə PRON _ Case=Acc|Number=Sing|Person=3|PronType=Prs 7 comp:obj _ AlignBegin=63062|AlignEnd=63171|Gloss=3Sing.Obj
9 kə́ á AUX _ Aspect=Aor|Number=Plur|Person=2 6 conj:svc _ AlignBegin=63171|AlignEnd=63388|Gloss=2Plur.Aor
10 ngap ngap VERB _ _ 9 comp:aux _ AlignBegin=63388|AlignEnd=63605|Gloss=catch
11 =íː =íː PART _ _ 10 mod/m _ Gloss=Res|Result=Yes|wordform=-íː
12 // // PUNCT _ _ 5 punct _ AlignBegin=63605|AlignEnd=63820|Gloss=PUNCT
# sent_id = SAY_BC_INT_04_Hunt_046-049
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_04_HUNT.WAV
# sent_timecode = 64580, 69820
# text = gónɗaŋ < múr yóːɗan yáː ngâɓíː < kóː àː àː mán búngáy àː búngáy < tòː kyáː mân ɗaŋ kə mán ngaɓíː tôː á nǎːy nə gwàː //
# text_ortho = gónɗaŋ < múr yóːɗan yáː ngâɓíː < kóː àː àː mán búngáy àː búngáy < tòː kyáː mân ɗaŋ kə mán ngaɓíː tôː á nǎːy nə gwàː //
# text_en = Sometimes, the man who has caught, may be he... he has some problems, well if you come and you catch it, it becomes yours.
1 gónɗaŋ gónɗaŋ ADV _ _ 27 mod _ AlignBegin=64580|AlignEnd=64722|Gloss=sometimes
2 < < PUNCT _ _ 1 punct _ AlignBegin=64722|AlignEnd=64864|Gloss=PUNCT
3 múr múr NOUN _ _ 27 dislocated@top _ AlignBegin=64864|AlignEnd=65006|Gloss=man
4 yóːɗan yóːɗan PRON _ PronType=Rel 3 mod@relcl _ AlignBegin=65006|AlignEnd=65148|Gloss=which
5 yáː yáː AUX _ Mood=Cnd|Number=Sing|Person=3 4 comp:obj _ AlignBegin=65148|AlignEnd=65290|Gloss=3Sing.Imp
6 ngap ngap VERB _ _ 5 comp:aux _ AlignBegin=65290|AlignEnd=65432|Gloss=catch
7 =íː =íː PART _ _ 6 mod/m _ Gloss=Res|Result=Yes|wordform=-íː
8 < < PUNCT _ _ 3 punct _ AlignBegin=65432|AlignEnd=65577|Gloss=PUNCT
9 kóː kóː SCONJ _ _ 27 mod _ AlignBegin=65577|AlignEnd=66027|Gloss=whether|Lang=ha
10 àː àː AUX _ Aspect=Perf|Number=Sing|Person=3 9 comp:obj _ AlignBegin=66027|AlignEnd=66478|Gloss=3Sing.Perf
11 àː àː AUX _ Aspect=Perf|Number=Sing|Person=3 10 conj:dicto _ AlignBegin=66478|AlignEnd=66621|Gloss=3Sing.Perf
12 mán máni VERB _ _ 11 comp:aux _ AlignBegin=66621|AlignEnd=66764|Gloss=come
13-14 búngáy _ _ _ _ _ _ _ _
13 búŋ búŋ VERB _ _ 12 compound:svc _ AlignBegin=66764|AlignEnd=66907|Gloss=suffer
14 gáy káy PRON _ Person=3|PronType=Prs 13 comp:obl@expl _ AlignBegin=66907|AlignEnd=67050|Gloss=ANAPH
15 àː àː AUX _ Aspect=Perf|Number=Sing|Person=3 10 conj:coord _ AlignBegin=67050|AlignEnd=67193|Gloss=3Sing.Perf
16-17 búngáy _ _ _ _ _ _ _ _
16 búŋ búŋ VERB _ _ 15 comp:aux _ AlignBegin=67193|AlignEnd=67336|Gloss=suffer
17 gáy káy PRON _ Person=3|PronType=Prs 16 comp:obl@expl _ AlignBegin=67336|AlignEnd=67479|Gloss=ANAPH
18 < < PUNCT _ _ 9 punct _ AlignBegin=67479|AlignEnd=67620|Gloss=PUNCT
19 tòː tòː PART _ _ 27 discourse _ AlignBegin=68220|AlignEnd=68343|Gloss=DM
20 kyáː yáː AUX _ Mood=Cnd|Number=Sing|Person=2 27 mod _ AlignBegin=68343|AlignEnd=68466|Gloss=2Sing.Cnd
21 mân máni VERB _ _ 20 comp:aux _ AlignBegin=68466|AlignEnd=68589|Gloss=come
22 ɗaŋ ɗan ADV _ _ 23 mod _ AlignBegin=68589|AlignEnd=68712|Gloss=as
23 kə á AUX _ Aspect=Aor|Number=Sing|Person=2 20 conj:coord _ AlignBegin=68712|AlignEnd=68835|Gloss=2Sing.Aor
24 mán máni VERB _ _ 23 comp:aux _ AlignBegin=68835|AlignEnd=68958|Gloss=come
25 ngap ngap VERB _ _ 24 compound:svc _ AlignBegin=68958|AlignEnd=69081|Gloss=catch
26 =íː =íː PART _ _ 25 mod/m _ Gloss=Res|Result=Yes|wordform=-íː
27 á á AUX _ Aspect=Aor|Number=Sing|Person=3 0 root _ AlignBegin=69204|AlignEnd=69327|Gloss=3Sing.Aor
28 naː naː VERB _ _ 27 comp:aux _ AlignBegin=69327|AlignEnd=69450|Gloss=become
29 =íː =íː PART _ _ 28 mod/m _ Gloss=Res|Result=Yes|wordform=-íː
30 nə nə PART _ _ 28 comp:pred _ AlignBegin=69450|AlignEnd=69573|Gloss=be
31 gwàː gwàː PRON _ Case=Gen|Number=Sing|Person=2|PronType=Prs 30 comp:pred _ AlignBegin=69573|AlignEnd=69696|Gloss=2Sing.Gen
32 // // PUNCT _ _ 27 punct _ AlignBegin=69696|AlignEnd=69820|Gloss=PUNCT
# sent_id = SAY_BC_INT_04_Hunt_050-053
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_04_HUNT.WAV
# sent_timecode = 70780, 76280
# text = àmáː murí àː mán búngáy sòːséy < àmáː gón wò mán ɮíː swǎːt wul tu nə gòs < bàː gón wò kə́ːm wul tu vìːɣáy hŋ́ //
# text_ortho = àmáː murí àː mán búngáy sòːséy < àmáː gón wò mán ɮíː swǎːt wul tu nə gòs < bàː gón wò kə́ːm wul tu vìːɣáy hŋ́ //
# text_en = But if a man has some real problems, and somebody else comes and takes it quickly, and says it is his, nobody will be able to say anything.
1 àmáː àmá CCONJ _ _ 21 discourse _ AlignBegin=70780|AlignEnd=70933|Gloss=but
2 murí mur NOUN _ Definite=Ind 3 subj _ AlignBegin=70933|AlignEnd=71009|Gloss=man
3 àː àː AUX _ Aspect=Perf|Number=Sing|Person=3 21 mod _ AlignBegin=71086|AlignEnd=71239|Gloss=3Sing.Perf
4 mán máni VERB _ _ 3 comp:aux _ AlignBegin=71239|AlignEnd=71392|Gloss=come
5-6 búngáy _ _ _ _ _ _ _ _
5 búŋ búŋ VERB _ _ 4 compound:svc _ AlignBegin=71392|AlignEnd=71545|Gloss=suffer
6 káy káy PRON _ Person=3|PronType=Prs 5 comp:obl@expl _ AlignBegin=71545|AlignEnd=71698|Gloss=ANAPH
7 sòːséy sòːséy ADV _ _ 5 mod _ AlignBegin=71698|AlignEnd=71851|Gloss=quite
8 < < PUNCT _ _ 11 punct _ AlignBegin=71851|AlignEnd=72004|Gloss=PUNCT
9 àmáː àmá CCONJ _ _ 11 cc _ AlignBegin=72004|AlignEnd=72214|Gloss=but
10 gón gón PRON _ Definite=Spec 11 subj _ AlignBegin=72214|AlignEnd=72424|Gloss=SPEC
11 wò a AUX _ Number=Sing|Person=3|Tense=Fut 3 conj:coord _ AlignBegin=72424|AlignEnd=72634|Gloss=3Sing.Fut
12 mán máni VERB _ _ 11 comp:aux _ AlignBegin=72634|AlignEnd=72844|Gloss=come
13 ɮiː ɮiː VERB _ _ 12 compound:svc _ AlignBegin=72844|AlignEnd=73054|Gloss=remove
14 =íː =íː PART _ _ 13 mod/m _ Gloss=Res|Result=Yes|wordform=-íː
15 swǎːt swǎːt IDEO _ _ 13 mod _ AlignBegin=73054|AlignEnd=73261|Gloss=fast
16 wul wul VERB _ _ 13 compound:svc _ AlignBegin=73261|AlignEnd=73401|Gloss=say
17 tu tu SCONJ _ _ 16 compound:prt _ AlignBegin=73401|AlignEnd=73541|Gloss=COMP
18 nə nə PART _ _ 17 comp:obj _ AlignBegin=73541|AlignEnd=73681|Gloss=be
19 gòs gòs PRON _ Case=Gen|Number=Sing|Person=3|PronType=Prs 18 comp:pred _ AlignBegin=73681|AlignEnd=73821|Gloss=3Sing.Gen
20 < < PUNCT _ _ 3 punct _ AlignBegin=73821|AlignEnd=73963|Gloss=PUNCT
21 bàː bàː PART _ _ 0 root _ AlignBegin=74900|AlignEnd=75038|Gloss=Neg1
22 gón gón DET _ Definite=Spec 21 comp:pred _ AlignBegin=75038|AlignEnd=75176|Gloss=SPEC
23 wò a AUX _ Number=Sing|Person=3|Tense=Fut 21 comp:cleft _ AlignBegin=75176|AlignEnd=75314|Gloss=3Sing.Fut
24 kə́ːm kə́ːm VERB _ _ 23 comp:aux _ AlignBegin=75314|AlignEnd=75452|Gloss=succeed
25 wul wul VERB _ _ 24 compound:svc _ AlignBegin=75452|AlignEnd=75590|Gloss=say
26 tu tu SCONJ _ _ 25 compound:prt _ AlignBegin=75590|AlignEnd=75728|Gloss=COMP
27-28 vìːɣáy _ _ _ _ _ _ _ _
27 vìː vìː NOUN _ _ 25 comp:obj _ AlignBegin=75728|AlignEnd=75866|Gloss=speech
28 ɣáy káy PRON _ Person=3|PronType=Prs 25 comp:obl@expl _ AlignBegin=75866|AlignEnd=76004|Gloss=ANAPH
29 hŋ́ hŋ́ PART _ Polarity=Neg 21 mod _ AlignBegin=76004|AlignEnd=76142|Gloss=Neg2
30 // // PUNCT _ _ 21 punct _ AlignBegin=76142|AlignEnd=76280|Gloss=PUNCT
# sent_id = SAY_BC_INT_04_Hunt_054-058
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_04_HUNT.WAV
# sent_timecode = 77300, 83476
# text = tôː àmáː < kyáː mbwáːni ɬûː < kádéː eː yǎː ngap =tə -íː < tôː ɬúːy tá və̀rɣə̀ dòmín káː rigé mbwaː =tə -íː //
# text_ortho = tôː àmáː < kyáː mbwáːni ɬûː < kádéː eː yǎː ngâptíː < tôː ɬúːy tá və̀rɣə̀ dòmín káː rigé mbwaːtíː //
# text_en = But if you have shot an animal, as soon as... somebody catches it well, the animal, they will give it to you because you shot it first.
1 tôː tôː PART _ _ 19 discourse _ AlignBegin=77300|AlignEnd=77470|Gloss=DM
2 àmáː àmá CCONJ _ _ 19 discourse _ AlignBegin=77470|AlignEnd=77640|Gloss=but
3 < < PUNCT _ _ 2 punct _ AlignBegin=77640|AlignEnd=77810|Gloss=PUNCT
4 kyáː yáː AUX _ Mood=Cnd|Number=Sing|Person=2 19 mod _ AlignBegin=77810|AlignEnd=78022|Gloss=2Sing.Cnd
5-6 mbwáːni _ _ _ _ _ _ _ _
5 mbwáː mbwaː VERB _ _ 4 comp:aux _ AlignBegin=78022|AlignEnd=78128|Gloss=shoot
6 =ni =ni PART _ Aspect=Iter 5 compound:prt _ AlignBegin=78128|AlignEnd=78234|Gloss=Iter|wordform=-ni
7 ɬûː ɬûː NOUN _ _ 5 comp:obj _ AlignBegin=78234|AlignEnd=78446|Gloss=animal
8 < < PUNCT _ _ 4 punct _ AlignBegin=78446|AlignEnd=78660|Gloss=PUNCT
9 kádéː kádéː SCONJ _ _ 19 mod _ AlignBegin=79900|AlignEnd=80295|Gloss=as_soon_as
10 eː eː INTJ _ _ 11 discourse _ AlignBegin=80295|AlignEnd=80690|Gloss=HESIT
11 yǎː yáː AUX _ Mood=Cnd|Number=Plur|Person=3 9 comp:obj _ AlignBegin=80690|AlignEnd=80956|Gloss=3Plur.Cnd
12-14 ngâptíː _ _ _ _ _ _ _ _
12 ngap ngap VERB _ _ 11 comp:aux _ AlignBegin=80956|AlignEnd=81222|Gloss=catch
13 =tə =tə PRON _ Case=Acc|Number=Sing|Person=3|PronType=Prs 12 comp:obj _ AlignBegin=81045|AlignEnd=81134|Gloss=3Sing.Obj|Incorporated=Yes
14 =íː =íː PART _ _ 12 mod/m _ Gloss=Res|Result=Yes|wordform=-íː
15 < < PUNCT _ _ 9 punct _ AlignBegin=81222|AlignEnd=81489|Gloss=PUNCT
16 tôː tôː PART _ _ 19 discourse _ AlignBegin=81680|AlignEnd=81860|Gloss=DM
17-18 ɬúːy _ _ _ _ _ _ _ _
17 ɬûː ɬûː NOUN _ _ 19 dislocated@comp _ AlignBegin=81860|AlignEnd=82040|Gloss=animal
18 -íː -íː DET _ Deixis=Dist 17 det/m _ AlignBegin=81860|AlignEnd=82040|Gloss=Remt|wordform=ɬûː
19 tá a AUX _ Number=Plur|Person=3|Tense=Fut 0 root _ AlignBegin=82040|AlignEnd=82220|Gloss=3Plur.Fut
20-21 və̀rɣə̀ _ _ _ _ _ _ _ _
20 və̀r vər VERB _ _ 19 comp:aux _ AlignBegin=82220|AlignEnd=82310|Gloss=give
21 =ɣə̀ =kə PRON _ Case=Acc|Number=Sing|Person=2|PronType=Prs 20 comp:obj@R _ AlignBegin=82310|AlignEnd=82400|Gloss=2Sing.Obj
22 dòmín dòmín SCONJ _ _ 20 mod _ AlignBegin=82400|AlignEnd=82580|Gloss=because
23 káː àː AUX _ Aspect=Perf|Number=Sing|Person=2 22 comp:obj _ AlignBegin=82580|AlignEnd=82760|Gloss=2Sing.Perf
24 rigé rigé VERB _ _ 23 comp:aux _ AlignBegin=82760|AlignEnd=82940|Gloss=already|Lang=ha
25-27 mbwaːtíː _ _ _ _ _ _ _ _
25 mbwaː mbwaː VERB _ _ 24 compound:svc _ AlignBegin=83120|AlignEnd=83300|Gloss=shoot
26 =tə =tə PRON _ Case=Acc|Number=Sing|Person=3|PronType=Prs 25 comp:obj _ AlignBegin=83180|AlignEnd=83240|Gloss=3Sing.Obj|Incorporated=Yes
27 =íː =íː PART _ _ 25 mod/m _ Gloss=Res|Result=Yes|wordform=-íː
28 // // PUNCT _ _ 19 punct _ AlignBegin=83300|AlignEnd=83476|Gloss=PUNCT
# sent_id = SAY_BC_INT_04_Hunt_059-062
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_04_HUNT.WAV
# sent_timecode = 83860, 87500
# text = tə́ mbwáːɣə̂n ɬôːs tá wu tu gálálálálá gálálálálá gálálálálá //
# text_ortho = tə́ mbwáːɣə̂n ɬôːs tá wu tu gálálálálá gálálálálá gálálálálá //
# text_en = When shooting the animal, you shout gálálálálá gálálálálá gálálálálá.
1 tə́ á ADP _ _ 5 mod _ AlignBegin=83860|AlignEnd=83995|Gloss=with
2 mbwáːɣə̂n mbwaː VERB _ ExtPos=NOUN|VerbForm=Vnoun 1 comp:obj _ AlignBegin=83995|AlignEnd=84130|Gloss=shoot-Vnoun|wordform=mbwaː
3 ɬûː ɬûː NOUN _ Definite=Def 2 comp:obj _ AlignBegin=84130|AlignEnd=84265|Gloss=animal
4 -ês -ês DET _ Definite=Def 3 det/m _ Gloss=-Def
5 tá a AUX _ Number=Plur|Person=3|Tense=Fut 0 root _ AlignBegin=84265|AlignEnd=84400|Gloss=3Plur.Fut
6 wu wul VERB _ _ 5 comp:aux _ AlignBegin=84535|AlignEnd=84670|Gloss=say
7 tu tu SCONJ _ _ 6 comp:obj _ AlignBegin=84670|AlignEnd=84807|Gloss=COMP
8 gálálálálá gálálálálá INTJ _ _ 7 comp:obj _ AlignBegin=84807|AlignEnd=85823|Gloss=ululation
9 gálálálálá gálálálálá INTJ _ _ 8 compound:redup _ AlignBegin=85823|AlignEnd=86660|Gloss=ululation
10 gálálálálá gálálálálá INTJ _ _ 9 compound:redup _ AlignBegin=86880|AlignEnd=87190|Gloss=ululation
11 // // PUNCT _ _ 5 punct _ AlignBegin=87190|AlignEnd=87500|Gloss=PUNCT
# sent_id = SAY_BC_INT_04_Hunt_063-063
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_04_HUNT.WAV
# sent_timecode = 88000, 89249
# text = tôː tə́ yîsə́ŋə́y tu kyâːn mbwáːtə //
# text_ortho = tôː tə́ yîsə́ŋə́y tu kyâːn mbwáːtə //
# text_en = Well they know it's you who shot it.
1 tôː tôː PART _ _ 2 discourse _ AlignBegin=88000|AlignEnd=88178|Gloss=DM
2 tə́ á AUX _ Aspect=Aor|Number=Plur|Person=3 0 root _ AlignBegin=88178|AlignEnd=88356|Gloss=3Plur.Aor
3 yisə́ŋ yisə́ŋ VERB _ _ 2 comp:aux _ AlignBegin=88356|AlignEnd=88534|Gloss=know
4 =íː =íː PART _ _ 3 mod/m _ Gloss=Res|Result=Yes|wordform=-íː
5 tu tu SCONJ _ _ 3 comp:obj _ AlignBegin=88534|AlignEnd=88712|Gloss=COMP
6 kyâːn kyáːni PRON _ Number=Sing|Person=2|PronType=Prs 5 comp:obj _ AlignBegin=88712|AlignEnd=88890|Gloss=2Sing.IDP
7-8 mbwáːtə _ _ _ _ _ _ _ _
7 mbwâː mbwaː VERB _ _ 6 comp:cleft _ AlignBegin=88890|AlignEnd=88979|Gloss=shoot
8 =tə =tə PRON _ Case=Acc|Number=Sing|Person=3|PronType=Prs 7 comp:obj _ AlignBegin=88979|AlignEnd=89068|Gloss=3Sing.Obj
9 // // PUNCT _ _ 2 punct _ AlignBegin=89068|AlignEnd=89249|Gloss=PUNCT
# sent_id = SAY_BC_INT_04_Hunt_064-064
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_04_HUNT.WAV
# sent_timecode = 90520, 91540
# text = tôː ʧi gòs ɣá tsə́tngə̂n ʧík //
# text_ortho = tôː ʧi gòs ɣá tsə́tngə̂n ʧík //
# text_en = Well it is just lying there.
1 tôː tôː PART _ _ 2 discourse _ AlignBegin=90520|AlignEnd=90666|Gloss=DM
2 ʧi yi AUX _ _ 0 root _ AlignEnd=90812|Gloss=3Sing.be|wordform=yi
3 gòs gòs PRON _ Case=Gen|Number=Sing|Person=3|PronType=Prs 2 mod@ethical _ AlignBegin=90812|AlignEnd=90958|Gloss=3Sing.Gen
4 ɣá ká ADP _ _ 2 comp:pred _ AlignBegin=90958|AlignEnd=91104|Gloss=at
5 tsə́tngə̂n tsə́tn VERB _ VerbForm=Vnoun 4 comp:obj _ AlignBegin=91104|AlignEnd=91250|Gloss=sit|wordform=tsə́tn
6 ʧík ʧík ADV _ _ 2 mod _ AlignBegin=91250|AlignEnd=91396|Gloss=thus
7 // // PUNCT _ _ 2 punct _ AlignBegin=91396|AlignEnd=91540|Gloss=PUNCT
# sent_id = SAY_BC_INT_04_Hunt_065-072
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_04_HUNT.WAV
# sent_timecode = 92300, 105679
# text = tôː gàyyà kwàː < yâːn ʧi gòs tu ɗan Kímsə tə́ gyáː mə́n Dùːl tə́ gyáː mə́n Koblaŋ < tə́ gyáː mə́n Žímʃí ( á ɬǐː hár Żàs |c hár Ketsar //) tə́ gyáː mə́n Malâːr ɗan ʧǐn < tôː ɣá fûːʃí kakáp //
# text_ortho = tôː gàyyà kwàː < yâːn ʧi gòs tu ɗan Kímsə tə́ gyáː mə́n Dùːl tə́ gyáː mə́n Koblaŋ < tə́ gyáː mə́n Žímʃí ( á ɬǐː hár Żàs |c hár Ketsar //) tə́ gyáː mə́n Malâːr ɗan ʧǐn < tôː ɣá fûːʃí kakáp //
# text_en = Well as for communal hunting, it means that like Kimseh and the people of Dul and the people of Koblang and the people of Zhimshi up to Zlas and Tsara and the people of Malar who are there well they will tell them all.
1 tôː tôː PART _ _ 6 discourse _ AlignBegin=92300|AlignEnd=92575|Gloss=DM
2 gàyyà gàyyà NOUN _ _ 6 dislocated@top _ AlignBegin=92575|AlignEnd=92850|Gloss=communal_work|Lang=ha
3 kwàː kwàː PART _ _ 2 mod _ AlignBegin=92850|AlignEnd=93125|Gloss=as_for
4 < < PUNCT _ _ 2 punct _ AlignBegin=93125|AlignEnd=93400|Gloss=PUNCT
5 yâːn yáːni PRON _ Number=Sing|Person=3|PronType=Prs 6 subj _ AlignBegin=93580|AlignEnd=93773|Gloss=3Sing.IDP
6 ʧi yi AUX _ _ 0 root _ AlignEnd=93966|Gloss=3Sing.be|wordform=yi
7 gòs gòs PRON _ Case=Gen|Number=Sing|Person=3|PronType=Prs 6 mod@ethical _ AlignBegin=93966|AlignEnd=94159|Gloss=3Sing.Gen
8 tu tu SCONJ _ _ 6 comp:pred _ AlignBegin=94159|AlignEnd=94351|Gloss=COMP
9 ɗan ɗan ADP _ _ 40 dislocated@top _ AlignBegin=95327|AlignEnd=95673|Gloss=like
10 Kímsə Kímsə PROPN _ _ 9 comp:obj _ AlignBegin=95673|AlignEnd=96020|Gloss=Boi
11 tə́ tə́ ADP _ _ 13 cc _ AlignBegin=97140|AlignEnd=97316|Gloss=with
12 gyáː gyáː DET _ Number=Plur 13 det _ AlignBegin=97316|AlignEnd=97492|Gloss=Plur
13 mə́n mə́n NOUN _ Number=Plur 10 conj:coord _ AlignBegin=97492|AlignEnd=97668|Gloss=people
14 Dùːl Dùːl PROPN _ _ 13 compound _ AlignBegin=97668|AlignEnd=98880|Gloss=Dul
15 tə́ tə́ ADP _ _ 17 cc _ AlignBegin=98880|AlignEnd=99060|Gloss=with
16 gyáː gyáː DET _ Number=Plur 17 det _ AlignBegin=99060|AlignEnd=99240|Gloss=Plur
17 mə́n mə́n NOUN _ Number=Plur 13 conj:coord _ AlignBegin=99240|AlignEnd=99420|Gloss=people
18 Koblaŋ Koblaŋ PROPN _ _ 17 compound _ AlignBegin=99420|AlignEnd=99600|Gloss=Koblang
19 < < PUNCT _ _ 22 punct _ AlignBegin=99600|AlignEnd=99780|Gloss=PUNCT
20 tə́ tə́ ADP _ _ 22 cc _ AlignBegin=100300|AlignEnd=100451|Gloss=with
21 gyáː gyáː DET _ Number=Plur 22 det _ AlignBegin=100451|AlignEnd=100602|Gloss=Plur
22 mə́n mə́n NOUN _ Number=Plur 17 conj:coord _ AlignBegin=100602|AlignEnd=100753|Gloss=people
23 Žímʃí Žímʃí PROPN _ _ 22 compound _ AlignBegin=100753|AlignEnd=100904|Gloss=Zhimshi
24 ( ( PUNCT _ _ 25 punct _ AlignBegin=100904|AlignEnd=101055|Gloss=PUNCT
25 á á AUX _ Aspect=Aor|Number=Sing|Person=3 22 parataxis:insert _ AlignBegin=101055|AlignEnd=101206|Gloss=3Sing.Aor
26 ɬǐː ɬə VERB _ _ 25 comp:aux _ AlignBegin=101206|AlignEnd=101357|Gloss=go|wordform=ɬə
27 hár hár ADP _ _ 26 comp:obj@G _ AlignBegin=101357|AlignEnd=101508|Gloss=up_to
28 Żàs Żàs PROPN _ _ 27 comp:obj _ AlignBegin=101508|AlignEnd=101659|Gloss=Lʒas
29 |c |c PUNCT _ _ 30 punct _ AlignBegin=101659|AlignEnd=101810|Gloss=PUNCT
30 hár hár ADP _ _ 26 conj:coord _ AlignBegin=101810|AlignEnd=101961|Gloss=up_to
31 Ketsar Ketsar PROPN _ _ 30 comp:obj _ AlignBegin=101961|AlignEnd=102112|Gloss=Ketsar
32 //) //) PUNCT _ _ 25 punct _ AlignBegin=102112|AlignEnd=102260|Gloss=PUNCT
33 tə́ tə́ ADP _ _ 35 cc _ AlignBegin=103020|AlignEnd=103160|Gloss=with
34 gyáː gyáː DET _ Number=Plur 35 det _ AlignBegin=103160|AlignEnd=103300|Gloss=Plur
35 mə́n mə́n NOUN _ Number=Plur 22 conj:coord _ AlignBegin=103300|AlignEnd=103440|Gloss=people
36 Malâːr Malâːr PROPN _ _ 35 compound _ AlignBegin=103440|AlignEnd=103580|Gloss=Malar
37 ɗan ɗan SCONJ _ _ 35 mod _ AlignBegin=103580|AlignEnd=103720|Gloss=REL
38 ʧǐn ʧík ADV _ _ 37 comp:obj _ AlignBegin=103720|AlignEnd=103860|Gloss=this
39 < < PUNCT _ _ 9 punct _ AlignBegin=103860|AlignEnd=104000|Gloss=PUNCT
40 tôː tôː PART _ _ 41 discourse _ AlignBegin=104700|AlignEnd=104896|Gloss=DM
41 ɣá a AUX _ Number=Plur|Person=2|Tense=Fut 8 comp:obj _ AlignBegin=104896|AlignEnd=105092|Gloss=2Plur.Fut
42-43 fûːʃí _ _ _ _ _ _ _ _
42 fûː fuː VERB _ _ 41 comp:aux _ AlignBegin=105092|AlignEnd=105190|Gloss=tell
43 =ʃí =ʃí PRON _ Case=Acc|Number=Plur|Person=3|PronType=Prs 42 comp:obj@R _ AlignBegin=105190|AlignEnd=105288|Gloss=3Plur.Obj
44 kakáp kakáp ADV _ _ 41 mod _ AlignBegin=105288|AlignEnd=105484|Gloss=all
45 // // PUNCT _ _ 6 punct _ AlignBegin=105484|AlignEnd=105679|Gloss=PUNCT
# sent_id = SAY_BC_INT_04_Hunt_073-074
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_04_HUNT.WAV
# sent_timecode = 106760, 108240
# text = tôː dzàŋ gíː tôː ɣə́ mbîː gàyyà //
# text_ortho = tôː dzàŋ gíː tôː ɣə́ mbîː gàyyà //
# text_en = Well, on such a day, you will do the communal hunting.
1 tôː tôː PART _ _ 5 discourse _ AlignBegin=106760|AlignEnd=106940|Gloss=DM
2 dzàŋ dzàŋ NOUN _ _ 5 mod _ AlignBegin=106940|AlignEnd=107120|Gloss=day
3 gíː gíː PRON _ Deixis=Dist|PronType=Dem 2 mod _ AlignBegin=107120|AlignEnd=107300|Gloss=Remt
4 tôː tôː PART _ _ 5 discourse _ AlignBegin=107300|AlignEnd=107480|Gloss=DM
5 ɣə́ á AUX _ Aspect=Aor|Number=Plur|Person=2 0 root _ AlignBegin=107480|AlignEnd=107660|Gloss=2Plur.Aor
6 mbîː mbiː VERB _ _ 5 comp:aux _ AlignBegin=107660|AlignEnd=107842|Gloss=take
7 gàyyà gàyyà NOUN _ _ 6 comp:obj _ AlignBegin=107842|AlignEnd=108041|Gloss=communal_work|Lang=ha
8 // // PUNCT _ _ 5 punct _ AlignBegin=108041|AlignEnd=108240|Gloss=PUNCT
# sent_id = SAY_BC_INT_04_Hunt_075-075
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_04_HUNT.WAV
# sent_timecode = 109360, 110987
# text = tôː múr -ə́n tə́ tôŋʃí á teː gwàːsə̀ŋə́n //
# text_ortho = tôː mənín tə́ tôŋʃí á teː gwàːsə̀ŋə́n //
# text_en = Well these people will make a line of their own.
1 tôː tôː PART _ _ 4 discourse _ AlignBegin=109360|AlignEnd=109541|Gloss=DM
2 múr múr NOUN _ Number=Plur 4 subj _ AlignBegin=109541|AlignEnd=109722|Gloss=people|wordform=mənín
3 -ə́n -ə́n DET _ Deixis=Prox 2 det/m _ Gloss=-Prox
4 tə́ á AUX _ Aspect=Aor|Number=Plur|Person=3 0 root _ AlignBegin=109722|AlignEnd=109903|Gloss=3Plur.Aor
5-6 tôŋʃí _ _ _ _ _ _ _ _
5 tôŋ tôŋ VERB _ _ 4 comp:aux _ AlignBegin=109903|AlignEnd=109993|Gloss=line_up
6 =ʃí =ʃí PRON _ Case=Acc|Number=Plur|Person=3|PronType=Prs|Reflex=Yes 5 comp:obj _ AlignBegin=109993|AlignEnd=110084|Gloss=3Plur.Obj
7 á ká ADP _ ExtPos=ADP 5 mod _ AlignBegin=110084|AlignEnd=110265|Gloss=at|Idiom=Yes
8 teː teː ADP _ _ 7 unk _ AlignBegin=110265|AlignEnd=110446|Gloss=around|InIdiom=Yes
9-10 gwàːsə̀ŋə́n _ _ _ _ _ _ _ _
9 gwàːsə̀ŋ gwàːsə̀ŋ PRON _ Case=Gen|Number=Plur|Person=3|PronType=Prs 7 comp:obj _ AlignBegin=110446|AlignEnd=110627|Gloss=3Plur.Gen
10 -ə́n -ə́n DET _ Deixis=Prox 9 det/m _ AlignBegin=110446|AlignEnd=110627|Gloss=-Prox
11 // // PUNCT _ _ 4 punct _ AlignBegin=110808|AlignEnd=110987|Gloss=PUNCT
# sent_id = SAY_BC_INT_04_Hunt_076-077
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_04_HUNT.WAV
# sent_timecode = 110987, 112289
# text = tôː ɣəndá kiː ríː ɮə̀k námtsə //
# text_ortho = tôː ɣəndá kiː ríː ɮə̀k námtsə //
# text_en = Well, then you would walk in the bush.
1 tôː tôː PART _ _ 3 discourse _ AlignBegin=110987|AlignEnd=111236|Gloss=DM
2 ɣəndá kəndá ADV _ _ 3 mod _ AlignBegin=111236|AlignEnd=111412|Gloss=then
3 kiː yiː AUX _ Mood=Irr|Number=Sing|Person=2 0 root _ AlignBegin=111412|AlignEnd=111588|Gloss=2Plur.Iter
4 ríː ríː VERB _ _ 3 comp:aux _ AlignBegin=111588|AlignEnd=111764|Gloss=walk
5 ɮə̀k ɮə̀k ADP _ _ 4 comp:obl _ AlignBegin=111764|AlignEnd=111940|Gloss=in_the_middle_of
6 námtsə námtsə NOUN _ _ 5 comp:obj _ AlignBegin=111940|AlignEnd=112116|Gloss=bush
7 // // PUNCT _ _ 3 punct _ AlignBegin=112116|AlignEnd=112289|Gloss=PUNCT
# sent_id = SAY_BC_INT_04_Hunt_078-079
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_04_HUNT.WAV
# sent_timecode = 113040, 115400
# text = dàgà ɗûːn fáː < wò fíː ɗan teː ɮarí Kímsoː //
# text_ortho = dàgà ɗûːn fáː < wò fíː ɗan teː ɮarí Kímsoː //
# text_en = From here it will reach like around the valley of Boi.
1 dàgà dàgà ADP _ _ 5 mod _ AlignBegin=113040|AlignEnd=113231|Gloss=from
2 ɗûːn ɗú́ːnii ADV _ PronType=Dem 1 comp:obj _ AlignBegin=113231|AlignEnd=113422|Gloss=here
3 fáː fáː PART _ _ 1 mod _ AlignBegin=113422|AlignEnd=113613|Gloss=indeed
4 < < PUNCT _ _ 1 punct _ AlignBegin=113613|AlignEnd=113804|Gloss=PUNCT
5 wò a AUX _ Number=Sing|Person=3|Tense=Fut 0 root _ AlignBegin=114220|AlignEnd=114368|Gloss=3Sing.Fut
6 fi fi VERB _ _ 5 comp:aux _ AlignBegin=114368|AlignEnd=114516|Gloss=do-RES
7 =íː =íː PART _ _ 6 mod/m _ Gloss=Res|Result=Yes|wordform=-íː
8 ɗan ɗan ADP _ _ 6 mod _ AlignBegin=114516|AlignEnd=114664|Gloss=like
9 teː teː ADP _ _ 8 comp:obj _ AlignBegin=114664|AlignEnd=114812|Gloss=around
10 ɮarí ɮarí NOUN _ _ 9 comp:obj _ AlignBegin=114812|AlignEnd=114960|Gloss=river_bank
11-12 Kímsoː _ _ _ _ _ _ _ _
11 Kímsə Kímsə NOUN _ _ 10 mod _ AlignBegin=114960|AlignEnd=115108|Gloss=Boi
12 oː oː PART _ _ 5 mod _ AlignBegin=115108|AlignEnd=115256|Gloss=EMPH|PartType=Emp
13 // // PUNCT _ _ 5 punct _ AlignBegin=115256|AlignEnd=115400|Gloss=PUNCT
# sent_id = SAY_BC_INT_04_Hunt_080-081
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_04_HUNT.WAV
# sent_timecode = 115600, 118688
# text = ɗan zàrsə̀ tàː taːráʃí |a gyaːgón ɗa ɗûːn hár waːní ɮarí Gìmsàː //
# text_ortho = ɗan zàrsə̀ tàː taːráʃí |a gyaːgón ɗa ɗûːn hár waːní ɮarí Gìmsàː //
# text_en = And people join them, some from here, and others from across Gimsə.
1 ɗan ɗan ADV _ _ 3 mod _ AlignBegin=115600|AlignEnd=115760|Gloss=then
2 zàrsə̀ zaːr NOUN _ Number=Plur 3 subj _ AlignBegin=115760|AlignEnd=115920|Gloss=person|wordform=zaːr
3 tàː àː AUX _ Aspect=Perf|Number=Plur|Person=3 0 root _ AlignBegin=115920|AlignEnd=116080|Gloss=3Plur.Perf
4-5 taːráʃí _ _ _ _ _ _ _ _
4 taːrá taːrá VERB _ _ 3 comp:aux _ AlignBegin=116080|AlignEnd=116160|Gloss=gather|Lang=ha
5 =ʃí =ʃí PRON _ Case=Acc|Number=Plur|Person=3|PronType=Prs 4 comp:obj _ AlignBegin=116160|AlignEnd=116240|Gloss=3Plur.Obj
6 |a |a PUNCT _ _ 7 punct _ AlignBegin=116240|AlignEnd=116400|Gloss=PUNCT
7 gyaːgón gyaːgón PRON _ Definite=Spec|Number=Plur 2 conj:appos _ AlignBegin=117259|AlignEnd=117418|Gloss=SPEC
8 ɗa ɗa ADP _ _ 7 mod _ AlignBegin=117418|AlignEnd=117577|Gloss=at
9 ɗûːn ɗúːni ADV _ PronType=Dem 8 mod _ AlignBegin=117577|AlignEnd=117736|Gloss=here
10 hár hár ADP _ _ 11 cc _ AlignBegin=117736|AlignEnd=117895|Gloss=up_to
11 waːní waːní PRON _ _ 7 conj:coord _ AlignBegin=117895|AlignEnd=118054|Gloss=whovever
12 ɮarí ɮarí ADP _ _ 11 mod _ AlignBegin=118054|AlignEnd=118213|Gloss=across
13-14 Gìmsàː _ _ _ _ _ _ _ _
13 Gìmsə̀ Gìmsə̀ PROPN _ _ 12 comp:obj _ AlignBegin=118213|AlignEnd=118372|Gloss=Gimsə
14 a: a: PART _ _ 3 mod _ AlignBegin=118372|AlignEnd=118531|Gloss=VRT|PartType=Int
15 // // PUNCT _ _ 3 punct _ AlignBegin=118531|AlignEnd=118688|Gloss=PUNCT
# sent_id = SAY_BC_INT_04_Hunt_082-082
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_04_HUNT.WAV
# sent_timecode = 119140, 120500
# text = tôː ɣəndá ɣə́ mbîː dàtə̂pm kyǎː ɬə̂ //
# text_ortho = tôː kəndá kə́ mbîː dàtə̂pm kyǎː ɬə̂ //
# text_en = Well then you would start going into the bush.
1 tôː tôː PART _ _ 3 discourse _ AlignBegin=119140|AlignEnd=119310|Gloss=DM
2 ɣəndá kəndá ADV _ _ 3 mod _ AlignBegin=119310|AlignEnd=119480|Gloss=then
3 ɣə́ á AUX _ Aspect=Aor|Number=Plur|Person=2 0 root _ AlignBegin=119480|AlignEnd=119650|Gloss=2Plur.Aor
4 mbîː mbiː VERB _ _ 3 comp:aux _ AlignBegin=119650|AlignEnd=119820|Gloss=take
5 dàtə̂pm dàtə̂pm NOUN _ _ 4 comp:obj _ AlignBegin=119820|AlignEnd=119990|Gloss=road
6 kyǎː yáː AUX _ Mood=Cnd|Number=Plur|Person=2 3 mod _ AlignBegin=119990|AlignEnd=120160|Gloss=2Plur.Imp
7 ɬə̂ ɬə VERB _ _ 6 comp:aux _ AlignBegin=120160|AlignEnd=120330|Gloss=go
8 // // PUNCT _ _ 3 punct _ AlignBegin=120330|AlignEnd=120500|Gloss=PUNCT
# sent_id = SAY_BC_INT_04_Hunt_083-084
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_04_HUNT.WAV
# sent_timecode = 121220, 122306
# text = kyǎː tû ɬûː < tôː ɣə́ ɗûtíː //
# text_ortho = kyǎː tû ɬûː < tôː ɣə́ ɗûtíː //
# text_en = If you find an animal, well you kill it.
1 kyǎː yáː AUX _ Mood=Cnd|Number=Plur|Person=2 6 mod _ AlignBegin=121220|AlignEnd=121347|Gloss=2Plur.Cnd
2 tû tu VERB _ _ 1 comp:aux _ AlignBegin=121347|AlignEnd=121474|Gloss=meet
3 ɬûː ɬûː NOUN _ _ 2 comp:obj _ AlignBegin=121474|AlignEnd=121601|Gloss=animal
4 < < PUNCT _ _ 1 punct _ AlignBegin=121601|AlignEnd=121727|Gloss=PUNCT
5 tôː tôː PART _ _ 6 discourse _ AlignBegin=121727|AlignEnd=121872|Gloss=DM
6 ɣə́ á AUX _ Aspect=Aor|Number=Plur|Person=2 0 root _ AlignBegin=121872|AlignEnd=122017|Gloss=2Plur.Aor
7-9 ɗûtíː _ _ _ _ _ _ _ _
7 ɗu ɗu VERB _ _ 6 comp:aux _ AlignBegin=122017|AlignEnd=122162|Gloss=kill
8 =tə =tə PRON _ Case=Acc|Number=Sing|Person=3|PronType=Prs 7 comp:obj _ AlignBegin=122065|AlignEnd=122113|Gloss=3Sing.Obj|Incorporated=Yes
9 =íː =íː PART _ _ 7 mod/m _ Gloss=Res|Result=Yes|wordform=-íː
10 // // PUNCT _ _ 6 punct _ AlignBegin=122162|AlignEnd=122306|Gloss=PUNCT
# sent_id = SAY_BC_INT_04_Hunt_085-085
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_04_HUNT.WAV
# sent_timecode = 122780, 123758
# text = múr yóːɗan yáː ɗǔy nə gòs //
# text_ortho = múr yóːɗan yáː ɗǔy nə gòs //
# text_en = Whoever has killed it, it's his.
1 múr múr NOUN _ _ 6 dislocated@top _ AlignBegin=122780|AlignEnd=122920|Gloss=man
2 yóːɗan yóːɗan PRON _ PronType=Rel 1 mod@relcl _ AlignBegin=122920|AlignEnd=123060|Gloss=which
3 yáː yáː AUX _ Mood=Cnd|Number=Sing|Person=3 2 comp:obj _ AlignBegin=123060|AlignEnd=123200|Gloss=3Sing.Imp
4 ɗu ɗu VERB _ _ 3 comp:aux _ AlignBegin=123200|AlignEnd=123340|Gloss=kill
5 =íː =íː PART _ _ 4 mod/m _ Gloss=Res|Result=Yes|wordform=-íː
6 nə nə PART _ _ 0 root _ AlignBegin=123340|AlignEnd=123480|Gloss=be
7 gòs gòs PRON _ Case=Gen|Number=Sing|Person=3|PronType=Prs 6 comp:pred _ AlignBegin=123480|AlignEnd=123620|Gloss=3Sing.Gen
8 // // PUNCT _ _ 6 punct _ AlignBegin=123620|AlignEnd=123758|Gloss=PUNCT
# sent_id = SAY_BC_INT_04_Hunt_086-087
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_04_HUNT.WAV
# sent_timecode = 124760, 126880
# text = hár gyaːgón ʧàːyí fi || ká fî maːndə ɣáy áy //
# text_ortho = hár gyaːgón ʧàːyí fi || ká fî maːndə ɣáy áy //
# text_en = Some even ... you would fight over it indeed.
1 hár hár ADV _ _ 3 mod _ AlignBegin=124760|AlignEnd=124963|Gloss=even
2 gyaːgón gyaːgón PRON _ Definite=Spec|Number=Plur 3 subj _ AlignBegin=125166|AlignEnd=125369|Gloss=SPEC
3 ʧàːyí yáː-yiː AUX _ Aspect=ImpIter|Number=Plur|Person=3 0 root _ AlignBegin=125369|AlignEnd=125572|Gloss=3Plur.Imp.Iter
4 fi fi VERB _ _ 3 comp:aux _ AlignBegin=125572|AlignEnd=125775|Gloss=do
5 || || PUNCT _ _ 6 punct _ AlignBegin=125775|AlignEnd=125976|Gloss=PUNCT
6 ká a AUX _ Number=Plur|Person=2|Tense=Fut 3 conj:dicto _ AlignBegin=125976|AlignEnd=126127|Gloss=2Plur.Fut
7 fî fi VERB _ _ 6 comp:aux _ AlignBegin=126127|AlignEnd=126278|Gloss=do
8 maːndə maːndə NOUN _ _ 7 comp:obj _ AlignBegin=126278|AlignEnd=126429|Gloss=fight
9 ɣáy káy PRON _ Person=3|PronType=Prs 7 comp:obl@expl _ AlignBegin=126429|AlignEnd=126580|Gloss=ANAPH
10 áy áy INTJ _ _ 3 discourse _ AlignBegin=126580|AlignEnd=126731|Gloss=indeed
11 // // PUNCT _ _ 3 punct _ AlignBegin=126731|AlignEnd=126880|Gloss=PUNCT
# sent_id = SAY_BC_INT_04_Hunt_088-090
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_04_HUNT.WAV
# sent_timecode = 127020, 129136
# text = murín wul tu myáːni >+ mə mbwáː //= murín wul tu myâːn >+ mə mbwáː //
# text_ortho = murín wul tu myáːni >+ mə mbwáː //= murín wul tu myâːn >+ mə mbwáː //
# text_en = This man says it's me who killed it; this man will say it's me who killed it.
1 murín múr NOUN _ Deixis=Prox 2 subj _ AlignBegin=127020|AlignEnd=127160|Gloss=man|wordform=mur
2 wul wul VERB _ _ 0 root _ AlignBegin=127160|AlignEnd=127300|Gloss=say
3 tu tu SCONJ _ _ 2 comp:obj _ AlignBegin=127300|AlignEnd=127440|Gloss=COMP
4 myáːni myáːni PRON _ Number=Sing|Person=1|PronType=Prs 3 comp:obj _ AlignBegin=127440|AlignEnd=127579|Gloss=1Sing.IDP
5 >+ >+ PUNCT _ _ 6 punct _ AlignBegin=127579|AlignEnd=127718|Gloss=PUNCT
6 mə á AUX _ Aspect=Aor|Number=Sing|Person=1 4 comp:cleft _ AlignBegin=127718|AlignEnd=127857|Gloss=1Sing.Aor
7 mbwáː mbwaː VERB _ _ 6 comp:aux _ AlignBegin=127857|AlignEnd=127996|Gloss=shoot
8 //= //= PUNCT _ _ 10 punct _ AlignBegin=127996|AlignEnd=128134|Gloss=PUNCT
9 murín múr NOUN _ Deixis=Prox 10 subj _ AlignBegin=128134|AlignEnd=128259|Gloss=man|wordform=múr
10 wul wul VERB _ _ 2 conj:svc _ AlignBegin=128259|AlignEnd=128384|Gloss=say
11 tu tu SCONJ _ _ 10 comp:obj _ AlignBegin=128384|AlignEnd=128509|Gloss=COMP
12 myâːn myáːni PRON _ Number=Sing|Person=1|PronType=Prs 11 comp:obj _ AlignBegin=128509|AlignEnd=128634|Gloss=1Sing.IDP
13 >+ >+ PUNCT _ _ 14 punct _ AlignBegin=128634|AlignEnd=128759|Gloss=PUNCT
14 mə á AUX _ Aspect=Aor|Number=Sing|Person=1 12 comp:cleft _ AlignBegin=128759|AlignEnd=128884|Gloss=1Sing.Aor
15 mbwáː mbwaː VERB _ _ 14 comp:aux _ AlignBegin=128884|AlignEnd=129009|Gloss=shoot
16 // // PUNCT _ _ 2 punct _ AlignBegin=129009|AlignEnd=129136|Gloss=PUNCT
# sent_id = SAY_BC_INT_04_Hunt_091-092
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_04_HUNT.WAV
# sent_timecode = 129820, 131120
# text = tôː ɣə́ dàp kə́ fî kyǎː maːndə ɣáy //
# text_ortho = tôː ɣə́ dàp kə́ fî kyǎː maːndə ɣáy //
# text_en = Well you have started fighting over it.
1 tôː tôː PART _ _ 2 discourse _ AlignBegin=129820|AlignEnd=129961|Gloss=DM
2 ɣə́ á AUX _ Aspect=Aor|Number=Plur|Person=2 0 root _ AlignBegin=129961|AlignEnd=130102|Gloss=2Plur.Aor
3 dàp dap VERB _ _ 2 comp:aux _ AlignBegin=130102|AlignEnd=130243|Gloss=follow
4 kə́ á AUX _ Aspect=Aor|Number=Plur|Person=2 2 conj:coord _ AlignBegin=130243|AlignEnd=130384|Gloss=2Plur.Aor
5 fî fi VERB _ _ 4 comp:aux _ AlignBegin=130384|AlignEnd=130526|Gloss=do
6 kyǎː yi-ká AUX _ Aspect=Prog|Number=Plur|Person=2 5 parataxis@comp _ AlignBegin=130526|AlignEnd=130674|Gloss=2.Plur.Prog
7 maːndə maːndə NOUN _ _ 6 comp:aux _ AlignBegin=130674|AlignEnd=130822|Gloss=fight
8 ɣáy káy PRON _ Person=3|PronType=Prs 5 comp:obl@expl _ AlignBegin=130822|AlignEnd=130970|Gloss=ANAPH
9 // // PUNCT _ _ 2 punct _ AlignBegin=130970|AlignEnd=131120|Gloss=PUNCT
# sent_id = SAY_BC_INT_04_Hunt_093-094
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_04_HUNT.WAV
# sent_timecode = 131900, 133040
# text = yáː ɗâk ɗǎŋ máː < ɬúːy wò láːp ʒà //
# text_ortho = yáː ɗâk ɗǎŋ máː < ɬúːy wò láːp ʒà //
# text_en = If he's not careful, the meat will be lost.
1 yáː yáː AUX _ Mood=Cnd|Number=Sing|Person=3 9 mod _ AlignBegin=131900|AlignEnd=131996|Gloss=3Sing.Cnd
2 ɗâk ɗak VERB _ _ 1 comp:aux _ AlignBegin=131996|AlignEnd=132092|Gloss=be_careful
3-4 ɗǎŋ _ _ _ _ _ _ _ _
3 ɗa ɗa PART _ _ 2 compound:prt _ AlignBegin=132092|AlignEnd=132188|Gloss=again
4 hŋ́ hŋ́ PART _ Polarity=Neg 2 mod _ AlignBegin=132188|AlignEnd=132284|Gloss=Neg2
5 máː máː PART _ _ 1 mod _ AlignBegin=132284|AlignEnd=132380|Gloss=also
6 < < PUNCT _ _ 1 punct _ AlignBegin=132380|AlignEnd=132474|Gloss=PUNCT
7-8 ɬúːy _ _ _ _ _ _ _ _
7 ɬûː ɬûː NOUN _ _ 9 subj _ AlignBegin=132474|AlignEnd=132587|Gloss=meat
8 -íː -íː DET _ Deixis=Dist 7 det/m _ AlignBegin=132474|AlignEnd=132587|Gloss=Remt|wordform=ɬûː
9 wò a AUX _ Number=Sing|Person=3|Tense=Fut 0 root _ AlignBegin=132587|AlignEnd=132700|Gloss=3Sing.Fut
10 láːp láːp VERB _ _ 9 comp:aux _ AlignBegin=132700|AlignEnd=132813|Gloss=follow
11 ʒà ʒà NOUN _ _ 10 comp:obj _ AlignBegin=132813|AlignEnd=132926|Gloss=water
12 // // PUNCT _ _ 9 punct _ AlignBegin=132926|AlignEnd=133040|Gloss=PUNCT
# sent_id = SAY_BC_INT_04_Hunt_095-095
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_04_HUNT.WAV
# sent_timecode = 133200, 134079
# text = tá bàsáɣtíː káwêy //
# text_ortho = tá bàsáktíː káwêy //
# text_en = They will merely throw it away.
1 tá a AUX _ Number=Plur|Person=3|Tense=Fut 0 root _ AlignBegin=133200|AlignEnd=133420|Gloss=3Plur.Fut
2-4 bàsáɣtíː _ _ _ _ _ _ _ _
2 bàsák basák VERB _ _ 1 comp:aux _ AlignBegin=133420|AlignEnd=133640|Gloss=scatter
3 =tə =tə PRON _ Case=Acc|Number=Sing|Person=3|PronType=Prs 2 comp:obj _ AlignBegin=133493|AlignEnd=133566|Gloss=3Sing.Obj|Incorporated=Yes
4 =íː =íː PART _ _ 2 mod/m _ Gloss=Res|Result=Yes|wordform=-íː
5 káwêy káwêy ADV _ _ 2 mod _ AlignBegin=133640|AlignEnd=133860|Gloss=merely
6 // // PUNCT _ _ 1 punct _ AlignBegin=133860|AlignEnd=134079|Gloss=PUNCT
# sent_id = SAY_BC_INT_04_Hunt_096-096
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_04_HUNT.WAV
# sent_timecode = 135340, 136148
# text = tôː tə̀tàyáː fî ʧík //
# text_ortho = tôː tə̀tàyáː fî ʧík //
# text_en = That's how they used to do.
1 tôː tôː PART _ _ 2 discourse _ AlignBegin=135340|AlignEnd=135502|Gloss=DM
2 tə̀tàyáː ta-yáː AUX _ Aspect=Imp|Number=Plur|Person=3|Tense=Rem 0 root _ AlignBegin=135502|AlignEnd=135664|Gloss=3Plur.Rem.Imp
3 fî fi VERB _ _ 2 comp:aux _ AlignBegin=135664|AlignEnd=135826|Gloss=do
4 ʧík ʧík ADV _ _ 3 mod _ AlignBegin=135826|AlignEnd=135988|Gloss=thus
5 // // PUNCT _ _ 2 punct _ AlignBegin=135988|AlignEnd=136148|Gloss=PUNCT
# sent_id = SAY_BC_INT_04_Hunt_097-098
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_04_HUNT.WAV
# sent_timecode = 137160, 140220
# text = dòmín bàː tá fûː gùŋ tu má fî gàyyoː máː ʧík hŋ́ //
# text_ortho = dòmín bàː tá fûː gùŋ tu má fî gàyyoː máː ʧík hŋ́ //
# text_en = Because they wouldn't tell the chief ... like we will go hunting.
1 dòmín dòmín SCONJ _ _ 3 discourse _ AlignBegin=137160|AlignEnd=137397|Gloss=because
2 bàː bàː PART _ Polarity=Neg 3 mod _ AlignBegin=137397|AlignEnd=137634|Gloss=Neg1
3 tá a AUX _ Number=Plur|Person=3|Tense=Fut 0 root _ AlignBegin=137634|AlignEnd=137871|Gloss=3Plur.Fut
4 fûː fuː VERB _ _ 3 comp:aux _ AlignBegin=137871|AlignEnd=138108|Gloss=tell
5 gùŋ gùŋ NOUN _ _ 4 comp:obj@R _ AlignBegin=138108|AlignEnd=138345|Gloss=chief
6 tu tu SCONJ _ _ 4 comp:obj@T _ AlignBegin=138345|AlignEnd=138580|Gloss=COMP
7 má a AUX _ Number=Plur|Person=1|Tense=Fut 6 comp:obj _ AlignBegin=139160|AlignEnd=139292|Gloss=1Plur.Fut
8 fî fi VERB _ _ 7 comp:aux _ AlignBegin=139292|AlignEnd=139424|Gloss=do
9-10 gàyyoː _ _ _ _ _ _ _ _
9 gàyyà gàyyà NOUN _ _ 8 comp:obj _ AlignBegin=139424|AlignEnd=139556|Gloss=communal_work|Lang=ha
10 oː oː PART _ _ 7 mod _ AlignBegin=139556|AlignEnd=139688|Gloss=Emp|PartType=Emp
11 máː máː PART _ _ 4 mod _ AlignBegin=139688|AlignEnd=139820|Gloss=even
12 ʧík ʧík ADV _ _ 4 mod _ AlignBegin=139820|AlignEnd=139952|Gloss=thus
13 hŋ́ hŋ́ PART _ Polarity=Neg 4 mod _ AlignBegin=139952|AlignEnd=140084|Gloss=Neg2
14 // // PUNCT _ _ 3 punct _ AlignBegin=140084|AlignEnd=140220|Gloss=PUNCT
# sent_id = SAY_BC_INT_04_Hunt_099-101
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_04_HUNT.WAV
# sent_timecode = 140380, 143760
# text = yàːʃí < mə́n námtsə káwêy tá wûl tu tôː gàyyà ɗúːni oː //
# text_ortho = yàːʃí < mə́n námtsə káwêy tá wûl tu tôː gàyyà ɗúːni oː //
# text_en = Them, the bush people, they will only say there's a communal hunting today.
1 yàːʃí yàːʃí PRON _ Number=Sing|Person=3|PronType=Prs 6 dislocated@subj _ AlignBegin=140380|AlignEnd=140670|Gloss=3Plur.IDP
2 < < PUNCT _ _ 1 punct _ AlignBegin=140670|AlignEnd=140960|Gloss=PUNCT
3 mə́n múr NOUN _ Number=Plur 6 dislocated@subj _ AlignBegin=140960|AlignEnd=141250|Gloss=people
4 námtsə námtsə NOUN _ _ 3 compound _ AlignBegin=141250|AlignEnd=141541|Gloss=bush
5 káwêy káwêy ADV _ _ 3 mod _ AlignBegin=141541|AlignEnd=141675|Gloss=merely
6 tá a AUX _ Number=Plur|Person=3|Tense=Fut 0 root _ AlignBegin=141675|AlignEnd=141809|Gloss=3Plur.Fut
7 wûl wul VERB _ _ 6 comp:aux _ AlignBegin=141809|AlignEnd=141943|Gloss=say
8 tu tu SCONJ _ _ 7 comp:obj _ AlignBegin=141943|AlignEnd=142077|Gloss=COMP
9 tôː tôː PART _ _ 10 discourse _ AlignBegin=142077|AlignEnd=142211|Gloss=DM
10 gàyyà gàyyà NOUN _ _ 8 comp:obj _ AlignBegin=143100|AlignEnd=143265|Gloss=communal_work|Lang=ha
11 ɗúːni ɗúːni ADV _ PronType=Dem 10 mod _ AlignBegin=143265|AlignEnd=143430|Gloss=here
12 oː oː PART _ _ 6 mod _ AlignBegin=143430|AlignEnd=143595|Gloss=Emp|PartType=Emp
13 // // PUNCT _ _ 6 punct _ AlignBegin=143595|AlignEnd=143760|Gloss=PUNCT
# sent_id = SAY_BC_INT_04_Hunt_102-102
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_04_HUNT.WAV
# sent_timecode = 144540, 145201
# text = naːr máː ʧi ʧík //
# text_ortho = naːr máː ʧi ʧík //
# text_en = Individual hunting too is like this,
1 naːr naːr NOUN _ _ 3 dislocated@subj _ AlignBegin=144540|AlignEnd=144672|Gloss=hunting
2 máː máː PART _ _ 1 mod _ AlignBegin=144672|AlignEnd=144804|Gloss=also
3 ʧi yi AUX _ _ 0 root _ AlignEnd=144936|Gloss=3Sing.be|wordform=yi
4 ʧík ʧík ADV _ _ 3 comp:pred _ AlignBegin=144936|AlignEnd=145068|Gloss=thus
5 // // PUNCT _ _ 3 punct _ AlignBegin=145068|AlignEnd=145201|Gloss=PUNCT
# sent_id = SAY_BC_INT_04_Hunt_103-103
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_04_HUNT.WAV
# sent_timecode = 145201, 146060
# text = bàː tá fûː gùŋ hŋ́ //
# text_ortho = bàː tá fûː gùŋ hŋ́ //
# text_en = They wouldn't tell the chief.
1 bàː bàː PART _ Polarity=Neg 2 mod _ AlignBegin=145201|AlignEnd=145344|Gloss=Neg1
2 tá a AUX _ Number=Plur|Person=3|Tense=Fut 0 root _ AlignBegin=145344|AlignEnd=145487|Gloss=3Plur.Fut
3 fûː fuː VERB _ _ 2 comp:aux _ AlignBegin=145487|AlignEnd=145630|Gloss=tell
4 gùŋ gùŋ NOUN _ _ 3 comp:obj@R _ AlignBegin=145630|AlignEnd=145773|Gloss=chief
5 hŋ́ hŋ́ PART _ Polarity=Neg 3 mod _ AlignBegin=145773|AlignEnd=145916|Gloss=Neg2
6 // // PUNCT _ _ 2 punct _ AlignBegin=145916|AlignEnd=146060|Gloss=PUNCT
# sent_id = SAY_BC_INT_04_Hunt_104-104
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_04_HUNT.WAV
# sent_timecode = 147354, 148600
# text = séː tə̀ wùl tu má fî naːroː kúrûm //
# text_ortho = séː tə̀ wùl tu má fî naːroː kúrûm //
# text_en = They would only say we'll go hunting.
1 séː séː ADV _ _ 2 mod _ AlignBegin=147354|AlignEnd=147479|Gloss=only
2 tə̀ tə̀ AUX _ Mood=Sub|Number=Plur|Person=3 0 root _ AlignBegin=147479|AlignEnd=147604|Gloss=3Plur.Sub
3 wùl wul VERB _ _ 2 comp:aux _ AlignBegin=147604|AlignEnd=147729|Gloss=say
4 tu tu SCONJ _ _ 3 comp:obj _ AlignBegin=147729|AlignEnd=147854|Gloss=COMP
5 má a AUX _ Number=Plur|Person=1|Tense=Fut 4 comp:obj _ AlignBegin=147854|AlignEnd=147979|Gloss=1Plur.Fut
6 fî fi VERB _ _ 5 comp:aux _ AlignBegin=147979|AlignEnd=148104|Gloss=do
7-8 naːroː _ _ _ _ _ _ _ _
7 naːr naːr NOUN _ _ 6 comp:obj _ AlignBegin=148104|AlignEnd=148229|Gloss=hunting
8 oː oː PART _ _ 5 mod _ AlignBegin=148229|AlignEnd=148354|Gloss=Emp|PartType=Emp
9 kúrûm kúrûm ADV _ _ 3 mod _ AlignBegin=148354|AlignEnd=148479|Gloss=only
10 // // PUNCT _ _ 2 punct _ AlignBegin=148479|AlignEnd=148600|Gloss=PUNCT
# sent_id = SAY_BC_INT_04_Hunt_105-105
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_04_HUNT.WAV
# sent_timecode = 150134, 150416
# text = m̀ː //
# text_ortho = m̀ː //
# text_en = Yes.
1 m̀ː m̀ː INTJ _ _ 0 root _ AlignBegin=150134|AlignEnd=150275|Gloss=yes
2 // // PUNCT _ _ 1 punct _ AlignBegin=150275|AlignEnd=150416|Gloss=PUNCT
# sent_id = SAY_BC_INT_04_Hunt_106-106
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_04_HUNT.WAV
# sent_timecode = 150623, 151303
# text = átâ yi ʧǐː //
# text_ortho = átâ yi ʧǐː //
# text_en = It used to be like this.
1 átâ ta AUX _ Number=Sing|Person=3|Tense=Rem 0 root _ AlignBegin=150623|AlignEnd=150793|Gloss=3Sing.Rem
2 yi yi VERB _ _ 1 comp:aux _ AlignBegin=150793|AlignEnd=150963|Gloss=be
3 ʧǐː ʧík ADV _ _ 2 comp:pred _ AlignBegin=150963|AlignEnd=151048|Gloss=thus
4 // // PUNCT _ _ 1 punct _ AlignBegin=151133|AlignEnd=151303|Gloss=PUNCT
# sent_id = SAY_BC_INT_04_Hunt_107-108
# speaker_id = SP2
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_04_HUNT.WAV
# sent_timecode = 151303, 153639
# text = bàː kə̀tà yír gùŋ pìːswàːn hŋ́ gəndí ?//
# text_ortho = báː kə̀tà yír gùŋ pìːswàːn hŋ́ gəndí ?//
# text_en = Didn't you use to have your hunting chief?
1 bàː bàː PART _ Polarity=Neg 2 mod _ AlignBegin=151303|AlignEnd=151692|Gloss=Neg1
2 kə̀tà ta AUX _ Number=Sing|Person=2|Tense=Rem 0 root _ AlignBegin=151692|AlignEnd=152081|Gloss=2Plur.Rem
3 yír yír VERB _ _ 2 comp:aux _ AlignBegin=152081|AlignEnd=152470|Gloss=have
4 gùŋ gùŋ NOUN _ Definite=Cons 3 comp:obj _ AlignBegin=152470|AlignEnd=152704|Gloss=chief-CONS
5-6 pìːswàːn _ _ _ _ _ _ _ _
5 pìːs pîːs NOUN _ Definite=Cons 4 compound _ AlignBegin=152704|AlignEnd=152821|Gloss=arrow
6 =wàːn =waːn PRON _ Case=Gen|Number=Plur|Person=2|PronType=Prs 4 mod@poss _ AlignBegin=152821|AlignEnd=152938|Gloss=2Plur.Gen
7 hŋ́ hŋ́ PART _ Polarity=Neg 3 mod _ AlignBegin=152938|AlignEnd=153172|Gloss=Neg2
8 gəndí kəndí PART _ _ 2 discourse _ AlignBegin=153172|AlignEnd=153406|Gloss=be
9 ?// ?// PUNCT _ _ 2 punct _ AlignBegin=153406|AlignEnd=153639|Gloss=PUNCT
# sent_id = SAY_BC_INT_04_Hunt_109-110
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_INT_04_HUNT.WAV
# sent_timecode = 155120, 156528
# text = m̀ː gùŋ pìːsàː ?//
# text_ortho = m̀ː gùŋ pìːsàː ?//
# text_en = Er, a chief of war?
1 m̀ː m̀ː INTJ _ _ 2 discourse _ AlignBegin=155120|AlignEnd=155838|Gloss=yes
2 gùŋ gùŋ NOUN _ Definite=Cons 0 root _ AlignBegin=155838|AlignEnd=156010|Gloss=chief-CONS
3-4 pìːsàː _ _ _ _ _ _ _ _
3 pìːs pîːs NOUN _ _ 2 mod _ AlignBegin=156010|AlignEnd=156182|Gloss=arrow
4 à: a: PART _ _ 2 mod _ AlignBegin=156182|AlignEnd=156354|Gloss=VRT|PartType=Int
5 ?// ?// PUNCT _ _ 2 punct _ AlignBegin=156354|AlignEnd=156528|Gloss=PUNCT