-
Notifications
You must be signed in to change notification settings - Fork 6
/
WAZA_08_Body-Matter_MG.conllu
1623 lines (1575 loc) · 107 KB
/
WAZA_08_Body-Matter_MG.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 = WAZA_08_Body-Matter_MG__1
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/WAZA_08_Body-Matter_MG.mp3
# speaker_age = 31-45
# speaker_birthplace = Anambra
# speaker_education = Tertiary
# speaker_id = Sp280
# speaker_naija_competency = Excellent
# speaker_primary_other_language = Igbo
# speaker_residence = FCT
# speaker_sex = F
# text = dis one get &//
# text_en = This one has...
# text_ortho = Dis one get...
1 dis dis DET _ Number=Sing|PronType=Dem 2 det _ AlignBegin=1611|AlignEnd=1775|Gloss=SG.DEM
2 one one NOUN _ _ 3 subj _ AlignBegin=1775|AlignEnd=1930|Gloss=one
3 get get VERB _ _ 0 root@scrap _ AlignBegin=1930|AlignEnd=2167|Gloss=get
4 &// &// PUNCT _ _ 3 punct _ AlignBegin=2167|AlignEnd=2167|Gloss=PUNCT
# sent_id = WAZA_08_Body-Matter_MG__2
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/WAZA_08_Body-Matter_MG.mp3
# speaker_age = 31-45
# speaker_birthplace = Anambra
# speaker_education = Tertiary
# speaker_id = Sp280
# speaker_naija_competency = Excellent
# speaker_primary_other_language = Igbo
# speaker_residence = FCT
# speaker_sex = F
# text = okay quickly < make una still remember sey [ every Wednesday < body matter < na im >+ we dey always carry troway give una ] //
# text_en = Okay, quick, you should remember that 'body matters' [Body Talks] is what we bring your way every Wednesday.
# text_ortho = Okay quickly, make una still remember sey every Wednesday, body matter, na im we dey always carry troway give una.
1 okay OK INTJ _ _ 4 discourse _ AlignBegin=2167|AlignEnd=2466|Gloss=OK
2 quickly quickly ADV _ _ 4 mod:periph _ AlignBegin=2466|AlignEnd=2776|Gloss=quickly
3 < < PUNCT _ _ 2 punct _ AlignBegin=2776|AlignEnd=2776|Gloss=PUNCT
4 make make AUX _ Mood=Opt 0 root _ AlignBegin=2776|AlignEnd=2970|Gloss=SBJV
5 una una PRON _ Case=Nom|Number=Plur|Person=2|PronType=Prs 7 subj _ AlignBegin=2970|AlignEnd=3110|Gloss=NOM.PL.2
6 still still ADV _ _ 7 mod _ AlignBegin=3110|AlignEnd=3280|Gloss=still
7 remember remember VERB _ _ 4 comp:aux _ AlignBegin=3280|AlignEnd=3680|Gloss=remember
8 sey sey SCONJ _ _ 7 comp:obj _ AlignBegin=3680|AlignEnd=3810|Gloss=COMP
9 [ [ PUNCT _ _ 16 punct _ AlignBegin=3810|AlignEnd=3810|Gloss=PUNCT
10 every every DET _ _ 11 det _ AlignBegin=3810|AlignEnd=4016|Gloss=every
11 Wednesday Wednesday PROPN _ _ 16 mod:periph _ AlignBegin=4016|AlignEnd=4546|Gloss=Wednesday
12 < < PUNCT _ _ 11 punct _ AlignBegin=4546|AlignEnd=4546|Gloss=PUNCT
13 body body NOUN _ _ 14 compound _ AlignBegin=4546|AlignEnd=4904|Gloss=body
14 matter matter NOUN _ _ 16 dislocated _ AlignBegin=4904|AlignEnd=5410|Gloss=matter
15 < < PUNCT _ _ 14 punct _ AlignBegin=5410|AlignEnd=5410|Gloss=PUNCT
16 na na PART _ PartType=Cop 8 comp:obj _ AlignBegin=5410|AlignEnd=5531|Gloss=be1
17 im im PRON _ Case=Nom|Number=Sing|Person=3|PronType=Prs 16 comp:pred _ AlignBegin=5531|AlignEnd=5650|Gloss=NOM.SG.3
18 >+ >+ PUNCT _ _ 20 punct _ AlignBegin=5650|AlignEnd=5650|Gloss=PUNCT
19 we we PRON _ Case=Nom|Number=Plur|Person=1|PronType=Prs 20 subj _ AlignBegin=5650|AlignEnd=5710|Gloss=NOM.PL.1
20 dey dey AUX _ Aspect=Imp 16 comp:cleft _ AlignBegin=5710|AlignEnd=5808|Gloss=IPFV
21 always always ADV _ _ 22 mod _ AlignBegin=5808|AlignEnd=6171|Gloss=always
22 carry carry VERB _ _ 20 comp:aux _ AlignBegin=6171|AlignEnd=6420|Gloss=carry
23 troway troway VERB _ _ 22 compound:svc _ AlignBegin=6420|AlignEnd=6750|Gloss=pour_off
24 give give VERB _ _ 23 compound:svc _ AlignBegin=6750|AlignEnd=6940|Gloss=give
25 una una PRON _ Case=Acc|Number=Plur|Person=2|PronType=Prs 24 comp:obj _ AlignBegin=6940|AlignEnd=7230|Gloss=ACC.PL.2
26 ] ] PUNCT _ _ 16 punct _ AlignBegin=7230|AlignEnd=7230|Gloss=PUNCT
27 // // PUNCT _ _ 4 punct _ AlignBegin=7200|AlignEnd=7230|Gloss=PUNCT
# sent_id = WAZA_08_Body-Matter_MG__3
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/WAZA_08_Body-Matter_MG.mp3
# speaker_age = 31-45
# speaker_birthplace = Anambra
# speaker_education = Tertiary
# speaker_id = Sp280
# speaker_naija_competency = Excellent
# speaker_primary_other_language = Igbo
# speaker_residence = FCT
# speaker_sex = F
# text = # we don comot for di ehn gist of # ehn body matter //
# text_en = We've turned over to uh... 'body matters'.
# text_ortho = We don comot for di ehn gist of ehn body matter.
1 # # PUNCT _ _ 3 punct _ AlignBegin=7230|AlignEnd=7640|Gloss=PUNCT
2 we we PRON _ Case=Nom|Number=Plur|Person=1|PronType=Prs 3 subj _ AlignBegin=7640|AlignEnd=7740|Gloss=NOM.PL.1
3 don don AUX _ Aspect=Perf 0 root _ AlignBegin=7740|AlignEnd=7930|Gloss=PRF
4 comot comot VERB _ _ 3 comp:aux _ AlignBegin=7930|AlignEnd=8270|Gloss=get_out
5 for for ADP _ _ 4 comp:obl _ AlignBegin=8270|AlignEnd=8400|Gloss=for
6 di di DET _ Definite=Def|PronType=Art 8 det _ AlignBegin=8400|AlignEnd=8560|Gloss=DEF.ART
7 ehn ehn INTJ _ _ 8 discourse _ AlignBegin=8560|AlignEnd=8930|Gloss=ehn
8 gist gist NOUN _ _ 5 comp:obj _ AlignBegin=8930|AlignEnd=9270|Gloss=gist
9 of of ADP _ _ 8 mod _ AlignBegin=9270|AlignEnd=9558|Gloss=of
10 # # PUNCT _ _ 13 punct _ AlignBegin=9558|AlignEnd=9918|Gloss=PUNCT
11 ehn ehn INTJ _ _ 13 discourse _ AlignBegin=9918|AlignEnd=10032|Gloss=ehn
12 body body NOUN _ _ 13 compound _ AlignBegin=10032|AlignEnd=10345|Gloss=body
13 matter matter NOUN _ _ 9 comp:obj _ AlignBegin=10345|AlignEnd=10785|Gloss=matter
14 // // PUNCT _ _ 3 punct _ AlignBegin=10785|AlignEnd=10785|Gloss=PUNCT
# sent_id = WAZA_08_Body-Matter_MG__4
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/WAZA_08_Body-Matter_MG.mp3
# speaker_age = 31-45
# speaker_birthplace = Anambra
# speaker_education = Tertiary
# speaker_id = Sp280
# speaker_naija_competency = Excellent
# speaker_primary_other_language = Igbo
# speaker_residence = FCT
# speaker_sex = F
# text = right now < na di topic we wan troway //
# text_en = Now, that's the topic we want to talk about.
# text_ortho = Right now, na di topic we wan troway.
1 right right ADV _ _ 2 mod _ AlignBegin=10785|AlignEnd=11075|Gloss=right
2 now now ADV _ _ 4 mod:periph _ AlignBegin=11075|AlignEnd=11285|Gloss=now
3 < < PUNCT _ _ 2 punct _ AlignBegin=11285|AlignEnd=11285|Gloss=PUNCT
4 na na PART _ PartType=Cop 0 root _ AlignBegin=11285|AlignEnd=11415|Gloss=be1
5 di di DET _ Definite=Def|PronType=Art 6 det _ AlignBegin=11415|AlignEnd=11536|Gloss=DEF.ART
6 topic topic NOUN _ _ 4 comp:pred _ AlignBegin=11536|AlignEnd=11905|Gloss=topic
7 we we PRON _ Case=Nom|Number=Plur|Person=1|PronType=Prs 8 subj _ AlignBegin=11905|AlignEnd=12005|Gloss=NOM.PL.1
8 wan want VERB _ _ 6 mod@relcl _ AlignBegin=12005|AlignEnd=12205|Gloss=want
9 troway troway VERB _ _ 8 comp:obj$desire _ AlignBegin=12205|AlignEnd=12666|Gloss=pour_off|Subject=Raising
10 // // PUNCT _ _ 4 punct _ AlignBegin=12666|AlignEnd=12666|Gloss=PUNCT
# sent_id = WAZA_08_Body-Matter_MG__5
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/WAZA_08_Body-Matter_MG.mp3
# speaker_age = 31-45
# speaker_birthplace = Anambra
# speaker_education = Tertiary
# speaker_id = Sp280
# speaker_naija_competency = Excellent
# speaker_primary_other_language = Igbo
# speaker_residence = FCT
# speaker_sex = F
# text = # den once is twelve o'clock < remember by di grace of God < # Dr Sam go join us inside studio > # a gyneacologist //
# text_en = Then at twelve o clock, remember that, by the grace of God, Dr Sam, a gyneacologist, will join us in the studio.
# text_ortho = Den once is twelve o'clock, remember by di grace of God, Dr Sam go join us inside studio a gyneacologist.
1 # # PUNCT _ _ 8 punct _ AlignBegin=12666|AlignEnd=13034|Gloss=PUNCT
2 den den ADV _ _ 3 mod _ AlignBegin=13034|AlignEnd=13184|Gloss=den
3 once once ADV _ _ 8 mod:periph _ AlignBegin=13184|AlignEnd=13464|Gloss=once
4 is be AUX _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 3 comp:obj _ AlignBegin=13464|AlignEnd=13634|Gloss=be.IND.SG.3.PRS.FIN
5 twelve twelve NUM _ NumType=Card 4 comp:pred _ AlignBegin=13634|AlignEnd=13934|Gloss=twelve.CARD
6 o'clock o'clock ADV _ _ 5 mod _ AlignBegin=13934|AlignEnd=14334|Gloss=o'clock
7 < < PUNCT _ _ 3 punct _ AlignBegin=14334|AlignEnd=14334|Gloss=PUNCT
8 remember remember VERB _ _ 0 root _ AlignBegin=14334|AlignEnd=14734|Gloss=remember
9 by by ADP _ _ 18 mod:periph _ AlignBegin=14734|AlignEnd=14852|Gloss=by
10 di di DET _ Definite=Def|PronType=Art 11 det _ AlignBegin=14852|AlignEnd=14964|Gloss=DEF.ART
11 grace grace NOUN _ _ 9 comp:obj _ AlignBegin=14964|AlignEnd=15234|Gloss=grace
12 of of ADP _ _ 11 mod _ AlignBegin=15234|AlignEnd=15366|Gloss=of
13 God God PROPN _ _ 12 comp:obj _ AlignBegin=15366|AlignEnd=15593|Gloss=God
14 < < PUNCT _ _ 9 punct _ AlignBegin=15593|AlignEnd=15593|Gloss=PUNCT
15 # # PUNCT _ _ 9 punct _ AlignBegin=15593|AlignEnd=15904|Gloss=PUNCT
16 Dr Dr NOUN _ _ 18 subj _ AlignBegin=15904|AlignEnd=16210|Gloss=Dr
17 Sam Sam PROPN _ _ 16 flat _ AlignBegin=16210|AlignEnd=16530|Gloss=Sam
18 go go AUX _ Aspect=Prosp 8 comp:obj _ AlignBegin=16530|AlignEnd=16710|Gloss=PROSP
19 join join VERB _ _ 18 comp:aux _ AlignBegin=16710|AlignEnd=16910|Gloss=join
20 us us PRON _ Case=Acc|Number=Plur|Person=1|PronType=Prs 19 comp:obj _ AlignBegin=16910|AlignEnd=17120|Gloss=ACC.PL.1
21 inside inside ADP _ _ 19 comp:obl _ AlignBegin=17120|AlignEnd=17445|Gloss=inside
22 studio studio NOUN _ _ 21 comp:obj _ AlignBegin=17445|AlignEnd=17941|Gloss=studio
23 > > PUNCT _ _ 26 punct _ AlignBegin=17941|AlignEnd=17941|Gloss=PUNCT
24 # # PUNCT _ _ 26 punct _ AlignBegin=17941|AlignEnd=18241|Gloss=PUNCT
25 a a DET _ Definite=Ind|PronType=Art 26 det _ AlignBegin=18241|AlignEnd=18335|Gloss=INDF.ART
26 gyneacologist gyneacologist NOUN _ _ 18 dislocated _ AlignBegin=18335|AlignEnd=19183|Gloss=gyneacologist
27 // // PUNCT _ _ 8 punct _ AlignBegin=19183|AlignEnd=19183|Gloss=PUNCT
# sent_id = WAZA_08_Body-Matter_MG__6
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/WAZA_08_Body-Matter_MG.mp3
# speaker_age = 31-45
# speaker_birthplace = Anambra
# speaker_education = Tertiary
# speaker_id = Sp280
# speaker_naija_competency = Excellent
# speaker_primary_other_language = Igbo
# speaker_residence = FCT
# speaker_sex = F
# text = # by one p.m. < make una still remember { Isaac Onoja |a # pharmacist Isaac Onoja } too # go join us inside studio //
# text_en = Also remember that at one pm, Isaac Onoja, a pharmacist, will also join us in the studio.
# text_ortho = By one p.m., make una still remember Isaac Onoja, pharmacist Isaac Onoja too go join us inside studio.
1 # # PUNCT _ _ 6 punct _ AlignBegin=19183|AlignEnd=19520|Gloss=PUNCT
2 by by ADP _ _ 6 mod:periph _ AlignBegin=19520|AlignEnd=19693|Gloss=by
3 one one NUM _ NumType=Card 2 comp:obj _ AlignBegin=19693|AlignEnd=19960|Gloss=one
4 p.m. p.m. ADV _ _ 3 mod _ AlignBegin=19960|AlignEnd=20450|Gloss=p.m.
5 < < PUNCT _ _ 2 punct _ AlignBegin=20450|AlignEnd=20450|Gloss=PUNCT
6 make make AUX _ Mood=Opt 0 root _ AlignBegin=20450|AlignEnd=20710|Gloss=SBJV
7 una una PRON _ Case=Nom|Number=Plur|Person=2|PronType=Prs 9 subj _ AlignBegin=20710|AlignEnd=20863|Gloss=NOM.PL.2
8 still still ADV _ _ 9 mod _ AlignBegin=20863|AlignEnd=21050|Gloss=still
9 remember remember VERB _ _ 6 comp:aux _ AlignBegin=21050|AlignEnd=21480|Gloss=remember
10 { { PUNCT _ _ 11 punct _ AlignBegin=21480|AlignEnd=21480|Gloss=PUNCT
11 Isaac Isaac PROPN _ _ 21 subj _ AlignBegin=21480|AlignEnd=21884|Gloss=Isaac
12 Onoja Onoja PROPN _ _ 11 flat _ AlignBegin=21884|AlignEnd=22450|Gloss=Onoja
13 |a |a PUNCT _ _ 15 punct _ AlignBegin=22450|AlignEnd=22450|Gloss=PUNCT
14 # # PUNCT _ _ 15 punct _ AlignBegin=22450|AlignEnd=22688|Gloss=PUNCT
15 pharmacist pharmacist NOUN _ _ 11 conj:appos _ AlignBegin=22688|AlignEnd=23209|Gloss=pharmacist
16 Isaac Isaac PROPN _ _ 15 flat _ AlignBegin=23209|AlignEnd=23620|Gloss=Isaac
17 Onoja Onoja PROPN _ _ 16 flat _ AlignBegin=23620|AlignEnd=24025|Gloss=Onoja
18 } } PUNCT _ _ 11 punct _ AlignBegin=24025|AlignEnd=24025|Gloss=PUNCT
19 too too ADV _ _ 15 mod _ AlignBegin=24025|AlignEnd=24350|Gloss=too
20 # # PUNCT _ _ 21 punct _ AlignBegin=24350|AlignEnd=24652|Gloss=PUNCT
21 go go AUX _ Aspect=Prosp 9 comp:obj _ AlignBegin=24652|AlignEnd=24840|Gloss=PROSP
22 join join VERB _ _ 21 comp:aux _ AlignBegin=24840|AlignEnd=25070|Gloss=join
23 us us PRON _ Case=Acc|Number=Plur|Person=1|PronType=Prs 22 comp:obj _ AlignBegin=25070|AlignEnd=25320|Gloss=ACC.PL.1
24 inside inside ADP _ _ 22 comp:obl _ AlignBegin=25320|AlignEnd=25680|Gloss=inside
25 studio studio NOUN _ _ 24 comp:obj _ AlignBegin=25680|AlignEnd=26190|Gloss=studio
26 // // PUNCT _ _ 6 punct _ AlignBegin=26190|AlignEnd=26190|Gloss=PUNCT
# sent_id = WAZA_08_Body-Matter_MG__7
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/WAZA_08_Body-Matter_MG.mp3
# speaker_age = 31-45
# speaker_birthplace = Anambra
# speaker_education = Tertiary
# speaker_id = Sp280
# speaker_naija_competency = Excellent
# speaker_primary_other_language = Igbo
# speaker_residence = FCT
# speaker_sex = F
# text = # maybe we fit talk about anger again |c # or we fit not still talk about anger //
# text_en = Maybe we can talk about anger again, or maybe not.
# text_ortho = Maybe we fit talk about anger again, or we fit not still talk about anger.
1 # # PUNCT _ _ 4 punct _ AlignBegin=26190|AlignEnd=26512|Gloss=PUNCT
2 maybe maybe ADV _ _ 4 mod:periph _ AlignBegin=26512|AlignEnd=26760|Gloss=maybe
3 we we PRON _ Case=Nom|Number=Plur|Person=1|PronType=Prs 4 subj _ AlignBegin=26760|AlignEnd=26850|Gloss=NOM.PL.1
4 fit fit AUX _ Mood=Pot 0 root _ AlignBegin=26850|AlignEnd=27054|Gloss=ABIL
5 talk talk VERB _ _ 4 comp:aux _ AlignBegin=27054|AlignEnd=27220|Gloss=talk
6 about about ADP _ _ 5 comp:obl _ AlignBegin=27220|AlignEnd=27529|Gloss=about
7 anger anger NOUN _ _ 6 comp:obj _ AlignBegin=27529|AlignEnd=27840|Gloss=anger
8 again again ADV _ _ 5 mod _ AlignBegin=27840|AlignEnd=28246|Gloss=again
9 |c |c PUNCT _ _ 13 punct _ AlignBegin=28246|AlignEnd=28246|Gloss=PUNCT
10 # # PUNCT _ _ 13 punct _ AlignBegin=28246|AlignEnd=28531|Gloss=PUNCT
11 or or CCONJ _ _ 13 cc _ AlignBegin=28531|AlignEnd=28658|Gloss=or
12 we we PRON _ Case=Nom|Number=Plur|Person=1|PronType=Prs 13 subj _ AlignBegin=28658|AlignEnd=28710|Gloss=NOM.PL.1
13 fit fit AUX _ Mood=Pot 4 conj:coord _ AlignBegin=28710|AlignEnd=28869|Gloss=ABIL
14 not not PART _ Polarity=Neg 16 mod _ AlignBegin=28869|AlignEnd=29016|Gloss=NEG
15 still still ADV _ _ 16 mod _ AlignBegin=29016|AlignEnd=29204|Gloss=still
16 talk talk VERB _ _ 13 comp:aux _ AlignBegin=29204|AlignEnd=29370|Gloss=talk
17 about about ADP _ _ 16 comp:obl _ AlignBegin=29370|AlignEnd=29655|Gloss=about
18 anger anger NOUN _ _ 17 comp:obj _ AlignBegin=29655|AlignEnd=30113|Gloss=anger
19 // // PUNCT _ _ 4 punct _ AlignBegin=30113|AlignEnd=30113|Gloss=PUNCT
# sent_id = WAZA_08_Body-Matter_MG__8
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/WAZA_08_Body-Matter_MG.mp3
# speaker_age = 31-45
# speaker_birthplace = Anambra
# speaker_education = Tertiary
# speaker_id = Sp280
# speaker_naija_competency = Excellent
# speaker_primary_other_language = Igbo
# speaker_residence = FCT
# speaker_sex = F
# text = # but we get a lot of things to talk about as far as sey [ # { you |c and me } dey concern ] //
# text_en = But we have a lot of things to talk about, concerning you and I.
# text_ortho = But we get a lot of things to talk about as far as sey you, and me dey concern.
1 # # PUNCT _ _ 4 punct _ AlignBegin=30113|AlignEnd=30424|Gloss=PUNCT
2 but but CCONJ _ _ 4 discourse _ AlignBegin=30424|AlignEnd=30610|Gloss=but
3 we we PRON _ Case=Nom|Number=Plur|Person=1|PronType=Prs 4 subj _ AlignBegin=30610|AlignEnd=30767|Gloss=NOM.PL.1
4 get get VERB _ _ 0 root _ AlignBegin=30767|AlignEnd=30985|Gloss=get
5 a a DET _ Definite=Ind|PronType=Art 6 det _ AlignBegin=30985|AlignEnd=31088|Gloss=INDF.ART
6 lot lot NOUN _ _ 4 comp:obj _ AlignBegin=31088|AlignEnd=31280|Gloss=lot
7 of of ADP _ _ 6 mod _ AlignBegin=31280|AlignEnd=31408|Gloss=of
8 things ting NOUN _ Number=Plur 7 comp:obj _ AlignBegin=31408|AlignEnd=31660|Gloss=thing.PL
9 to to ADP _ _ 8 mod _ AlignBegin=31660|AlignEnd=31759|Gloss=to
10 talk talk VERB _ _ 9 comp:obj _ AlignBegin=31759|AlignEnd=31940|Gloss=talk
11 about about ADP _ _ 10 compound:prt _ AlignBegin=31940|AlignEnd=32270|Gloss=about
12 as as ADP _ ExtPos=SCONJ 4 mod$reason _ AlignBegin=32270|AlignEnd=32470|Gloss=as|Idiom=Yes
13 far far ADV _ _ 12 flat _ AlignBegin=32470|AlignEnd=32576|Gloss=far|InIdiom=Yes
14 as as ADP _ _ 13 flat _ AlignBegin=32576|AlignEnd=32700|Gloss=as|InIdiom=Yes
15 sey sey SCONJ _ _ 14 flat _ AlignBegin=32700|AlignEnd=33000|Gloss=COMP|InIdiom=Yes
16 [ [ PUNCT _ _ 24 punct _ AlignBegin=33000|AlignEnd=33290|Gloss=PUNCT
17 # # PUNCT _ _ 24 punct _ AlignBegin=33000|AlignEnd=33290|Gloss=PUNCT
18 { { PUNCT _ _ 19 punct _ AlignBegin=33260|AlignEnd=33290|Gloss=PUNCT
19 you you PRON _ Case=Nom|Person=2|PronType=Prs 24 subj _ AlignBegin=33290|AlignEnd=33480|Gloss=NOM.2
20 |c |c PUNCT _ _ 22 punct _ AlignBegin=33480|AlignEnd=33480|Gloss=PUNCT
21 and and CCONJ _ _ 22 cc _ AlignBegin=33480|AlignEnd=33650|Gloss=and
22 me me PRON _ Case=Acc|Number=Sing|Person=1|PronType=Prs 19 conj:coord _ AlignBegin=33650|AlignEnd=33860|Gloss=ACC.SG.1
23 } } PUNCT _ _ 19 punct _ AlignBegin=33860|AlignEnd=33860|Gloss=PUNCT
24 dey dey AUX _ Aspect=Imp 12 comp:obj _ AlignBegin=33860|AlignEnd=34050|Gloss=IPFV
25 concern concern VERB _ _ 24 comp:aux _ AlignBegin=34050|AlignEnd=34450|Gloss=concern
26 ] ] PUNCT _ _ 24 punct _ AlignBegin=34450|AlignEnd=34450|Gloss=PUNCT
27 // // PUNCT _ _ 4 punct _ AlignBegin=34420|AlignEnd=34450|Gloss=PUNCT
# sent_id = WAZA_08_Body-Matter_MG__9
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/WAZA_08_Body-Matter_MG.mp3
# speaker_age = 31-45
# speaker_birthplace = Anambra
# speaker_education = Tertiary
# speaker_id = Sp280
# speaker_naija_competency = Excellent
# speaker_primary_other_language = Igbo
# speaker_residence = FCT
# speaker_sex = F
# text = because de say [ knowledge na power |c # and # knowledge too na deliverance ] //
# text_en = Because they say knowlegde is power, and it also delivers.
# text_ortho = Because de say knowledge na power, and knowledge too na deliverance.
1 because because SCONJ _ _ 3 discourse _ AlignBegin=34450|AlignEnd=34696|Gloss=because
2 de dem PRON _ Case=Nom|Number=Plur|Person=3|PronType=Prs 3 subj _ AlignBegin=34696|AlignEnd=34788|Gloss=NOM.PL.3
3 say say VERB _ _ 0 root _ AlignBegin=34788|AlignEnd=34972|Gloss=say
4 [ [ PUNCT _ _ 6 punct _ AlignBegin=34972|AlignEnd=35433|Gloss=PUNCT
5 knowledge knowledge NOUN _ _ 6 subj _ AlignBegin=34972|AlignEnd=35433|Gloss=knowledge
6 na na PART _ PartType=Cop 3 parataxis:obj$utter _ AlignBegin=35433|AlignEnd=35662|Gloss=be1
7 power power NOUN _ _ 6 comp:pred _ AlignBegin=35662|AlignEnd=36040|Gloss=power
8 |c |c PUNCT _ _ 14 punct _ AlignBegin=36040|AlignEnd=36040|Gloss=PUNCT
9 # # PUNCT _ _ 14 punct _ AlignBegin=36040|AlignEnd=36320|Gloss=PUNCT
10 and and CCONJ _ _ 14 cc _ AlignBegin=36320|AlignEnd=36692|Gloss=and
11 # # PUNCT _ _ 14 punct _ AlignBegin=36692|AlignEnd=37066|Gloss=PUNCT
12 knowledge knowledge NOUN _ _ 14 subj _ AlignBegin=37066|AlignEnd=37640|Gloss=knowledge
13 too too ADV _ _ 12 mod _ AlignBegin=37640|AlignEnd=38040|Gloss=too
14 na na PART _ PartType=Cop 6 conj:coord _ AlignBegin=38040|AlignEnd=38311|Gloss=be1
15 deliverance deliverance NOUN _ _ 14 comp:pred _ AlignBegin=38311|AlignEnd=39020|Gloss=deliverance
16 ] ] PUNCT _ _ 6 punct _ AlignBegin=39020|AlignEnd=39020|Gloss=PUNCT
17 // // PUNCT _ _ 3 punct _ AlignBegin=38990|AlignEnd=39020|Gloss=PUNCT
# sent_id = WAZA_08_Body-Matter_MG__10
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/WAZA_08_Body-Matter_MG.mp3
# speaker_age = 31-45
# speaker_birthplace = Anambra
# speaker_education = Tertiary
# speaker_id = Sp280
# speaker_naija_competency = Excellent
# speaker_primary_other_language = Igbo
# speaker_residence = FCT
# speaker_sex = F
# text = e dey { very |r very } important //
# text_en = It's really very important.
# text_ortho = E dey very, very important.
1 e im PRON _ Case=Nom|Number=Sing|Person=3|PronType=Prs 2 subj _ AlignBegin=39020|AlignEnd=39140|Gloss=NOM.SG.3
2 dey dey VERB _ VerbType=Cop 0 root _ AlignBegin=39140|AlignEnd=39295|Gloss=be2
3 { { PUNCT _ _ 4 punct _ AlignBegin=39295|AlignEnd=39295|Gloss=PUNCT
4 very very ADV _ _ 8 mod _ AlignBegin=39295|AlignEnd=39544|Gloss=very
5 |r |r PUNCT _ _ 6 punct _ AlignBegin=39544|AlignEnd=39544|Gloss=PUNCT
6 very very ADV _ _ 4 compound:redup _ AlignBegin=39544|AlignEnd=39750|Gloss=very
7 } } PUNCT _ _ 4 punct _ AlignBegin=39750|AlignEnd=39750|Gloss=PUNCT
8 important important ADJ _ _ 2 comp:pred _ AlignBegin=39750|AlignEnd=40299|Gloss=important
9 // // PUNCT _ _ 2 punct _ AlignBegin=40299|AlignEnd=40299|Gloss=PUNCT
# sent_id = WAZA_08_Body-Matter_MG__11
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/WAZA_08_Body-Matter_MG.mp3
# speaker_age = 31-45
# speaker_birthplace = Anambra
# speaker_education = Tertiary
# speaker_id = Sp280
# speaker_naija_competency = Excellent
# speaker_primary_other_language = Igbo
# speaker_residence = FCT
# speaker_sex = F
# text = # I remember sey [ you wey dey for dere |c wey be sey dey talk say [ disease no dey kill black man ] ] //
# text_en = I remember those of you out there who say diseases don’t kill black men.
# text_ortho = I remember sey you wey dey for dere, wey be sey dey talk say disease no dey kill black man.
1 # # PUNCT _ _ 3 punct _ AlignBegin=40299|AlignEnd=40670|Gloss=PUNCT
2 I I PRON _ Case=Nom|Number=Sing|Person=1|PronType=Prs 3 subj _ AlignBegin=40670|AlignEnd=40759|Gloss=NOM.SG.1
3 remember remember VERB _ _ 0 root _ AlignBegin=40759|AlignEnd=41185|Gloss=remember
4 sey sey SCONJ _ _ 3 comp:obj _ AlignBegin=41185|AlignEnd=41503|Gloss=COMP
5 [ [ PUNCT _ _ 17 punct _ AlignBegin=41503|AlignEnd=41503|Gloss=PUNCT
6 you you PRON _ Case=Nom|Person=2|PronType=Prs 17 subj _ AlignBegin=41503|AlignEnd=41695|Gloss=NOM.2
7 wey wey SCONJ _ _ 6 mod@relcl _ AlignBegin=41695|AlignEnd=41822|Gloss=REL
8 dey dey VERB _ VerbType=Cop 7 comp:obj _ AlignBegin=41822|AlignEnd=41955|Gloss=be2
9 for for ADP _ _ 8 comp:pred _ AlignBegin=41955|AlignEnd=42219|Gloss=for
10 dere dere ADV _ _ 9 comp:obj _ AlignBegin=42219|AlignEnd=42465|Gloss=there
11 |c |c PUNCT _ _ 12 punct _ AlignBegin=42465|AlignEnd=42465|Gloss=PUNCT
12 wey when SCONJ _ ExtPos=SCONJ 7 conj:coord _ AlignBegin=42465|AlignEnd=42585|Gloss=when|Idiom=Yes
13 be be VERB _ PartType=Cop 12 comp:obj _ AlignBegin=42585|AlignEnd=42665|Gloss=be1|InIdiom=Yes
14 sey sey SCONJ _ _ 13 comp:pred _ AlignBegin=42665|AlignEnd=42815|Gloss=COMP|InIdiom=Yes
15 dey dey AUX _ Aspect=Imp 12 comp:obj _ AlignBegin=42815|AlignEnd=42927|Gloss=IPFV
16 talk talk VERB _ _ 15 comp:aux _ AlignBegin=42927|AlignEnd=43076|Gloss=talk
17 say say VERB _ _ 4 comp:obj _ AlignBegin=43076|AlignEnd=43267|Gloss=say
18 [ [ PUNCT _ _ 20 punct _ AlignBegin=43267|AlignEnd=43585|Gloss=PUNCT
19 disease disease NOUN _ _ 20 subj _ AlignBegin=43267|AlignEnd=43585|Gloss=disease
20 no no AUX _ Polarity=Neg 17 parataxis:obj$utter _ AlignBegin=43585|AlignEnd=43703|Gloss=NEG
21 dey dey AUX _ Aspect=Imp 20 comp:aux _ AlignBegin=43703|AlignEnd=43840|Gloss=IPFV
22 kill kill VERB _ _ 21 comp:aux _ AlignBegin=43840|AlignEnd=44025|Gloss=kill
23 black black ADJ _ _ 24 mod _ AlignBegin=44025|AlignEnd=44305|Gloss=black
24 man man NOUN _ _ 22 comp:obj _ AlignBegin=44305|AlignEnd=44563|Gloss=man
25 ] ] PUNCT _ _ 20 punct _ AlignBegin=44563|AlignEnd=44563|Gloss=PUNCT
26 ] ] PUNCT _ _ 17 punct _ AlignBegin=44533|AlignEnd=44563|Gloss=PUNCT
27 // // PUNCT _ _ 3 punct _ AlignBegin=44533|AlignEnd=44563|Gloss=PUNCT
# sent_id = WAZA_08_Body-Matter_MG__12
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/WAZA_08_Body-Matter_MG.mp3
# speaker_age = 31-45
# speaker_birthplace = Anambra
# speaker_education = Tertiary
# speaker_id = Sp280
# speaker_naija_competency = Excellent
# speaker_primary_other_language = Igbo
# speaker_residence = FCT
# speaker_sex = F
# text = # or may be sometimes ( I dey come //= I dey come //) < you never go check your body |c # begin dey check your body //
# text_en = Or maybe sometimes... (hold on... hold on...), you don't go in for check-ups, start going now.
# text_ortho = Or may be sometimes (I dey come, I dey come), you never go check your body, begin dey check your body.
1 # # PUNCT _ _ 17 punct _ AlignBegin=44563|AlignEnd=44925|Gloss=PUNCT
2 or or CCONJ _ _ 17 discourse _ AlignBegin=44925|AlignEnd=45046|Gloss=or
3 may may AUX _ ExtPos=ADV 17 mod:periph _ AlignBegin=45046|AlignEnd=45183|Gloss=may|Idiom=Yes
4 be be VERB _ PartType=Cop 3 comp:obj _ AlignBegin=45183|AlignEnd=45280|Gloss=be1|InIdiom=Yes
5 sometimes sometimes ADV _ _ 17 mod:periph _ AlignBegin=45280|AlignEnd=45780|Gloss=sometimes
6 ( ( PUNCT _ _ 8 punct _ AlignBegin=45780|AlignEnd=45780|Gloss=PUNCT
7 I I PRON _ Case=Nom|Number=Sing|Person=1|PronType=Prs 8 subj _ AlignBegin=45780|AlignEnd=45945|Gloss=NOM.SG.1
8 dey dey AUX _ Aspect=Imp 5 parataxis:parenth _ AlignBegin=45945|AlignEnd=46088|Gloss=IPFV
9 come come VERB _ _ 8 comp:aux _ AlignBegin=46088|AlignEnd=46313|Gloss=come
10 //= //= PUNCT _ _ 12 punct _ AlignBegin=46313|AlignEnd=46313|Gloss=PUNCT
11 I I PRON _ Case=Nom|Number=Sing|Person=1|PronType=Prs 12 subj _ AlignBegin=46313|AlignEnd=46450|Gloss=NOM.SG.1
12 dey dey AUX _ Aspect=Imp 8 parataxis:conj _ AlignBegin=46450|AlignEnd=46580|Gloss=IPFV
13 come come VERB _ _ 12 comp:aux _ AlignBegin=46580|AlignEnd=46830|Gloss=come
14 //) //) PUNCT _ _ 8 punct _ AlignBegin=46830|AlignEnd=46830|Gloss=PUNCT
15 < < PUNCT _ _ 5 punct _ AlignBegin=46800|AlignEnd=46830|Gloss=PUNCT
16 you you PRON _ Case=Nom|Person=2|PronType=Prs 17 subj _ AlignBegin=46830|AlignEnd=46890|Gloss=NOM.2
17 never never AUX _ Aspect=Perf|Polarity=Neg 0 root _ AlignBegin=46890|AlignEnd=47150|Gloss=PRF.NEG
18 go go VERB _ _ 17 comp:aux _ AlignBegin=47150|AlignEnd=47280|Gloss=go
19 check check VERB _ _ 18 compound:svc$purp _ AlignBegin=47280|AlignEnd=47550|Gloss=check
20 your your PRON _ Number=Plur|Person=2|Poss=Yes 21 mod:poss _ AlignBegin=47550|AlignEnd=47620|Gloss=PL.2.POSS
21 body body NOUN _ _ 19 comp:obj _ AlignBegin=47620|AlignEnd=47990|Gloss=body
22 |c |c PUNCT _ _ 24 punct _ AlignBegin=47990|AlignEnd=47990|Gloss=PUNCT
23 # # PUNCT _ _ 24 punct _ AlignBegin=47990|AlignEnd=48309|Gloss=PUNCT
24 begin begin VERB _ _ 19 conj:coord _ AlignBegin=48309|AlignEnd=48580|Gloss=begin
25 dey dey AUX _ Aspect=Imp 24 comp:obj$phase _ AlignBegin=48580|AlignEnd=48720|Gloss=IPFV|Subject=Raising
26 check check VERB _ _ 25 comp:aux _ AlignBegin=48720|AlignEnd=48981|Gloss=check
27 your your PRON _ Number=Plur|Person=2|Poss=Yes 28 mod:poss _ AlignBegin=48981|AlignEnd=49070|Gloss=PL.2.POSS
28 body body NOUN _ _ 26 comp:obj _ AlignBegin=49070|AlignEnd=49459|Gloss=body
29 // // PUNCT _ _ 17 punct _ AlignBegin=49459|AlignEnd=49459|Gloss=PUNCT
# sent_id = WAZA_08_Body-Matter_MG__13
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/WAZA_08_Body-Matter_MG.mp3
# speaker_age = 31-45
# speaker_birthplace = Anambra
# speaker_education = Tertiary
# speaker_id = Sp280
# speaker_naija_competency = Excellent
# speaker_primary_other_language = Igbo
# speaker_residence = FCT
# speaker_sex = F
# text = # because out of ignorance < our people dey perish no be small //
# text_en = Because a lot of our people are dying due to ignorance.
# text_ortho = Because out of ignorance, our people dey perish no be small.
1 # # PUNCT _ _ 9 punct _ AlignBegin=49459|AlignEnd=49774|Gloss=PUNCT
2 because because SCONJ _ _ 9 discourse _ AlignBegin=49774|AlignEnd=50031|Gloss=because
3 out out ADP _ ExtPos=ADP 9 mod:periph _ AlignBegin=50031|AlignEnd=50218|Gloss=out|Idiom=Yes
4 of of ADP _ _ 3 comp:obj _ AlignBegin=50218|AlignEnd=50348|Gloss=of|InIdiom=Yes
5 ignorance ignorance NOUN _ _ 3 comp:obj _ AlignBegin=50348|AlignEnd=50832|Gloss=ignorance
6 < < PUNCT _ _ 3 punct _ AlignBegin=50832|AlignEnd=50832|Gloss=PUNCT
7 our our PRON _ Number=Plur|Person=1|Poss=Yes 8 mod:poss _ AlignBegin=50832|AlignEnd=51018|Gloss=PL.1.POSS
8 people people NOUN _ Number=Plur 9 subj _ AlignBegin=51018|AlignEnd=51256|Gloss=people.PL
9 dey dey AUX _ Aspect=Imp 0 root _ AlignBegin=51256|AlignEnd=51432|Gloss=IPFV
10 perish perish VERB _ _ 9 comp:aux _ AlignBegin=51432|AlignEnd=51788|Gloss=perish
11 no no AUX _ Polarity=Neg 10 mod _ AlignBegin=51788|AlignEnd=51888|Gloss=NEG
12 be be VERB _ PartType=Cop 11 comp:aux _ AlignBegin=51888|AlignEnd=51978|Gloss=be
13 small small ADJ _ _ 12 comp:pred _ AlignBegin=51978|AlignEnd=52348|Gloss=small
14 // // PUNCT _ _ 9 punct _ AlignBegin=52348|AlignEnd=52348|Gloss=PUNCT
# sent_id = WAZA_08_Body-Matter_MG__14
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/WAZA_08_Body-Matter_MG.mp3
# speaker_age = 31-45
# speaker_birthplace = Anambra
# speaker_education = Tertiary
# speaker_id = Sp280
# speaker_naija_competency = Excellent
# speaker_primary_other_language = Igbo
# speaker_residence = FCT
# speaker_sex = F
# text = # but we need to dey do di right thing //
# text_en = But we need to be doing the right thing.
# text_ortho = But we need to dey do di right thing.
1 # # PUNCT _ _ 4 punct _ AlignBegin=52348|AlignEnd=52666|Gloss=PUNCT
2 but but CCONJ _ _ 4 discourse _ AlignBegin=52666|AlignEnd=52808|Gloss=but
3 we we PRON _ Case=Nom|Number=Plur|Person=1|PronType=Prs 4 subj _ AlignBegin=52808|AlignEnd=52898|Gloss=NOM.PL.1
4 need need VERB _ _ 0 root _ AlignBegin=52898|AlignEnd=53078|Gloss=need
5 to to ADP _ _ 4 comp:obl _ AlignBegin=53078|AlignEnd=53178|Gloss=to|Subject=Raising
6 dey dey AUX _ Aspect=Imp 5 comp:obj _ AlignBegin=53178|AlignEnd=53298|Gloss=IPFV
7 do do VERB _ _ 6 comp:aux _ AlignBegin=53298|AlignEnd=53443|Gloss=do
8 di di DET _ Definite=Def|PronType=Art 10 det _ AlignBegin=53443|AlignEnd=53548|Gloss=DEF.ART
9 right right ADJ _ _ 10 mod _ AlignBegin=53548|AlignEnd=53803|Gloss=right
10 thing ting NOUN _ _ 7 comp:obj _ AlignBegin=53803|AlignEnd=53957|Gloss=thing
11 // // PUNCT _ _ 4 punct _ AlignBegin=53957|AlignEnd=53957|Gloss=PUNCT
# sent_id = WAZA_08_Body-Matter_MG__15
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/WAZA_08_Body-Matter_MG.mp3
# speaker_age = 31-45
# speaker_birthplace = Anambra
# speaker_education = Tertiary
# speaker_id = Sp280
# speaker_naija_competency = Excellent
# speaker_primary_other_language = Igbo
# speaker_residence = FCT
# speaker_sex = F
# text = dat is why # { both newspaper |c magazine |c television |c radio |c # even some people wey dey ehn ehm post flyer |c # and for social media } < you go see how everybody dey post # body matter issue # so dat you go learn //
# text_en = That's why you'll see people posting things about the body in the newspapers, magazines, televisions, radios, and even flyers on uh... uh... on social media, so that you can learn.
# text_ortho = Dat is why both newspaper, magazine, television, radio, even some people wey dey ehn ehm post flyer, and for social media, you go see how everybody dey post body matter issue so dat you go learn.
1 dat dat PRON _ Number=Sing 2 subj _ AlignBegin=53957|AlignEnd=54168|Gloss=SG.DEM
2 is be AUX _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ AlignBegin=54168|AlignEnd=54298|Gloss=be.IND.SG.3.PRS.FIN
3 why why ADV _ PronType=Int 2 comp:pred _ AlignBegin=54298|AlignEnd=54585|Gloss=why.Q
4 # # PUNCT _ _ 7 punct _ AlignBegin=54585|AlignEnd=54901|Gloss=PUNCT
5 { { PUNCT _ _ 7 punct _ AlignBegin=54871|AlignEnd=54901|Gloss=PUNCT
6 both both DET _ _ 7 det _ AlignBegin=54901|AlignEnd=55155|Gloss=both
7 newspaper newspaper NOUN _ _ 34 dislocated _ AlignBegin=55155|AlignEnd=55785|Gloss=newspaper
8 |c |c PUNCT _ _ 9 punct _ AlignBegin=55785|AlignEnd=55785|Gloss=PUNCT
9 magazine magazine NOUN _ _ 7 conj:coord _ AlignBegin=55785|AlignEnd=56452|Gloss=magazine
10 |c |c PUNCT _ _ 11 punct _ AlignBegin=56452|AlignEnd=56452|Gloss=PUNCT
11 television television NOUN _ _ 9 conj:coord _ AlignBegin=56452|AlignEnd=57188|Gloss=television
12 |c |c PUNCT _ _ 13 punct _ AlignBegin=57188|AlignEnd=57188|Gloss=PUNCT
13 radio radio NOUN _ _ 11 conj:coord _ AlignBegin=57188|AlignEnd=57788|Gloss=radio
14 |c |c PUNCT _ _ 18 punct _ AlignBegin=57788|AlignEnd=57788|Gloss=PUNCT
15 # # PUNCT _ _ 18 punct _ AlignBegin=57788|AlignEnd=58167|Gloss=PUNCT
16 even even ADV _ _ 18 mod _ AlignBegin=58167|AlignEnd=58415|Gloss=even
17 some some DET _ _ 18 det _ AlignBegin=58415|AlignEnd=58615|Gloss=some
18 people people NOUN _ Number=Plur 13 conj:coord _ AlignBegin=58615|AlignEnd=58755|Gloss=people.PL
19 wey wey SCONJ _ _ 18 mod@relcl _ AlignBegin=58755|AlignEnd=58855|Gloss=REL
20 dey dey AUX _ Aspect=Imp 19 comp:obj _ AlignBegin=58855|AlignEnd=59065|Gloss=IPFV
21 ehn ehn INTJ _ _ 23 discourse _ AlignBegin=59065|AlignEnd=59617|Gloss=ehn
22 ehm ehm INTJ _ _ 23 discourse _ AlignBegin=59617|AlignEnd=59960|Gloss=ehm
23 post post VERB _ _ 20 comp:aux _ AlignBegin=59960|AlignEnd=60284|Gloss=post
24 flyer flyer NOUN _ _ 23 comp:obj _ AlignBegin=60284|AlignEnd=60828|Gloss=flyer
25 |c |c PUNCT _ _ 28 punct _ AlignBegin=60828|AlignEnd=60828|Gloss=PUNCT
26 # # PUNCT _ _ 28 punct _ AlignBegin=60828|AlignEnd=61129|Gloss=PUNCT
27 and and CCONJ _ _ 28 cc _ AlignBegin=61129|AlignEnd=61290|Gloss=and
28 for for ADP _ _ 18 conj:coord _ AlignBegin=61290|AlignEnd=61470|Gloss=for
29 social social ADJ _ _ 30 mod _ AlignBegin=61470|AlignEnd=61874|Gloss=social
30 media media NOUN _ _ 28 comp:obj _ AlignBegin=61874|AlignEnd=62100|Gloss=media
31 } } PUNCT _ _ 7 punct _ AlignBegin=62100|AlignEnd=62100|Gloss=PUNCT
32 < < PUNCT _ _ 34 punct _ AlignBegin=62070|AlignEnd=62100|Gloss=PUNCT
33 you you PRON _ Case=Nom|Person=2|PronType=Prs 34 subj _ AlignBegin=62100|AlignEnd=62160|Gloss=NOM.2
34 go go AUX _ Aspect=Prosp 3 mod@relcl _ AlignBegin=62160|AlignEnd=62250|Gloss=PROSP
35 see see VERB _ _ 34 comp:aux _ AlignBegin=62250|AlignEnd=62369|Gloss=see
36 how how ADV _ PronType=Int 35 comp:obj _ AlignBegin=62369|AlignEnd=62616|Gloss=how.Q
37 everybody everybody PRON _ _ 38 subj _ AlignBegin=62616|AlignEnd=63040|Gloss=everybody
38 dey dey AUX _ Aspect=Imp 36 mod@relcl _ AlignBegin=63040|AlignEnd=63179|Gloss=IPFV
39 post post VERB _ _ 38 comp:aux _ AlignBegin=63179|AlignEnd=63512|Gloss=post
40 # # PUNCT _ _ 43 punct _ AlignBegin=63512|AlignEnd=63820|Gloss=PUNCT
41 body body NOUN _ _ 42 compound _ AlignBegin=63820|AlignEnd=64069|Gloss=body
42 matter matter NOUN _ _ 43 compound _ AlignBegin=64069|AlignEnd=64459|Gloss=matter
43 issue issue NOUN _ _ 39 comp:obj _ AlignBegin=64459|AlignEnd=64928|Gloss=issue
44 # # PUNCT _ _ 45 punct _ AlignBegin=64928|AlignEnd=65142|Gloss=PUNCT
45 so so SCONJ _ ExtPos=SCONJ 39 mod$purp _ AlignBegin=65141|AlignEnd=65260|Gloss=so|Idiom=Yes
46 dat dat SCONJ _ _ 45 comp:obj _ AlignBegin=65260|AlignEnd=65400|Gloss=COMP|InIdiom=Yes
47 you you PRON _ Case=Nom|Person=2|PronType=Prs 48 subj _ AlignBegin=65400|AlignEnd=65590|Gloss=NOM.2
48 go go AUX _ Aspect=Prosp 45 comp:obj _ AlignBegin=65590|AlignEnd=65720|Gloss=PROSP
49 learn learn VERB _ _ 48 comp:aux _ AlignBegin=65720|AlignEnd=65890|Gloss=learn
50 // // PUNCT _ _ 2 punct _ AlignBegin=65890|AlignEnd=65890|Gloss=PUNCT
# sent_id = WAZA_08_Body-Matter_MG__16
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/WAZA_08_Body-Matter_MG.mp3
# speaker_age = 31-45
# speaker_birthplace = Anambra
# speaker_education = Tertiary
# speaker_id = Sp280
# speaker_naija_competency = Excellent
# speaker_primary_other_language = Igbo
# speaker_residence = FCT
# speaker_sex = F
# text = but one thing wey be sey [ me < I go beg una ] < # no be every body matter story >+ you go dey read //
# text_en = But one thing I myself will beg of you is that not every story on 'body matters' is something you should read.
# text_ortho = But one thing wey be sey me, I go beg una, no be every body matter story you go dey read.
1 but but CCONJ _ _ 17 discourse _ AlignBegin=65890|AlignEnd=66133|Gloss=but
2 one one NUM _ NumType=Card 3 det:num _ AlignBegin=66133|AlignEnd=66490|Gloss=one
3 thing ting NOUN _ _ 17 dislocated _ AlignBegin=66490|AlignEnd=66646|Gloss=thing
4 wey wey SCONJ _ ExtPos=SCONJ 3 mod@relcl _ AlignBegin=66646|AlignEnd=66777|Gloss=REL|Idiom=Yes
5 be be VERB _ PartType=Cop 4 comp:obj _ AlignBegin=66777|AlignEnd=66890|Gloss=be1|InIdiom=Yes
6 sey sey SCONJ _ _ 5 comp:pred _ AlignBegin=66890|AlignEnd=67058|Gloss=COMP|InIdiom=Yes
7 [ [ PUNCT _ _ 11 punct _ AlignBegin=67058|AlignEnd=67058|Gloss=PUNCT
8 me me PRON _ Case=Nom|Number=Sing|Person=1|PronType=Prs 11 dislocated _ AlignBegin=67058|AlignEnd=67170|Gloss=NOM.SG.1
9 < < PUNCT _ _ 8 punct _ AlignBegin=67170|AlignEnd=67170|Gloss=PUNCT
10 I I PRON _ Case=Nom|Number=Sing|Person=1|PronType=Prs 11 subj _ AlignBegin=67170|AlignEnd=67290|Gloss=NOM.SG.1
11 go go AUX _ Aspect=Prosp 4 comp:obj _ AlignBegin=67290|AlignEnd=67420|Gloss=PROSP
12 beg beg VERB _ _ 11 comp:aux _ AlignBegin=67420|AlignEnd=67700|Gloss=beg
13 una una PRON _ Case=Nom|Number=Plur|Person=2|PronType=Prs 12 comp:obj _ AlignBegin=67700|AlignEnd=67869|Gloss=NOM.PL.2
14 ] ] PUNCT _ _ 11 punct _ AlignBegin=67869|AlignEnd=67869|Gloss=PUNCT
15 < < PUNCT _ _ 3 punct _ AlignBegin=67839|AlignEnd=67869|Gloss=PUNCT
16 # # PUNCT _ _ 3 punct _ AlignBegin=67869|AlignEnd=68347|Gloss=PUNCT
17 no no AUX _ Polarity=Neg 0 root _ AlignBegin=68347|AlignEnd=68595|Gloss=NEG
18 be be VERB _ PartType=Cop 17 comp:aux _ AlignBegin=68595|AlignEnd=68740|Gloss=be1
19 every every DET _ _ 22 det _ AlignBegin=68740|AlignEnd=69138|Gloss=every
20 body body NOUN _ _ 21 compound _ AlignBegin=69138|AlignEnd=69498|Gloss=body
21 matter matter NOUN _ _ 22 compound _ AlignBegin=69498|AlignEnd=69995|Gloss=matter
22 story story NOUN _ _ 18 comp:pred _ AlignBegin=69995|AlignEnd=70655|Gloss=story
23 >+ >+ PUNCT _ _ 25 punct _ AlignBegin=70655|AlignEnd=70655|Gloss=PUNCT
24 you you PRON _ Case=Nom|Person=2|PronType=Prs 25 subj _ AlignBegin=70655|AlignEnd=70785|Gloss=NOM.2
25 go go AUX _ Aspect=Prosp 18 comp:cleft _ AlignBegin=70785|AlignEnd=70928|Gloss=PROSP
26 dey dey AUX _ Aspect=Imp 25 comp:aux _ AlignBegin=70928|AlignEnd=71135|Gloss=IPFV
27 read read VERB _ _ 26 comp:aux _ AlignBegin=71135|AlignEnd=71408|Gloss=read
28 // // PUNCT _ _ 17 punct _ AlignBegin=71408|AlignEnd=71408|Gloss=PUNCT
# sent_id = WAZA_08_Body-Matter_MG__17
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/WAZA_08_Body-Matter_MG.mp3
# speaker_age = 31-45
# speaker_birthplace = Anambra
# speaker_education = Tertiary
# speaker_id = Sp280
# speaker_naija_competency = Excellent
# speaker_primary_other_language = Igbo
# speaker_residence = FCT
# speaker_sex = F
# text = # because right now < some people go come don dey claim doctor //
# text_en = Because nowadays, some people will be... have been claiming to be doctors.
# text_ortho = Because right now, some people go come don dey claim doctor.
1 # # PUNCT _ _ 8 punct _ AlignBegin=71408|AlignEnd=71961|Gloss=PUNCT
2 because because SCONJ _ _ 8 discourse _ AlignBegin=71961|AlignEnd=72225|Gloss=because
3 right right ADV _ _ 4 mod _ AlignBegin=72225|AlignEnd=72420|Gloss=right
4 now now ADV _ _ 8 mod:periph _ AlignBegin=72420|AlignEnd=72635|Gloss=now
5 < < PUNCT _ _ 4 punct _ AlignBegin=72635|AlignEnd=72635|Gloss=PUNCT
6 some some DET _ _ 7 det _ AlignBegin=72635|AlignEnd=72820|Gloss=some
7 people people NOUN _ Number=Plur 8 subj _ AlignBegin=72820|AlignEnd=73040|Gloss=people.PL
8 go go AUX _ Aspect=Prosp 0 root _ AlignBegin=73040|AlignEnd=73170|Gloss=PROSP
9 come con AUX _ Aspect=Cons 8 comp:aux _ AlignBegin=73170|AlignEnd=73390|Gloss=CONS
10 don don AUX _ Aspect=Perf 9 comp:aux _ AlignBegin=73390|AlignEnd=73610|Gloss=PRF
11 dey dey AUX _ Aspect=Imp 10 comp:aux _ AlignBegin=73610|AlignEnd=73761|Gloss=IPFV
12 claim claim VERB _ _ 11 comp:aux _ AlignBegin=73761|AlignEnd=74060|Gloss=claim
13 doctor doctor NOUN _ _ 12 comp:obj _ AlignBegin=74060|AlignEnd=74412|Gloss=doctor
14 // // PUNCT _ _ 8 punct _ AlignBegin=74412|AlignEnd=74412|Gloss=PUNCT
# sent_id = WAZA_08_Body-Matter_MG__18
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/WAZA_08_Body-Matter_MG.mp3
# speaker_age = 31-45
# speaker_birthplace = Anambra
# speaker_education = Tertiary
# speaker_id = Sp280
# speaker_naija_competency = Excellent
# speaker_primary_other_language = Igbo
# speaker_residence = FCT
# speaker_sex = F
# text = # di main doctor never even talk about di thing |c but im don already do one kind writeup //
# text_en = The certified doctor doesn't even talk about the thing, but he already has something like a write-up.
# text_ortho = Di main doctor never even talk about di thing, but im don already do one kind writeup.
1 # # PUNCT _ _ 5 punct _ AlignBegin=74412|AlignEnd=75498|Gloss=PUNCT
2 di di DET _ Definite=Def|PronType=Art 4 det _ AlignBegin=75498|AlignEnd=75656|Gloss=DEF.ART
3 main main ADJ _ _ 4 mod _ AlignBegin=75656|AlignEnd=75936|Gloss=main
4 doctor doctor NOUN _ _ 5 subj _ AlignBegin=75936|AlignEnd=76266|Gloss=doctor
5 never never AUX _ Aspect=Perf|Polarity=Neg 0 root _ AlignBegin=76266|AlignEnd=76519|Gloss=PRF.NEG
6 even even ADV _ _ 7 mod _ AlignBegin=76519|AlignEnd=76793|Gloss=even
7 talk talk VERB _ _ 5 comp:aux _ AlignBegin=76793|AlignEnd=77036|Gloss=talk
8 about about ADP _ _ 7 comp:obl _ AlignBegin=77036|AlignEnd=77296|Gloss=about
9 di di DET _ Definite=Def|PronType=Art 10 det _ AlignBegin=77296|AlignEnd=77420|Gloss=DEF.ART
10 thing ting NOUN _ _ 8 comp:obj _ AlignBegin=77420|AlignEnd=77599|Gloss=thing
11 |c |c PUNCT _ _ 14 punct _ AlignBegin=77599|AlignEnd=77599|Gloss=PUNCT
12 but but CCONJ _ _ 14 cc _ AlignBegin=77599|AlignEnd=77785|Gloss=but
13 im im PRON _ Case=Nom|Number=Sing|Person=3|PronType=Prs 14 subj _ AlignBegin=77785|AlignEnd=77966|Gloss=NOM.SG.3
14 don don AUX _ Aspect=Perf 5 conj:coord _ AlignBegin=77966|AlignEnd=78076|Gloss=PRF
15 already already ADV _ _ 16 mod _ AlignBegin=78076|AlignEnd=78446|Gloss=already
16 do do VERB _ _ 14 comp:aux _ AlignBegin=78446|AlignEnd=78611|Gloss=do
17 one one DET _ Definite=Spec|PronType=Art 19 det _ AlignBegin=78611|AlignEnd=78837|Gloss=SPEC.ART
18 kind kind ADJ _ _ 19 mod _ AlignBegin=78837|AlignEnd=79026|Gloss=kind
19 writeup writeup NOUN _ _ 16 comp:obj _ AlignBegin=79026|AlignEnd=79476|Gloss=writeup
20 // // PUNCT _ _ 5 punct _ AlignBegin=79446|AlignEnd=79476|Gloss=PUNCT
# sent_id = WAZA_08_Body-Matter_MG__19
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/WAZA_08_Body-Matter_MG.mp3
# speaker_age = 31-45
# speaker_birthplace = Anambra
# speaker_education = Tertiary
# speaker_id = Sp280
# speaker_naija_competency = Excellent
# speaker_primary_other_language = Igbo
# speaker_residence = FCT
# speaker_sex = F
# text = # ehn if you mix { dis |c and dis } < e go good for your body //
# text_en = Something like, if you mix this and this, it will do your body good.
# text_ortho = Ehn if you mix dis, and dis, e go good for your body.
1 # # PUNCT _ _ 14 punct _ AlignBegin=79476|AlignEnd=80058|Gloss=PUNCT
2 ehn ehn INTJ _ _ 14 discourse _ AlignBegin=80058|AlignEnd=80310|Gloss=ehn
3 if if SCONJ _ _ 14 mod:periph$cond _ AlignBegin=80310|AlignEnd=80506|Gloss=if
4 you you PRON _ Case=Nom|Person=2|PronType=Prs 5 subj _ AlignBegin=80506|AlignEnd=80667|Gloss=NOM.2
5 mix mix VERB _ _ 3 comp:obj _ AlignBegin=80667|AlignEnd=80970|Gloss=mix
6 { { PUNCT _ _ 7 punct _ AlignBegin=80970|AlignEnd=80970|Gloss=PUNCT
7 dis dis PRON _ Number=Sing|PronType=Dem 5 comp:obj _ AlignBegin=80970|AlignEnd=81190|Gloss=SG.DEM
8 |c |c PUNCT _ _ 10 punct _ AlignBegin=81190|AlignEnd=81190|Gloss=PUNCT
9 and and CCONJ _ _ 10 cc _ AlignBegin=81190|AlignEnd=81421|Gloss=and
10 dis dis PRON _ Number=Sing|PronType=Dem 7 conj:coord _ AlignBegin=81421|AlignEnd=81712|Gloss=SG.DEM
11 } } PUNCT _ _ 7 punct _ AlignBegin=81712|AlignEnd=81712|Gloss=PUNCT
12 < < PUNCT _ _ 3 punct _ AlignBegin=81682|AlignEnd=81712|Gloss=PUNCT
13 e im PRON _ Case=Nom|Number=Sing|Person=3|PronType=Prs 14 subj _ AlignBegin=81712|AlignEnd=81790|Gloss=NOM.SG.3
14 go go AUX _ Aspect=Prosp 0 root _ AlignBegin=81790|AlignEnd=81930|Gloss=PROSP
15 good good ADJ _ ExtPos=VERB 14 comp:aux _ AlignBegin=81930|AlignEnd=82090|Gloss=good
16 for for ADP _ _ 15 comp:obl _ AlignBegin=82090|AlignEnd=82250|Gloss=for
17 your your PRON _ Number=Plur|Person=2|Poss=Yes 18 mod:poss _ AlignBegin=82250|AlignEnd=82370|Gloss=PL.2.POSS
18 body body NOUN _ _ 16 comp:obj _ AlignBegin=82370|AlignEnd=82705|Gloss=body
19 // // PUNCT _ _ 14 punct _ AlignBegin=82705|AlignEnd=82705|Gloss=PUNCT
# sent_id = WAZA_08_Body-Matter_MG__20
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/WAZA_08_Body-Matter_MG.mp3
# speaker_age = 31-45
# speaker_birthplace = Anambra
# speaker_education = Tertiary
# speaker_id = Sp280
# speaker_naija_competency = Excellent
# speaker_primary_other_language = Igbo
# speaker_residence = FCT
# speaker_sex = F
# text = # { if you take dis |c or you don take dis |c # or you do like dis |c or you do like dat } < { please |c please |c and please } < # meet di professionals # so dat de go tell you wetin dey //
# text_en = If you take this or you have taken that, or you do this or that... please, please, please see the professionals so that they can tell you what's up.
# text_ortho = If you take dis, or you don take dis, or you do like dis, or you do like dat, please, please, and please, meet di professionals so dat de go tell you wetin dey.
1 # # PUNCT _ _ 38 punct _ AlignBegin=82705|AlignEnd=83303|Gloss=PUNCT
2 { { PUNCT _ _ 3 punct _ AlignBegin=83273|AlignEnd=83303|Gloss=PUNCT
3 if if SCONJ _ _ 38 mod:periph$cond _ AlignBegin=83303|AlignEnd=83435|Gloss=if
4 you you PRON _ Case=Nom|Person=2|PronType=Prs 5 subj _ AlignBegin=83435|AlignEnd=83610|Gloss=NOM.2
5 take take VERB _ _ 3 comp:obj _ AlignBegin=83610|AlignEnd=83861|Gloss=take
6 dis dis PRON _ Number=Sing|PronType=Dem 5 comp:obj _ AlignBegin=83861|AlignEnd=84130|Gloss=SG.DEM
7 |c |c PUNCT _ _ 10 punct _ AlignBegin=84130|AlignEnd=84130|Gloss=PUNCT
8 or or CCONJ _ _ 10 cc _ AlignBegin=84130|AlignEnd=84240|Gloss=or
9 you you PRON _ Case=Nom|Person=2|PronType=Prs 10 subj _ AlignBegin=84240|AlignEnd=84340|Gloss=NOM.2
10 don don AUX _ Aspect=Perf 5 conj:coord _ AlignBegin=84340|AlignEnd=84540|Gloss=PRF
11 take take VERB _ _ 10 comp:aux _ AlignBegin=84540|AlignEnd=84746|Gloss=take
12 dis dis PRON _ Number=Sing|PronType=Dem 11 comp:obj _ AlignBegin=84746|AlignEnd=85050|Gloss=SG.DEM
13 |c |c PUNCT _ _ 17 punct _ AlignBegin=85050|AlignEnd=85050|Gloss=PUNCT
14 # # PUNCT _ _ 17 punct _ AlignBegin=85050|AlignEnd=85292|Gloss=PUNCT
15 or or CCONJ _ _ 17 cc _ AlignBegin=85292|AlignEnd=85420|Gloss=or
16 you you PRON _ Case=Nom|Person=2|PronType=Prs 17 subj _ AlignBegin=85420|AlignEnd=85523|Gloss=NOM.2
17 do do VERB _ _ 10 conj:coord _ AlignBegin=85523|AlignEnd=85665|Gloss=do
18 like like ADP _ _ 17 mod _ AlignBegin=85665|AlignEnd=85848|Gloss=like
19 dis dis PRON _ Number=Sing|PronType=Dem 18 comp:obj _ AlignBegin=85848|AlignEnd=86050|Gloss=SG.DEM
20 |c |c PUNCT _ _ 23 punct _ AlignBegin=86050|AlignEnd=86050|Gloss=PUNCT
21 or or CCONJ _ _ 23 cc _ AlignBegin=86050|AlignEnd=86123|Gloss=or
22 you you PRON _ Case=Nom|Person=2|PronType=Prs 23 subj _ AlignBegin=86123|AlignEnd=86207|Gloss=NOM.2
23 do do VERB _ _ 17 conj:coord _ AlignBegin=86207|AlignEnd=86326|Gloss=do
24 like like ADP _ _ 23 mod:appos _ AlignBegin=86326|AlignEnd=86479|Gloss=like
25 dat dat PRON _ Number=Sing 24 comp:obj _ AlignBegin=86479|AlignEnd=86691|Gloss=SG.DEM
26 } } PUNCT _ _ 3 punct _ AlignBegin=86691|AlignEnd=86691|Gloss=PUNCT
27 < < PUNCT _ _ 3 punct _ AlignBegin=86661|AlignEnd=86691|Gloss=PUNCT
28 { { PUNCT _ _ 29 punct _ AlignBegin=86661|AlignEnd=86691|Gloss=PUNCT
29 please please INTJ _ _ 38 discourse _ AlignBegin=86691|AlignEnd=87046|Gloss=please
30 |c |c PUNCT _ _ 31 punct _ AlignBegin=87046|AlignEnd=87046|Gloss=PUNCT
31 please please INTJ _ _ 29 conj:coord _ AlignBegin=87046|AlignEnd=87260|Gloss=please
32 |c |c PUNCT _ _ 34 punct _ AlignBegin=87260|AlignEnd=87260|Gloss=PUNCT
33 and and CCONJ _ _ 34 cc _ AlignBegin=87260|AlignEnd=87455|Gloss=and
34 please please INTJ _ _ 31 conj:coord _ AlignBegin=87455|AlignEnd=87815|Gloss=please
35 } } PUNCT _ _ 29 punct _ AlignBegin=87815|AlignEnd=87815|Gloss=PUNCT
36 < < PUNCT _ _ 29 punct _ AlignBegin=87785|AlignEnd=87815|Gloss=PUNCT
37 # # PUNCT _ _ 29 punct _ AlignBegin=87815|AlignEnd=88343|Gloss=PUNCT
38 meet meet VERB _ _ 0 root _ AlignBegin=88343|AlignEnd=88765|Gloss=meet
39 di di DET _ Definite=Def|PronType=Art 40 det _ AlignBegin=88765|AlignEnd=88912|Gloss=DEF.ART
40 professionals professional NOUN _ Number=Plur 38 comp:obj _ AlignBegin=88912|AlignEnd=89755|Gloss=professional.PL
41 # # PUNCT _ _ 42 punct _ AlignBegin=89755|AlignEnd=89936|Gloss=PUNCT
42 so so SCONJ _ ExtPos=SCONJ 38 mod$purp _ AlignBegin=89936|AlignEnd=90065|Gloss=so|Idiom=Yes
43 dat dat SCONJ _ Number=Sing 42 comp:obj _ AlignBegin=90065|AlignEnd=90175|Gloss=SG.DEM|InIdiom=Yes
44 de dem PRON _ Case=Nom|Number=Plur|Person=3|PronType=Prs 45 subj _ AlignBegin=90175|AlignEnd=90296|Gloss=NOM.PL.3
45 go go AUX _ Aspect=Prosp 42 comp:obj _ AlignBegin=90296|AlignEnd=90443|Gloss=PROSP
46 tell tell VERB _ _ 45 comp:aux _ AlignBegin=90443|AlignEnd=90605|Gloss=tell
47 you you PRON _ Case=Nom|Person=2|PronType=Prs 46 comp:obl _ AlignBegin=90605|AlignEnd=90713|Gloss=NOM.2
48 wetin wetin PRON _ PronType=Int 46 comp:obj _ AlignBegin=90713|AlignEnd=91045|Gloss=what.Q
49 dey dey VERB _ VerbType=Cop 48 mod@relcl _ AlignBegin=91045|AlignEnd=91265|Gloss=be2
50 // // PUNCT _ _ 38 punct _ AlignBegin=91265|AlignEnd=91265|Gloss=PUNCT
# sent_id = WAZA_08_Body-Matter_MG__21
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/WAZA_08_Body-Matter_MG.mp3
# speaker_age = 31-45
# speaker_birthplace = Anambra
# speaker_education = Tertiary
# speaker_id = Sp280
# speaker_naija_competency = Excellent
# speaker_primary_other_language = Igbo
# speaker_residence = FCT
# speaker_sex = F
# text = # yes //
# text_en = Yes!
# text_ortho = Yes.
1 # # PUNCT _ _ 2 punct _ AlignBegin=91720|AlignEnd=92160|Gloss=PUNCT
2 yes yes INTJ _ _ 0 root _ AlignBegin=91720|AlignEnd=92160|Gloss=yes
3 // // PUNCT _ _ 2 punct _ AlignBegin=92160|AlignEnd=92160|Gloss=PUNCT
# sent_id = WAZA_08_Body-Matter_MG__22
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/WAZA_08_Body-Matter_MG.mp3
# speaker_age = 31-45
# speaker_birthplace = Anambra
# speaker_education = Tertiary
# speaker_id = Sp280
# speaker_naija_competency = Excellent
# speaker_primary_other_language = Igbo
# speaker_residence = FCT
# speaker_sex = F
# text = # okay quickly < ehm make una still remember sey [ we still get limited time concerning di topic wey we carry come ] //
# text_en = Okay, quickly, you should remember that we have limited time on the topic we want to talk about.
# text_ortho = Okay quickly, ehm make una still remember sey we still get limited time concerning di topic wey we carry come.
1 # # PUNCT _ _ 6 punct _ AlignBegin=92160|AlignEnd=94052|Gloss=PUNCT
2 okay OK INTJ _ _ 6 discourse _ AlignBegin=94052|AlignEnd=94346|Gloss=OK
3 quickly quickly ADV _ _ 6 mod:periph _ AlignBegin=94346|AlignEnd=94798|Gloss=quickly
4 < < PUNCT _ _ 3 punct _ AlignBegin=94798|AlignEnd=94798|Gloss=PUNCT
5 ehm ehm INTJ _ _ 6 discourse _ AlignBegin=94798|AlignEnd=95230|Gloss=ehm
6 make make AUX _ Mood=Opt 0 root _ AlignBegin=95230|AlignEnd=95450|Gloss=SBJV
7 una una PRON _ Case=Nom|Number=Plur|Person=2|PronType=Prs 9 subj _ AlignBegin=95450|AlignEnd=95599|Gloss=NOM.PL.2
8 still still ADV _ _ 9 mod _ AlignBegin=95599|AlignEnd=95724|Gloss=still
9 remember remember VERB _ _ 6 comp:aux _ AlignBegin=95724|AlignEnd=96070|Gloss=remember
10 sey sey SCONJ _ _ 9 comp:obj _ AlignBegin=96070|AlignEnd=96230|Gloss=COMP
11 [ [ PUNCT _ _ 14 punct _ AlignBegin=96230|AlignEnd=96230|Gloss=PUNCT
12 we we PRON _ Case=Nom|Number=Plur|Person=1|PronType=Prs 14 subj _ AlignBegin=96230|AlignEnd=96340|Gloss=NOM.PL.1
13 still still ADV _ _ 14 mod _ AlignBegin=96340|AlignEnd=96530|Gloss=still
14 get get VERB _ _ 10 comp:obj _ AlignBegin=96530|AlignEnd=96753|Gloss=get
15 limited limit VERB _ Tense=Past|VerbForm=Part 16 mod _ AlignBegin=96753|AlignEnd=97220|Gloss=limit.PST.PTCP
16 time time NOUN _ _ 14 comp:obj _ AlignBegin=97220|AlignEnd=97563|Gloss=time
17 concerning concern VERB _ Tense=Pres|VerbForm=Part 14 mod _ AlignBegin=97563|AlignEnd=98000|Gloss=concern.PRS.PTCP
18 di di DET _ Definite=Def|PronType=Art 19 det _ AlignBegin=98000|AlignEnd=98107|Gloss=DEF.ART
19 topic topic NOUN _ _ 17 comp:obj _ AlignBegin=98107|AlignEnd=98475|Gloss=topic
20 wey wey SCONJ _ _ 19 mod@relcl _ AlignBegin=98475|AlignEnd=98530|Gloss=REL
21 we we PRON _ Case=Nom|Number=Plur|Person=1|PronType=Prs 22 subj _ AlignBegin=98530|AlignEnd=98617|Gloss=NOM.PL.1
22 carry carry VERB _ _ 20 comp:obj _ AlignBegin=98617|AlignEnd=98876|Gloss=carry
23 come come VERB _ _ 22 compound:svc _ AlignBegin=98876|AlignEnd=99060|Gloss=come
24 ] ] PUNCT _ _ 14 punct _ AlignBegin=99060|AlignEnd=99060|Gloss=PUNCT
25 // // PUNCT _ _ 6 punct _ AlignBegin=99030|AlignEnd=99060|Gloss=PUNCT
# sent_id = WAZA_08_Body-Matter_MG__23
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/WAZA_08_Body-Matter_MG.mp3
# speaker_age = 31-45
# speaker_birthplace = Anambra
# speaker_education = Tertiary
# speaker_id = Sp280
# speaker_naija_competency = Excellent
# speaker_primary_other_language = Igbo
# speaker_residence = FCT
# speaker_sex = F
# text = # now di body matter topic wey we carry come < we go just manage our time //
# text_en = We'll manage our time on the 'body matters' topic that is coming up.
# text_ortho = Now di body matter topic wey we carry come, we go just manage our time.
1 # # PUNCT _ _ 13 punct _ AlignBegin=99060|AlignEnd=99405|Gloss=PUNCT
2 now now ADV _ _ 13 discourse _ AlignBegin=99405|AlignEnd=99600|Gloss=now
3 di di DET _ Definite=Def|PronType=Art 6 det _ AlignBegin=99600|AlignEnd=99751|Gloss=DEF.ART
4 body body NOUN _ _ 5 compound _ AlignBegin=99751|AlignEnd=99982|Gloss=body
5 matter matter NOUN _ _ 6 compound _ AlignBegin=99982|AlignEnd=100298|Gloss=matter
6 topic topic NOUN _ _ 13 dislocated _ AlignBegin=100298|AlignEnd=100600|Gloss=topic
7 wey wey SCONJ _ _ 6 mod@relcl _ AlignBegin=100600|AlignEnd=100660|Gloss=REL
8 we we PRON _ Case=Nom|Number=Plur|Person=1|PronType=Prs 9 subj _ AlignBegin=100660|AlignEnd=100793|Gloss=NOM.PL.1
9 carry carry VERB _ _ 7 comp:obj _ AlignBegin=100793|AlignEnd=101050|Gloss=carry
10 come come VERB _ _ 9 compound:svc _ AlignBegin=101050|AlignEnd=101310|Gloss=come
11 < < PUNCT _ _ 6 punct _ AlignBegin=101310|AlignEnd=101310|Gloss=PUNCT
12 we we PRON _ Case=Nom|Number=Plur|Person=1|PronType=Prs 13 subj _ AlignBegin=101310|AlignEnd=101400|Gloss=NOM.PL.1
13 go go AUX _ Aspect=Prosp 0 root _ AlignBegin=101400|AlignEnd=101560|Gloss=PROSP
14 just just ADV _ _ 15 mod _ AlignBegin=101560|AlignEnd=101800|Gloss=just
15 manage manage VERB _ _ 13 comp:aux _ AlignBegin=101800|AlignEnd=102080|Gloss=manage
16 our our PRON _ Number=Plur|Person=1|Poss=Yes 17 mod:poss _ AlignBegin=102080|AlignEnd=102312|Gloss=PL.1.POSS
17 time time NOUN _ _ 15 comp:obj _ AlignBegin=102312|AlignEnd=102640|Gloss=time
18 // // PUNCT _ _ 13 punct _ AlignBegin=102640|AlignEnd=102640|Gloss=PUNCT
# sent_id = WAZA_08_Body-Matter_MG__24
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/WAZA_08_Body-Matter_MG.mp3
# speaker_age = 31-45
# speaker_birthplace = Anambra
# speaker_education = Tertiary
# speaker_id = Sp280
# speaker_naija_competency = Excellent
# speaker_primary_other_language = Igbo
# speaker_residence = FCT
# speaker_sex = F
# text = # e get so many things wey be sey [ you don hear # from your friend |c # or { you || you } read am for social media ] //
# text_en = There are so many things that you... you have heard from your friends, or that you... you read... read on the social media.
# text_ortho = E get so many things wey be sey you don hear from your friend, or you, you read am for social media.
1 # # PUNCT _ _ 3 punct _ AlignBegin=102640|AlignEnd=103221|Gloss=PUNCT
2 e im PRON _ Case=Nom|Number=Sing|Person=3|PronType=Prs 3 subj@expl _ AlignBegin=103221|AlignEnd=103346|Gloss=NOM.SG.3
3 get get VERB _ _ 0 root _ AlignBegin=103346|AlignEnd=103546|Gloss=get
4 so so ADV _ _ 5 mod _ AlignBegin=103546|AlignEnd=103886|Gloss=so
5 many many ADJ _ _ 6 mod _ AlignBegin=103886|AlignEnd=104223|Gloss=many
6 things ting NOUN _ Number=Plur 3 comp:obj@agent _ AlignBegin=104223|AlignEnd=104446|Gloss=thing.PL
7 wey wey SCONJ _ ExtPos=SCONJ 6 mod@relcl _ AlignBegin=104446|AlignEnd=104576|Gloss=REL|Idiom=Yes
8 be be VERB _ PartType=Cop 7 comp:obj _ AlignBegin=104576|AlignEnd=104669|Gloss=be1|InIdiom=Yes
9 sey sey SCONJ _ _ 8 comp:pred _ AlignBegin=104669|AlignEnd=104885|Gloss=COMP|InIdiom=Yes
10 [ [ PUNCT _ _ 12 punct _ AlignBegin=104885|AlignEnd=105102|Gloss=PUNCT
11 you you PRON _ Case=Nom|Person=2|PronType=Prs 12 subj _ AlignBegin=104885|AlignEnd=105102|Gloss=NOM.2
12 don don AUX _ Aspect=Perf 7 comp:obj _ AlignBegin=105102|AlignEnd=105346|Gloss=PRF
13 hear hear VERB _ _ 12 comp:aux _ AlignBegin=105346|AlignEnd=105650|Gloss=hear
14 # # PUNCT _ _ 15 punct _ AlignBegin=105650|AlignEnd=106158|Gloss=PUNCT
15 from from ADP _ _ 13 comp:obl _ AlignBegin=106158|AlignEnd=106448|Gloss=from
16 your your PRON _ Number=Plur|Person=2|Poss=Yes 17 mod:poss _ AlignBegin=106448|AlignEnd=106638|Gloss=PL.2.POSS
17 friend friend NOUN _ _ 15 comp:obj _ AlignBegin=106638|AlignEnd=107200|Gloss=friend
18 |c |c PUNCT _ _ 26 punct _ AlignBegin=107200|AlignEnd=107200|Gloss=PUNCT
19 # # PUNCT _ _ 26 punct _ AlignBegin=107200|AlignEnd=107698|Gloss=PUNCT
20 or or CCONJ _ _ 26 cc _ AlignBegin=107698|AlignEnd=107821|Gloss=or
21 { { PUNCT _ _ 22 punct _ AlignBegin=107821|AlignEnd=107821|Gloss=PUNCT
22 you you PRON _ Case=Nom|Person=2|PronType=Prs 26 subj _ AlignBegin=107821|AlignEnd=108107|Gloss=NOM.2
23 || || PUNCT _ _ 24 punct _ AlignBegin=108107|AlignEnd=108107|Gloss=PUNCT
24 you you PRON _ Case=Nom|Person=2|PronType=Prs 22 conj:dicto _ AlignBegin=108107|AlignEnd=108329|Gloss=NOM.2
25 } } PUNCT _ _ 22 punct _ AlignBegin=108329|AlignEnd=108445|Gloss=PUNCT
26 read read VERB _ _ 12 conj:coord _ AlignBegin=108329|AlignEnd=108475|Gloss=read
27 am am PRON _ Case=Acc|Number=Sing|Person=3|PronType=Prs 26 comp:obj _ AlignBegin=108475|AlignEnd=108585|Gloss=ACC.SG.3
28 for for ADP _ _ 26 comp:obl _ AlignBegin=108585|AlignEnd=108765|Gloss=for
29 social social ADJ _ _ 30 mod _ AlignBegin=108765|AlignEnd=109245|Gloss=social
30 media media NOUN _ _ 28 comp:obj _ AlignBegin=109245|AlignEnd=109605|Gloss=media
31 ] ] PUNCT _ _ 12 punct _ AlignBegin=109605|AlignEnd=109605|Gloss=PUNCT
32 // // PUNCT _ _ 3 punct _ AlignBegin=109575|AlignEnd=109605|Gloss=PUNCT
# sent_id = WAZA_08_Body-Matter_MG__25
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/WAZA_08_Body-Matter_MG.mp3
# speaker_age = 31-45
# speaker_birthplace = Anambra
# speaker_education = Tertiary
# speaker_id = Sp280
# speaker_naija_competency = Excellent
# speaker_primary_other_language = Igbo
# speaker_residence = FCT
# speaker_sex = F
# text = # de tell you sey [ if you take dis one < e dey good for your body ] //
# text_en = They tell you that if you take this, it will do your body good.
# text_ortho = De tell you sey if you take dis one, e dey good for your body.
1 # # PUNCT _ _ 3 punct _ AlignBegin=109605|AlignEnd=110217|Gloss=PUNCT
2 de dem PRON _ Case=Nom|Number=Plur|Person=3|PronType=Prs 3 subj _ AlignBegin=110217|AlignEnd=110381|Gloss=NOM.PL.3
3 tell tell VERB _ _ 0 root _ AlignBegin=110381|AlignEnd=110550|Gloss=tell
4 you you PRON _ Case=Nom|Person=2|PronType=Prs 3 comp:obl _ AlignBegin=110550|AlignEnd=110633|Gloss=NOM.2
5 sey sey SCONJ _ _ 3 comp:obj$utter _ AlignBegin=110633|AlignEnd=110880|Gloss=COMP
6 [ [ PUNCT _ _ 14 punct _ AlignBegin=110880|AlignEnd=110880|Gloss=PUNCT
7 if if SCONJ _ _ 14 mod:periph$cond _ AlignBegin=110880|AlignEnd=111090|Gloss=if
8 you you PRON _ Case=Nom|Person=2|PronType=Prs 9 subj _ AlignBegin=111090|AlignEnd=111226|Gloss=NOM.2
9 take take VERB _ _ 7 comp:obj _ AlignBegin=111226|AlignEnd=111489|Gloss=take
10 dis dis DET _ Number=Sing|PronType=Dem 11 det _ AlignBegin=111489|AlignEnd=111750|Gloss=SG.DEM
11 one one NOUN _ _ 9 comp:obj _ AlignBegin=111750|AlignEnd=112007|Gloss=one
12 < < PUNCT _ _ 7 punct _ AlignBegin=112007|AlignEnd=112007|Gloss=PUNCT
13 e im PRON _ Case=Nom|Number=Sing|Person=3|PronType=Prs 14 subj _ AlignBegin=112007|AlignEnd=112117|Gloss=NOM.SG.3
14 dey dey VERB _ VerbType=Cop 5 comp:obj _ AlignBegin=112117|AlignEnd=112250|Gloss=be2
15 good good ADJ _ _ 14 comp:pred _ AlignBegin=112250|AlignEnd=112440|Gloss=good
16 for for ADP _ _ 15 comp:obl _ AlignBegin=112440|AlignEnd=112620|Gloss=for
17 your your PRON _ Number=Plur|Person=2|Poss=Yes 18 mod:poss _ AlignBegin=112620|AlignEnd=112750|Gloss=PL.2.POSS
18 body body NOUN _ _ 16 comp:obj _ AlignBegin=112750|AlignEnd=113165|Gloss=body
19 ] ] PUNCT _ _ 14 punct _ AlignBegin=113165|AlignEnd=113165|Gloss=PUNCT
20 // // PUNCT _ _ 3 punct _ AlignBegin=113135|AlignEnd=113165|Gloss=PUNCT
# sent_id = WAZA_08_Body-Matter_MG__26
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/WAZA_08_Body-Matter_MG.mp3
# speaker_age = 31-45
# speaker_birthplace = Anambra
# speaker_education = Tertiary
# speaker_id = Sp280
# speaker_naija_competency = Excellent
# speaker_primary_other_language = Igbo
# speaker_residence = FCT
# speaker_sex = F
# text = # tell me most of di thing wey you don hear //
# text_en = Tell me most of the things you have heard.
# text_ortho = Tell me most of di thing wey you don hear.
1 # # PUNCT _ _ 2 punct _ AlignBegin=113165|AlignEnd=113798|Gloss=PUNCT
2 tell tell VERB _ _ 0 root _ AlignBegin=113798|AlignEnd=113975|Gloss=tell
3 me me PRON _ Case=Acc|Number=Sing|Person=1|PronType=Prs 2 comp:obl _ AlignBegin=113975|AlignEnd=114081|Gloss=ACC.SG.1
4 most most ADJ _ _ 2 comp:obj _ AlignBegin=114081|AlignEnd=114315|Gloss=most
5 of of ADP _ _ 4 mod _ AlignBegin=114315|AlignEnd=114435|Gloss=of
6 di di DET _ Definite=Def|PronType=Art 7 det _ AlignBegin=114435|AlignEnd=114530|Gloss=DEF.ART
7 thing ting NOUN _ _ 5 comp:obj _ AlignBegin=114530|AlignEnd=114762|Gloss=thing
8 wey wey SCONJ _ _ 7 mod@relcl _ AlignBegin=114762|AlignEnd=114904|Gloss=REL
9 you you PRON _ Case=Nom|Person=2|PronType=Prs 10 subj _ AlignBegin=114904|AlignEnd=115050|Gloss=NOM.2
10 don don AUX _ Aspect=Perf 8 comp:obj _ AlignBegin=115050|AlignEnd=115255|Gloss=PRF
11 hear hear VERB _ _ 10 comp:aux _ AlignBegin=115255|AlignEnd=115585|Gloss=hear
12 // // PUNCT _ _ 2 punct _ AlignBegin=115585|AlignEnd=115585|Gloss=PUNCT
# sent_id = WAZA_08_Body-Matter_MG__27
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/WAZA_08_Body-Matter_MG.mp3
# speaker_age = 31-45
# speaker_birthplace = Anambra
# speaker_education = Tertiary
# speaker_id = Sp280
# speaker_naija_competency = Excellent
# speaker_primary_other_language = Igbo
# speaker_residence = FCT
# speaker_sex = F
# text = at di end of di day < # all dese thing na { fake story |r # fake story |r fake story } //
# text_en = At the end of the day, all these stories are fake, fake, fake.
# text_ortho = At di end of di day, all dese thing na fake story, fake story, fake story.
1 at at ADP _ _ 12 mod:periph _ AlignBegin=115585|AlignEnd=115763|Gloss=at
2 di di DET _ Definite=Def|PronType=Art 3 det _ AlignBegin=115763|AlignEnd=115979|Gloss=DEF.ART
3 end end NOUN _ _ 1 comp:obj _ AlignBegin=115979|AlignEnd=116235|Gloss=end
4 of of ADP _ _ 3 mod _ AlignBegin=116235|AlignEnd=116433|Gloss=of
5 di di DET _ Definite=Def|PronType=Art 6 det _ AlignBegin=116433|AlignEnd=116596|Gloss=DEF.ART
6 day day NOUN _ _ 4 comp:obj _ AlignBegin=116596|AlignEnd=116832|Gloss=day
7 < < PUNCT _ _ 1 punct _ AlignBegin=116832|AlignEnd=116832|Gloss=PUNCT
8 # # PUNCT _ _ 1 punct _ AlignBegin=116832|AlignEnd=117282|Gloss=PUNCT
9 all all DET _ _ 11 det _ AlignBegin=117282|AlignEnd=117440|Gloss=all
10 dese dese DET _ Number=Plur|PronType=Dem 11 det _ AlignBegin=117440|AlignEnd=117610|Gloss=PL.PROX.DEM
11 thing ting NOUN _ _ 12 subj _ AlignBegin=117610|AlignEnd=117784|Gloss=thing
12 na na PART _ PartType=Cop 0 root _ AlignBegin=117784|AlignEnd=117955|Gloss=be1
13 { { PUNCT _ _ 15 punct _ AlignBegin=117955|AlignEnd=117955|Gloss=PUNCT
14 fake fake ADJ _ _ 15 mod _ AlignBegin=117955|AlignEnd=118269|Gloss=fake
15 story story NOUN _ _ 12 comp:pred _ AlignBegin=118269|AlignEnd=118810|Gloss=story
16 |r |r PUNCT _ _ 19 punct _ AlignBegin=118810|AlignEnd=118810|Gloss=PUNCT
17 # # PUNCT _ _ 19 punct _ AlignBegin=118810|AlignEnd=118976|Gloss=PUNCT
18 fake fake ADJ _ _ 19 mod _ AlignBegin=118976|AlignEnd=119240|Gloss=fake
19 story story NOUN _ _ 15 compound:redup _ AlignBegin=119240|AlignEnd=119667|Gloss=story
20 |r |r PUNCT _ _ 22 punct _ AlignBegin=119667|AlignEnd=119667|Gloss=PUNCT
21 fake fake ADJ _ _ 22 mod _ AlignBegin=119667|AlignEnd=119859|Gloss=fake
22 story story NOUN _ _ 19 compound:redup _ AlignBegin=119859|AlignEnd=120223|Gloss=story
23 } } PUNCT _ _ 15 punct _ AlignBegin=120223|AlignEnd=120223|Gloss=PUNCT
24 // // PUNCT _ _ 12 punct _ AlignBegin=120193|AlignEnd=120223|Gloss=PUNCT
# sent_id = WAZA_08_Body-Matter_MG__28
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/WAZA_08_Body-Matter_MG.mp3
# speaker_age = 31-45
# speaker_birthplace = Anambra
# speaker_education = Tertiary
# speaker_id = Sp280
# speaker_naija_competency = Excellent
# speaker_primary_other_language = Igbo
# speaker_residence = FCT
# speaker_sex = F
# text = # now you fit add dis issue of di one wey be sey I tell una //
# text_en = Now you can add this issue I just told you.
# text_ortho = Now you fit add dis issue of di one wey be sey I tell una.
1 # # PUNCT _ _ 4 punct _ AlignBegin=120223|AlignEnd=120909|Gloss=PUNCT
2 now now ADV _ _ 4 discourse _ AlignBegin=120909|AlignEnd=121028|Gloss=now
3 you you PRON _ Case=Nom|Person=2|PronType=Prs 4 subj _ AlignBegin=121028|AlignEnd=121129|Gloss=NOM.2
4 fit fit AUX _ Mood=Pot 0 root _ AlignBegin=121129|AlignEnd=121322|Gloss=ABIL
5 add add VERB _ _ 4 comp:aux _ AlignBegin=121322|AlignEnd=121499|Gloss=add
6 dis dis DET _ Number=Sing|PronType=Dem 7 det _ AlignBegin=121499|AlignEnd=121709|Gloss=SG.DEM
7 issue issue NOUN _ _ 5 comp:obj _ AlignBegin=121709|AlignEnd=121999|Gloss=issue
8 of of ADP _ _ 7 mod _ AlignBegin=121999|AlignEnd=122139|Gloss=of
9 di di DET _ Definite=Def|PronType=Art 10 det _ AlignBegin=122139|AlignEnd=122260|Gloss=DEF.ART
10 one one NOUN _ _ 8 comp:obj _ AlignBegin=122260|AlignEnd=122379|Gloss=one
11 wey wey SCONJ _ ExtPos=SCONJ 10 mod@relcl _ AlignBegin=122379|AlignEnd=122469|Gloss=REL|Idiom=Yes
12 be be VERB _ PartType=Cop 11 comp:obj _ AlignBegin=122469|AlignEnd=122568|Gloss=be1|InIdiom=Yes
13 sey sey SCONJ _ _ 12 comp:pred _ AlignBegin=122568|AlignEnd=122699|Gloss=COMP|InIdiom=Yes
14 I I PRON _ Case=Nom|Number=Sing|Person=1|PronType=Prs 15 subj _ AlignBegin=122699|AlignEnd=122807|Gloss=NOM.SG.1
15 tell tell VERB _ _ 11 comp:obj _ AlignBegin=122807|AlignEnd=122989|Gloss=tell
16 una una PRON _ Case=Acc|Number=Plur|Person=2|PronType=Prs 15 comp:obj _ AlignBegin=122989|AlignEnd=123119|Gloss=ACC.PL.2
17 // // PUNCT _ _ 4 punct _ AlignBegin=123119|AlignEnd=123119|Gloss=PUNCT
# sent_id = WAZA_08_Body-Matter_MG__29
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/WAZA_08_Body-Matter_MG.mp3
# speaker_age = 31-45
# speaker_birthplace = Anambra
# speaker_education = Tertiary
# speaker_id = Sp280
# speaker_naija_competency = Excellent
# speaker_primary_other_language = Igbo
# speaker_residence = FCT
# speaker_sex = F
# text = e get one of our callers wey call us for here //
# text_en = One of our callers called us here.
# text_ortho = E get one of our callers wey call us for here.
1 e im PRON _ Case=Nom|Number=Sing|Person=3|PronType=Prs 2 subj@expl _ AlignBegin=123119|AlignEnd=123189|Gloss=NOM.SG.3
2 get get VERB _ _ 0 root _ AlignBegin=123189|AlignEnd=123329|Gloss=get