-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path11.18.json
More file actions
2191 lines (2191 loc) · 54.3 KB
/
Copy path11.18.json
File metadata and controls
2191 lines (2191 loc) · 54.3 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": "wǒ nánpéngyou de gōngzī hái kěyǐ 。",
"Chinese1": "我男朋友的工资还可以。",
"Translate1": "My boyfriend's salary is okay.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "xīn de bàngōngshì hái bùcuò 。",
"Chinese1": "新的办公室还不错。",
"Translate1": "The new office is not bad.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ juéde zhèlǐ de càihái kěyǐ , bǐshàng yījiā de hàochī 。",
"Chinese1": "我感觉这里的菜还可以,比上一家的好吃。",
"Translate1": "I feel that the dishes here are okay, which is better than the previous family.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhège páizi hái bùcuò , hěnduō niánqīngrén xǐhuan 。",
"Chinese1": "这个牌子还不错,很多年轻人喜欢。",
"Translate1": "This brand is pretty good, many young people like it.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "fángzi hái kěyǐ , dànshì yǒudiǎn guì 。",
"Chinese1": "房子还可以,但是有点贵。",
"Translate1": "The house is okay, but it is a bit expensive.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "māma zuò de cài",
"Chinese1": "妈妈做的菜",
"Translate1": "Mom's dish",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "qù běijīng de huǒchē",
"Chinese1": "去北京的火车",
"Translate1": "Train to Beijing",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ jiào de xuésheng",
"Chinese1": "你教的学生",
"Translate1": "You teach students",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "lǎobǎn qǐng de péngyou",
"Chinese1": "老板请的朋友",
"Translate1": "Boss's friend",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒhuà de huà",
"Chinese1": "我画的画",
"Translate1": "My painting",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā xiě de shū",
"Chinese1": "他写的书",
"Translate1": "The book he wrote",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "māma gěi wǒ mǎi de yīfú",
"Chinese1": "妈妈给我买的衣服",
"Translate1": "My mother bought the clothes I bought for me",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "kèhù wèn de wèntí",
"Chinese1": "客户问的问题",
"Translate1": "Customer question questions",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "xǐhuan gòuwù de nǚrén",
"Chinese1": "喜欢购物的女人",
"Translate1": "Woman who likes shopping",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "xǐhuan zhōngguó cài de měiguó rén",
"Chinese1": "喜欢中国菜的美国人",
"Translate1": "Americans who like Chinese food",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "māma zuò de",
"Chinese1": "妈妈做的",
"Translate1": "Mom made",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒhuà de",
"Chinese1": "我画的",
"Translate1": "I drew it",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā xiě de",
"Chinese1": "他写的",
"Translate1": "He wrote",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ jiāo de",
"Chinese1": "你交的",
"Translate1": "You",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǎge lǎoshī zuìhǎo ?",
"Chinese1": "哪个老师最好?",
"Translate1": "Which teacher is the best?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐmen jiā shéi zuì piàoliang ?",
"Chinese1": "你们家谁最漂亮?",
"Translate1": "Who is your most beautiful?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "shéi zuì yǒuqián ?",
"Chinese1": "谁最有钱?",
"Translate1": "Who is the most rich?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "hànyǔ zuì nán 。",
"Chinese1": "汉语最难。",
"Translate1": "The hardest Chinese.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhèzhǒng shì zuì máfan 。",
"Chinese1": "这种事最麻烦。",
"Translate1": "This kind of thing is the most troublesome.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "xiǎogǒu zuì kěài le 。",
"Chinese1": "小狗最可爱了。",
"Translate1": "The puppy is the cutest.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "sìchuāncài zuìlà le 。",
"Chinese1": "四川菜最辣了。",
"Translate1": "Sichuan cuisine is the hottest.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ de zhōngguó péngyou zuì rèqíng le 。",
"Chinese1": "我的中国朋友最热情了。",
"Translate1": "My Chinese friend is the most enthusiastic.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā de xuésheng zuì rènzhēn le 。",
"Chinese1": "他的学生最认真了。",
"Translate1": "His students are the most serious.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "huángshān de fēngjǐng zuìměi le 。",
"Chinese1": "黄山的风景最美了。",
"Translate1": "The scenery of Huangshan is the most beautiful.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "lǎobǎn zuì xǐhuan nǐ le !",
"Chinese1": "老板最喜欢你了!",
"Translate1": "The boss likes you the most!",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ zuìpà shénme ?",
"Chinese1": "你最怕什么?",
"Translate1": "What are you most afraid of?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ zuì ài zhōngguó cài 。",
"Chinese1": "我最爱中国菜。",
"Translate1": "I love Chinese food the most.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "shéi zuì liǎojiě nǐ ?",
"Chinese1": "谁最了解你?",
"Translate1": "Who knows you best?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā zuì tǎoyàn chōuyān de nánrén le 。",
"Chinese1": "她最讨厌抽烟的男人了。",
"Translate1": "She hates the smoking man most.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ zuì xǐhuan shénme yánsè ?",
"Chinese1": "你最喜欢什么颜色?",
"Translate1": "What's your favorite color?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ zuì xǐhuan shénme dòngwù ?",
"Chinese1": "你最喜欢什么动物?",
"Translate1": "What kind of animals do you like best?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nàgè ⋯ ⋯ wǒ bù gēn nǐmen yīqǐ qù le , kěyǐ ma ?",
"Chinese1": "那个⋯⋯我不跟你们一起去了,可以吗?",
"Translate1": "I don't go with you, can I go with you?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ xiǎng chī nàgè ⋯ ⋯ nàgè ⋯ ⋯ húnáncài 。",
"Chinese1": "我想吃那个⋯⋯那个⋯⋯湖南菜。",
"Translate1": "I want to eat that ... that ... Hunan cuisine.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nàgè ⋯ ⋯ wǒ míngtiān bùlái le 。",
"Chinese1": "那个⋯⋯我明天不来了。",
"Translate1": "That ... I won't come tomorrow.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nàgè ⋯ ⋯ zhèyàng zuò bùhǎo bā ?",
"Chinese1": "那个⋯⋯这样做不好吧?",
"Translate1": "That ... is this not good?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nàgè ⋯ ⋯ nǐ kěyǐ zuò wǒ de nǚpéngyou ma ?",
"Chinese1": "那个⋯⋯你可以做我的女朋友吗?",
"Translate1": "Can you be my girlfriend?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nàgè ⋯ ⋯ bùhǎoyìsi , wǒyào zǒu le 。",
"Chinese1": "那个⋯⋯不好意思,我要走了。",
"Translate1": "That ... I'm sorry, I'm leaving.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā hěnpiāoliàng , jiù xiàng nàgè ⋯ ⋯ míngxīng yīyàng 。",
"Chinese1": "她很漂亮,就像那个⋯⋯明星一样。",
"Translate1": "She is very beautiful, just like that, star.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ xiǎng kànkan nǐ mǎi de nàgè ⋯ ⋯ nàgè ⋯ ⋯ shǒujī 。",
"Chinese1": "我想看看你买的那个⋯⋯那个⋯⋯手机。",
"Translate1": "I want to see the one you bought, that ... mobile phone.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nàgè ⋯ ⋯ wǒyào qù kāihuì le 。",
"Chinese1": "那个⋯⋯我要去开会了。",
"Translate1": "That ... I'm going to meet.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "zuótiān nàgè ⋯ ⋯ nàgè ⋯ ⋯ xiǎolóngbāo zhēn hàochī 。",
"Chinese1": "昨天那个⋯⋯那个⋯⋯小笼包真好吃。",
"Translate1": "Yesterday, that 小 小 小 小.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "gōngsī de yuángōng gègè dōu hěn hǎo 。",
"Chinese1": "公司的员工个个都很好。",
"Translate1": "The company's employees are very good.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "tāmen gègè dōu bù xǐhuan dǎyóuxì 。",
"Chinese1": "他们个个都不喜欢打游戏。",
"Translate1": "They don't like playing games.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhège xīngqī tā tiāntiān gěi wǒ dǎdiànhuà 。",
"Chinese1": "这个星期他天天给我打电话。",
"Translate1": "He called me every day this week.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ tiāntiān zǒulù qù gōngsī 。",
"Chinese1": "我天天走路去公司。",
"Translate1": "I walk to the company every day.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "xiànzài jiājiā dōu yǒu shǒujī 。",
"Chinese1": "现在家家都有手机。",
"Translate1": "Everyone has mobile phones now.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhèlǐ de gōngsī jiājiā dōu yòng píngguǒdiànnǎo 。",
"Chinese1": "这里的公司家家都用苹果电脑。",
"Translate1": "The companies here use Apple computers.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ de yīfú jiàn jiàn dōu hěn hǎokàn 。",
"Chinese1": "我的衣服件件都很好看。",
"Translate1": "My clothes are very beautiful.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhèjiā diàn de shūběn běn dōu hěn guì 。",
"Chinese1": "这家店的书本本都很贵。",
"Translate1": "The books in this shop are very expensive.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā cìcì dōu dǎchē lái 。",
"Chinese1": "她次次都打车来。",
"Translate1": "She took a taxi again.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhèxiē xiǎogǒu zhǐ zhǐ dōu hěn kěài 。",
"Chinese1": "这些小狗只只都很可爱。",
"Translate1": "These puppies are only cute.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ bù zài de shíhou , wǒhuì xiǎng nǐ 。",
"Chinese1": "你不在的时候,我会想你。",
"Translate1": "When you are not, I will miss you.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ shàng dàxué de shíhou , yǒu hěnduō péngyou 。",
"Chinese1": "我上大学的时候,有很多朋友。",
"Translate1": "When I was in college, there were many friends.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "shàngkè de shíhou bùyào chī dōngxi 。",
"Chinese1": "上课的时候不要吃东西。",
"Translate1": "Don't eat during class.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "lǎobǎn gōngzuò de shíhou xǐhuan hēkāfēi 。",
"Chinese1": "老板工作的时候喜欢喝咖啡。",
"Translate1": "The boss likes to drink coffee while working.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ shēngqì de shíhou , qǐng nǐ bùyào xiào 。",
"Chinese1": "我生气的时候,请你不要笑。",
"Translate1": "When I am angry, please don't laugh.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "māma bù zàijiā de shíhou , wǒ zìjǐ zuòfàn 。",
"Chinese1": "妈妈不在家的时候,我自己做饭。",
"Translate1": "When my mother is not at home, I cook it myself.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "kāihuì de shíhou bùyào liáotiān 。",
"Chinese1": "开会的时候不要聊天。",
"Translate1": "Don't chat when you meet.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "chī dōngxi de shíhou bùyào shuōhuà 。",
"Chinese1": "吃东西的时候不要说话。",
"Translate1": "Don't talk when you eat.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ kāichē de shíhou huì dǎdiànhuà ma ?",
"Chinese1": "你开车的时候会打电话吗?",
"Translate1": "Will you call when you drive?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "zǒulù de shíhou bùyào wán shǒujī 。",
"Chinese1": "走路的时候不要玩手机。",
"Translate1": "Don't play your phone when walking.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nàgè míngxīng yǐjīng wǔshíduōsuì le 。",
"Chinese1": "那个明星已经五十多岁了。",
"Translate1": "That star is in his fifties.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒmen zǒu le liǎnggè duō xiǎoshí 。",
"Chinese1": "我们走了两个多小时。",
"Translate1": "We have gone for more than two hours.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhège bānyǒu liǎngbǎiduōgè xuésheng 。",
"Chinese1": "这个班有两百多个学生。",
"Translate1": "There are more than two hundred students in this class.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhège bāo sānwànduō kuàiqián 。",
"Chinese1": "这个包三万多块钱。",
"Translate1": "This package is more than 30,000 yuan.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhè běnshū yǒu yīqiānduō yè 。",
"Chinese1": "这本书有一千多页。",
"Translate1": "There are more than 1,000 pages of this book.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā zài guówài zhù le èrshíduōnián le 。",
"Chinese1": "他在国外住了二十多年了。",
"Translate1": "He has lived abroad for more than 20 years.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā zài nàr zhù le èrshíduōtiān le 。",
"Chinese1": "他在那儿住了二十多天了。",
"Translate1": "He has lived there for more than 20 days.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ zuótiān shōudào le sānshí duōtiáo lājī duǎnxìn 。",
"Chinese1": "我昨天收到了三十多条垃圾短信。",
"Translate1": "I received more than 30 spam messages yesterday.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhège chéngshì yǒu liǎngqiānduōnián de lìshǐ 。",
"Chinese1": "这个城市有两千多年的历史。",
"Translate1": "This city has a history of more than 2,000 years.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhuōzi shàng yǒu jǐběnshū 。",
"Chinese1": "桌子上有几本书。",
"Translate1": "There are a few books on the table.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhǐyǒu jǐge rén qùguò nàgè dìfāng 。",
"Chinese1": "只有几个人去过那个地方。",
"Translate1": "Only a few people have been to that place.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "cóng shànghǎi dào dōngjīng zuòfēijī zhǐyào jǐge xiǎoshí 。",
"Chinese1": "从上海到东京坐飞机只要几个小时。",
"Translate1": "It takes only a few hours from Shanghai to Tokyo.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ měitiān dōu yào hē jǐbēi kāfēi 。",
"Chinese1": "我每天都要喝几杯咖啡。",
"Translate1": "I drink a few cups of coffee every day.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "lǎobǎn jīntiān kāi le jǐge zhòngyào de huì 。",
"Chinese1": "老板今天开了几个重要的会。",
"Translate1": "The boss had a few important meetings today.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā zhǐ xiǎngxué jǐshígè hànzì 。",
"Chinese1": "他只想学几十个汉字。",
"Translate1": "He just wants to learn dozens of Chinese characters.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒmen gōngsī yǒu jǐshígè yuángōng 。",
"Chinese1": "我们公司有几十个员工。",
"Translate1": "Our company has dozens of employees.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā xiě guò jǐshí běnshū , wǒ dōu xǐhuan 。",
"Chinese1": "他写过几十本书,我都喜欢。",
"Translate1": "He has written dozens of books and I like it.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhège niánqīng de yǎnyuán yǎnle jǐshíbù diànyǐng 。",
"Chinese1": "这个年轻的演员演了几十部电影。",
"Translate1": "This young actor performed dozens of movies.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "lǎobǎn yǒu jǐliàngchē 。",
"Chinese1": "老板有几辆车。",
"Translate1": "There are several cars in the boss.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ měige yuè dōu huì mǎi jǐjiàn yīfú 。",
"Chinese1": "我每个月都会买几件衣服。",
"Translate1": "I buy a few clothes every month.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhège yuè wǒmen mài le jǐqiān běnshū 。",
"Chinese1": "这个月我们卖了几千本书。",
"Translate1": "We sold thousands of books this month.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "jǐbǎijiā wàiguó gōngsī cānjiā le zhège dàhuì 。",
"Chinese1": "几百家外国公司参加了这个大会。",
"Translate1": "Hundreds of foreign companies participated in the conference.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhè piānwénzhāng yǒu jǐwàngè zì , tàicháng le 。",
"Chinese1": "这篇文章有几万个字,太长了。",
"Translate1": "There are tens of thousands of words in this article, which is too long.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ rènshi yīgè péngyou , tā yǒu jǐbǎi shuāngxié 。",
"Chinese1": "我认识一个朋友,她有几百双鞋。",
"Translate1": "I know a friend, she has hundreds of pairs of shoes.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "tādú le hǎojǐbiàn 。",
"Chinese1": "他读了好几遍。",
"Translate1": "He read it several times.",
"Pinyin2": "",
"Chinese2": "",