-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path12.02.json
4061 lines (4061 loc) · 102 KB
/
12.02.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"Key": "a1",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ xiǎng sònggěi nǐ yī běnshū 。",
"Chinese1": "我想送给你一本书。",
"Translate1": "I want to give you a book.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "dàjiā dū jiào tā shūshu 。",
"Chinese1": "大家都叫他叔叔。",
"Translate1": "Everyone calls him uncle.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ xiǎng gàosu nǐ yīgè hǎoxiāoxí 。",
"Chinese1": "我想告诉你一个好消息。",
"Translate1": "I want to tell you a good news.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "tāmen gěi le nǐ duōshǎo qián ?",
"Chinese1": "他们给了你多少钱?",
"Translate1": "How much did they pay you?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā sòng le nǚpéngyou hěnduō huā 。",
"Chinese1": "他送了女朋友很多花。",
"Translate1": "He sent his girlfriend a lot of flowers.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "bàba yào sònggěi wǒ yīgè hěnguì de shēngrilǐwù 。",
"Chinese1": "爸爸要送给我一个很贵的生日礼物。",
"Translate1": "Dad is going to give me an expensive birthday present.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ kěyǐ jiè wǒ liǎngqiānkuài qián ma ?",
"Chinese1": "你可以借我两千块钱吗?",
"Translate1": "Can you lend me two thousand dollars?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "lǎobǎn gāng fāgěi wǒ shànggèyuè de gōngzī 。",
"Chinese1": "老板刚发给我上个月的工资。",
"Translate1": "My boss just sent me last month's salary.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhège rénpiàn le wǒ hěnduō qián 。",
"Chinese1": "这个人骗了我很多钱。",
"Translate1": "This man scammed me out of a lot of money.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐmen juéde wǒhuà dé zěnmeyàng ?",
"Chinese1": "你们觉得我画得怎么样?",
"Translate1": "What do you guys think of my drawing?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒmen juéde nǐ huà dé hěn hǎo 。",
"Chinese1": "我们觉得你画得很好。",
"Translate1": "We think you draw very well.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā yīngyǔ shuō dé zěnmeyàng ?",
"Chinese1": "他英语说得怎么样?",
"Translate1": "How does he speak English?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā yīngyǔ shuō dé yībān 。",
"Chinese1": "他英语说得一般。",
"Translate1": "He speaks English fluently.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ zuò dé bùcuò 。",
"Chinese1": "你做得不错。",
"Translate1": "You are doing well.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "háizi men xuédé tǐngkuài de 。",
"Chinese1": "孩子们学得挺快的。",
"Translate1": "Children learn very quickly.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ chī dé tàibǎo le 。",
"Chinese1": "我吃得太饱了。",
"Translate1": "I am too full.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐmen tán dé shùnlì ma ?",
"Chinese1": "你们谈得顺利吗?",
"Translate1": "Did your talk go well?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā zhǎngde huán kěyǐ 。",
"Chinese1": "她长得还可以。",
"Translate1": "She looks okay.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ shuō zhōngwén shuō dé hěn hǎo 。",
"Chinese1": "你说中文说得很好。",
"Translate1": "You speak Chinese very well.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ de zhōngwén shuō dé hěn hǎo 。",
"Chinese1": "你的中文说得很好。",
"Translate1": "You speak Chinese very well.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ zuòcài zuò dé hěn hǎo 。",
"Chinese1": "你做菜做得很好。",
"Translate1": "You cook very well.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ de cài zuò dé hěn hǎo 。",
"Chinese1": "你的菜做得很好。",
"Translate1": "You cook very well.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ xiězì xiědé hěnpiāoliàng 。",
"Chinese1": "你写字写得很漂亮。",
"Translate1": "You write beautifully.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ de zì xiě dé hěnpiāoliàng 。",
"Chinese1": "你的字写得很漂亮。",
"Translate1": "You write beautifully.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wèidao hǎojíle 。",
"Chinese1": "味道好极了。",
"Translate1": "Tastes great.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhèlǐ de tiānqì shūfu jíle 。",
"Chinese1": "这里的天气舒服极了。",
"Translate1": "The weather here is very comfortable.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā de wàzi chòusǐ le 。",
"Chinese1": "他的袜子臭死了。",
"Translate1": "His socks stink.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "xiǎogǒu kěài sǐ le 。",
"Chinese1": "小狗可爱死了。",
"Translate1": "The puppy is so cute.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "lǎoshī shuō jīntiān méiyǒu zuòyè , wǒmen dōu gāoxìng huài le 。",
"Chinese1": "老师说今天没有作业,我们都高兴坏了。",
"Translate1": "The teacher said there was no homework today, and we were all overjoyed.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhǎo bùdào háizi , māma jíhuài le 。",
"Chinese1": "找不到孩子,妈妈急坏了。",
"Translate1": "Can't find the child, the mother is in a hurry.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā shuō dé qīngchu",
"Chinese1": "她说得清楚",
"Translate1": "she made it very clear",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "tāmen zuòdéhǎo",
"Chinese1": "他们做得好",
"Translate1": "they are doing well",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā pǎodékuài",
"Chinese1": "他跑得快",
"Translate1": "he runs fast",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ kànbudǒng zhè běnshū 。",
"Chinese1": "我看不懂这本书。",
"Translate1": "I can't understand this book.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "háizi men kànbudǒng nǐ xiě de hànzì 。",
"Chinese1": "孩子们看不懂你写的汉字。",
"Translate1": "Children can't understand your Chinese characters.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ kànbudǒng wǒ de yóujiàn ma ?",
"Chinese1": "你看不懂我的邮件吗?",
"Translate1": "Can't you read my email?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "lǎobǎn de zhōngwén shuō dé hěn hǎo , kěshì tā kànbudǒng zhōngwén bàozhǐ 。",
"Chinese1": "老板的中文说得很好,可是他看不懂中文报纸。",
"Translate1": "The boss speaks Chinese very well, but he can't read Chinese newspapers.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ tīngbudǒng shànghǎi huà 。",
"Chinese1": "我听不懂上海话。",
"Translate1": "I can't understand Shanghainese.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐmen tīngbudǒng wǒ dehuà ma ?",
"Chinese1": "你们听不懂我的话吗?",
"Translate1": "Can't you understand me?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ tīngbudǒng nǐ shuō de yīngyǔ 。",
"Chinese1": "我听不懂你说的英语。",
"Translate1": "I can't understand your English.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒmen dōu tīngbudǒng nǐ de yìsi 。",
"Chinese1": "我们都听不懂你的意思。",
"Translate1": "None of us can understand you.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "hěnduō réndú bù dǒng zhè běnshū 。",
"Chinese1": "很多人读不懂这本书。",
"Translate1": "Many people can't read this book.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhège jùzi hěnnán , xuésheng men dōu dú bù dǒng 。",
"Chinese1": "这个句子很难,学生们都读不懂。",
"Translate1": "The sentence is so difficult that the students can't read it.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ chī hǎolema ?",
"Chinese1": "你吃好了吗?",
"Translate1": "Have you eaten yet?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "duìbuqǐ , wǒ jìcuò le shíjiān 。",
"Chinese1": "对不起,我记错了时间。",
"Translate1": "Sorry, I misremembered the time.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ lái wǎn le , wǒmen yǐjīng guānmén le 。",
"Chinese1": "你来晚了,我们已经关门了。",
"Translate1": "You're late, we're closed.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā wánhuài le gēge de wánjù 。",
"Chinese1": "他玩坏了哥哥的玩具。",
"Translate1": "He spoiled his brother's toys.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ méi chībǎo 。",
"Chinese1": "我没吃饱。",
"Translate1": "I am not full.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā huán méixiǎng hǎo 。",
"Chinese1": "他还没想好。",
"Translate1": "He hasn't figured it out yet.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒmen méi tīng qīngchu , qǐng zàishuō yībiàn 。",
"Chinese1": "我们没听清楚,请再说一遍。",
"Translate1": "We didn't catch you, please say it again.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhège zì xiěcuò le 。",
"Chinese1": "这个字写错了。",
"Translate1": "The word is misspelled.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "bēizi shuāihuài le 。",
"Chinese1": "杯子摔坏了。",
"Translate1": "The cup broke.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "fángjiān dǎsǎo gānjìng le ma ?",
"Chinese1": "房间打扫干净了吗?",
"Translate1": "Has the room been cleaned?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐmen dōu tīngdǒng le ma ?",
"Chinese1": "你们都听懂了吗?",
"Translate1": "Do you all understand?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ kàn le , dànshì méikàn dǒng 。",
"Chinese1": "我看了,但是没看懂。",
"Translate1": "I read it, but didn't understand it.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ cǎi dào le wǒ de jiǎo 。",
"Chinese1": "你踩到了我的脚。",
"Translate1": "You stepped on my foot.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā bù xiǎoxīn tuīdǎo le yīgè lǎorén 。",
"Chinese1": "他不小心 推倒 了一个老人。",
"Translate1": "He accidentally pushed an old man down.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ màidiào le wǒ de jiù shǒujī 。",
"Chinese1": "我卖掉了我的旧手机。",
"Translate1": "I sold my old cell phone.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ kànjiàn nàgè shuàigē le ma ?",
"Chinese1": "你看见那个帅哥了吗?",
"Translate1": "Did you see that handsome guy?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ kàndào nàgè shuàigē le ma ?",
"Chinese1": "你看到那个帅哥了吗?",
"Translate1": "Did you see that handsome guy?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ kànjiàn le 。",
"Chinese1": "我看见了。",
"Translate1": "I saw it.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ kàndào le 。",
"Chinese1": "我看到了。",
"Translate1": "I saw it.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ tīngjiàn le ma ?",
"Chinese1": "你听见了吗?",
"Translate1": "Did you hear that?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ tīngdào le ma ?",
"Chinese1": "你听到了吗?",
"Translate1": "Did you hear that?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ méi kàndào nàgè shuàigē ma ?",
"Chinese1": "你没看到那个帅哥吗?",
"Translate1": "Didn't you see that handsome guy?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ méi kànjiàn nàgè shuàigē ma ?",
"Chinese1": "你没看见那个帅哥吗?",
"Translate1": "Didn't you see that handsome guy?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ méiyǒu kàndào 。",
"Chinese1": "我没有看到。",
"Translate1": "I did not see.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ méiyǒu kànjiàn 。",
"Chinese1": "我没有看见。",
"Translate1": "I did not see.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ méi tīngdào ma ?",
"Chinese1": "你没听到吗?",
"Translate1": "Didn't you hear?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ méi tīngjiàn ma ?",
"Chinese1": "你没听见吗?",
"Translate1": "Didn't you hear?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒmen míngtiān kěyǐ zuò wán 。",
"Chinese1": "我们明天可以做完。",
"Translate1": "We can finish it tomorrow.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ néng chī wán ma ?",
"Chinese1": "你能吃完吗?",
"Translate1": "Can you finish it?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ jīntiān yào xiě wán 。",
"Chinese1": "我今天要写完。",
"Translate1": "I'm going to finish writing today.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ méi kànguò 。",
"Chinese1": "我没看过。",
"Translate1": "I haven't read it.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ shuōwán le 。",
"Chinese1": "我说完了。",
"Translate1": "I'm done talking",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ chī wán le ma ?",
"Chinese1": "你吃完了吗?",
"Translate1": "Have you finished eating?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ kàn wán zhè běnshū le 。",
"Chinese1": "我看完这本书了。",
"Translate1": "I have finished reading this book.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "màiwán le 。",
"Chinese1": "卖完了。",
"Translate1": "Sold out.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒmen dǎsǎo wán le 。",
"Chinese1": "我们打扫完了。",
"Translate1": "We're done cleaning.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ zuòwánzuòyè le 。",
"Chinese1": "我做完作业了。",
"Translate1": "I have finished my homework.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "lǎobǎn kāi wánhuì le 。",
"Chinese1": "老板开完会了。",
"Translate1": "The boss has finished the meeting.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ kàn wán zhèchǎng diànyǐng le 。",
"Chinese1": "我看完这场电影了。",
"Translate1": "I finished watching this movie.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒmen xuéwán zhèpiān kèwén le 。",
"Chinese1": "我们学完这篇课文了。",
"Translate1": "We have finished this lesson.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ kàn wán le diànyǐng 。",
"Chinese1": "我看完了电影。",
"Translate1": "I finished watching the movie.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "měige cài dōu hàochī 。",
"Chinese1": "每个菜都好吃。",
"Translate1": "Every dish is delicious.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ měige rén dōu rènshi ma ?",
"Chinese1": "你每个人都认识吗?",
"Translate1": "Do you know everyone?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "lǎobǎn měige yuè dōu chūchāi 。",
"Chinese1": "老板每个月都出差。",
"Translate1": "The boss travels every month.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā měitiān dōu bùchī zǎofàn 。",
"Chinese1": "他每天都不吃早饭。",
"Translate1": "He doesn't eat breakfast every day.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā měinián dōu lái zhōngguó 。",
"Chinese1": "他每年都来中国。",
"Translate1": "He comes to China every year.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ měige xīngqī dōu gěi māma dǎdiànhuà 。",
"Chinese1": "我每个星期都给妈妈打电话。",
"Translate1": "I call my mother every week.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhège bān de měige xuésheng dōu hěn cōngming 。",
"Chinese1": "这个班的每个学生都很聪明。",
"Translate1": "Every student in this class is very smart.",
"Pinyin2": "",
"Chinese2": "",