-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSAY_BC_CONV_03.conllu
8165 lines (7725 loc) · 541 KB
/
SAY_BC_CONV_03.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_CONV_03_001-004
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_CONV_03.WAV
# sent_timecode = 1041, 5179
# text = èː m̀ː ìdán myáː ɬíː || ìdán myàː ɬíː < myáː súː &//
# text_ortho = èː m̀ː ìdán myáː ɬíː || ìdán myàː ɬíː < myáː súː
# text_en = Er... If we go... if we go, I want...
1 èː èː INTJ _ _ 13 discourse _ AlignBegin=1041|AlignEnd=1489|Gloss=yes
2 m̀ː m̀ː INTJ _ _ 13 discourse _ AlignBegin=1489|AlignEnd=1936|Gloss=INTJ
3 ìdán ìdán SCONJ _ _ 13 mod _ AlignBegin=2388|AlignEnd=2560|Gloss=if
4 myáː yáː AUX _ Mood=Cnd|Number=Sing|Person=1 3 comp:obj _ AlignBegin=2560|AlignEnd=2732|Gloss=1Sing.Cnd
5 ɬə ɬə VERB _ _ 4 comp:aux _ AlignBegin=2732|AlignEnd=2904|Gloss=go|wordform=ɬíː
6 =íː =íː PART _ _ 5 clit:mod _ Gloss=Res|Result=Yes|wordform=-íː
7 || || PUNCT _ _ 8 punct _ AlignBegin=2904|AlignEnd=3074|Gloss=PUNCT
8 ìdán ìdán SCONJ _ _ 3 conj:dicto _ AlignBegin=3793|AlignEnd=3959|Gloss=if
9 myàː yáː AUX _ Mood=Cnd|Number=Plur|Person=1 8 comp:obj _ AlignBegin=3959|AlignEnd=4125|Gloss=1Plur.Cnd
10 ɬə ɬə VERB _ _ 9 comp:aux _ AlignBegin=4125|AlignEnd=4291|Gloss=go|wordform=ɬíː
11 =íː =íː PART _ _ 10 clit:mod _ Gloss=Res|Result=Yes|wordform=-íː
12 < < PUNCT _ _ 3 punct _ AlignBegin=4291|AlignEnd=4458|Gloss=PUNCT
13 myáː yáː AUX _ Aspect=Imp|Number=Sing|Person=1 0 root@scrap _ AlignBegin=4458|AlignEnd=4818|Gloss=1Sing.Imp
14 súː súː VERB _ _ 13 comp:aux _ AlignBegin=4818|AlignEnd=5179|Gloss=want
15 &// &// PUNCT _ _ 13 punct _ AlignBegin=5179|AlignEnd=5179|Gloss=PUNCT
# sent_id = SAY_BC_CONV_03_005-006
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_CONV_03.WAV
# sent_timecode = 5179, 7091
# text = ə̀ː m̀ː myàː ɬíː &//
# text_ortho = ə̀ː m̀ː myàː ɬíː &//
# text_en = Er... if we go...
1 ə̀ː ə̀ː INTJ _ _ 3 discourse _ AlignBegin=5179|AlignEnd=5493|Gloss=INTJ
2 m̀ː m̀ː INTJ _ _ 3 discourse _ AlignBegin=5493|AlignEnd=5808|Gloss=INTJ
3 myàː yáː AUX _ Mood=Cnd|Number=Plur|Person=1 0 root@scrap _ AlignBegin=6562|AlignEnd=6738|Gloss=1Plur.Cnd
4 ɬə ɬə VERB _ _ 3 comp:aux _ AlignBegin=6738|AlignEnd=6914|Gloss=go|wordform=ɬíː
5 =íː =íː PART _ _ 4 clit:mod _ Gloss=Res|Result=Yes|wordform=-íː
6 &// &// PUNCT _ _ 3 punct _ AlignBegin=6914|AlignEnd=7091|Gloss=PUNCT
# sent_id = SAY_BC_CONV_03_007-013
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_CONV_03.WAV
# sent_timecode = 7719, 16271
# text = kàmán myáː laːtsə́y də̀n ʤǎːn < tòː dzàŋ Malâːr yǎː ɬə tûm < tòː dzàŋ èː < má sûmíɗi ʧimʃí ɗa || ɗa Dʒòʃès //
# text_ortho = kàmán myáː láːtsə́y də̀n ʤǎːn < tòː dzàn Malâːr yǎː ɬə́ tûm < tòː dzàŋ èː < má sûmíɗi ʧimʃí ɗa || ɗa ʤòʃès //
# text_en = Like if I proceed to the house tomorrow, well on thursday when they come to see me, well on... er... I will come back with them to... to Jos.
1 kàmán kàmán SCONJ _ _ 20 discourse _ AlignBegin=7719|AlignEnd=7898|Gloss=as
2 myáː yáː AUX _ Mood=Cnd|Number=Sing|Person=1 20 mod _ AlignBegin=7898|AlignEnd=8077|Gloss=1Sing.Cnd
3 laːtsə́ laːtsə́ VERB _ _ 2 comp:aux _ AlignBegin=8077|AlignEnd=8256|Gloss=pass_by|wordform=laːtsə́y
4 =íː =íː PART _ _ 3 clit:mod _ Gloss=Res|Result=Yes|wordform=-íː
5 də̀n də̀n NOUN _ _ 3 comp:obj@G _ AlignBegin=8256|AlignEnd=8435|Gloss=house
6 ʤǎːn ʤǎːn ADV _ PronType=Dem 3 mod _ AlignBegin=8435|AlignEnd=8614|Gloss=tomorrow
7 < < PUNCT _ _ 2 punct _ AlignBegin=8614|AlignEnd=8793|Gloss=PUNCT
8 tòː tòː PART _ _ 20 discourse _ AlignBegin=9203|AlignEnd=9359|Gloss=well
9 dzàŋ dzàŋ NOUN _ _ 20 mod _ AlignBegin=9359|AlignEnd=9515|Gloss=day
10 Malâːr Malâːr PROPN _ _ 9 compound _ AlignBegin=9515|AlignEnd=9671|Gloss=Malar
11 yǎː yáː AUX _ Mood=Cnd|Number=Plur|Person=3 20 mod _ AlignBegin=9671|AlignEnd=9827|Gloss=3Plur.Cnd
12 ɬə ɬə VERB _ _ 11 comp:aux _ AlignBegin=9827|AlignEnd=9983|Gloss=go|SVC=Yes
13-14 tûm _ _ _ _ _ _ _ _
13 tú tu VERB _ _ 12 compound:svc _ AlignBegin=9983|AlignEnd=10061|Gloss=meet
14 =mə =mə PRON _ Case=Acc|Number=Sing|Person=1|PronType=Prs 13 comp:obj _ AlignBegin=10061|AlignEnd=10139|Gloss=1Sing.Obj
15 < < PUNCT _ _ 11 punct _ AlignBegin=10139|AlignEnd=10298|Gloss=PUNCT
16 tòː tòː PART _ _ 20 discourse _ AlignBegin=10684|AlignEnd=11134|Gloss=well
17 dzàŋ dzàŋ NOUN _ _ 20 mod _ AlignBegin=11134|AlignEnd=11584|Gloss=day
18 èː èː INTJ _ _ 17 discourse _ AlignBegin=12383|AlignEnd=13007|Gloss=HESIT
19 < < PUNCT _ _ 17 punct _ AlignBegin=13007|AlignEnd=13632|Gloss=PUNCT
20 má a AUX _ Number=Plur|Person=1|Tense=Fut 0 root _ AlignBegin=13632|AlignEnd=13972|Gloss=1Plur.Fut
21-23 sûmíɗi _ _ _ _ _ _ _ _
21 sû su VERB _ _ 20 comp:aux _ AlignBegin=13972|AlignEnd=14085|Gloss=return
22 =mí =mí PRON _ Case=Acc|Number=Plur|Person=1|PronType=Prs 21 comp:obj _ AlignBegin=14085|AlignEnd=14198|Gloss=1Plur.Obj
23 =ɗi =ɗi PART _ _ 21 compound:prt _ AlignBegin=14198|AlignEnd=14312|Gloss=Ctp
24-25 ʧimʃí _ _ _ _ _ _ _ _
24 ʧim ʧim ADP _ _ 21 comp:obl _ AlignBegin=14312|AlignEnd=14482|Gloss=with
25 =ʃí =ʃí PRON _ Case=Acc|Number=Plur|Person=3|PronType=Prs 24 comp:obj _ AlignBegin=14482|AlignEnd=14653|Gloss=3Plur.Obj
26 ɗa ɗa ADP _ _ 21 comp:obl _ AlignBegin=14897|AlignEnd=15082|Gloss=at
27 || || PUNCT _ _ 28 punct _ AlignBegin=15082|AlignEnd=15267|Gloss=PUNCT
28 ɗa ɗa ADP _ _ 26 conj:dicto _ AlignBegin=15657|AlignEnd=15862|Gloss=at
29 Dʒòʃès Dʒòs PROPN _ Definite=Def 28 comp:obj _ AlignBegin=15862|AlignEnd=16067|Gloss=Jos
30 // // PUNCT _ _ 20 punct _ AlignBegin=16067|AlignEnd=16271|Gloss=PUNCT
# sent_id = SAY_BC_CONV_03_014-015
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_CONV_03.WAV
# sent_timecode = 17031, 18722
# text = myàː sûmíɗi ʧimʃí < ma mán mbûɗíː //
# text_ortho = myàː sûmíɗi ʧimʃí < ma mán mbûɗíː //
# text_en = If we come back together, I will spend the night.
1 myàː yáː AUX _ Mood=Cnd|Number=Plur|Person=1 8 mod _ AlignBegin=17031|AlignEnd=17227|Gloss=1Plur.Cnd
2-4 sûmíɗi _ _ _ _ _ _ _ _
2 sû su VERB _ _ 1 comp:aux _ AlignBegin=17227|AlignEnd=17292|Gloss=return
3 =mí =mí PRON _ Case=Acc|Number=Plur|Person=1|PronType=Prs 2 comp:obj _ AlignBegin=17292|AlignEnd=17357|Gloss=1Plur.Obj
4 =ɗi =ɗi PART _ _ 2 compound:prt _ AlignBegin=17357|AlignEnd=17423|Gloss=Ctp
5-6 ʧimʃí _ _ _ _ _ _ _ _
5 ʧim ʧim ADP _ _ 2 comp:obl _ AlignBegin=17423|AlignEnd=17521|Gloss=with
6 =ʃí =ʃí PRON _ Case=Acc|Number=Plur|Person=3|PronType=Prs 5 comp:obj _ AlignBegin=17521|AlignEnd=17619|Gloss=3Plur.Obj
7 < < PUNCT _ _ 1 punct _ AlignBegin=17619|AlignEnd=17817|Gloss=PUNCT
8 ma a AUX _ Number=Sing|Person=1|Tense=Fut 0 root _ AlignBegin=18108|AlignEnd=18262|Gloss=1Sing.Fut
9 mán man VERB _ _ 8 comp:aux _ AlignBegin=18262|AlignEnd=18416|Gloss=come|SVC=Yes
10 mbút mbút VERB _ _ 9 compound:svc _ AlignBegin=18416|AlignEnd=18570|Gloss=spend_night|wordform=mbûɗíː
11 =íː =íː PART _ _ 10 clit:mod _ Gloss=Res|Result=Yes|wordform=-íː
12 // // PUNCT _ _ 8 punct _ AlignBegin=18570|AlignEnd=18722|Gloss=PUNCT
# sent_id = SAY_BC_CONV_03_016-020
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_CONV_03.WAV
# sent_timecode = 19608, 24481
# text = myáː mbúɗíː < lə̂p yáː ɬǎːy < má ɲôl ká teː || teː lə̂p gyaː m̀ː || gyaː Maːtíyú //
# text_ortho = myáː mbúɗíː < lə̂p yáː ɬǎːy < má ɲôl ká teː || teː lə̂p gyaː m̀ː || gyáː Maːtíyú //
# text_en = If I spend the night, in the morning, I will go to... to the village of er... Mathew.
1 myáː yáː AUX _ Mood=Cnd|Number=Sing|Person=1 10 mod _ AlignBegin=19608|AlignEnd=19753|Gloss=.1Sing.Cnd
2 mbút mbút VERB _ _ 1 comp:aux _ AlignBegin=19753|AlignEnd=19898|Gloss=spend_night|wordform=mbúɗíː
3 =íː =íː PART _ _ 2 clit:mod _ Gloss=Res|Result=Yes|wordform=-íː
4 < < PUNCT _ _ 1 punct _ AlignBegin=19898|AlignEnd=20044|Gloss=PUNCT
5 lə̂p lə̂p NOUN _ _ 6 subj _ AlignBegin=20266|AlignEnd=20409|Gloss=place
6 yáː yáː AUX _ Mood=Cnd|Number=Sing|Person=3 10 mod _ AlignBegin=20409|AlignEnd=20552|Gloss=3Sing.Cnd
7 ɬaː ɬaː VERB _ _ 6 comp:aux _ AlignBegin=20552|AlignEnd=20695|Gloss=cut|wordform=ɬǎːy
8 =íː =íː PART _ _ 7 clit:mod _ Gloss=Res|Result=Yes|wordform=-íː
9 < < PUNCT _ _ 6 punct _ AlignBegin=20695|AlignEnd=20837|Gloss=PUNCT
10 má a AUX _ Number=Plur|Person=1|Tense=Fut 0 root _ AlignBegin=21091|AlignEnd=21263|Gloss=1Plur.Fut
11 ɲôl ɲol VERB _ _ 10 comp:aux _ AlignBegin=21263|AlignEnd=21435|Gloss=go_out
12 ká ká ADP _ _ 11 comp:obj _ AlignBegin=21435|AlignEnd=21607|Gloss=at
13 teː teː ADP _ _ 12 comp:obj _ AlignBegin=21607|AlignEnd=21779|Gloss=at
14 || || PUNCT _ _ 15 punct _ AlignBegin=21779|AlignEnd=21953|Gloss=PUNCT
15 teː teː ADP _ _ 13 conj:dicto _ AlignBegin=22557|AlignEnd=22759|Gloss=at
16 lə̂p lə̂p NOUN _ _ 15 comp:obj _ AlignBegin=22759|AlignEnd=22961|Gloss=place
17 gyaː gyaː DET _ Number=Plur 16 mod@poss _ AlignBegin=22961|AlignEnd=23163|Gloss=3Plur
18 m̀ː m̀ː INTJ _ _ 21 discourse _ AlignBegin=23163|AlignEnd=23365|Gloss=INTJ
19 || || PUNCT _ _ 21 punct _ AlignBegin=23365|AlignEnd=23567|Gloss=PUNCT
20 gyaː gyaː DET _ Number=Plur 21 det _ AlignBegin=24017|AlignEnd=24172|Gloss=3Plur
21 Maːtíyú Maːtíyú PROPN _ _ 17 conj:dicto _ AlignBegin=24172|AlignEnd=24327|Gloss=Mathew
22 // // PUNCT _ _ 10 punct _ AlignBegin=24327|AlignEnd=24481|Gloss=PUNCT
# sent_id = SAY_BC_CONV_03_021-024
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_CONV_03.WAV
# sent_timecode = 25163, 28413
# text = tòː ìdán myàː ɲôl ɓaʃí < myàː gàmáy ɓaʃí ɗân < tòː &//
# text_ortho = tòː ìdán myàː ɲôl ɓaʃí < myàː gàmáy ɓaʃí ɗân < tòː &//
# text_en = Well if we go through their village, if we finish there < well...
1 tòː tòː PART _ _ 15 discourse _ AlignBegin=25163|AlignEnd=25301|Gloss=well
2 ìdán ìdán SCONJ _ _ 15 mod _ AlignBegin=25301|AlignEnd=25439|Gloss=if
3 myàː yáː AUX _ Mood=Cnd|Number=Plur|Person=1 2 comp:obj _ AlignBegin=25439|AlignEnd=25577|Gloss=1Plur.Cnd
4 ɲôl ɲol VERB _ _ 3 comp:aux _ AlignBegin=25577|AlignEnd=25715|Gloss=go_out
5-6 ɓaʃí _ _ _ _ _ _ _ _
5 ɓas ɓas ADP _ _ 4 comp:obl _ AlignBegin=25715|AlignEnd=25784|Gloss=of
6 =ʃí =ʃí PRON _ Case=Acc|Number=Plur|Person=3|PronType=Prs 5 comp:obj _ AlignBegin=25784|AlignEnd=25853|Gloss=3Plur.Obj
7 < < PUNCT _ _ 2 punct _ AlignBegin=25853|AlignEnd=25994|Gloss=PUNCT
8 myàː yáː AUX _ Mood=Cnd|Number=Plur|Person=1 15 mod _ AlignBegin=26427|AlignEnd=26739|Gloss=1Plur.Cnd
9 gamá gamá VERB _ _ 8 comp:aux _ AlignBegin=26739|AlignEnd=27051|Gloss=finish|wordform=gàmáy
10 =íː =íː PART _ _ 9 clit:mod _ Gloss=Res|Result=Yes|wordform=-íː
11-12 ɓaʃí _ _ _ _ _ _ _ _
11 ɓas ɓas ADP _ _ 9 comp:obl _ AlignBegin=27448|AlignEnd=27513|Gloss=of
12 =ʃí =ʃí PRON _ Case=Acc|Number=Plur|Person=3|PronType=Prs 11 comp:obj _ AlignBegin=27513|AlignEnd=27578|Gloss=3Plur.Obj
13 ɗân ɗáni ADV _ PronType=Dem 9 mod _ AlignBegin=27578|AlignEnd=27708|Gloss=there
14 < < PUNCT _ _ 8 punct _ AlignBegin=27708|AlignEnd=27837|Gloss=PUNCT
15 tòː tòː PART _ _ 0 root@scrap _ AlignBegin=28031|AlignEnd=28222|Gloss=well
16 &// &// PUNCT _ _ 15 punct _ AlignBegin=28222|AlignEnd=28413|Gloss=PUNCT
# sent_id = SAY_BC_CONV_03_025-031
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_CONV_03.WAV
# sent_timecode = 28413, 35650
# text = ka san daga èː ə̀ːm dàtə̂pm Gèʤì |c tə́ || tə́ || tə́ gìp Bawʧi < bàː á fǔpm sòːséyǐn //
# text_ortho = ka san daga èː ə̀ːm dàtə̂pm Gèʤì |c tə́ || tə́ || tə́ gìp Bawʧi < bàː á fǔpm sòːséyǐn //
# text_en = <hau from er... hau> er... the Geji road to... to... to the center of Bauchi it is not very far.
1 ka ka X _ Foreign=Yes 18 parataxis@discourse _ AlignBegin=28413|AlignEnd=28698|Gloss=you|Lang=ha
2 san san X _ Foreign=Yes 1 flat@foreign _ AlignBegin=28698|AlignEnd=28983|Gloss=know|Lang=ha
3 daga daga CCONJ _ Foreign=Yes 6 cc@preconj _ AlignBegin=28983|AlignEnd=29269|Gloss=from|Lang=ha
4 èː èː INTJ _ _ 6 discourse _ AlignBegin=29905|AlignEnd=30415|Gloss=FILL
5 ə̀ːm ə̀ːm INTJ _ _ 6 discourse _ AlignBegin=30415|AlignEnd=30924|Gloss=FILL
6 dàtə̂pm dàtə̂pm NOUN _ _ 18 dislocated@subj _ AlignBegin=30924|AlignEnd=31211|Gloss=way
7 Gèʤì Gèʤì PROPN _ _ 6 mod _ AlignBegin=31211|AlignEnd=31498|Gloss=Geji
8 |c |c PUNCT _ _ 14 punct _ AlignBegin=31498|AlignEnd=31784|Gloss=PUNCT
9 tə́ tə́ ADP _ _ 14 cc _ AlignBegin=32527|AlignEnd=32761|Gloss=with
10 || || PUNCT _ _ 11 punct _ AlignBegin=32761|AlignEnd=32995|Gloss=PUNCT
11 tə́ tə́ ADP _ _ 9 conj:dicto _ AlignBegin=33238|AlignEnd=33528|Gloss=with
12 || || PUNCT _ _ 13 punct _ AlignBegin=33528|AlignEnd=33817|Gloss=PUNCT
13 tə́ tə́ ADP _ _ 11 conj:dicto _ AlignBegin=33817|AlignEnd=33971|Gloss=with
14 gìp gìp ADP _ _ 6 conj:coord _ AlignBegin=33971|AlignEnd=34125|Gloss=inside
15 Bawʧi Bawʧi PROPN _ _ 14 comp:obj _ AlignBegin=34125|AlignEnd=34279|Gloss=Bauchi
16 < < PUNCT _ _ 6 punct _ AlignBegin=34279|AlignEnd=34435|Gloss=PUNCT
17 bàː bàː PART _ Polarity=Neg 18 mod _ AlignBegin=34837|AlignEnd=35000|Gloss=Neg
18 á á AUX _ Aspect=Aor|Number=Sing|Person=3 0 root _ AlignBegin=35000|AlignEnd=35163|Gloss=3Sing.Aor
19 fǔpm fúpm VERB _ _ 18 comp:aux _ AlignBegin=35163|AlignEnd=35326|Gloss=be_far
20-21 sòːséyǐn _ _ _ _ _ _ _ _
20 sòːséy sòːséy ADV _ _ 19 mod _ AlignBegin=35326|AlignEnd=35408|Gloss=quite
21 hŋ́ hŋ́ PART _ Polarity=Neg 19 mod _ AlignBegin=35408|AlignEnd=35489|Gloss=Neg
22 // // PUNCT _ _ 18 punct _ AlignBegin=35489|AlignEnd=35650|Gloss=PUNCT
# sent_id = SAY_BC_CONV_03_032-033
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_CONV_03.WAV
# sent_timecode = 35650, 38054
# text = wurɓá móːto máː yi néːra || yi néːra hàmsə́n //
# text_ortho = wurɓá móːto máː yi néːra || yi néːra hàmsə́n //
# text_en = The cost of the bus is... is fifty naira.
1 wurɓá wurɓa NOUN _ Definite=Cons 4 subj _ AlignBegin=35650|AlignEnd=35856|Gloss=money
2 móːto móːto NOUN _ _ 1 mod _ AlignBegin=35856|AlignEnd=36062|Gloss=bus
3 máː máː PART _ _ 1 discourse _ AlignBegin=36062|AlignEnd=36268|Gloss=even
4 yi yi VERB _ _ 0 root _ AlignBegin=36268|AlignEnd=36474|Gloss=be
5 néːra néːra NOUN _ _ 4 comp:pred _ AlignBegin=36474|AlignEnd=36680|Gloss=Naira
6 || || PUNCT _ _ 7 punct _ AlignBegin=36680|AlignEnd=36887|Gloss=PUNCT
7 yi yi VERB _ _ 4 conj:dicto _ AlignBegin=37438|AlignEnd=37592|Gloss=be
8 néːra néːra NOUN _ _ 7 comp:pred _ AlignBegin=37592|AlignEnd=37746|Gloss=Naira
9 hàmsə́n hàmsə́n NUM _ _ 8 det:num _ AlignBegin=37746|AlignEnd=37900|Gloss=fifty
10 // // PUNCT _ _ 4 punct _ AlignBegin=37900|AlignEnd=38054|Gloss=PUNCT
# sent_id = SAY_BC_CONV_03_034-038
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_CONV_03.WAV
# sent_timecode = 38763, 42642
# text = tòː myáː yel kàmán dàgà ɗân < myáː ʃíʃí dàgà ɗân < tòː ma ndáy gìp Bawʧi ká gyaː Súle //
# text_ortho = tòː myáː yel kàmán dàgà ɗân < myáː ʃíʃí dàgà ɗân < tôː ma ndáy gìp Bawʧi ɣá gyaː Súle //
# text_en = Well I think that from there, when I leave that place, I will go to Bauchi, to Sule's place.
1 tòː tòː PART _ _ 2 discourse _ AlignBegin=38763|AlignEnd=38915|Gloss=well
2 myáː yáː AUX _ Aspect=Imp|Number=Sing|Person=1 0 root _ AlignBegin=38915|AlignEnd=39067|Gloss=1Sing.Imp
3 yel yel VERB _ _ 2 comp:aux _ AlignBegin=39067|AlignEnd=39219|Gloss=see
4 kàmán kàmán SCONJ _ _ 3 comp:obj _ AlignBegin=39219|AlignEnd=39397|Gloss=as
5 dàgà dàgà ADP _ _ 14 mod _ AlignBegin=39397|AlignEnd=39575|Gloss=from
6 ɗân ɗáni ADV _ PronType=Dem 5 comp:obj _ AlignBegin=39575|AlignEnd=39753|Gloss=there
7 < < PUNCT _ _ 5 punct _ AlignBegin=39753|AlignEnd=39933|Gloss=PUNCT
8 myáː yáː AUX _ Mood=Cnd|Number=Sing|Person=1 14 mod _ AlignBegin=40452|AlignEnd=40606|Gloss=1Sing.Cnd.
9 ʃíʃí ʃiʃí VERB _ _ 8 comp:aux _ AlignBegin=40606|AlignEnd=40760|Gloss=leave
10 dàgà dàgà ADP _ _ 9 comp:obl _ AlignBegin=40760|AlignEnd=40914|Gloss=from
11 ɗân ɗáni ADV _ PronType=Dem 10 comp:obj _ AlignBegin=40914|AlignEnd=41068|Gloss=there
12 < < PUNCT _ _ 8 punct _ AlignBegin=41068|AlignEnd=41224|Gloss=PUNCT
13 tòː tòː PART _ _ 14 discourse _ AlignBegin=41224|AlignEnd=41393|Gloss=well
14 ma a AUX _ Number=Sing|Person=1|Tense=Fut 4 comp:obj _ AlignBegin=41393|AlignEnd=41562|Gloss=1Sing.Fut
15 nda nda VERB _ _ 14 comp:aux _ AlignBegin=41562|AlignEnd=41731|Gloss=enter|wordform=ndáy
16 =íː =íː PART _ _ 15 clit:mod _ Gloss=Res|Result=Yes|wordform=-íː
17 gìp gìp ADP _ _ 15 comp:obl _ AlignBegin=41731|AlignEnd=41900|Gloss=inside
18 Bawʧi Bawʧi PROPN _ _ 17 comp:obj _ AlignBegin=41900|AlignEnd=42069|Gloss=Bauchi
19 ká ká ADP _ _ 15 comp:obl _ AlignBegin=42069|AlignEnd=42239|Gloss=at
20 gyaː gyaː DET _ Number=Plur 21 det _ AlignBegin=42239|AlignEnd=42373|Gloss=3Plur
21 Súle Súle PROPN _ _ 19 comp:obj _ AlignBegin=42373|AlignEnd=42507|Gloss=Sule
22 // // PUNCT _ _ 14 punct _ AlignBegin=42507|AlignEnd=42642|Gloss=PUNCT
# sent_id = SAY_BC_CONV_03_039-043
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_CONV_03.WAV
# sent_timecode = 43597, 48307
# text = myáː ndáy ɓaʃí < tòː < lə̂p yáː ɬǎːy dzàŋ dzàŋ Wólngi < tòː mə sǔmɗi kâːr də̀n //
# text_ortho = myáː ndáy ɓaʃí < tòː < lə̂p yáː ɬǎːy dzàŋ dzàŋ Wólngi < tôː mə sǔmɗi kâːr də̀n //
# text_en = If I reach their place, well, in the morning on... on Saturday well I will go back home.
1 myáː yáː AUX _ Mood=Cnd|Number=Sing|Person=1 18 mod _ AlignBegin=43597|AlignEnd=43749|Gloss=1Sing.Cnd
2 nda nda VERB _ _ 1 comp:aux _ AlignBegin=43749|AlignEnd=43901|Gloss=enter|wordform=ndáy
3 =íː =íː PART _ _ 2 clit:mod _ Gloss=Res|Result=Yes|wordform=-íː
4-5 ɓaʃí _ _ _ _ _ _ _ _
4 ɓas ɓas ADP _ _ 2 comp:obl _ AlignBegin=43901|AlignEnd=43977|Gloss=of
5 =ʃí =ʃí PRON _ Case=Acc|Number=Plur|Person=3|PronType=Prs 4 comp:obj _ AlignBegin=43977|AlignEnd=44053|Gloss=3Plur.Obj
6 < < PUNCT _ _ 1 punct _ AlignBegin=44053|AlignEnd=44207|Gloss=PUNCT
7 tòː tòː PART _ _ 18 discourse _ AlignBegin=44694|AlignEnd=44782|Gloss=well
8 < < PUNCT _ _ 7 punct _ AlignBegin=44782|AlignEnd=44869|Gloss=PUNCT
9 lə̂p lə̂p NOUN _ _ 10 subj _ AlignBegin=45268|AlignEnd=45438|Gloss=place
10 yáː yáː AUX _ Mood=Cnd|Number=Sing|Person=3 18 mod _ AlignBegin=45438|AlignEnd=45608|Gloss=3Sing.Cnd
11 ɬaː ɬaː VERB _ _ 10 comp:aux _ AlignBegin=45608|AlignEnd=45778|Gloss=cut|wordform=ɬǎːy
12 =íː =íː PART _ _ 11 clit:mod _ Gloss=Res|Result=Yes|wordform=-íː
13 dzàŋ dzàŋ NOUN _ _ 18 mod _ AlignBegin=45778|AlignEnd=45948|Gloss=day
14 dzàŋ dzàŋ NOUN _ _ 13 conj:dicto _ AlignBegin=46413|AlignEnd=46580|Gloss=day
15 Wólngi wólngi PROPN _ _ 14 compound _ AlignBegin=46580|AlignEnd=46747|Gloss=Saturday
16 < < PUNCT _ _ 13 punct _ AlignBegin=46747|AlignEnd=46915|Gloss=PUNCT
17 tòː tòː PART _ _ 18 discourse _ AlignBegin=47516|AlignEnd=47648|Gloss=well
18 mə á AUX _ Aspect=Aor|Number=Sing|Person=1 0 root _ AlignBegin=47648|AlignEnd=47780|Gloss=1Sing.Aor
19-21 sǔmɗi _ _ _ _ _ _ _ _
19 sǔ su VERB _ _ 18 comp:aux _ AlignBegin=47780|AlignEnd=47824|Gloss=return
20 =mə =mə PRON _ Case=Acc|Number=Sing|Person=1|PronType=Prs 19 comp:obj@T _ AlignBegin=47824|AlignEnd=47868|Gloss=1Sing.Obj
21 =ɗi =ɗi PART _ _ 19 compound:prt _ AlignBegin=47868|AlignEnd=47912|Gloss=Ctp
22 kâːr káːri ADV _ _ 19 mod _ AlignBegin=47912|AlignEnd=48044|Gloss=back
23 də̀n də̀n NOUN _ _ 19 comp:obj@G _ AlignBegin=48044|AlignEnd=48176|Gloss=house
24 // // PUNCT _ _ 18 punct _ AlignBegin=48176|AlignEnd=48307|Gloss=PUNCT
# sent_id = SAY_BC_CONV_03_044-047
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_CONV_03.WAV
# sent_timecode = 49071, 52547
# text = yə́ddà ɗan myáː súː ngə́ʃês kəndí sábòːtu bàː myáː súː mə̀ díngá ɗúɣə̂n wurɓa //
# text_ortho = yə́ddà ɗan myáː súː ngə́ʃês kəndí sábòːtu bàː myáː súː mə̀ díngá ɗúɣə̂n wurɓa //
# text_en = That's how I want it because I do not want to waste money.
1 yə́ddà yə́ddà ADV _ PronType=Rel 7 comp:pred _ AlignBegin=49071|AlignEnd=49255|Gloss=how
2 ɗan ɗan SCONJ _ _ 1 mod@relcl _ AlignBegin=49255|AlignEnd=49439|Gloss=REL
3 myáː yáː AUX _ Aspect=Imp|Number=Sing|Person=1 2 comp:obj _ AlignBegin=49439|AlignEnd=49623|Gloss=1Sing.Imp
4 súː súː VERB _ _ 3 comp:aux _ AlignBegin=49623|AlignEnd=49809|Gloss=want
5 ngə́ʃi ngə́tn NOUN _ Definite=Ind|Number=Plur 4 comp:obj _ AlignBegin=49809|AlignEnd=50155|Gloss=thing-Ind.Plur|wordform=ngə́ʃês
6 -ês -ês DET _ Definite=Def 5 af:det _ Gloss=-Def
7 kəndí kəndí PART _ _ 0 root _ AlignBegin=50155|AlignEnd=50329|Gloss=be
8 sábòːtu sábòːtu SCONJ _ _ 7 mod _ AlignBegin=50329|AlignEnd=50848|Gloss=because_of
9 bàː bàː PART _ Polarity=Neg 10 mod _ AlignBegin=50848|AlignEnd=51108|Gloss=Neg
10 myáː yáː AUX _ Aspect=Imp|Number=Sing|Person=1 8 comp:obj _ AlignBegin=51108|AlignEnd=51368|Gloss=1Sing.Imp
11 súː súː VERB _ _ 10 comp:aux _ AlignBegin=51368|AlignEnd=51628|Gloss=want
12 mə̀ tə̀ AUX _ Mood=Sub|Number=Sing|Person=1 11 parataxis@comp _ AlignBegin=51628|AlignEnd=51812|Gloss=1Sing.Sub
13 díngá dingá VERB _ _ 12 comp:aux _ AlignBegin=51812|AlignEnd=51996|Gloss=keep_on|SVC=Yes
14 ɗúɣə̂n ɗu VERB _ ExtPos=NOUN|VerbForm=Vnoun 13 comp:obj _ AlignBegin=51996|AlignEnd=52180|Gloss=beat
15 wurɓa wurɓa NOUN _ _ 14 comp:obj _ AlignBegin=52180|AlignEnd=52364|Gloss=money
16 // // PUNCT _ _ 7 punct _ AlignBegin=52364|AlignEnd=52547|Gloss=PUNCT
# sent_id = SAY_BC_CONV_03_048-055
# speaker_id = SP2
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_CONV_03.WAV
# sent_timecode = 52905, 62173
# text = shi ya sa nàːyáːwón mənáyáː wulɣə tu [ { á kâmàːtá || dàː tîː ndàráy } ɗan kòː yáːwón tunda Òːgá wò ɬíː ʧáː ɬə nə́ laː bàː ʧáː ɬə tu kóː tə̀ ɬə́ːrni kúniwòs tə̀ ɬə̀ yèltə̀ hŋ́ ] //
# text_ortho = shi ya sa nàːyáːwón mənáyáː wulɣə tu [ { á kâmàːtá || dàː tîː ndàráy } ɗan kòː yáːwón tunda Òːgá wò ɬíː ʧáː ɬə nə́ laː bàː ʧáː ɬə tu kóː tə̀ ɬə́ːrni kúniwòs tə̀ ɬə̀ yèltə̀ hŋ́ ] //
# text_en = That's why yesterday I told you that it would be better, it would be better like now, since Oga will leave, he will go for his work, he should not go with his son for people to come and see him.
1 shi shi X _ Foreign=Yes 5 discourse _ AlignBegin=52905|AlignEnd=53053|Gloss=3Sing.M|Lang=ha
2 ya ya X _ Foreign=Yes 1 flat@foreign _ AlignBegin=53053|AlignEnd=53201|Gloss=it|Lang=ha
3 sa sa X _ Foreign=Yes 2 flat@foreign _ AlignBegin=53201|AlignEnd=53348|Gloss=do|Lang=ha
4 nàːyáːwón nàːyáːwón ADV _ PronType=Dem 5 mod _ AlignBegin=53348|AlignEnd=53680|Gloss=yesterday
5 mənáyáː náː-yáː AUX _ Aspect=Imp|Number=Sing|Person=1|Tense=Rec 0 root _ AlignBegin=53680|AlignEnd=54012|Gloss=1Sing.REC.Imp
6-7 wulɣə _ _ _ _ _ _ _ _
6 wul wul VERB _ _ 5 comp:aux _ AlignBegin=54012|AlignEnd=54178|Gloss=say
7 =ɣə =kə PRON _ Case=Acc|Number=Sing|Person=2|PronType=Prs 6 comp:obj@R _ AlignBegin=54178|AlignEnd=54344|Gloss=2Sing.Obj
8 tu tu SCONJ _ _ 6 comp:obj@T _ AlignBegin=54344|AlignEnd=54678|Gloss=Qot
9 [ [ PUNCT _ _ 11 punct _ AlignBegin=55210|AlignEnd=55355|Gloss=PUNCT
10 { { PUNCT _ _ 11 punct _ AlignBegin=55210|AlignEnd=55355|Gloss=PUNCT
11 á á AUX _ Aspect=Aor|Number=Sing|Person=3 8 comp:obj _ AlignBegin=55355|AlignEnd=55500|Gloss=3Sing.Aor
12 kâmàːtá kamaːtá VERB _ _ 11 comp:aux _ AlignBegin=55500|AlignEnd=55645|Gloss=be_proper
13 || || PUNCT _ _ 15 punct _ AlignBegin=55645|AlignEnd=55791|Gloss=PUNCT
14 dàː dàː PART _ _ 15 mod _ AlignBegin=56185|AlignEnd=56360|Gloss=if
15 tîː yí AUX _ Mood=Irr|Number=Sing|Person=3 11 conj:dicto _ AlignBegin=56360|AlignEnd=56535|Gloss=3Sing.Irr
16 ndàráy ndará VERB _ _ 15 comp:aux _ AlignBegin=56535|AlignEnd=56710|Gloss=be_proper|Resultative=Yes
17 } } PUNCT _ _ 11 punct _ AlignBegin=56710|AlignEnd=56710|Gloss=PUNCT
18 ɗan ɗan ADP _ _ 26 mod _ AlignBegin=57375|AlignEnd=57544|Gloss=as
19 kòː kòː CCONJ _ _ 18 discourse _ AlignBegin=57544|AlignEnd=57713|Gloss=well
20 yáːwón yáːwón ADV _ PronType=Dem 18 comp:obj _ AlignBegin=57713|AlignEnd=57882|Gloss=today
21 tunda tunda SCONJ _ Foreign=Yes 26 mod _ AlignBegin=58318|AlignEnd=58543|Gloss=since|Lang=ha
22 Òːgá Òːgá PROPN _ _ 23 subj _ AlignBegin=58543|AlignEnd=58768|Gloss=Oga
23 wò a AUX _ Number=Sing|Person=3|Tense=Fut 21 comp:obj _ AlignBegin=58768|AlignEnd=58993|Gloss=3Sing.Fut
24 ɬə ɬə VERB _ _ 23 comp:aux _ AlignBegin=58993|AlignEnd=59218|Gloss=go|Resultative=Yes|wordform=ɬíː
25 =íː =íː PART _ _ 24 clit:mod _ Gloss=Res|Result=Yes|wordform=-íː
26 ʧáː yáː AUX _ Aspect=Imp|Number=Sing|Person=3 15 parataxis@subj _ AlignBegin=59444|AlignEnd=59611|Gloss=3Sing.Imp
27 ɬə ɬə VERB _ _ 26 comp:aux _ AlignBegin=59611|AlignEnd=59778|Gloss=go
28 nə́ nə́ ADP _ _ 27 mod _ AlignBegin=59778|AlignEnd=59945|Gloss=for
29 laː laː NOUN _ _ 28 comp:obj _ AlignBegin=59945|AlignEnd=60112|Gloss=work
30 bàː bàː PART _ Polarity=Neg 31 mod _ AlignBegin=60112|AlignEnd=60279|Gloss=Neg
31 ʧáː yáː AUX _ Aspect=Imp|Number=Sing|Person=3 26 conj:svc _ AlignBegin=60279|AlignEnd=60446|Gloss=3Sing.Imp
32 ɬə ɬə VERB _ _ 31 comp:aux _ AlignBegin=60446|AlignEnd=60613|Gloss=go
33 tu tu VERB _ _ 32 compound:svc _ AlignBegin=60613|AlignEnd=60780|Gloss=Qot
34 kóː kóː CCONJ _ _ 35 discourse _ AlignBegin=60780|AlignEnd=60947|Gloss=or
35 tə̀ tə̀ AUX _ Mood=Sub|Number=Sing|Person=3 31 conj:coord _ AlignBegin=60947|AlignEnd=61114|Gloss=3Sing.Sub
36-37 ɬə́ːrni _ _ _ _ _ _ _ _
36 ɬə́ːr ɬə VERB _ Voice=Cau 35 comp:aux _ AlignBegin=61114|AlignEnd=61226|Gloss=go-CAUS
37 =ni =ni PART _ Aspect=Inch 36 compound:prt _ AlignBegin=61226|AlignEnd=61281|Gloss=Inch
38-39 kúniwòs _ _ _ _ _ _ _ _
38 kúni kúni NOUN _ _ 36 comp:obj _ AlignBegin=61281|AlignEnd=61365|Gloss=boy
39 =wòs =wos PRON _ Case=Gen|Number=Sing|Person=3|PronType=Prs 38 mod@poss _ AlignBegin=61365|AlignEnd=61448|Gloss=3Sing.Gen
40 tə̀ tə̀ AUX _ Mood=Sub|Number=Sing|Person=3 36 mod _ AlignBegin=61448|AlignEnd=61593|Gloss=3Sing.Sub
41 ɬə̀ ɬə VERB _ _ 40 comp:aux _ AlignBegin=61593|AlignEnd=61738|Gloss=go
42-43 yèltə̀ _ _ _ _ _ _ _ _
42 yèl yel VERB _ _ 41 compound:svc _ AlignBegin=61738|AlignEnd=61810|Gloss=see
43 =tə̀ =tə PRON _ Case=Acc|Number=Sing|Person=3|PronType=Prs 42 comp:obj _ AlignBegin=61810|AlignEnd=61883|Gloss=3Sing.Obj
44 hŋ́ hŋ́ PART _ Polarity=Neg 32 mod _ AlignBegin=61883|AlignEnd=62028|Gloss=Neg
45 ] ] PUNCT _ _ 11 punct _ AlignBegin=62028|AlignEnd=62028|Gloss=PUNCT
46 // // PUNCT _ _ 5 punct _ AlignBegin=62028|AlignEnd=62028|Gloss=PUNCT
# sent_id = SAY_BC_CONV_03_056-060
# speaker_id = SP2
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_CONV_03.WAV
# sent_timecode = 62628, 67390
# text = yâːn tíː yi tu wò ɬə́ːrni kúniwòs əndá wò ɬíː yeltə tə̀ ɬə̀ yèltə̀ < tòː dàː kìː ɗyǎː kə́ ngâp dàtə̂pm tàːré //
# text_ortho = yâːn tîː yì tu wò ɬə́ːrni kúniwòs < əndá wò yeltə tə̀ ɬə̀ yèltə̀ < tòː dàː kìː ɗyǎː kə́ ngâp dàtə̂pm tàːré //
# text_en = If he had said that he will bring his son if he comes to visit him for people to come and see him, well then you could have travelled with them.
1 yâːn yâːn SCONJ _ _ 23 mod _ AlignBegin=62628|AlignEnd=62769|Gloss=if
2 tíː yí AUX _ Mood=Irr|Number=Sing|Person=3 1 comp:obj _ AlignBegin=62769|AlignEnd=62910|Gloss=3Sing.Irr
3 yi yi VERB _ _ 2 comp:aux _ AlignBegin=62910|AlignEnd=63051|Gloss=be
4 tu tu SCONJ _ _ 3 comp:pred _ AlignBegin=63051|AlignEnd=63192|Gloss=Qot
5 wò a AUX _ Number=Sing|Person=3|Tense=Fut 4 comp:obj _ AlignBegin=63192|AlignEnd=63333|Gloss=3Sing.Fut
6-7 ɬə́ːrni _ _ _ _ _ _ _ _
6 ɬə́ːr ɬə VERB _ _ 5 comp:aux _ AlignBegin=63333|AlignEnd=63427|Gloss=go-CAUS
7 =ni =ni PART _ Aspect=Iter 6 compound:prt _ AlignBegin=63427|AlignEnd=63474|Gloss=Iter
8-9 kúniwòs _ _ _ _ _ _ _ _
8 kúni kúni NOUN _ _ 6 comp:obj _ AlignBegin=63474|AlignEnd=63544|Gloss=boy
9 =wòs =wos PRON _ Case=Gen|Number=Sing|Person=3|PronType=Prs 8 mod@poss _ AlignBegin=63544|AlignEnd=63615|Gloss=3Sing.Gen
10 əndá indá SCONJ _ _ 6 mod _ AlignBegin=63754|AlignEnd=64015|Gloss=if
11 wò a AUX _ Number=Sing|Person=3|Tense=Fut 10 comp:obj _ AlignBegin=64015|AlignEnd=64250|Gloss=3Sing.Fut
12 ɬə ɬə VERB _ _ 11 comp:aux _ AlignBegin=64250|AlignEnd=64290|Gloss=go|wordform=ɬíː
13 =íː =íː PART _ _ 12 clit:mod _ Gloss=Res|Result=Yes|wordform=-íː
14-15 yeltə _ _ _ _ _ _ _ _
14 yel yel VERB _ _ 12 compound:svc _ AlignBegin=64290|AlignEnd=64407|Gloss=see
15 =tə =tə PRON _ Case=Acc|Number=Sing|Person=3|PronType=Prs 14 comp:obj _ AlignBegin=64407|AlignEnd=64538|Gloss=3Sing.Obj
16 tə̀ tə̀ AUX _ Mood=Sub|Number=Plur|Person=3 6 mod _ AlignBegin=64538|AlignEnd=64687|Gloss=3Plur.Sub
17 ɬə̀ ɬə VERB _ _ 16 comp:aux _ AlignBegin=64687|AlignEnd=64836|Gloss=go
18-19 yèltə̀ _ _ _ _ _ _ _ _
18 yèl yel VERB _ _ 17 compound:svc _ AlignBegin=64836|AlignEnd=64910|Gloss=see
19 =tə =tə PRON _ Case=Acc|Number=Sing|Person=3|PronType=Prs 18 comp:obj _ AlignBegin=64910|AlignEnd=64985|Gloss=3Sing.Obj
20 < < PUNCT _ _ 1 punct _ AlignBegin=64985|AlignEnd=65135|Gloss=PUNCT
21 tòː tòː PART _ _ 23 discourse _ AlignBegin=65485|AlignEnd=65671|Gloss=well
22 dàː dàː ADV _ _ 23 mod _ AlignBegin=65671|AlignEnd=65857|Gloss=Irr
23 kìː yí AUX _ Mood=Irr|Number=Plur|Person=2 0 root _ AlignBegin=65857|AlignEnd=66043|Gloss=2Plur.Irr
24 ɗyǎː ɗyáː VERB _ _ 23 comp:aux _ AlignBegin=66043|AlignEnd=66227|Gloss=be_able|SVC=Yes
25 kə́ á AUX _ Aspect=Aor|Number=Plur|Person=2 24 parataxis@comp _ AlignBegin=66463|AlignEnd=66648|Gloss=2Plur.Aor
26 ngâp ngap VERB _ _ 25 comp:aux _ AlignBegin=66648|AlignEnd=66833|Gloss=hold
27 dàtə̂pm dàtə̂pm NOUN _ _ 26 comp:obj _ AlignBegin=66833|AlignEnd=67018|Gloss=way
28 tàːré tàːré ADV _ _ 26 mod _ AlignBegin=67018|AlignEnd=67203|Gloss=together
29 // // PUNCT _ _ 23 punct _ AlignBegin=67203|AlignEnd=67390|Gloss=PUNCT
# sent_id = SAY_BC_CONV_03_061-068
# speaker_id = SP2
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_CONV_03.WAV
# sent_timecode = 67700, 78769
# text = àmáː tunda wò ɬə́ fi laː ɣáy < tôː kə yísə́ŋ yâːn Zaːr ʧi tə́ ʃíːri ɣə̀ laː < kyáː ɬə́ < kafin nan kóː tə̀ fìnì bə̀ki |c kóː kwǎː ngə́ʃi gón sai yáː ɲôm gyaː lə́p tsə̀tngə̀n tə̀ gaː =íː ɣá lə̂p //
# text_ortho = àmáː tunda wò ɬə́ fi laː ɣáy < tôː kə yísə́n yâːn Zaːr ʧi tə́ ʃíːri ɣə̀ laː < kyáː ɬə́ < kafin nan kóː tə̀ fìnì bə̀ki |c kóː kwǎː ngə́ʃi gón sai ya ɲôm gyaː lə̂p tsə̀tngə̀n tə̀ gǎːy ɣá lə̂p //
# text_en = But since he will go and work there well you know if someone is preparing for work, if you travel, <hau before that hau>, whether they go to... to enjoy themselves or for anything else, he must find a place to stay, to... spend some time there.
1 àmáː àmáː CCONJ _ _ 37 discourse _ AlignBegin=67700|AlignEnd=67865|Gloss=but
2 tunda tunda SCONJ _ Foreign=Yes 37 mod _ AlignBegin=67865|AlignEnd=68030|Gloss=since|Lang=ha
3 wò a AUX _ Number=Sing|Person=3|Tense=Fut 2 comp:obj _ AlignBegin=68030|AlignEnd=68195|Gloss=3Sing.Fut
4 ɬə́ ɬə VERB _ _ 3 comp:aux _ AlignBegin=68195|AlignEnd=68360|Gloss=go
5 fi fi VERB _ _ 4 compound:svc _ AlignBegin=68360|AlignEnd=68525|Gloss=do
6 laː laː NOUN _ _ 5 comp:obj _ AlignBegin=68525|AlignEnd=68607|Gloss=work
7 ɣáy káy PRON _ Person=3|PronType=Prs 5 comp:obl@expl _ AlignBegin=68607|AlignEnd=68690|Gloss=ANAPH
8 < < PUNCT _ _ 2 punct _ AlignBegin=68690|AlignEnd=68856|Gloss=PUNCT
9 tôː tòː PART _ _ 37 discourse _ AlignBegin=69411|AlignEnd=69561|Gloss=well
10 kə á AUX _ Aspect=Aor|Number=Sing|Person=2 37 parataxis@discourse _ AlignBegin=69561|AlignEnd=69711|Gloss=2Sing.Aor
11 yísə́ŋ yisə́ŋ VERB _ _ 10 comp:aux _ AlignBegin=69711|AlignEnd=69861|Gloss=know
12 yâːn yâːn SCONJ _ _ 37 mod _ AlignBegin=69861|AlignEnd=70011|Gloss=if
13 Zaːr Zaːr NOUN _ _ 14 dislocated@subj _ AlignBegin=70011|AlignEnd=70161|Gloss=human
14 ʧi yi AUX _ _ 12 comp:obj _ AlignEnd=70311|Gloss=3Sing.be|wordform=yi
15 tə́ tə́ ADP _ _ 14 comp:pred _ AlignBegin=70311|AlignEnd=70461|Gloss=with
16 ʃíːri ʃíːri NOUN _ _ 15 comp:obj _ AlignBegin=70461|AlignEnd=70611|Gloss=preparation
17 ɣə̀ kə́ ADP _ _ 16 mod _ AlignBegin=70611|AlignEnd=70761|Gloss=of
18 laː laː NOUN _ _ 16 comp:obj _ AlignBegin=70761|AlignEnd=70911|Gloss=work
19 < < PUNCT _ _ 12 punct _ AlignBegin=70911|AlignEnd=71057|Gloss=PUNCT
20 kyáː yáː AUX _ Mood=Cnd|Number=Sing|Person=2 37 mod _ AlignBegin=71678|AlignEnd=71818|Gloss=2Sing.Cnd
21 ɬə́ ɬə VERB _ _ 20 comp:aux _ AlignBegin=71818|AlignEnd=71958|Gloss=go
22 < < PUNCT _ _ 20 punct _ AlignBegin=71958|AlignEnd=72099|Gloss=PUNCT
23 kafin kafin ADP _ Foreign=Yes 37 mod _ AlignBegin=72549|AlignEnd=72779|Gloss=after|Lang=ha
24 nan nan ADV _ Foreign=Yes 23 flat@foreign _ AlignBegin=72779|AlignEnd=73009|Gloss=there|Lang=ha
25 kóː kóː CCONJ _ _ 26 cc@preconj _ AlignBegin=73009|AlignEnd=73239|Gloss=or
26 tə̀ tə̀ AUX _ Mood=Sub|Number=Plur|Person=3 37 mod _ AlignBegin=73239|AlignEnd=73469|Gloss=3Plur.Sub
27-28 fìnì _ _ _ _ _ _ _ _
27 fì fi VERB _ _ 26 comp:aux _ AlignBegin=73469|AlignEnd=73583|Gloss=do
28 =nì =ni PART _ Aspect=Iter 27 compound:prt _ AlignBegin=73583|AlignEnd=73697|Gloss=Iter
29 bə̀ki bə̀ki NOUN _ _ 27 comp:obj _ AlignBegin=74113|AlignEnd=74278|Gloss=meeting
30 |c |c PUNCT _ _ 33 punct _ AlignBegin=74278|AlignEnd=74443|Gloss=PUNCT
31 kóː kóː CCONJ _ _ 33 cc _ AlignBegin=74443|AlignEnd=74608|Gloss=or
32 kwǎː kwǎː PART _ _ 31 mod _ AlignBegin=74608|AlignEnd=74773|Gloss=Emp|PartType=Emp
33 ngə́ʃi ngə́tn NOUN _ Definite=Ind|Number=Plur 26 conj:coord _ AlignBegin=74773|AlignEnd=74938|Gloss=thing-Ind.Plur
34 gón gón DET _ Definite=Spec 33 det _ AlignBegin=74938|AlignEnd=75103|Gloss=SPEC
35 sai sai X _ Foreign=Yes 37 mod _ AlignBegin=75583|AlignEnd=75802|Gloss=perforce|Lang=ha
36 yáː ya X _ _ 35 flat@foreign _ AlignBegin=75802|AlignEnd=76021|Gloss=X|Lang=ha
37 ɲôm ɲom VERB _ _ 0 root _ AlignBegin=76021|AlignEnd=76240|Gloss=take
38 gyaː gyaː DET _ Number=Plur 39 det _ AlignBegin=76240|AlignEnd=76459|Gloss=3Plur
39 lə́p lə̂p NOUN _ _ 37 comp:obj _ AlignBegin=76459|AlignEnd=76678|Gloss=place
40 tsə̀tngə̀n tsə́tn VERB _ ExtPos=NOUN|VerbForm=Vnoun 39 compound _ AlignBegin=76678|AlignEnd=76895|Gloss=sit
41 tə̀ tə̀ AUX _ Mood=Sub|Number=Plur|Person=3 37 mod _ AlignBegin=77598|AlignEnd=78094|Gloss=3Plur.Sub
42 gaː gaː VERB _ _ 41 comp:aux _ AlignBegin=78338|AlignEnd=78446|Gloss=leave|wordform=gǎːy
43 =íː =íː PART _ _ 42 clit:mod _ Gloss=Res|Result=Yes|wordform=-íː
44 ɣá ká ADP _ _ 42 comp:obl _ AlignBegin=78446|AlignEnd=78554|Gloss=at
45 lə̂p lə̂p NOUN _ _ 44 comp:obj _ AlignBegin=78554|AlignEnd=78662|Gloss=place
46 // // PUNCT _ _ 37 punct _ AlignBegin=78662|AlignEnd=78769|Gloss=PUNCT
# sent_id = SAY_BC_CONV_03_069-069
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_CONV_03.WAV
# sent_timecode = 78769, 79400
# text = èː ɣən !//= èː ɣən !//
# text_ortho = èː ɣən !//= èː ɣən !//
# text_en = Yes indeed.
1 èː èː INTJ _ _ 0 root _ AlignBegin=78769|AlignEnd=78848|Gloss=yes
2 ɣən kən PART _ _ 1 mod _ AlignBegin=78848|AlignEnd=78927|Gloss=be
3 !//= !//= PUNCT _ _ 4 punct _ AlignBegin=78927|AlignEnd=79085|Gloss=PUNCT
4 èː èː INTJ _ _ 1 conj:svc _ AlignBegin=79085|AlignEnd=79164|Gloss=yes
5 ɣən kən PART _ _ 4 mod _ AlignBegin=79164|AlignEnd=79243|Gloss=be
6 !// !// PUNCT _ _ 1 punct _ AlignBegin=79243|AlignEnd=79400|Gloss=PUNCT
# sent_id = SAY_BC_CONV_03_070-071
# speaker_id = SP2
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_CONV_03.WAV
# sent_timecode = 79400, 81547
# text = tòː ɣəndá < tə́ ndâː lə́ːrɣə̂n səmbə́rsəɗì //
# text_ortho = tôː ɣəndáːːː < tə́ ndâː lə́ːrɣə̂n səmbə́rsəɗì //
# text_en = Well then they started bringing guests.
1 tòː tòː PART _ _ 4 discourse _ AlignBegin=79400|AlignEnd=79618|Gloss=well
2 ɣəndá kəndá ADV _ _ 4 mod _ AlignBegin=79618|AlignEnd=79836|Gloss=then
3 < < PUNCT _ _ 2 punct _ AlignBegin=79836|AlignEnd=80053|Gloss=PUNCT
4 tə́ á AUX _ Aspect=Aor|Number=Plur|Person=3 0 root _ AlignBegin=80283|AlignEnd=80536|Gloss=3Plur.Aor
5 ndâː ndâː VERB _ _ 4 comp:aux _ AlignBegin=80536|AlignEnd=80789|Gloss=start|SVC=Yes
6 lə́ːrɣə̂n lə́ːr VERB _ _ 5 comp:obj _ AlignBegin=80789|AlignEnd=81042|Gloss=bring
7-8 səmbə́rsəɗì _ _ _ _ _ _ _ _
7 səmbə́rsə səmbə́r NOUN _ Number=Plur 6 mod _ AlignBegin=81042|AlignEnd=81210|Gloss=stranger
8 =ɗì =ɗi PART _ _ 6 compound:prt _ AlignBegin=81210|AlignEnd=81295|Gloss=Ctp
9 // // PUNCT _ _ 4 punct _ AlignBegin=81295|AlignEnd=81547|Gloss=PUNCT
# sent_id = SAY_BC_CONV_03_072-072
# speaker_id = SP2
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_CONV_03.WAV
# sent_timecode = 82123, 84140
# text = əndá < kafin nan < tə̀ man //= kafin nan < tə̀ fàːrá kóːníː //
# text_ortho = əndá < kafin nan < tə̀ màn //= kafin nan < tə̀ fàːrá kóːnîː //
# text_en = Then <hau after that hau> they came and, <hau after that hau> they started everything.
1 əndá kəndá ADV _ _ 6 mod _ AlignBegin=82123|AlignEnd=82257|Gloss=then
2 < < PUNCT _ _ 1 punct _ AlignBegin=82257|AlignEnd=82391|Gloss=PUNCT
3 kafin kafin ADP _ Foreign=Yes 6 mod _ AlignBegin=82391|AlignEnd=82525|Gloss=after|Lang=ha
4 nan nan ADV _ Foreign=Yes 3 flat@foreign _ AlignBegin=82525|AlignEnd=82659|Gloss=there|Lang=ha
5 < < PUNCT _ _ 3 punct _ AlignBegin=82659|AlignEnd=82793|Gloss=PUNCT
6 tə̀ tə̀ AUX _ Mood=Sub|Number=Plur|Person=3 0 root _ AlignBegin=82793|AlignEnd=82927|Gloss=3Plur.Sub
7 man man VERB _ _ 6 comp:aux _ AlignBegin=82927|AlignEnd=83061|Gloss=come|SVC=Yes
8 //= //= PUNCT _ _ 12 punct _ AlignBegin=83061|AlignEnd=83195|Gloss=PUNCT
9 kafin kafin ADP _ Foreign=Yes 12 mod _ AlignBegin=83195|AlignEnd=83329|Gloss=after|Lang=ha
10 nan nan ADV _ Foreign=Yes 9 flat@foreign _ AlignBegin=83329|AlignEnd=83463|Gloss=there|Lang=ha
11 < < PUNCT _ _ 9 punct _ AlignBegin=83463|AlignEnd=83597|Gloss=PUNCT
12 tə̀ tə̀ AUX _ Mood=Sub|Number=Plur|Person=3 6 conj:coord _ AlignBegin=83597|AlignEnd=83731|Gloss=3Plur.Sub
13 fàːrá faːrá VERB _ Foreign=Yes 12 comp:aux _ AlignBegin=83731|AlignEnd=83865|Gloss=start|Lang=ha
14 kóːníː kóːníː PRON _ _ 13 comp:obj _ AlignBegin=83865|AlignEnd=83999|Gloss=whatever
15 // // PUNCT _ _ 6 punct _ AlignBegin=83999|AlignEnd=84140|Gloss=PUNCT
# sent_id = SAY_BC_CONV_03_073-073
# speaker_id = SP2
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_CONV_03.WAV
# sent_timecode = 84488, 85573
# text = tòː yâːn mənáːyáː wu tu &//
# text_ortho = tôː yâːn mənáːyáː wu tu &//
# text_en = Well that's why yesterday I said...
1 tòː tòː PART _ _ 2 discourse _ AlignBegin=84488|AlignEnd=84669|Gloss=well
2 yâːn yáːni PRON _ Number=Sing|Person=3|PronType=Prs 0 root@scrap _ AlignBegin=84669|AlignEnd=84850|Gloss=3s
3 mənáːyáː náː-yáː AUX _ Aspect=Imp|Number=Sing|Person=1|Tense=Rec 2 comp:cleft _ AlignBegin=84850|AlignEnd=85031|Gloss=1Sing.REC.Imp
4 wu wul VERB _ _ 3 comp:aux _ AlignBegin=85031|AlignEnd=85212|Gloss=say
5 tu tu SCONJ _ _ 4 comp:obj _ AlignBegin=85212|AlignEnd=85393|Gloss=Qot
6 &// &// PUNCT _ _ 2 punct _ AlignBegin=85393|AlignEnd=85573|Gloss=PUNCT
# sent_id = SAY_BC_CONV_03_074-078
# speaker_id = SP2
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_CONV_03.WAV
# sent_timecode = 86164, 90486
# text = tə́ súːtu mənáː wú tu á kâmàːtá kúmá kóːdàː yáːwón < kyáːni < kîː ngàp dàtə̂pm //
# text_ortho = tə́ súːtu mənáː wú tu á kâmàːtá kúmá kóːdàː yáːwón < kyáːni < kîː ngàp dàtə̂pm //
# text_en = Yesterday evening I said that it would have been better even today, if you, you had hit the road.
1 tə́ tə́ ADP _ _ 3 mod _ AlignBegin=86164|AlignEnd=86349|Gloss=with
2 súːtu súːtu NOUN _ _ 1 comp:obj _ AlignBegin=86349|AlignEnd=86534|Gloss=evening
3 mənáː náː AUX _ Number=Sing|Person=1|Tense=Rec 0 root _ AlignBegin=86534|AlignEnd=86719|Gloss=1Sing.REC
4 wú wul VERB _ _ 3 comp:aux _ AlignBegin=86719|AlignEnd=86904|Gloss=say
5 tu tu SCONJ _ _ 4 comp:obj _ AlignBegin=86904|AlignEnd=87087|Gloss=Qot
6 á á AUX _ Aspect=Aor|Number=Sing|Person=3 5 comp:obj _ AlignBegin=87087|AlignEnd=87348|Gloss=3Sing.Aor
7 kâmàːtá kamaːtá VERB _ _ 6 comp:aux _ AlignBegin=87348|AlignEnd=87609|Gloss=be_proper
8 kúmá kúmá PART _ _ 7 discourse _ AlignBegin=87609|AlignEnd=87869|Gloss=also
9 kóːdàː kóːdàː ADP _ _ 14 mod _ AlignBegin=87869|AlignEnd=88114|Gloss=if.Irr
10 yáːwón yáːwón ADV _ PronType=Dem 9 comp:obj _ AlignBegin=88114|AlignEnd=88359|Gloss=today
11 < < PUNCT _ _ 9 punct _ AlignBegin=88359|AlignEnd=88605|Gloss=PUNCT
12 kyáːni kyáːni PRON _ Number=Sing|Person=2|PronType=Prs 14 dislocated@subj _ AlignBegin=89214|AlignEnd=89367|Gloss=2S
13 < < PUNCT _ _ 12 punct _ AlignBegin=89367|AlignEnd=89520|Gloss=PUNCT
14 kîː yí AUX _ Mood=Irr|Number=Sing|Person=2 6 parataxis@subj _ AlignBegin=89740|AlignEnd=89926|Gloss=2Sing.Irr
15 ngàp ngap VERB _ _ 14 comp:aux _ AlignBegin=89926|AlignEnd=90112|Gloss=hold
16 dàtə̂pm dàtə̂pm NOUN _ _ 15 comp:obj _ AlignBegin=90112|AlignEnd=90298|Gloss=way
17 // // PUNCT _ _ 3 punct _ AlignBegin=90298|AlignEnd=90486|Gloss=PUNCT
# sent_id = SAY_BC_CONV_03_079-080
# speaker_id = SP2
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_CONV_03.WAV
# sent_timecode = 91202, 92902
# text = àː ɬǐː àː ɬə́ fuː zàrsə̀ //
# text_ortho = àː ɬǐː àː ɬə́ fuː zàrsə̀ //
# text_en = You should leave you should go and tell the people.
1 àː tə̀ AUX _ Mood=Sub|Number=Sing|Person=2 0 root _ AlignBegin=91202|AlignEnd=91421|Gloss=2Sing.Sub
2 ɬə ɬə VERB _ _ 1 comp:aux _ AlignBegin=91421|AlignEnd=91640|Gloss=go|wordform=ɬǐː
3 =íː =íː PART _ _ 2 clit:mod _ Gloss=Res|Result=Yes|wordform=-íː
4 àː tə̀ AUX _ Mood=Sub|Number=Sing|Person=2 1 conj:svc _ AlignBegin=92080|AlignEnd=92244|Gloss=2Sing.Sub
5 ɬə́ ɬə VERB _ _ 4 comp:aux _ AlignBegin=92244|AlignEnd=92408|Gloss=go
6 fuː fuː VERB _ _ 5 compound:svc _ AlignBegin=92408|AlignEnd=92572|Gloss=tell
7 zàrsə̀ Zaːr NOUN _ Number=Plur 6 comp:obj _ AlignBegin=92572|AlignEnd=92736|Gloss=human
8 // // PUNCT _ _ 1 punct _ AlignBegin=92736|AlignEnd=92902|Gloss=PUNCT
# sent_id = SAY_BC_CONV_03_081-081
# speaker_id = SP2
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_CONV_03.WAV
# sent_timecode = 93479, 93914
# text = ga shi //
# text_ortho = ga shi //
# text_en = <hau That's it hau>.
1 ga ga X _ Foreign=Yes 0 root _ AlignBegin=93479|AlignEnd=93624|Gloss=ga|Lang=ha
2 shi shi X _ Foreign=Yes 1 flat@foreign _ AlignBegin=93624|AlignEnd=93769|Gloss=3Sing.M|Lang=ha
3 // // PUNCT _ _ 1 punct _ AlignBegin=93769|AlignEnd=93914|Gloss=PUNCT
# sent_id = SAY_BC_CONV_03_082-082
# speaker_id = SP2
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_CONV_03.WAV
# sent_timecode = 94529, 95446
# text = Òːgá ʧíː ɗyáː máːɣə́nì //
# text_ortho = Òːgá ʧí ɗyáː máːɣə̂nì //
# text_en = Oga will probably come.
1 Òːgá Òːgá PROPN _ _ 2 subj _ AlignBegin=94529|AlignEnd=94712|Gloss=Oga
2 ʧíː yí AUX _ Mood=Irr|Number=Sing|Person=3 0 root _ AlignBegin=94712|AlignEnd=94895|Gloss=3Sing.Irr
3 ɗyáː ɗyáː VERB _ _ 2 comp:aux _ AlignBegin=94895|AlignEnd=95078|Gloss=can|SVC=Yes
4 máːɣə́nì man VERB _ _ 3 comp:obj _ AlignBegin=95078|AlignEnd=95261|Gloss=come
5 // // PUNCT _ _ 2 punct _ AlignBegin=95261|AlignEnd=95446|Gloss=PUNCT
# sent_id = SAY_BC_CONV_03_083-083
# speaker_id = SP2
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_CONV_03.WAV
# sent_timecode = 96000, 96666
# text = wò mán fini làː //
# text_ortho = wò mán fini làː //
# text_en = He will do some work.
1 wò a AUX _ Number=Sing|Person=3|Tense=Fut 0 root _ AlignBegin=96000|AlignEnd=96133|Gloss=3Sing.Fut
2 mán man VERB _ _ 1 comp:aux _ AlignBegin=96133|AlignEnd=96266|Gloss=come|SVC=Yes
3-4 fini _ _ _ _ _ _ _ _
3 fi fi VERB _ _ 2 compound:svc _ AlignBegin=96266|AlignEnd=96332|Gloss=do
4 =ni =ni PART _ Aspect=Iter 3 compound:prt _ AlignBegin=96332|AlignEnd=96399|Gloss=Iter
5 làː laː NOUN _ _ 3 comp:obj _ AlignBegin=96399|AlignEnd=96532|Gloss=work
6 // // PUNCT _ _ 1 punct _ AlignBegin=96532|AlignEnd=96666|Gloss=PUNCT
# sent_id = SAY_BC_CONV_03_084-084
# speaker_id = SP2
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_CONV_03.WAV
# sent_timecode = 97058, 98294
# text = bàː tá mǎn kúmá tə́ kúniwòs &//
# text_ortho = bàː tá mǎn kúmá tə́ kúniwòs &//
# text_en = He will not come with his son...
1 bàː bàː PART _ Polarity=Neg 2 mod _ AlignBegin=97058|AlignEnd=97549|Gloss=Neg
2 tá a AUX _ Number=Plur|Person=3|Tense=Fut 0 root _ AlignBegin=97549|AlignEnd=97698|Gloss=3Plur.Fut
3 mǎn man VERB _ _ 2 comp:aux _ AlignBegin=97698|AlignEnd=97847|Gloss=come
4 kúmá kúmá PART _ _ 3 discourse _ AlignBegin=97847|AlignEnd=97996|Gloss=also
5 tə́ tə́ ADP _ _ 3 comp:obl _ AlignBegin=97996|AlignEnd=98145|Gloss=with
6-7 kúniwòs _ _ _ _ _ _ _ _
6 kúni kúni NOUN _ _ 5 comp:obj _ AlignBegin=98145|AlignEnd=98219|Gloss=boy
7 =wòs =wos PRON _ Case=Gen|Number=Sing|Person=3|PronType=Prs 6 mod@poss _ AlignBegin=98219|AlignEnd=98294|Gloss=3Sing.Gen
8 &// &// PUNCT _ _ 2 punct _ AlignBegin=98294|AlignEnd=98294|Gloss=PUNCT
# sent_id = SAY_BC_CONV_03_085-088
# speaker_id = SP2
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_CONV_03.WAV
# sent_timecode = 98442, 102109
# text = bàː wey ʧáː lə́ːrni kúniwòsɗi tə̀ màn yèltə̀ hŋ́ |c àmáː ʧáː mân nə́ níː nə́ laː //
# text_ortho = bàː wai ʧáː lə́ːrni kúniwòsɗì tə̀ màn yèltə̀ hŋ́ |c àmmáː ʧáː mân nə́ níː nə́ laː //
# text_en = He did not bring his son for them to look at, but what did he come for? for work.
1 bàː bàː PART _ Polarity=Neg 3 mod _ AlignBegin=98442|AlignEnd=98645|Gloss=Neg
2 wey wey PART _ Foreign=Yes 3 mod _ AlignBegin=98645|AlignEnd=98848|Gloss=Qot|Lang=ha
3 ʧáː yáː AUX _ Aspect=Imp|Number=Sing|Person=3 0 root _ AlignBegin=98848|AlignEnd=99051|Gloss=3Sing.Imp
4-5 lə́ːrni _ _ _ _ _ _ _ _
4 lə́ːr lə́ːr VERB _ _ 3 comp:aux _ AlignBegin=99051|AlignEnd=99153|Gloss=bring
5 =ni =ni PART _ Aspect=Iter 4 compound:prt _ AlignBegin=99153|AlignEnd=99254|Gloss=Iter
6-8 kúniwòsɗi _ _ _ _ _ _ _ _
6 kúni kúni NOUN _ _ 4 comp:obj _ AlignBegin=99254|AlignEnd=99322|Gloss=boy
7 =wos =wos PRON _ Case=Gen|Number=Sing|Person=3|PronType=Prs 6 mod@poss _ AlignBegin=99322|AlignEnd=99390|Gloss=3Sing.Gen
8 =ɗi =ɗi PART _ _ 4 compound:prt _ AlignBegin=99390|AlignEnd=99457|Gloss=Ctp
9 tə̀ tə̀ AUX _ Mood=Sub|Number=Plur|Person=3 4 mod _ AlignBegin=99457|AlignEnd=99660|Gloss=3Plur.Sub
10 màn man VERB _ _ 9 comp:aux _ AlignBegin=99660|AlignEnd=99863|Gloss=come
11-12 yèltə̀ _ _ _ _ _ _ _ _
11 yèl yel VERB _ _ 10 compound:svc _ AlignBegin=99863|AlignEnd=99965|Gloss=see
12 =tə =tə PRON _ Case=Acc|Number=Sing|Person=3|PronType=Prs 11 comp:obj _ AlignBegin=99965|AlignEnd=100066|Gloss=3Sing.Obj
13 hŋ́ hŋ́ PART _ Polarity=Neg 4 mod _ AlignBegin=100066|AlignEnd=100269|Gloss=Neg
14 |c |c PUNCT _ _ 16 punct _ AlignBegin=100269|AlignEnd=100469|Gloss=PUNCT
15 àmáː àmáː CCONJ _ _ 16 cc _ AlignBegin=100469|AlignEnd=100780|Gloss=but
16 ʧáː yáː AUX _ Aspect=Imp|Number=Sing|Person=3 3 conj:coord _ AlignBegin=100780|AlignEnd=101091|Gloss=3Sing.Imp
17 mân man VERB _ _ 16 comp:aux _ AlignBegin=101091|Gloss=come
18 nə́ nə́ ADP _ _ 17 mod _ AlignEnd=101247|Gloss=for
19 níː níː PRON _ PronType=Int 18 comp:obj _ AlignBegin=101247|AlignEnd=101402|Gloss=what
20 nə́ nə́ ADP _ _ 18 conj:dicto _ AlignBegin=101759|AlignEnd=101876|Gloss=for
21 laː laː NOUN _ _ 20 comp:obj _ AlignBegin=101876|AlignEnd=101993|Gloss=work
22 // // PUNCT _ _ 3 punct _ AlignBegin=101993|AlignEnd=102109|Gloss=PUNCT
# sent_id = SAY_BC_CONV_03_089-092
# speaker_id = SP2
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_CONV_03.WAV
# sent_timecode = 102890, 106971
# text = tòː yáːni mənáːyáː vaː vìː ɣáy tu àː láːtsə́y dón lǎːs máː tə̀ ndáráy //
# text_ortho = tôː yáːni mənáːyáː vaː vìː ɣáy tu àː láːtsə́y dón lǎːs máː tə̀ ndáráy //
# text_en = Well that's why yesterday I insisted that you should move on so that... the work will be good.
1 tòː tòː PART _ _ 2 discourse _ AlignBegin=102890|AlignEnd=103166|Gloss=well
2 yáːni yáːni PRON _ Case=Nom 0 root _ AlignBegin=103166|AlignEnd=103442|Gloss=3sg
3 mənáːyáː náː-yáː AUX _ Aspect=Imp|Number=Sing|Person=1|Tense=Rec 2 comp:cleft _ AlignBegin=103442|AlignEnd=103718|Gloss=1Sing.REC.Imp
4 vaː vaː VERB _ _ 3 comp:aux _ AlignBegin=103718|AlignEnd=103994|Gloss=be_hot
5 vìː vìː NOUN _ _ 4 comp:obj@lvc _ AlignBegin=103994|AlignEnd=104132|Gloss=mouth
6 ɣáy káy PRON _ Person=3|PronType=Prs 4 comp:obl@expl _ AlignBegin=104132|AlignEnd=104270|Gloss=ANAPH
7 tu tu SCONJ _ _ 4 comp:obj _ AlignBegin=104270|AlignEnd=104547|Gloss=Qot
8 àː tə̀ AUX _ Mood=Sub|Number=Sing|Person=2 7 comp:obj _ AlignBegin=104848|AlignEnd=105142|Gloss=2Sing.Sub
9 laːtsə́ laːtsə́ VERB _ _ 8 comp:aux _ AlignBegin=105142|AlignEnd=105436|Gloss=pass_by|wordform=láːtsə́y
10 =íː =íː PART _ _ 9 clit:mod _ Gloss=Res|Result=Yes|wordform=-íː
11 dón dón SCONJ _ _ 9 mod _ AlignBegin=105735|AlignEnd=106113|Gloss=because
12 lǎːs laː NOUN _ Definite=Def 14 subj _ AlignBegin=106113|AlignEnd=106285|Gloss=work
13 máː máː PART _ _ 12 mod _ AlignBegin=106285|AlignEnd=106457|Gloss=even
14 tə̀ tə̀ AUX _ Mood=Sub|Number=Sing|Person=3 11 comp:obj _ AlignBegin=106457|AlignEnd=106629|Gloss=3Sing.Sub
15 ndará ndará VERB _ _ 14 comp:aux _ AlignBegin=106629|AlignEnd=106801|Gloss=be_proper|wordform=ndáráy
16 =íː =íː PART _ _ 15 clit:mod _ Gloss=Res|Result=Yes|wordform=-íː
17 // // PUNCT _ _ 8 punct _ AlignBegin=106801|AlignEnd=106971|Gloss=PUNCT
# sent_id = SAY_BC_CONV_03_093-094
# speaker_id = SP2
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_CONV_03.WAV
# sent_timecode = 106971, 109113
# text = kyáːni máː lǎːs wò fiɣə mə́n ngə̂y-ngə̀y //
# text_ortho = kyáːni máː lǎːs wò fiɣə mə́n ngə̂yngə̀y //
# text_en = For you even the work will be really easy for you.
1 kyáːni kyáːni PRON _ Number=Sing|Person=2|PronType=Prs 4 dislocated@comp _ AlignBegin=106971|AlignEnd=107154|Gloss=2S
2 máː máː PART _ _ 1 discourse _ AlignBegin=107154|AlignEnd=107337|Gloss=even
3 lǎːs laː NOUN _ Definite=Def 4 subj _ AlignBegin=107337|AlignEnd=107520|Gloss=work
4 wò a AUX _ Number=Sing|Person=3|Tense=Fut 0 root _ AlignBegin=107520|AlignEnd=107703|Gloss=3Sing.Fut
5-6 fiɣə _ _ _ _ _ _ _ _
5 fi fi VERB _ _ 4 comp:aux _ AlignBegin=107703|AlignEnd=107795|Gloss=do
6 =ɣə =kə PRON _ Case=Acc|Number=Sing|Person=2|PronType=Prs 5 comp:obj@R _ AlignBegin=107795|AlignEnd=107887|Gloss=2Sing.Obj
7 mə́n mə́n PART _ Case=Ben 5 compound:prt _ AlignBegin=108496|AlignEnd=108702|Gloss=BEN
8 ngə̂y-ngə̀y ngə̂y-ngə̀y IDEO _ ExtPos=NOUN 5 comp:obj _ AlignBegin=108702|AlignEnd=108908|Gloss=easy
9 // // PUNCT _ _ 4 punct _ AlignBegin=108908|AlignEnd=109113|Gloss=PUNCT
# sent_id = SAY_BC_CONV_03_095-095
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_CONV_03.WAV
# sent_timecode = 109113, 109969
# text = wò fimmə́n keɓát //
# text_ortho = wò fimmə́n keɓát //
# text_en = I will do it fast.
1 wò a AUX _ Number=Sing|Person=3|Tense=Fut 0 root _ AlignBegin=109113|AlignEnd=109284|Gloss=3Sing.Fut
2-4 fimmə́n _ _ _ _ _ _ _ _
2 fi fi VERB _ _ 1 comp:aux _ AlignBegin=109284|AlignEnd=109370|Gloss=do
3 =m =mə PRON _ Case=Acc 2 comp:obj@R _ AlignBegin=109370|AlignEnd=109455|Gloss=1Sing.Obj
4 mə́n mə́n PART _ Case=Ben 2 compound:prt _ AlignBegin=109455|AlignEnd=109626|Gloss=BEN
5 keɓát keɓát IDEO _ ExtPos=ADV 2 comp:obj _ AlignBegin=109626|AlignEnd=109797|Gloss=fast
6 // // PUNCT _ _ 1 punct _ AlignBegin=109797|AlignEnd=109969|Gloss=PUNCT
# sent_id = SAY_BC_CONV_03_096-098
# speaker_id = SP2
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_CONV_03.WAV
# sent_timecode = 109969, 113788
# text = tòː yáː fíɣə̀ keɓát kə yêl kúmá tòː kə yêl ngə́ʃês á ndârá ŋâː ?//
# text_ortho = tòː yáː fíɣə̀ mə́n keɓát kə yêl kúmá tòː kə yél ngə́ʃês á ndârá ŋâː ?//
# text_en = Well if you do it fast you will see that well, you will see that ... the thing is good won't you?
1 tòː tòː PART _ _ 7 discourse _ AlignBegin=109969|AlignEnd=110133|Gloss=well
2 yáː yáː AUX _ Mood=Cnd|Number=Sing|Person=3 7 mod _ AlignBegin=110133|AlignEnd=110297|Gloss=3Sing.Cnd
3-5 fíɣə̀ _ _ _ _ _ _ _ _
3 fí fi VERB _ _ 2 comp:aux _ AlignBegin=110297|AlignEnd=110379|Gloss=do
4 =ɣə̀ =kə PRON _ Case=Acc|Number=Sing|Person=2|PronType=Prs 3 comp:obj@R _ AlignBegin=110379|AlignEnd=110461|Gloss=2Sing.Obj
5 mə́n mə́n PART _ Case=Ben 3 compound:prt _ AlignBegin=110461|AlignEnd=110625|Gloss=BEN
6 keɓát keɓát IDEO _ ExtPos=NOUN 3 comp:obj _ AlignBegin=110625|AlignEnd=110789|Gloss=fast
7 kə á AUX _ Aspect=Aor|Number=Sing|Person=2 0 root _ AlignBegin=110789|AlignEnd=110953|Gloss=2Sing.Aor
8 yêl yel VERB _ _ 7 comp:aux _ AlignBegin=110953|AlignEnd=111117|Gloss=see
9 kúmá kúmá PART _ _ 7 discourse _ AlignBegin=111117|AlignEnd=111281|Gloss=also
10 tòː tòː PART _ _ 11 discourse _ AlignBegin=111281|AlignEnd=111445|Gloss=well
11 kə á AUX _ Aspect=Aor|Number=Sing|Person=2 7 conj:dicto _ AlignBegin=112400|AlignEnd=112660|Gloss=2Sing.Aor
12 yêl yel VERB _ _ 11 comp:aux _ AlignBegin=112660|AlignEnd=112919|Gloss=see
13 ngə́ʃi ngə́tn NOUN _ Definite=Ind|Number=Plur 15 subj _ AlignBegin=112919|AlignEnd=113093|Gloss=thing-Ind.Plur|wordform=ngə́ʃês
14 -ês -ês DET _ Definite=Def 13 af:det _ Gloss=-Def
15 á á AUX _ Aspect=Aor|Number=Sing|Person=3 12 parataxis@comp _ AlignBegin=113093|AlignEnd=113267|Gloss=3Sing.Aor
16 ndârá ndará VERB _ _ 15 comp:aux _ AlignBegin=113267|AlignEnd=113441|Gloss=be_proper
17 ŋâː ŋaː PART _ _ 11 mod _ AlignBegin=113441|AlignEnd=113615|Gloss=Q|PartType=Int
18 ?// ?// PUNCT _ _ 7 punct _ AlignBegin=113615|AlignEnd=113788|Gloss=PUNCT
# sent_id = SAY_BC_CONV_03_099-099
# speaker_id = SP2
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_CONV_03.WAV
# sent_timecode = 114315, 115038
# text = àmáː yâːn &//
# text_ortho = àmáː yâːn &//
# text_en = But if...
1 àmáː àmáː CCONJ _ _ 2 discourse _ AlignBegin=114315|AlignEnd=114677|Gloss=but
2 yâːn yâːn SCONJ _ _ 0 root@scrap _ AlignBegin=114677|AlignEnd=115038|Gloss=if
3 &// &// PUNCT _ _ 2 punct _ AlignBegin=115038|AlignEnd=115038|Gloss=PUNCT
# sent_id = SAY_BC_CONV_03_100-102
# speaker_id = SP2
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_CONV_03.WAV
# sent_timecode = 115304, 117234
# text = kənáː wu tu áʔà ba damuwa ká ɗyǎː ká ɬǐː //
# text_ortho = kənáː wu tu áʔà ba damuwa ká ɗyǎː ká ɬǐː //
# text_en = Yesterday you said that OK <hau no problem hau>, you can go.
1 kənáː náː AUX _ Number=Sing|Person=2|Tense=Rec 0 root _ AlignBegin=115304|AlignEnd=115445|Gloss=2Sing.REC
2 wu wul VERB _ _ 1 comp:aux _ AlignBegin=115445|AlignEnd=115586|Gloss=say
3 tu tu SCONJ _ _ 2 comp:obj _ AlignBegin=115586|AlignEnd=115727|Gloss=Qot
4 áʔà áʔà X _ Foreign=Yes 3 comp:obj _ AlignBegin=115727|AlignEnd=115923|Gloss=no|Lang=ha
5 ba ba X _ Foreign=Yes 4 flat@foreign _ AlignBegin=116173|AlignEnd=116325|Gloss=no|Lang=ha
6 damuwa damuwa X _ Foreign=Yes 5 flat@foreign _ AlignBegin=116325|AlignEnd=116477|Gloss=problem|Lang=ha
7 ká a AUX _ Number=Plur|Person=2|Tense=Fut 4 parataxis _ AlignBegin=116477|AlignEnd=116629|Gloss=2Plur.Fut
8 ɗyǎː ɗyáː VERB _ _ 7 comp:aux _ AlignBegin=116629|AlignEnd=116781|Gloss=be_able|SVC=Yes
9 ká a AUX _ Number=Plur|Person=2|Tense=Fut 8 parataxis@comp _ AlignBegin=116781|AlignEnd=116933|Gloss=2Plur.Fut
10 ɬə ɬə VERB _ _ 9 comp:aux _ AlignBegin=116933|AlignEnd=117085|Gloss=go|wordform=ɬǐː
11 =íː =íː PART _ _ 10 clit:mod _ Gloss=Res|Result=Yes|wordform=-íː
12 // // PUNCT _ _ 1 punct _ AlignBegin=117085|AlignEnd=117234|Gloss=PUNCT
# sent_id = SAY_BC_CONV_03_103-105
# speaker_id = SP2
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_CONV_03.WAV
# sent_timecode = 117579, 119846
# text = kúmá kyàː ɬíː < bàː ka tul də̀n hár dzàŋ zúwa dzàŋ Malâːr //
# text_ortho = kúmá kyàː ɬíː < bàː ka tul də̀n hár dzàŋ zúwa dzàŋ Malâːr //
# text_en = And if you go you will reach home around Tuesday.
1 kúmá kúmá PART _ _ 7 discourse _ AlignBegin=117579|AlignEnd=117716|Gloss=also
2 kyàː yáː AUX _ Mood=Cnd|Number=Plur|Person=2 7 mod _ AlignBegin=117716|AlignEnd=117853|Gloss=2Plur.Cnd
3 ɬə ɬə VERB _ _ 2 comp:aux _ AlignBegin=117853|AlignEnd=117990|Gloss=go|wordform=ɬíː
4 =íː =íː PART _ _ 3 clit:mod _ Gloss=Res|Result=Yes|wordform=-íː
5 < < PUNCT _ _ 2 punct _ AlignBegin=117990|AlignEnd=118127|Gloss=PUNCT
6 bàː bàː PART _ Polarity=Neg 7 mod _ AlignBegin=118127|AlignEnd=118274|Gloss=Neg
7 ka a AUX _ Number=Sing|Person=2|Tense=Fut 0 root _ AlignBegin=118274|AlignEnd=118421|Gloss=2Sing.Fut
8 tul tul VERB _ _ 7 comp:aux _ AlignBegin=118421|AlignEnd=118568|Gloss=arrive
9 də̀n də̀n NOUN _ _ 8 mod _ AlignBegin=118568|AlignEnd=118716|Gloss=house
10 hár hár ADP _ _ 8 mod _ AlignBegin=118716|AlignEnd=118904|Gloss=up_to
11 dzàŋ dzàŋ NOUN _ _ 10 comp:obj _ AlignBegin=118904|AlignEnd=119092|Gloss=day
12 zúwa zúwa ADP _ _ 10 conj:dicto _ AlignBegin=119092|AlignEnd=119280|Gloss=around
13 dzàŋ dzàŋ NOUN _ _ 12 comp:obj _ AlignBegin=119280|AlignEnd=119468|Gloss=day
14 Malâːr Malâːr PROPN _ _ 13 compound _ AlignBegin=119468|AlignEnd=119656|Gloss=Malar
15 // // PUNCT _ _ 7 punct _ AlignBegin=119656|AlignEnd=119846|Gloss=PUNCT
# sent_id = SAY_BC_CONV_03_106-106
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_CONV_03.WAV
# sent_timecode = 120328, 120602
# text = èː //
# text_ortho = èː //
# text_en = Yes.
1 èː èː INTJ _ _ 0 root _ AlignBegin=120328|AlignEnd=120465|Gloss=yes
2 // // PUNCT _ _ 1 punct _ AlignBegin=120465|AlignEnd=120602|Gloss=PUNCT
# sent_id = SAY_BC_CONV_03_107-107
# speaker_id = SP2
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_CONV_03.WAV
# sent_timecode = 120328, 120988
# text = kə gáːnéy ŋǎːn ?//
# text_ortho = kə gáːnéy ŋǎːn ?//
# text_en = Do you understand?
1 kə á AUX _ Aspect=Aor|Number=Sing|Person=2 0 root _ AlignBegin=120328|AlignEnd=120493|Gloss=2Sing.Aor
2 gaːné gaːné VERB _ _ 1 comp:aux _ AlignBegin=120493|AlignEnd=120658|Gloss=understand|wordform=gáːnéy
3 =íː =íː PART _ _ 2 clit:mod _ Gloss=Res|Result=Yes|wordform=-íː
4 ŋǎːn ŋǎːn PART _ Polarity=Neg 1 mod _ AlignBegin=120658|AlignEnd=120740|Gloss=Q.Neg|PartType=Int
5 ?// ?// PUNCT _ _ 1 punct _ AlignBegin=120823|AlignEnd=120988|Gloss=PUNCT
# sent_id = SAY_BC_CONV_03_108-108
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_CONV_03.WAV
# sent_timecode = 120988, 121262
# text = èː //
# text_ortho = èː //
# text_en = Yes.
1 èː èː INTJ _ _ 0 root _ AlignBegin=120988|AlignEnd=121125|Gloss=yes
2 // // PUNCT _ _ 1 punct _ AlignBegin=121125|AlignEnd=121262|Gloss=PUNCT
# sent_id = SAY_BC_CONV_03_109-111
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_CONV_03.WAV
# sent_timecode = 121808, 124779
# text = áʔá myáː yel kàmán kâːy ʤǎːn || ʤǎːnʤǎːn ma ɬə́ laːtsə́ gə̀tn -íː də̀n //
# text_ortho = áʔá myáː yel kàmán kâːy ʤǎːn || ʤǎːnʤǎːn ma ɬə́ laːtsə́ gə̀tíː də̀n //
# text_en = But I think that really tomorrow, tomorrow for sure I will move on home.
1 áʔá áʔá INTJ _ _ 2 discourse _ AlignBegin=121808|AlignEnd=121963|Gloss=surprise
2 myáː yáː AUX _ Aspect=Imp|Number=Sing|Person=1 0 root _ AlignBegin=121963|AlignEnd=122118|Gloss=1Sing.Imp
3 yel yel VERB _ _ 2 comp:aux _ AlignBegin=122118|AlignEnd=122273|Gloss=see
4 kàmán kàmán SCONJ _ _ 3 comp:obj _ AlignBegin=122273|AlignEnd=122443|Gloss=as
5 kâːy kâːy INTJ _ _ 9 discourse _ AlignBegin=122443|AlignEnd=122613|Gloss=eh
6 ʤǎːn ʤǎːn ADV _ PronType=Dem 9 mod _ AlignBegin=122613|AlignEnd=122783|Gloss=tomorrow
7 || || PUNCT _ _ 8 punct _ AlignBegin=122783|AlignEnd=122952|Gloss=PUNCT
8 ʤǎːnʤǎːn ʤǎːnʤǎːn ADV _ _ 6 conj:dicto _ AlignBegin=123291|AlignEnd=123504|Gloss=tomorrow.INTENS
9 ma a AUX _ Number=Sing|Person=1|Tense=Fut 4 comp:obj _ AlignBegin=123504|AlignEnd=123717|Gloss=1Sing.Fut
10 ɬə́ ɬə VERB _ _ 9 comp:aux _ AlignBegin=123717|AlignEnd=123930|Gloss=go
11 laːtsə́ laːtsə́ VERB _ _ 10 compound:svc _ AlignBegin=123930|AlignEnd=124143|Gloss=pass_by|wordform=*laːtsə́-íː
12 gə̀tn gə̀tn PRON _ Number=Sing|Person=1|Poss=Yes|PronType=Prs 11 mod@ethical _ AlignBegin=124143|AlignEnd=124356|Gloss=1Sing.Gen
13 -íː -íː DET _ Deixis=Dist 12 af:det _ AlignBegin=124143|AlignEnd=124356|Gloss=Remt
14 də̀n də̀n NOUN _ _ 11 comp:obj@G _ AlignBegin=124356|AlignEnd=124569|Gloss=house
15 // // PUNCT _ _ 2 punct _ AlignBegin=124569|AlignEnd=124779|Gloss=PUNCT
# sent_id = SAY_BC_CONV_03_112-112
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_CONV_03.WAV
# sent_timecode = 124779, 125131
# text = bàː ma &//
# text_ortho = bàː maː &//
# text_en = I will not...
1 bàː bàː PART _ Polarity=Neg 2 mod _ AlignBegin=124779|AlignEnd=124896|Gloss=Neg
2 ma a AUX _ Number=Sing|Person=1|Tense=Fut 0 root@scrap _ AlignBegin=124896|AlignEnd=125013|Gloss=1Sing.Fut
3 &// &// PUNCT _ _ 2 punct _ AlignBegin=125013|AlignEnd=125131|Gloss=PUNCT
# sent_id = SAY_BC_CONV_03_113-113
# speaker_id = SP2
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_CONV_03.WAV
# sent_timecode = 124779, 125131
# text = ʤǎːn ?//
# text_ortho = ʤǎːn ?//
# text_en = Tomorrow?
1 ʤǎːn ʤǎːn ADV _ PronType=Dem 0 root _ AlignBegin=124779|AlignEnd=124955|Gloss=tomorrow
2 ?// ?// PUNCT _ _ 1 punct _ AlignBegin=124955|AlignEnd=125131|Gloss=PUNCT
# sent_id = SAY_BC_CONV_03_114-114
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_CONV_03.WAV
# sent_timecode = 125510, 126420
# text = ma mbút ɗa Dʒòʃès hŋ́ //
# text_ortho = ma mbút ɗa ʤòʃès hŋ́ //
# text_en = I will not sleep in Jos.
1 ma a AUX _ Number=Sing|Person=1|Tense=Fut 0 root _ AlignBegin=125510|AlignEnd=125662|Gloss=1Sing.Fut
2 mbút mbút VERB _ _ 1 comp:aux _ AlignBegin=125662|AlignEnd=125814|Gloss=spend_night
3 ɗa ɗa ADP _ _ 2 comp:obj _ AlignBegin=125814|AlignEnd=125966|Gloss=at
4 Dʒòʃès Dʒòs PROPN _ Definite=Def 3 mod@poss _ AlignBegin=125966|AlignEnd=126118|Gloss=Jos
5 hŋ́ hŋ́ PART _ Polarity=Neg 2 mod _ AlignBegin=126118|AlignEnd=126270|Gloss=Neg
6 // // PUNCT _ _ 1 punct _ AlignBegin=126270|AlignEnd=126420|Gloss=PUNCT
# sent_id = SAY_BC_CONV_03_116-116
# speaker_id = SP2
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_CONV_03.WAV
# sent_timecode = 126675, 127883
# text = OK ʤǎːn ka laːtsə́yaː ?//
# text_ortho = OK ʤǎːn ka laːtsə́yaː ?//
# text_en = <OK>, tomorrow you will move on?
1 OK OK INTJ _ Foreign=Yes 3 discourse _ AlignBegin=126675|AlignEnd=126917|Gloss=OK|Lang=en
2 ʤǎːn ʤǎːn ADV _ PronType=Dem 3 mod _ AlignBegin=126917|AlignEnd=127159|Gloss=tomorrow
3 ka a AUX _ Number=Sing|Person=2|Tense=Fut 0 root _ AlignBegin=127159|AlignEnd=127401|Gloss=2Sing.Fut
4 laːtsə́ laːtsə́ VERB _ _ 3 comp:aux _ AlignBegin=127401|AlignEnd=127563|Gloss=pass_by|wordform=laːtsə́y
5-6 laːtsə́yaː _ _ _ _ _ _ _ _
5 =íː =íː PART _ _ 4 clit:mod _ Gloss=Res|Result=Yes|wordform=-íː
6 aː aː PART _ _ 3 mod _ AlignBegin=127563|AlignEnd=127643|Gloss=Q|PartType=Int
7 ?// ?// PUNCT _ _ 3 punct _ AlignBegin=127643|AlignEnd=127883|Gloss=PUNCT
# sent_id = SAY_BC_CONV_03_115-117
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_CONV_03.WAV
# sent_timecode = 126675, 128419
# text = ʤǎːnʤǎːn < myáː ɬíː ma ɬə́ laːtsə́y ə̀ːm //
# text_ortho = ʤǎːnʤǎːn < myáː ɬiː ma ɬə́ laːtsə́y ə̀ːm //
# text_en = Tomorrow for sure, if I reach there, I will move on, yes.
1 ʤǎːnʤǎːn ʤǎːnʤǎːn ADV _ _ 6 mod _ AlignBegin=126675|AlignEnd=126961|Gloss=tomorrow.INTENS
2 < < PUNCT _ _ 1 punct _ AlignBegin=126961|AlignEnd=127248|Gloss=PUNCT
3 myáː yáː AUX _ Mood=Cnd|Number=Sing|Person=1 6 mod _ AlignBegin=127248|AlignEnd=127415|Gloss=1Sing.Cnd
4 ɬə ɬə VERB _ _ 3 comp:aux _ AlignBegin=127415|AlignEnd=127582|Gloss=go|wordform=ɬíː
5 =íː =íː PART _ _ 4 clit:mod _ Gloss=Res|Result=Yes|wordform=-íː
6 ma a AUX _ Number=Sing|Person=1|Tense=Fut 0 root _ AlignBegin=127582|AlignEnd=127749|Gloss=1Sing.Fut
7 ɬə́ ɬə VERB _ _ 6 comp:aux _ AlignBegin=127749|AlignEnd=127916|Gloss=go
8 laːtsə́ laːtsə́ VERB _ _ 7 compound:svc _ AlignBegin=127916|AlignEnd=128083|Gloss=pass_by|wordform=laːtsə́y
9 =íː =íː PART _ _ 8 clit:mod _ Gloss=Res|Result=Yes|wordform=-íː
10 ə̀ːm ə̀ːm INTJ _ _ 6 discourse _ AlignBegin=128083|AlignEnd=128250|Gloss=yes
11 // // PUNCT _ _ 6 punct _ AlignBegin=128250|AlignEnd=128419|Gloss=PUNCT
# sent_id = SAY_BC_CONV_03_118-123
# speaker_id = SP2
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_CONV_03.WAV
# sent_timecode = 128207, 133552
# text = OK < tòː < á ndârá dàː kîː làːtsêʃíː kàm dón kə yísə́n lǎːs nə laː //
# text_ortho = OK < tòː < á ndârá dàː kîː làːtsêʃíː kàm dón kə yísə́n lǎːs nə laː //
# text_en = <en OK en> well, it's better that you should move on indeed because you know... work is serious.
1 OK OK INTJ _ Foreign=Yes 5 discourse _ AlignBegin=128207|AlignEnd=128415|Gloss=OK|Lang=en
2 < < PUNCT _ _ 1 punct _ AlignBegin=128415|AlignEnd=128622|Gloss=PUNCT
3 tòː tòː PART _ _ 5 discourse _ AlignBegin=129371|AlignEnd=129441|Gloss=well
4 < < PUNCT _ _ 3 punct _ AlignBegin=129441|AlignEnd=129511|Gloss=PUNCT
5 á á AUX _ Aspect=Aor|Number=Sing|Person=3 0 root _ AlignBegin=129884|AlignEnd=130095|Gloss=3Sing.Aor
6 ndârá ndará VERB _ _ 5 comp:aux _ AlignBegin=130095|AlignEnd=130306|Gloss=be_proper
7 dàː dàː ADV _ Mood=Irr 8 mod _ AlignBegin=130306|AlignEnd=130555|Gloss=Irr
8 kîː yí AUX _ Mood=Irr|Number=Sing|Person=2 5 subj _ AlignBegin=130555|AlignEnd=130804|Gloss=2Sing.Irr
9-11 làːtsêʃíː _ _ _ _ _ _ _ _
9 laːtsə́ laːtsə́ VERB _ Definite=Def 8 comp:aux _ AlignBegin=130804|Gloss=pass_by|wordform=*làːtsə-íː
10 ʃí ʃí PRON _ Case=Acc|Number=Plur|Person=3|PronType=Prs 9 comp:obj _ AlignEnd=131053|Gloss=3.Plur.Obj
11 =íː =íː PART _ _ 9 clit:mod _ Gloss=Res|Result=Yes|wordform=-íː
12 kàm kàm PART _ _ 9 mod _ AlignBegin=131053|AlignEnd=131302|Gloss=indeed
13 dón dón SCONJ _ _ 9 mod _ AlignBegin=131302|AlignEnd=131551|Gloss=because
14 kə á AUX _ Aspect=Aor|Number=Sing|Person=2 13 parataxis@discourse _ AlignBegin=131551|AlignEnd=131807|Gloss=2Sing.Aor
15 yísə́n yisə́n VERB _ _ 14 comp:aux _ AlignBegin=131807|AlignEnd=132062|Gloss=know
16 lǎːs laː NOUN _ Definite=Def 17 subj _ AlignBegin=132706|AlignEnd=132918|Gloss=work
17 nə nə PART _ _ 13 comp:obj _ AlignBegin=132918|AlignEnd=133130|Gloss=be
18 laː laː NOUN _ _ 17 comp:pred _ AlignBegin=133130|AlignEnd=133342|Gloss=work
19 // // PUNCT _ _ 5 punct _ AlignBegin=133342|AlignEnd=133552|Gloss=PUNCT
# sent_id = SAY_BC_CONV_03_124-124
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_CONV_03.WAV
# sent_timecode = 133137, 133552
# text = gáskyá !//
# text_ortho = gàskyá !//
# text_en = That's right.
1 gáskyá gáskyá ADV _ _ 0 root _ AlignBegin=133137|AlignEnd=133345|Gloss=truly
2 !// !// PUNCT _ _ 1 punct _ AlignBegin=133345|AlignEnd=133552|Gloss=PUNCT
# sent_id = SAY_BC_CONV_03_125-125
# speaker_id = SP2
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_CONV_03.WAV
# sent_timecode = 134388, 134800
# text = awàː !//
# text_ortho = awàː !//
# text_en = Indeed.
1 awàː awàː INTJ _ _ 0 root _ AlignBegin=134388|AlignEnd=134594|Gloss=indeed
2 !// !// PUNCT _ _ 1 punct _ AlignBegin=134594|AlignEnd=134800|Gloss=PUNCT
# sent_id = SAY_BC_CONV_03_126-129
# speaker_id = SP2
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_CONV_03.WAV
# sent_timecode = 135382, 138645
# text = dón myáː yél kàmán kutu kóː kyáː ɬíː < gyaː Òːgá yǎː sûʃíɗi < tá gàːɣə̀ gwàː ɗa níyaː hôː //
# text_ortho = dón myáː yél kàmán kutu kóː kyáː ɬíː < gyaː Òːgá yǎː sûʃíɗi < tá gàːɣə̀ gwàː ɗaː níyaː hôː //
# text_en = Because I think that if you go, Oga and his people, when they come back, they will leave you far indeed.
1 dón dón SCONJ _ _ 2 discourse _ AlignBegin=135382|AlignEnd=135541|Gloss=because
2 myáː yáː AUX _ Aspect=Imp|Number=Sing|Person=1 0 root _ AlignBegin=135541|AlignEnd=135700|Gloss=1Sing.Imp
3 yél yel VERB _ _ 2 comp:aux _ AlignBegin=135700|AlignEnd=135858|Gloss=see
4 kàmán kàmán SCONJ _ ExtPos=SCONJ 3 comp:obj _ AlignBegin=135858|AlignEnd=136016|Gloss=as|Idiom=Yes
5 kutu kutu SCONJ _ _ 4 unk _ AlignBegin=136016|AlignEnd=136174|Gloss=if|InIdiom=Yes
6 kóː kóː SCONJ _ _ 18 mod _ AlignBegin=136174|AlignEnd=136332|Gloss=even_if
7 kyáː yáː AUX _ Mood=Cnd|Number=Sing|Person=2 6 comp:obj _ AlignBegin=136332|AlignEnd=136490|Gloss=2Sing.Cnd
8 ɬə ɬə VERB _ _ 7 comp:aux _ AlignBegin=136490|AlignEnd=136648|Gloss=go|wordform=ɬíː
9 =íː =íː PART _ _ 8 clit:mod _ Gloss=Res|Result=Yes|wordform=-íː
10 < < PUNCT _ _ 6 punct _ AlignBegin=136648|AlignEnd=136804|Gloss=PUNCT
11 gyaː gyaː DET _ Number=Plur 12 det _ AlignBegin=136804|AlignEnd=136964|Gloss=3Plur
12 Òːgá Òːgá PROPN _ _ 13 subj _ AlignBegin=136964|AlignEnd=137124|Gloss=Oga
13 yǎː yáː AUX _ Mood=Cnd|Number=Plur|Person=3 18 mod _ AlignBegin=137124|AlignEnd=137284|Gloss=3Plur.Cnd
14-16 sûʃíɗi _ _ _ _ _ _ _ _
14 sû su VERB _ _ 13 comp:aux _ AlignBegin=137284|AlignEnd=137337|Gloss=return
15 =ʃí =ʃí PRON _ Case=Acc|Number=Plur|Person=3|PronType=Prs 14 comp:obj _ AlignBegin=137337|AlignEnd=137390|Gloss=3Plur.Obj
16 ɗi ɗi PART _ _ 14 compound:prt _ AlignBegin=137390|AlignEnd=137444|Gloss=Ctp|wordform==ɗi
17 < < PUNCT _ _ 13 punct _ AlignBegin=137444|AlignEnd=137606|Gloss=PUNCT
18 tá a AUX _ Number=Plur|Person=3|Tense=Fut 4 comp:obj _ AlignBegin=137606|AlignEnd=137779|Gloss=3Plur.Fut
19-20 gàːɣə̀ _ _ _ _ _ _ _ _
19 gàː gaː VERB _ _ 18 comp:aux _ AlignBegin=137779|AlignEnd=137865|Gloss=leave
20 =ɣə =kə PRON _ Case=Acc|Number=Sing|Person=2|PronType=Prs 19 comp:obj _ AlignBegin=137865|AlignEnd=137952|Gloss=2Sing.Obj
21 gwàː gwàː PRON _ Case=Gen|Number=Sing|Person=2|PronType=Prs 19 mod@ethical _ AlignBegin=137952|AlignEnd=138125|Gloss=2Sing.
22 ɗa ɗa ADP _ _ 19 comp:obl _ AlignBegin=138125|AlignEnd=138211|Gloss=at
23 níyaː níyaː NOUN _ _ 22 comp:obj _ AlignBegin=138211|AlignEnd=138298|Gloss=distance
24 hôː hôː PART _ _ 2 mod _ AlignBegin=138298|AlignEnd=138471|Gloss=Emp|PartType=Emp
25 // // PUNCT _ _ 2 punct _ AlignBegin=138471|AlignEnd=138645|Gloss=PUNCT
# sent_id = SAY_BC_CONV_03_130-130
# speaker_id = SP1
# sound_url = https://corporan.huma-num.fr/Archives/media/SAY/WAV/SAY_BC_CONV_03.WAV
# sent_timecode = 138645, 139489
# text = tá gàːm ɗa də̀nì ɣən //
# text_ortho = tá gàːm ɗa də̀nì ɣən //