-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path4.1.2.json
2257 lines (2257 loc) · 63.3 KB
/
4.1.2.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
[
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ jiù qùguò yīcì 。",
"Chinese1": "我就去过一次。",
"Translate1": "I've only been there once.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ zǎofàn jiù chī le yīpiàn miànbāo 。",
"Chinese1": "我早饭就吃了一片面包。",
"Translate1": "I ate a slice of bread for breakfast.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ jiù diǎn le liǎnggè cài ?",
"Chinese1": "你就点了两个菜?",
"Translate1": "You just ordered two dishes?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā de shì , wǒmen jiù zhīdào yīdiǎndiǎn 。",
"Chinese1": "他的事,我们就知道一点点。",
"Translate1": "We know a little bit about him.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā zài wǒmen gōngsī jiù gōngzuò le liǎnggè yuè 。",
"Chinese1": "她在我们公司就工作了两个月。",
"Translate1": "She has worked in our company for two months.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhèlǐ jiù yīgè cèsuǒ ?",
"Chinese1": "这里就一个厕所?",
"Translate1": "Just a toilet here?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐmen jiā jiù yīgè háizi ma ?",
"Chinese1": "你们家就一个孩子吗?",
"Translate1": "Is there only one child in your family?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ jiù yīgè gēge 。",
"Chinese1": "我就一个哥哥。",
"Translate1": "i only have one brother",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā zài shànghǎi jiù yīgè péngyou 。",
"Chinese1": "他在上海就一个朋友。",
"Translate1": "He is just a friend in Shanghai.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒmen gōngsī jiù sānge yuángōng 。",
"Chinese1": "我们公司就三个员工。",
"Translate1": "Our company has only three employees.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "méixiǎngdào nǐ jìngrán dāngzhe lǎoshī de miàn sāhuǎng 。",
"Chinese1": "没想到你竟然当着老师的面撒谎。",
"Translate1": "I didn't expect you to lie in front of the teacher.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhèshì yījiàn ràng rén nánguò de shìqing , nǐ jìngrán háixiào ?",
"Chinese1": "这是一件让人难过的事情,你竟然还笑?",
"Translate1": "It's a sad thing, and you're still laughing?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā nàme nǔlì , jìngrán méikǎo jígé !",
"Chinese1": "他那么努力,竟然没考及格!",
"Translate1": "He worked so hard and failed the exam!",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nàgè rénpiàn le nǐ de qián , nǐ jìng bùshēng tā de qì ?",
"Chinese1": "那个人骗了你的钱,你竟不生他的气?",
"Translate1": "You are not angry with that person who cheated you of your money?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "dàjiā dōu yǐwéi tā bùhuì dāying , kěshì tā jìngrán dāying le 。",
"Chinese1": "大家都以为他不会答应,可是他竟然答应了。",
"Translate1": "Everyone thought he would not agree, but he actually agreed.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhème fùzá de xiàngmù , jìngrán zhème kuài jiù wánchéng le 。",
"Chinese1": "这么复杂的项目,竟然这么快就完成了。",
"Translate1": "Such a complex project was completed so quickly.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhège cài hěn nánchī , qiānwàn bùyào diǎn !",
"Chinese1": "这个菜很难吃,千万不要点!",
"Translate1": "This dish is terrible, don't order it!",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nàli tài wēixiǎn le , qiānwàn bùyào qù !",
"Chinese1": "那里太危险了,千万不要去!",
"Translate1": "It's too dangerous there, don't go there!",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tāmen de chǎnpǐn shì jiǎ de , nǐ qiānwàn bùyào mǎi !",
"Chinese1": "他们的产品是假的,你千万不要买!",
"Translate1": "Their products are fake, you should never buy them!",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā bùshì shénme hǎorén , qiānwàn bùyào xiāngxìn tā !",
"Chinese1": "他不是什么好人,千万不要相信他!",
"Translate1": "He is not a good person, don't trust him!",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "guò mǎlù qiānwàn yào xiǎoxīn 。",
"Chinese1": "过马路千万要小心。",
"Translate1": "Be careful when crossing the road.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhèjù huà nǐ qiānwàn yàojì zài xīnli 。",
"Chinese1": "这句话你千万要记在心里。",
"Translate1": "You must keep this sentence in your heart.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "yīgè rénqù lǚxíng qiānwàn yào zhùyìānquán 。",
"Chinese1": "一个人去旅行千万要注意安全。",
"Translate1": "Be careful when traveling alone.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "chūmén yǐqián qiānwàn yào bǎ ménsuǒ hǎo 。",
"Chinese1": "出门以前千万要把门锁好。",
"Translate1": "Be sure to lock the door before going out.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "yǔtiān lùhuá , qiānwàn yàokāi màndiǎn 。",
"Chinese1": "雨天路滑,千万要开慢点。",
"Translate1": "The road is slippery in rainy days, so drive slowly.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nándào nǐ zhēnde xiāngxìn tā ma ?",
"Chinese1": "难道你真的相信他吗?",
"Translate1": "Do you really trust him?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "jīntiān shì wǒ de shēngrì , nándào nǐ bù zhīdào ma ?",
"Chinese1": "今天是我的生日,难道你不知道吗?",
"Translate1": "Today is my birthday, don't you know?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā zhème shuài , yòu zhème yǒuqián , nándào nǐ bùxiǎng jiàgěi tā ma ?",
"Chinese1": "他这么帅,又这么有钱,难道你不想嫁给他吗?",
"Translate1": "He is so handsome and rich, don't you want to marry him?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "xiān xǐshǒu zài chī 。",
"Chinese1": "先洗手再吃。",
"Translate1": "Wash your hands before eating.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ xǐhuan xiān xǐzǎo , zài shuìjiào 。",
"Chinese1": "我喜欢先洗澡,再睡觉。",
"Translate1": "I like to take a shower before going to bed.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "qǐng nǐ xiān mǎipiào zài jìnqù 。",
"Chinese1": "请你先买票再进去。",
"Translate1": "Please buy a ticket before entering.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ yào xiān zuòzuòyè , zài kàndiànshì 。",
"Chinese1": "你要先做作业,再看电视。",
"Translate1": "You have to do your homework before watching TV.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ xiǎng xiān zhǎo gōngzuò , zài bānjiā 。",
"Chinese1": "我想先找工作,再搬家。",
"Translate1": "I want to find a job first and then move.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "xiān chīfàn zàishuō 。",
"Chinese1": "先吃饭再说。",
"Translate1": "Let's eat first.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "xiān xiūxi yīxià zàishuō 。",
"Chinese1": "先休息一下再说。",
"Translate1": "Let's take a break first.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ xiān kàn wán zàishuō 。",
"Chinese1": "你先看完再说。",
"Translate1": "You read it first.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ xiān wèn yīxià lǎobǎn zàishuō 。",
"Chinese1": "我先问一下老板再说。",
"Translate1": "I'll ask the boss first.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐmen xiān tǎolùnyīxià zàishuō 。",
"Chinese1": "你们先讨论一下再说。",
"Translate1": "Let's discuss it first.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "dàrén hěn xǐhuan zhège cāntīng , háizi men yě dōu hěn xǐhuan 。",
"Chinese1": "大人很喜欢这个餐厅,孩子们也都很喜欢。",
"Translate1": "The adults love this restaurant, and so do the kids.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā hěn gāo , tā de liǎnggè dìdi yě dōu bǐjiào gāo 。",
"Chinese1": "他很高,他的两个弟弟也都比较高。",
"Translate1": "He is tall, and his two younger brothers are also taller.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "lǎobǎn jiābān , nǐmen yě dōu yào jiābān ma ?",
"Chinese1": "老板加班,你们也都要加班吗?",
"Translate1": "The boss works overtime, do you all have to work overtime too?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒmen yě dōu méi chīfàn , yīqǐ qù bā 。",
"Chinese1": "我们也都没吃饭,一起去吧。",
"Translate1": "We didn't even eat, let's go together.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhèxiē bù guì , nàxiē yě dōu bùguì 。",
"Chinese1": "这些不贵,那些也都不贵。",
"Translate1": "These are not expensive, and those are not expensive either.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ méi qùguò měiguó , wǒ de jiārén yě dōu méi qùguò 。",
"Chinese1": "我没去过美国,我的家人也都没去过。",
"Translate1": "I've never been to America, and neither has any of my family.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhège lǎoshī tǐng niánqīng de 。",
"Chinese1": "这个老师挺年轻的。",
"Translate1": "This teacher is quite young.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ nánpéngyou tǐngshuài de 。",
"Chinese1": "你男朋友挺帅的。",
"Translate1": "Your boyfriend is very handsome.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "zuìjìn dàjiā dōu tǐng máng de 。",
"Chinese1": "最近大家都挺忙的。",
"Translate1": "Everyone has been very busy recently.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhèjiàn yīfú dàxiǎo tǐng héshì de 。",
"Chinese1": "这件衣服大小挺合适的。",
"Translate1": "This dress is a good size.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tājiā bùshì tǐng yǒuqián de ma ?",
"Chinese1": "他家不是挺有钱的吗?",
"Translate1": "Isn't his family quite rich?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒmen dōu tǐng xiǎng nǐ de 。",
"Chinese1": "我们都挺想你的。",
"Translate1": "We all miss you.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ tǐng xǐhuan zhèfèn gōngzuò de 。",
"Chinese1": "我挺喜欢这份工作的。",
"Translate1": "I quite like this job.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ nǚér tǐngpà tā bàba de 。",
"Chinese1": "我女儿挺怕她爸爸的。",
"Translate1": "My daughter is terrified of her father.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nàjiànshì wǒ tǐng hòuhuǐ de 。",
"Chinese1": "那件事我挺后悔的。",
"Translate1": "I regret that very much.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ bùshì tǐng ài tā de ma ?",
"Chinese1": "你不是挺爱他的吗?",
"Translate1": "Don't you love him a lot?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ nǎinai bùchī ròu , zhǐ chī shūcài dòufu shénme de 。",
"Chinese1": "我奶奶不吃肉,只吃蔬菜、豆腐什么的。",
"Translate1": "My grandma doesn't eat meat, she only eats vegetables, tofu and so on.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ xǐhuan shíyòng de lǐwù , shǒubiǎo yīfú shū shénme de 。",
"Chinese1": "我喜欢实用的礼物,手表、衣服、书什么的。",
"Translate1": "I like practical gifts, watches, clothes, books, whatever.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒmen jiànmiàn yībān jiùshì chīfàn liáotiān shénme de 。",
"Chinese1": "我们见面一般就是吃饭、聊天什么的。",
"Translate1": "We usually meet to eat, chat and so on.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "míngtiān qù yěcān , wǒmen yào bùyào mǎi yīxiē shuǐguǒ língshí shénme de ?",
"Chinese1": "明天去野餐,我们要不要买一些水果、零食什么的?",
"Translate1": "We're going to have a picnic tomorrow. Shall we buy some fruit, snacks or something?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "pǎobù yóuyǒng lánqiú shénme de , zhèxiē yùndòng tā dōu xǐhuan 。",
"Chinese1": "跑步、游泳、篮球什么的,这些运动他都喜欢。",
"Translate1": "Running, swimming, basketball and so on, he likes all these sports.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "chángchéng gùgōng shénme de , dōu shì běijīng hěn yǒumíng de jǐngdiǎn 。",
"Chinese1": "长城、故宫什么的,都是北京很有名的景点。",
"Translate1": "The Great Wall and the Forbidden City are all famous attractions in Beijing.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "yīgè rénzhù , xǐyīfú zuòfàn shénme de dōu yào zìjǐ zuò 。",
"Chinese1": "一个人住,洗衣服、做饭什么的都要自己做。",
"Translate1": "Living alone, I have to do my own laundry, cooking and so on.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "diànshì xǐyījī shénme de , wǒ bàba dōu huì xiū 。",
"Chinese1": "电视、洗衣机什么的,我爸爸都会修。",
"Translate1": "My dad can fix TV, washing machine and so on.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "xīguā bōluó pútao děngděng , wǒ dōu xǐhuan chī 。",
"Chinese1": "西瓜、菠萝、葡萄等等,我都喜欢吃。",
"Translate1": "Watermelon, pineapple, grapes, etc., I like to eat.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ bàba hěn xǐhuan yùndòng , bǐrú pǎobù yóuyǒng dǎ yǔmáoqiú děngděng 。",
"Chinese1": "我爸爸很喜欢运动,比如跑步、游泳、打羽毛球等等。",
"Translate1": "My father likes sports very much, such as running, swimming, playing badminton and so on.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒmen gōngsī yǒu shìchǎngbù shèjìbù jìshùbù děngděng 。",
"Chinese1": "我们公司有市场部、设计部、技术部等等。",
"Translate1": "Our company has marketing department, design department, technology department and so on.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "běijīng shànghǎi guǎngzhōu děng chéngshì de jīngjì dōu hěn fādá 。",
"Chinese1": "北京、上海、广州等城市的经济都很发达。",
"Translate1": "The economies of Beijing, Shanghai, Guangzhou and other cities are very developed.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhèjiā cāntīng wǒ méi qùguò , bùguò wǒ tīngshuō hái bùcuò 。",
"Chinese1": "这家餐厅我没去过,不过我听说还不错。",
"Translate1": "I haven't been to this restaurant, but I hear it's pretty good.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhège xuésheng hěn cōngming , bùguò yǒudiǎn lǎn 。",
"Chinese1": "这个学生很聪明,不过有点懒。",
"Translate1": "The student is very smart, but a bit lazy.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nàr de tiānqì bùtàihǎo , bùguò wǒmen wándé hěn kāixīn 。",
"Chinese1": "那儿的天气不太好,不过我们玩得很开心。",
"Translate1": "The weather there was not very good, but we had a good time.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā shì dōngběi rén , bùguò tā méiyǒu kǒuyin 。",
"Chinese1": "他是东北人,不过他没有口音。",
"Translate1": "He is from the Northeast, but he has no accent.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā shuō dé bùcuò , bùguò bù rènshi hànzì 。",
"Chinese1": "他说得不错,不过不认识汉字。",
"Translate1": "He speaks well, but he doesn't know Chinese characters.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ de qiánbāo diū le , bùguò méi diū shénme zhòngyào de dōngxi 。",
"Chinese1": "我的钱包丢了,不过没丢什么重要的东西。",
"Translate1": "I lost my wallet, but nothing important.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "gānglái de shíhou hěnxiǎngjiā , bùguò xiànzài xíguàn le 。",
"Chinese1": "刚来的时候很想家,不过现在习惯了。",
"Translate1": "I was homesick when I first came here, but I'm used to it now.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ kěyǐ cānjiā , bùguò yǒugè tiáojiàn 。",
"Chinese1": "你可以参加,不过有个条件。",
"Translate1": "You can participate, but on one condition.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā hái zài kǎolǜ , bùguò wǒ yǐjīng juédìng le 。",
"Chinese1": "他还在考虑,不过我已经决定了。",
"Translate1": "He's still thinking about it, but I've made up my mind.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ kàn dàjiā dōu mǎi le , yúshì wǒ yě mǎi le 。",
"Chinese1": "我看大家都买了,于是我也买了。",
"Translate1": "I saw that everyone bought it, so I bought it too.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "zuótiān tūrán xiàyǔ le , yúshì wǒmen qǔxiāo le yěcān de jìhuà 。",
"Chinese1": "昨天突然下雨了,于是我们取消了野餐的计划。",
"Translate1": "It rained suddenly yesterday, so we canceled our picnic plan.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā shízài tàilǎn le , yúshì lǎobǎn jiù bǎ tā cí le 。",
"Chinese1": "他实在太懒了,于是老板就把他辞了。",
"Translate1": "He was so lazy that the boss fired him.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā jīngcháng suíbiàn kāiwánxiào , yīncǐ , dàjiā dōu bù xǐhuan gēn tā shuōhuà 。",
"Chinese1": "他经常随便开玩笑,因此,大家都不喜欢跟他说话。",
"Translate1": "He often jokes casually, so no one likes to talk to him.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ xūyào chīyào 。",
"Chinese1": "你需要吃药。",
"Translate1": "You need to take medicine.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒyào dàbēi , bùyào bīng , háiyǒu , shǎo fàngtáng 。",
"Chinese1": "我要大杯,不要冰,还有,少放糖。",
"Translate1": "I want a large glass, no ice, and less sugar.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "bùyào yībiān chīfàn yībiān shuōhuà 。",
"Chinese1": "不要一边吃饭一边说话。",
"Translate1": "Don't talk while eating.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "kǎoshì de shíhou bùyào shuōhuà 。",
"Chinese1": "考试的时候不要说话。",
"Translate1": "Don't talk during the test.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tāmen bù xiǎngyào háizi 。",
"Chinese1": "他们不想要孩子。",
"Translate1": "They don't want children.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "jiǔdiàn shéi láidìng ?",
"Chinese1": "酒店谁来订?",
"Translate1": "Who will book the hotel?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "xiàbān yǐhòu zǎodiǎn huílai 。",
"Chinese1": "下班以后早点回来。",
"Translate1": "Come back early after get off work.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "jīntiān yào zuò wán zhège bàogào 。",
"Chinese1": "今天要做完这个报告。",
"Translate1": "Finish the report today.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "rùzhù qiányào fù yājīn 。",
"Chinese1": "入住前要付押金。",
"Translate1": "A deposit is required before check-in.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "xiānsheng , zhèlǐ bùnéng chōuyān 。",
"Chinese1": "先生,这里不能抽烟。",
"Translate1": "No smoking here, sir.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhège kèwén tàinán le , wǒ bùxiǎng xué 。",
"Chinese1": "这个课文太难了,我不想学。",
"Translate1": "This text is too difficult, I don't want to learn it.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "xīwàng nǐ bùyào zài chídào le 。",
"Chinese1": "希望你不要再迟到了。",
"Translate1": "Hope you are not late again.",
"Pinyin2": "",
"Chinese2": "",