-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path11.12.json
More file actions
2191 lines (2191 loc) · 55.4 KB
/
Copy path11.12.json
File metadata and controls
2191 lines (2191 loc) · 55.4 KB
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": "zhèjiàn shìqing wǒ huán zài kǎolǜ 。",
"Chinese1": "这件事情我还在考虑。",
"Translate1": "I am still thinking about this matter.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "yǐjīng zhōngwǔ le , tā huán zài shuì ?",
"Chinese1": "已经中午了,他还在睡?",
"Translate1": "It's noon, is he still sleeping?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā huán zài shēngqì ma ?",
"Chinese1": "她还在生气吗?",
"Translate1": "Is she still angry?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ zěnme huán zài yòng nàgè jiù shǒujī ?",
"Chinese1": "你怎么还在用那个旧手机?",
"Translate1": "Why are you still using that old phone?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ huán zài wányóuxì ?",
"Chinese1": "你还在玩游戏?",
"Translate1": "Are you still playing games?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ ràng tā bùyào mǎi , tā háishi mǎi le 。",
"Chinese1": "我让他不要买,他还是买了。",
"Translate1": "I asked him not to buy it, he still bought it.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā bùxiǎng líhūn , dànshì zuìhòu háishi líhūn le 。",
"Chinese1": "他不想离婚,但是最后还是离婚了。",
"Translate1": "He didn't want to divorce, but in the end he was divorced.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "fùmǔ bù tóngyì tā qù , kěshì tā háishi qù le 。",
"Chinese1": "父母不同意他去,可是他还是去了。",
"Translate1": "His parents did not agree with him, but he still went.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "yīshēng bùràng tā hējiǔ , tā háishi hē 。",
"Chinese1": "医生不让她喝酒,她还是喝。",
"Translate1": "The doctor did not let her drink, she still drank.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "lǎoshī shēngbìng le , dànshì tā háishi lái shàngkè le 。",
"Chinese1": "老师生病了,但是她还是来上课了。",
"Translate1": "The teacher was sick, but she still came to class.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒmen děng le bànge xiǎoshí le , lǎoshī huán méidào 。",
"Chinese1": "我们等了半个小时了,老师还没到。",
"Translate1": "We have waited for half an hour, and the teacher hasn't arrived yet.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "diànyǐng yǐjīng kāishǐ le , nǐ huán méi chūmén ?",
"Chinese1": "电影已经开始了,你还没出门?",
"Translate1": "The movie has begun, you haven't gone out yet?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ yǐjīng sānshíduō le , huán bùxiǎng jiéhūn ?",
"Chinese1": "你已经三十多了,还不想结婚?",
"Translate1": "You have been more than thirty and don't want to get married?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ jiěshì le zhème duōbiàn , nǐ huán bù dǒng ?",
"Chinese1": "我解释了这么多遍,你还不懂?",
"Translate1": "I have explained so many times, don't you understand?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ duì nǐ zhème hǎo , nǐ huán bù gāoxìng ?",
"Chinese1": "我对你这么好,你还不高兴?",
"Translate1": "I'm so good to you, are you unhappy?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nàgè rén jiùshì tā de xīn nánpéngyou 。",
"Chinese1": "那个人就是她的新男朋友。",
"Translate1": "That person is her new boyfriend.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā jiùshì nǐ yào zhǎo de rén 。",
"Chinese1": "他就是你要找的人。",
"Translate1": "He is the person you are looking for.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒmen jiùshì tā de jiārén 。",
"Chinese1": "我们就是他的家人。",
"Translate1": "We are his family.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ jiùshì gè bèndàn !",
"Chinese1": "你就是个笨蛋!",
"Translate1": "You are a fool!",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā jiùshì nàgè piànzi !",
"Chinese1": "他就是那个骗子!",
"Translate1": "He is the liar!",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā bù qù lǚyóu jiùshì bùxiǎng huāqián 。",
"Chinese1": "他不去旅游就是不想花钱。",
"Translate1": "He doesn't want to spend money without traveling.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ bù cānjiā bǐsài jiùshì pà shū ma ?",
"Chinese1": "你不参加比赛就是怕输吗?",
"Translate1": "Are you afraid of losing if you don't participate in the competition?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā zhèyàng shuō jiùshì bù xǐhuan wǒ 。",
"Chinese1": "他这样说就是不喜欢我。",
"Translate1": "He just doesn't like me.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā wèn zhème duō , jiùshì dānxīn nǐ 。",
"Chinese1": "她问这么多,就是担心你。",
"Translate1": "She asked so much that she was worried about you.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā jiùshì piàoliang , méi biéde yōushì 。",
"Chinese1": "她就是漂亮,没别的优势。",
"Translate1": "She is beautiful, without other advantages.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ jiùyào qù !",
"Chinese1": "我就要去!",
"Translate1": "I'm going!",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ jiùshì xǐhuan tā 。",
"Chinese1": "我就是喜欢他。",
"Translate1": "I just like him.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ jiù bù gàosu nǐ 。",
"Chinese1": "我就不告诉你。",
"Translate1": "I won't tell you.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ fùmǔ jiùshì bùràng wǒ yīgè rénqù 。",
"Chinese1": "我父母就是不让我一个人去。",
"Translate1": "My parents just don't let me go alone.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhège xuésheng jiùshì bù tīng lǎoshī dehuà 。",
"Chinese1": "这个学生就是不听老师的话。",
"Translate1": "This student just doesn't listen to the teacher.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "hěnduō dìfāng dū yǒuchē 。",
"Chinese1": "很多地方都有车。",
"Translate1": "There are cars in many places.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ de hěnduō péngyou dū yǒuchē 。",
"Chinese1": "我的很多朋友都有车。",
"Translate1": "Many of my friends have cars.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "hěnduō měiguó rén dū xǐhuan hēkāfēi 。",
"Chinese1": "很多美国人都喜欢喝咖啡。",
"Translate1": "Many Americans like to drink coffee.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "hěnduō háizi dū bù xǐhuan shàngxué 。",
"Chinese1": "很多孩子都不喜欢上学。",
"Translate1": "Many children don't like going to school.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "hěnduō niánqīngrén dū xiǎng zài dàchéngshì gōngzuò 。",
"Chinese1": "很多年轻人都想在大城市工作。",
"Translate1": "Many young people want to work in big cities.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "dàjiā dū lái le ma ?",
"Chinese1": "大家都来了吗?",
"Translate1": "Are you here?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "dàjiā dū yīnggāi zhīdào 。",
"Chinese1": "大家都应该知道。",
"Translate1": "Everyone should know.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "dàjiā dū shuō nǐ hěn cōngming 。",
"Chinese1": "大家都说你很聪明。",
"Translate1": "Everyone said you are smart.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "dàjiā dū wàng le tā de míngzì 。",
"Chinese1": "大家都忘了他的名字。",
"Translate1": "Everyone forgot his name.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "dàjiā dū xǐhuan chī là ma ?",
"Chinese1": "大家都喜欢吃辣吗?",
"Translate1": "Do you like spicy food?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ měitiān dū yào shàngbān 。",
"Chinese1": "我每天都要上班。",
"Translate1": "I go to work every day.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "lǎoshī měitiān dū ànshí dào xuéxiào 。",
"Chinese1": "老师每天都按时到学校。",
"Translate1": "The teacher goes to school on time every day.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā měitiān dū bùchī zǎofàn 。",
"Chinese1": "她每天都不吃早饭。",
"Translate1": "She does not eat breakfast every day.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ nǚpéngyou měitiān dū shàng táobǎo 。",
"Chinese1": "我女朋友每天都上淘宝。",
"Translate1": "My girlfriend goes on Taobao every day.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "māma měitiān dū gěi wǒmen zuò wǎnfàn 。",
"Chinese1": "妈妈每天都给我们做晚饭。",
"Translate1": "Moms make night dinner every day.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "měiguó rén dū shuō yīngwén 。",
"Chinese1": "美国人都说英文。",
"Translate1": "Americans speak English.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒmen wǔgè rén dū qù 。",
"Chinese1": "我们五个人都去。",
"Translate1": "We all go.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "sìchuānrén dū xǐhuan chī là 。",
"Chinese1": "四川人都喜欢吃辣。",
"Translate1": "Sichuan people like spicy food.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ de jiārén dū méi qùguò zhōngguó 。",
"Chinese1": "我的家人都没去过中国。",
"Translate1": "My family has never been to China.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ de xuésheng dū xǐhuan wèn wèntí 。",
"Chinese1": "我的学生都喜欢问问题。",
"Translate1": "My students like to ask questions.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "jiùyào xiàyǔ le 。",
"Chinese1": "就要下雨了。",
"Translate1": "It's about to rain.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "tāmen jiùyào jiéhūn le 。",
"Chinese1": "他们就要结婚了。",
"Translate1": "They are about to get married.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ jiùyào chūqù lǚyóu le 。",
"Chinese1": "我就要出去旅游了。",
"Translate1": "I am going out to travel.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "bǎobǎo jiùyào yīsuì le 。",
"Chinese1": "宝宝就要一岁了。",
"Translate1": "The baby is one year old.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "jiùyào xiàkè le , háiyǒu biéde wèntí ma ?",
"Chinese1": "就要下课了,还有别的问题吗?",
"Translate1": "Is there any other question?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "háiyǒu shífēnzhōng wǒ jiù xiàbān le 。",
"Chinese1": "还有十分钟我就下班了。",
"Translate1": "There were ten minutes and I got off work.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "háiyǒu liǎnggè xīngqī wǒmen jiùyào kǎoshì le 。",
"Chinese1": "还有两个星期我们就要考试了。",
"Translate1": "We have to take the exam for two weeks.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "háiyǒu yīgèyuè jiùyào guònián le 。",
"Chinese1": "还有一个月就要过年了。",
"Translate1": "There will be a month of Chinese New Year.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "háiyǒu bànge xiǎoshí fēijī jiù qǐfēi le 。",
"Chinese1": "还有半个小时飞机就起飞了。",
"Translate1": "The plane took off for half an hour.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "háiyǒu wǔtiān jiùyào fàngjià le 。",
"Chinese1": "还有五天就要放假了。",
"Translate1": "There are five days of holiday.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒmen míngnián zài lái 。",
"Chinese1": "我们明年再来。",
"Translate1": "We will come again next year.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "zàishìyīxià 。",
"Chinese1": "再试一下。",
"Translate1": "Try again.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ kěyǐ zàishuō yībiàn ma ?",
"Chinese1": "你可以再说一遍吗?",
"Translate1": "Can you say it again?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhè běnshū wǒyào zài kànyībiàn 。",
"Chinese1": "这本书我要再看一遍。",
"Translate1": "I have to read this book again.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ yīnggāi zài fùxí yībiàn 。",
"Chinese1": "你应该再复习一遍。",
"Translate1": "You should review it again.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "zài chī yīdiǎn 。",
"Chinese1": "再吃一点。",
"Translate1": "Eat a little bit.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "zàidiǎn jǐge cài bā 。",
"Chinese1": "再点几个菜吧。",
"Translate1": "Let's order a few more dishes.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "fúwùyuán , zài lái liǎngpíng píjiǔ 。",
"Chinese1": "服务员,再来两瓶啤酒。",
"Translate1": "The waiter, two more bottle beer.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "zài gěi wǒ sāntiān shíjiān 。",
"Chinese1": "再给我三天时间。",
"Translate1": "Give me another three days.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒnéng bùnéng zài ná liǎnggè ?",
"Chinese1": "我能不能再拿两个?",
"Translate1": "Can I get two more?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "zài zhǎo zhǎo 。",
"Chinese1": "再找找。",
"Translate1": "Look for it again.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ zài wènwèn 。",
"Chinese1": "你再问问。",
"Translate1": "You ask again.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "biéjí , zài xiǎngxiang 。",
"Chinese1": "别急,再想想。",
"Translate1": "Don't worry, think about it again.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "zàiliáo yīhuìr 。",
"Chinese1": "再聊一会儿。",
"Translate1": "Talk for a while.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "zài děng yīhuìr 。",
"Chinese1": "再等一会儿。",
"Translate1": "Wait a while.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "dū jiǔdiǎn le , kuàidiǎn qǐchuáng !",
"Chinese1": "都九点了,快点起床!",
"Translate1": "It's nine o'clock, get up quickly!",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "dū shíèrdiǎn le , nǐ huán bù shuì ?",
"Chinese1": "都十二点了,你还不睡?",
"Translate1": "It's twelve o'clock, don't you sleep?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "dū èrshíyī shìjì le , nǐ huán zhème xiǎng ?",
"Chinese1": "都二十一世纪了,你还这么想?",
"Translate1": "Twenty -one century, do you think so?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "dū yīgè xiǎoshí le , tā huán zài cèsuǒ lǐ 。",
"Chinese1": "都一个小时了,他还在厕所里。",
"Translate1": "It's been an hour, and he is still in the toilet.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "dū yīgè xīngqī le , huán zài xiàyǔ 。",
"Chinese1": "都一个星期了,还在下雨。",
"Translate1": "It's been a week and it's still raining.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "fàn dū liáng le , kuài chī bā 。",
"Chinese1": "饭都凉了,快吃吧。",
"Translate1": "The rice is cold, eat it quickly.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "niúnǎi dū huài le , rēngdiào bā 。",
"Chinese1": "牛奶都坏了,扔掉吧。",
"Translate1": "The milk is broken, throw it away.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ dū shuō le sānbiàn le 。",
"Chinese1": "我都说了三遍了。",
"Translate1": "I have said it three times.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhège diànyǐng nǐ dū kànguò le , kàn biéde bā 。",
"Chinese1": "这个电影你都看过了,看别的吧。",
"Translate1": "You have watched this movie, watch something else.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā dū dàoqiàn le , nǐ biéshēngqì le 。",
"Chinese1": "他都道歉了,你别生气了。",
"Translate1": "He apologized, don't be angry.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "tāmen yǐjīng zǒu le 。",
"Chinese1": "他们已经走了。",
"Translate1": "They have gone.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ yǐjīng yǒu nánpéngyou le 。",
"Chinese1": "我已经有男朋友了。",
"Translate1": "I already have a boyfriend.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "bǎobǎo yǐjīng huì shuōhuà le 。",
"Chinese1": "宝宝已经会说话了。",
"Translate1": "The baby is already talking.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "māma yǐjīng huílai le 。",
"Chinese1": "妈妈已经回来了。",
"Translate1": "Mom is back.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā yǐjīng shàng fēijī le 。",
"Chinese1": "他已经上飞机了。",
"Translate1": "He has already boarded the plane.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒjiā de gǒu yǐjīng lǎo le 。",
"Chinese1": "我家的狗已经老了。",
"Translate1": "My dog is old.",
"Pinyin2": "",
"Chinese2": "",