-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path11.25.json
More file actions
2191 lines (2191 loc) · 53.7 KB
/
Copy path11.25.json
File metadata and controls
2191 lines (2191 loc) · 53.7 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": "bùyào wǎng lóuxià rēng lājī 。",
"Chinese1": "不要往楼下扔垃圾。",
"Translate1": "Don't throw garbage downstairs.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "bùyào wǎng xiǎohái zuǐba lǐ sāi dōngxi le !",
"Chinese1": "不要往小孩嘴巴里塞东西了!",
"Translate1": "Don't put things in children's mouths!",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "kāiwǎng běijīng de huǒchē",
"Chinese1": "开往北京的火车",
"Translate1": "Train to Beijing",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "fēiwǎng niǔyuē de fēijī",
"Chinese1": "飞往纽约的飞机",
"Translate1": "plane to new york",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "yùnwǎng guówài de huòwù",
"Chinese1": "运往国外的货物",
"Translate1": "Goods shipped abroad",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǎngxià shuō 。",
"Chinese1": "往下说。",
"Translate1": "go on.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǎngxiàdú 。",
"Chinese1": "往下读。",
"Translate1": "read on.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ wǎng xià kàn jiù zhīdào le 。",
"Chinese1": "你往下看就知道了。",
"Translate1": "You can see it just by looking down.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "bǎobǎo dōuì wǒ xiào le 。",
"Chinese1": "宝宝对我笑了。",
"Translate1": "The baby smiled at me.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "xiǎogǒu zài dōuì nǐ jiào 。",
"Chinese1": "小狗在对你叫。",
"Translate1": "The puppy is barking at you.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ bù yīnggāi zhèyàng dōuì fùmǔ shuōhuà 。",
"Chinese1": "你不应该这样对父母说话。",
"Translate1": "You shouldn't talk to your parents like that.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā zǒngshì dōuì lǎoshī sāhuǎng 。",
"Chinese1": "他总是对老师撒谎。",
"Translate1": "He always lies to the teacher.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "bùyào dōuì háizi fāpíqì 。",
"Chinese1": "不要对孩子发脾气。",
"Translate1": "Don't lose your temper with your child.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ érzi dōuìxué wàiyǔ hěngǎnxīngqù 。",
"Chinese1": "我儿子对学外语很感兴趣。",
"Translate1": "My son is very interested in learning foreign languages.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ yīnggāi dōuì zìjǐ de gōngzuò fùzé 。",
"Chinese1": "你应该对自己的工作负责。",
"Translate1": "You should take responsibility for your own work.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "lǎobǎn dōuì nǐ bù tài mǎnyì 。",
"Chinese1": "老板对你不太满意。",
"Translate1": "The boss is not very happy with you.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "guānzhòng dōuì bǐsàijiéguǒ fēicháng shīwàng 。",
"Chinese1": "观众对比赛结果非常失望。",
"Translate1": "The audience was very disappointed with the result of the game.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ de xiǎonǚr dōuì suǒyǒu dòngwù dōu hěn hàoqí 。",
"Chinese1": "我的小女儿对所有动物都很好奇。",
"Translate1": "My youngest daughter is curious about all animals.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒxìng wáng 。",
"Chinese1": "我姓王。",
"Translate1": "My name is Wong.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ lǎobǎn xìnglǐ ma ?",
"Chinese1": "你老板姓李吗?",
"Translate1": "Is your boss's surname Li?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nàgè shuàigē xìngzhāng 。",
"Chinese1": "那个帅哥姓张。",
"Translate1": "That handsome guy is surnamed Zhang.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ bàba xìngzhōu , wǒ māma xìnglín 。",
"Chinese1": "我爸爸姓周,我妈妈姓林。",
"Translate1": "My father's surname is Zhou, and my mother's surname is Lin.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā nǚpéngyou xìng qián 。",
"Chinese1": "他女朋友姓钱。",
"Translate1": "His girlfriend's surname is Qian.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐhǎo , wǒxìng wú 。",
"Chinese1": "你好,我姓吴。",
"Translate1": "Hello, my name is Wu.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒxìng zhào , wǒ tàitai yě xìng zhào 。",
"Chinese1": "我姓赵,我太太也姓赵。",
"Translate1": "My surname is Zhao, and my wife is also surnamed Zhao.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ de zhōngwén lǎoshī xìng chén 。",
"Chinese1": "我的中文老师姓陈。",
"Translate1": "My Chinese teacher's surname is Chen.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ nǎinai yě xìng chén ma ?",
"Chinese1": "你奶奶也姓陈吗?",
"Translate1": "Is your grandma also surnamed Chen?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "tāmen dōu xìnglǐ 。",
"Chinese1": "他们都姓李。",
"Translate1": "They are all surnamed Li.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ xìng shénme ?",
"Chinese1": "你姓什么?",
"Translate1": "what's your last name",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nín guìxìng ?",
"Chinese1": "您贵姓?",
"Translate1": "Your name?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ yào shénme ?",
"Chinese1": "你要什么?",
"Translate1": "what would you like?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒyào yībēi shuǐ 。",
"Chinese1": "我要一杯水。",
"Translate1": "I want a glass of water.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐmen dōu yào bīng kělè ma ?",
"Chinese1": "你们都要冰可乐吗?",
"Translate1": "Do you want an iced coke?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ yào chá háishi kāfēi ?",
"Chinese1": "你要茶还是咖啡?",
"Translate1": "Would you like tea or coffee?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒmen yào sānwǎn mǐfàn 。",
"Chinese1": "我们要三碗米饭。",
"Translate1": "We want three bowls of rice.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ yào hē shénme jiǔ ?",
"Chinese1": "你要喝什么酒?",
"Translate1": "What would you like to drink?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "bàba yào mǎi yīgè xīnshǒujī 。",
"Chinese1": "爸爸要买一个新手机。",
"Translate1": "Dad is going to buy a new mobile phone.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒyào gēn nǐ yīqǐ qù 。",
"Chinese1": "我要跟你一起去。",
"Translate1": "I want to go with you.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā yào qù dàchéngshì zhǎo gōngzuò 。",
"Chinese1": "她要去大城市找工作。",
"Translate1": "She is going to a big city to find a job.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhōumò nǐmen yào yīqǐ kàn diànyǐng ma ?",
"Chinese1": "周末你们要一起看电影吗?",
"Translate1": "Are you going to watch a movie together this weekend?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ yào zǎodiǎn shuìjiào 。",
"Chinese1": "你要早点睡觉。",
"Translate1": "You need to go to bed early.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒmen míngtiān yào shàngbān 。",
"Chinese1": "我们明天要上班。",
"Translate1": "We have to go to work tomorrow.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "lǎobǎn jīntiān yào jiàn yīgè xīn kèhù 。",
"Chinese1": "老板今天要见一个新客户。",
"Translate1": "The boss has a new client to meet today.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "lǎoshī tàilěi le , yào hǎohǎo xiūxi 。",
"Chinese1": "老师太累了,要好好休息。",
"Translate1": "The teacher is too tired, you should have a good rest.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "míngtiān xiàyǔ , nǐ yào dài sǎn 。",
"Chinese1": "明天下雨,你要带伞。",
"Translate1": "It's going to rain tomorrow, so you need to bring an umbrella.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "xīngqīwǔ wǒmen yào kāihuì 。",
"Chinese1": "星期五我们要开会。",
"Translate1": "We have a meeting on Friday.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "xiànzài wǒyào qù chīfàn le 。",
"Chinese1": "现在我要去吃饭了。",
"Translate1": "Now I'm going to eat.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "lǎobǎn xiàzhōu yào chūchāi ma ?",
"Chinese1": "老板下周要出差吗?",
"Translate1": "Is the boss going on a business trip next week?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "tāmen míngnián yào jiéhūn le 。",
"Chinese1": "他们明年要结婚了。",
"Translate1": "They are getting married next year.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "jīnnián nǐ yào huíjiā guònián ma ?",
"Chinese1": "今年你要回家过年吗?",
"Translate1": "Are you going home for the New Year this year?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ míngtiān yào mǎi yīgè píngguǒ shǒujī 。",
"Chinese1": "我明天要买一个苹果手机。",
"Translate1": "I'm going to buy an iPhone tomorrow.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐmen xiànzài yào chūqù ma ?",
"Chinese1": "你们现在要出去吗?",
"Translate1": "Are you going out now?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒmen jìhuà jīnnián yào qù měiguó 。",
"Chinese1": "我们计划今年要去美国。",
"Translate1": "We plan to go to America this year.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā xiàgèyuè yào lái zhōngguó gōngzuò 。",
"Chinese1": "他下个月要来中国工作。",
"Translate1": "He will come to China to work next month.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ xiàgèxīngqī yào qù tājiā chīwǎnfàn ma ?",
"Chinese1": "你下个星期要去她家吃晚饭吗?",
"Translate1": "Are you going to her house for dinner next week?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhège xīngqītiān nǐ yào zuò shénme ?",
"Chinese1": "这个星期天你要做什么?",
"Translate1": "what are you going to do this sunday",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ wǎnshàng yào gěi māma dǎdiànhuà 。",
"Chinese1": "我晚上要给妈妈打电话。",
"Translate1": "I'm going to call my mother tonight.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "xiàwǔ lǎoshī yào lái wǒjiā 。",
"Chinese1": "下午老师要来我家。",
"Translate1": "In the afternoon the teacher will come to my house.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "lǎobǎn míngtiān yào jiàn tāmen ma ?",
"Chinese1": "老板明天要见他们吗?",
"Translate1": "Is the boss going to see them tomorrow?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "xiàbān yǐhòu nǐ yào huíjiā ma ?",
"Chinese1": "下班以后你要回家吗?",
"Translate1": "Are you going home after get off work?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ kěyǐ jìnlái ma ?",
"Chinese1": "我可以进来吗?",
"Translate1": "may I come in?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "èrshíyīsuì yǐhòu kěyǐ hējiǔ 。",
"Chinese1": "二十一岁以后可以喝酒。",
"Translate1": "You can drink alcohol after the age of 21.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "māma , wǒ kěyǐ chūqùwán ma ?",
"Chinese1": "妈妈,我可以出去玩吗?",
"Translate1": "Mom, can I go out and play?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒmen kěyǐ zài bàngōngshì chīfàn ma ?",
"Chinese1": "我们可以在办公室吃饭吗?",
"Translate1": "Can we eat in the office?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ kěyǐ zài zhèlǐ tíngchē ma ?",
"Chinese1": "我可以在这里停车吗?",
"Translate1": "Can I park here?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "háizi bù kěyǐ kàn zhège 。",
"Chinese1": "孩子不可以看这个。",
"Translate1": "Children are not allowed to watch this.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ xiànzài bù kěyǐ jìnqù 。",
"Chinese1": "你现在不可以进去。",
"Translate1": "You can't go in now.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhèlǐ bù kěyǐ chōuyān 。",
"Chinese1": "这里不可以抽烟。",
"Translate1": "No smoking here.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒmen dōu bù kěyǐ qù 。",
"Chinese1": "我们都不可以去。",
"Translate1": "None of us can go.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ bù kěyǐ shuō zānghuà 。",
"Chinese1": "你不可以说脏话。",
"Translate1": "You can't swear.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā yàoxué zhōngwén 。",
"Chinese1": "他要学中文。",
"Translate1": "He wants to learn Chinese.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "bǎobǎo yào shuìjiào 。",
"Chinese1": "宝宝要睡觉。",
"Translate1": "The baby is going to sleep.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "zǎocān wǒyào chī ròu 。",
"Chinese1": "早餐我要吃肉。",
"Translate1": "I want meat for breakfast.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "jīntiān hěnlěi , wǒ xiǎng xiūxi le 。",
"Chinese1": "今天很累,我想休息了。",
"Translate1": "Today is very tired, I want to rest.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhège zhōumò nǐmen yào zuò shénme ?",
"Chinese1": "这个周末你们要做什么?",
"Translate1": "What are you going to do this weekend?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒyào hēkāfēi 。",
"Chinese1": "我要喝咖啡。",
"Translate1": "I'd like coffee.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ xiǎng hēkāfēi 。",
"Chinese1": "我想喝咖啡。",
"Translate1": "I want to drink coffee.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ yào chī shénme ?",
"Chinese1": "你要吃什么?",
"Translate1": "What do you want to eat?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ xiǎng chī shénme ?",
"Chinese1": "你想吃什么?",
"Translate1": "What do you want to eat?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒyào huíjiā chīfàn 。",
"Chinese1": "我要回家吃饭。",
"Translate1": "I'm going home for dinner.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ yào qù chāoshì mǎi dōngxi ma ?",
"Chinese1": "你要去超市买东西吗?",
"Translate1": "Are you going to the supermarket to buy something?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā bùxiǎng qù túshūguǎn kànshū 。",
"Chinese1": "他不想去图书馆看书。",
"Translate1": "He doesn't want to go to the library to read.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ dǎdiànhuà gàosu tā le ma ?",
"Chinese1": "你打电话告诉他了吗?",
"Translate1": "Did you call and tell him?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒmen yào zuòfēijī qù měiguó 。",
"Chinese1": "我们要坐飞机去美国。",
"Translate1": "We are going to America by plane.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐmen kěyǐ shàngwǎng mǎi jīpiào ma ?",
"Chinese1": "你们可以上网买机票吗?",
"Translate1": "Can you buy air tickets online?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "lǎobǎn xiàzhōu qù běijīng kāihuì 。",
"Chinese1": "老板下周去北京开会。",
"Translate1": "The boss is going to Beijing for a meeting next week.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhōngguó rén dōu yào huíjiā guònián 。",
"Chinese1": "中国人都要回家过年。",
"Translate1": "Chinese people have to go home for the New Year.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhōumò wǒ xǐhuan zìjǐ mǎicài zuòfàn 。",
"Chinese1": "周末我喜欢自己买菜做饭。",
"Translate1": "I like to do my own shopping and cooking on weekends.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "zǎoshang wǒxiān shuāyá xǐliǎn , zài chī zǎofàn 。",
"Chinese1": "早上我先刷牙洗脸,再吃早饭。",
"Translate1": "In the morning I brush my teeth and wash my face before eating breakfast.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒmen yīqǐ chīwǎnfàn bā 。",
"Chinese1": "我们一起吃晚饭吧。",
"Translate1": "Let's have dinner together.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "jīntiān wǒ hé tóngshì yīqǐ qù chīfàn 。",
"Chinese1": "今天我和同事一起去吃饭。",
"Translate1": "I went to dinner with my colleagues today.",
"Pinyin2": "",
"Chinese2": "",