-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path5.2.json
More file actions
1124 lines (1124 loc) · 32.5 KB
/
Copy path5.2.json
File metadata and controls
1124 lines (1124 loc) · 32.5 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
[
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "cóngnàyǐhòu , wǒ zàiyě méi qùguò jiǔbā 。",
"Chinese1": "从那以后,我再也没去过酒吧。",
"Translate1": "Since then, I have never been to a bar again.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "chūguó yǐhòu , wǒ zàiyě méichīguò dìdao de zhōngguó cài 。",
"Chinese1": "出国以后,我再也没吃过地道的中国菜。",
"Translate1": "After going abroad, I have never eaten authentic Chinese food.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "fēnshǒu yǐhòu , tāmen zàiyě méijiàn guò 。",
"Chinese1": "分手以后,他们再也没见过。",
"Translate1": "After breaking up, they never saw each other again.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "bìyè yǐhòu , tā zàiyě méihuāguò fùmǔ de qián 。",
"Chinese1": "毕业以后,她再也没花过父母的钱。",
"Translate1": "After graduation, she never spent money from her parents again.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "kǎowánshì yǐhòu , wǒ zàiyě méi pèngguò nàxiē shū 。",
"Chinese1": "考完试以后,我再也没碰过那些书。",
"Translate1": "After the exam, I never touched those books again.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒmen céngjīng yīqǐ qùguò 。",
"Chinese1": "我们曾经一起去过。",
"Translate1": "We used to go together.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā shuō tā céngjīng zuòguò hěnduō shǎshì 。",
"Chinese1": "他说他曾经做过很多傻事。",
"Translate1": "He said he had done a lot of stupid things.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ céngjīng xǐhuan guò nǐ 。",
"Chinese1": "我曾经喜欢过你。",
"Translate1": "I used to like you.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wèile zhǎo qīnshēngfùmǔ , tā céngjīng huā le hěnduō qián 。",
"Chinese1": "为了找亲生父母,她曾经花了很多钱。",
"Translate1": "In order to find her biological parents, she once spent a lot of money.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā céngjīng shì wǒ lǎobǎn 。",
"Chinese1": "他曾经是我老板。",
"Translate1": "He used to be my boss.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhèlǐ céngjīng shì yīgè xuéxiào 。",
"Chinese1": "这里曾经是一个学校。",
"Translate1": "There used to be a school here.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "lǎoshī zàisān qiángdiào zhècì kǎoshì duì wǒmen hěn zhòngyào 。",
"Chinese1": "老师再三强调这次考试对我们很重要。",
"Translate1": "The teacher repeatedly emphasized that this exam is very important to us.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā zàisān yóuyù zhīhòu , xuǎnzé le fàngqì bǐsài 。",
"Chinese1": "她再三犹豫之后,选择了放弃比赛。",
"Translate1": "After repeated hesitation, she chose to give up the game.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒmen zàisān kǎolǜ guòhòu , juédìng mǎnzú nǐ de zhège yāoqiú 。",
"Chinese1": "我们再三考虑过后,决定满足你的这个要求。",
"Translate1": "After careful consideration, we have decided to meet your request.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ zàisān tíxǐng nǐ chūguó lǚyóu yīdìng yào xiǎoxīn nǐ de qiánbāo 。",
"Chinese1": "我再三提醒你出国旅游一定要小心你的钱包。",
"Translate1": "I remind you again and again to be careful with your wallet when traveling abroad.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā jiǎnzhí shì gè móguǐ !",
"Chinese1": "他简直是个魔鬼!",
"Translate1": "He is a monster!",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā chànggē jiǎnzhí tài hǎotīng le !",
"Chinese1": "他唱歌简直太好听了!",
"Translate1": "He sings so beautifully!",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ nánpéngyou jiǎnzhí tàishuài le !",
"Chinese1": "你男朋友简直太帅了!",
"Translate1": "Your boyfriend is simply too handsome!",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ jiǎnzhí bù míngbai tā wèishénme zhème shǎ !",
"Chinese1": "我简直不明白他为什么这么傻!",
"Translate1": "I just don't understand why he is so stupid!",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā jiǎnzhí piàoliang jíle !",
"Chinese1": "她简直漂亮极了!",
"Translate1": "She is simply beautiful!",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā yīxiàng shì gè hǎo xuésheng , zěnme kěnéng huì zuòbì ne ?",
"Chinese1": "他一向是个好学生,怎么可能会作弊呢?",
"Translate1": "He has always been a good student, how could he cheat?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhōngguó rén yīxiàng bǎ hóngsè shìwéi jíxiáng xǐqìng de yánsè 。",
"Chinese1": "中国人一向把红色视为吉祥喜庆的颜色。",
"Translate1": "The Chinese have always regarded red as an auspicious and festive color.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "yúnnán de yǔjì yīxiàng láide hěn tūrán 。",
"Chinese1": "云南的雨季一向来得很突然。",
"Translate1": "The rainy season in Yunnan has always come very suddenly.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā de tàidu yīxiàng hěn rènzhēn 。",
"Chinese1": "他的态度一向很认真。",
"Translate1": "His attitude has always been very serious.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ qù de shíhou tā bù zàijiā , suǒyǐ wǒ báipǎo le yītàng 。",
"Chinese1": "我去的时候他不在家,所以我白跑了一趟。",
"Translate1": "He wasn't home when I went, so I made the trip for nothing.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "bùhǎoyìsi , ràng nǐ báimáng le yīgè zǎoshang , wǒmen lǎobǎn jīntiān lái buliǎo le 。",
"Chinese1": "不好意思,让你白忙了一个早上,我们老板今天来不了了。",
"Translate1": "Sorry to keep you busy all morning, our boss can't come today.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "míngtiān bùkǎo zhōngwén , xiǎowáng báibái zhǔnbèi le yītiān 。",
"Chinese1": "明天不考中文,小王白白准备了一天。",
"Translate1": "There will be no Chinese test tomorrow, and Xiao Wang has spent a whole day preparing for it in vain.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā méiyǒu lái , wǒ zài fēijīchǎng báibái děng le tā sìge xiǎoshí 。",
"Chinese1": "他没有来,我在飞机场白白等了他四个小时。",
"Translate1": "He didn't come, and I waited for him at the airport for four hours in vain.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ qù mǎi zǎofàn de shíhou shùnbiàn bāng wǒ dàibēi kāfēibā 。",
"Chinese1": "你去买早饭的时候顺便帮我带杯咖啡吧。",
"Translate1": "Bring me a cup of coffee when you go to buy breakfast.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ qù chāoshì néng bùnéng shùnbiàn bāng wǒ mǎi yīpíng niúnǎi ?",
"Chinese1": "你去超市能不能顺便帮我买一瓶牛奶?",
"Translate1": "Can you buy me a bottle of milk when you go to the supermarket?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "lǎobǎn qù jiàn kèhù , shùnbiàn chī le wǔfàn 。",
"Chinese1": "老板去见客户,顺便吃了午饭。",
"Translate1": "The boss went to meet the client and had lunch by the way.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ xiàzhōu qù běijīng chūchāi , shùnbiànqù kàn yīgè péngyou 。",
"Chinese1": "我下周去北京出差,顺便去看一个朋友。",
"Translate1": "I'm on a business trip to Beijing next week, and I stopped by to see a friend.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ chūmén de shíhou dōu huì shùnbiàn rēng lājī 。",
"Chinese1": "我出门的时候都会顺便扔垃圾。",
"Translate1": "I always take out the trash when I go out.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ jiàn tā de shíhou shùnbiàn wèn yīxià tā zhōumò lái bùlái 。",
"Chinese1": "你见他的时候顺便问一下他周末来不来。",
"Translate1": "When you see him, just ask him if he's coming on the weekend.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhōng xīfāng de wénhuà chā hěnduō 。",
"Chinese1": "中西方的文化差很多。",
"Translate1": "The cultures of China and the West are very different.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhè liǎnggè cí de yìsi chàbuduō , dànshì yòngfǎ chā hěnduō 。",
"Chinese1": "这两个词的意思差不多,但是用法差很多。",
"Translate1": "These two words have similar meanings, but are used very differently.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā hé tā lǎogong de niánlíng chā hěnduō 。",
"Chinese1": "她和她老公的年龄差很多。",
"Translate1": "There is a big age difference between her and her husband.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "gōngsī jīnnián de shōurù gēn qùnián chā hěnduō 。",
"Chinese1": "公司今年的收入跟去年差很多。",
"Translate1": "The company's revenue this year is much lower than last year.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhège fúwùyuán hé jīnglǐ de fúwùtàidù chā hěnduō 。",
"Chinese1": "这个服务员和经理的服务态度差很多。",
"Translate1": "The service attitude of the waiter and the manager is very poor.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ de shēnghuóxíguàn gēn wǒ fùmǔ chā hěnduō 。",
"Chinese1": "我的生活习惯跟我父母差很多。",
"Translate1": "My living habits are very different from those of my parents.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "liǎnggè lǎoshī dōu hěn hǎo , bùguò tāmen de xuélì chā hěnduō 。",
"Chinese1": "两个老师都很好,不过他们的学历差很多。",
"Translate1": "Both teachers are very good, but their academic qualifications are quite different.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhèzhǒng cáiliào kěyǐ wúxiàn de huíshōu hé lìyòng 。",
"Chinese1": "这种材料可以无限地回收和利用。",
"Translate1": "This material can be recycled and reused infinitely.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "yùfáng hé zhìlǐ wūrǎn xūyào suǒyǒurén gòngtóng de nǔlì 。",
"Chinese1": "预防和治理污染需要所有人共同的努力。",
"Translate1": "Prevention and control of pollution requires the joint efforts of all.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ jiùshì xǐhuan tā rènxìng hé tiáopí , zěnme le ?",
"Chinese1": "我就是喜欢她任性和调皮,怎么了?",
"Translate1": "I just like her wayward and mischievous, what's wrong?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā nàme dānchún hé tiānzhēn , nǐ zěnme kěyǐ zhèyàng duì tā ?",
"Chinese1": "她那么单纯和天真,你怎么可以这样对她?",
"Translate1": "She is so pure and innocent, how can you treat her like this?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā ānjìng hé tiánměi de xiàoróng ràng wǒ juéde wēnnuǎn 。",
"Chinese1": "她安静和甜美的笑容让我觉得温暖。",
"Translate1": "Her quiet and sweet smile makes me feel warm.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhèzhǒng kǒngjù hé dānxīn bùshì méiyǒu dàoli 。",
"Chinese1": "这种恐惧和担心不是没有道理。",
"Translate1": "This fear and worry is not without reason.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ shénme shíhou cái kěyǐ xiàng tā nàyàng lěngjìng hé lǐxìng ?",
"Chinese1": "你什么时候才可以像他那样冷静和理性?",
"Translate1": "When will you be as calm and rational as him?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "dàjiā dōu yǒudiǎnlěi le , yào bù xiūxi yīhuìr bā 。",
"Chinese1": "大家都有点累了,要不休息一会儿吧。",
"Translate1": "Everyone is a little tired, why don't you take a break.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "yào bù wǒmen yīqǐ qù bā , yīgè rénqù méiyìsi 。",
"Chinese1": "要不我们一起去吧,一个人去没意思。",
"Translate1": "Why don't we go together, it's boring to go alone.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhège xīngqī wǒ bǐjiàománg , yào bù xiàgèxīngqī jiàn ?",
"Chinese1": "这个星期我比较忙,要不下个星期见?",
"Translate1": "I'm busy this week, how about seeing you next week?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "yào bù wǒmen huàngè dìfāng bā , zhèlǐ tàichǎo le 。",
"Chinese1": "要不我们换个地方吧,这里太吵了。",
"Translate1": "Why don't we change places, it's too noisy here.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "yào bù nǐ xiān zǒu bā , wǒ hái méi zuò wán 。",
"Chinese1": "要不你先走吧,我还没做完。",
"Translate1": "Why don't you go first, I'm not done yet.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "xiàyǔ le , yào bù míngtiān qù bā 。",
"Chinese1": "下雨了,要不明天去吧。",
"Translate1": "It's raining, why don't we go tomorrow.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhème yuǎn , yào bù wǒ kāichē sòng nǐ qù ?",
"Chinese1": "这么远,要不我开车送你去?",
"Translate1": "It's so far away, why don't I drive you there?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ xiān chī bā , yàobùrán fàn jiù liáng le 。",
"Chinese1": "你先吃吧,要不然饭就凉了。",
"Translate1": "You should eat first, or the food will be cold.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "dǎchē bā , yào bùhuì chídào de 。",
"Chinese1": "打车吧,要不会迟到的。",
"Translate1": "Take a taxi, or you won't be late.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "kuài huíjiābā , yào bù nǐ bàmā huì dānxīn de 。",
"Chinese1": "快回家吧,要不你爸妈会担心的。",
"Translate1": "Go home quickly, or your parents will worry.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐmen zhèyàng zuò qíshí shì bǐcǐ shānghài 。",
"Chinese1": "你们这样做其实是彼此伤害。",
"Translate1": "You are actually hurting each other by doing this.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "jiéhūn yǐqián fūqī yīnggāi duōhuā shíjiān bǐcǐ liǎojiě 。",
"Chinese1": "结婚以前夫妻应该多花时间彼此了解。",
"Translate1": "Couples should spend more time getting to know each other before getting married.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒmen shì yīgè bùmén de , gōngzuò shàngyào bǐcǐ pèihé 。",
"Chinese1": "我们是一个部门的,工作上要彼此配合。",
"Translate1": "We are in one department and we need to cooperate with each other in our work.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "rúguǒ nǐmen bùnéng bǐcǐ xìnrèn , zhècì hézuò bùtàikěnéng chénggōng 。",
"Chinese1": "如果你们不能彼此信任,这次合作不太可能成功。",
"Translate1": "If you can't trust each other, this collaboration is unlikely to succeed.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐmen yīnggāi duō guānzhù bǐcǐ de yōudiǎn 。",
"Chinese1": "你们应该多关注彼此的优点。",
"Translate1": "You should pay more attention to each other's strengths.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā gēn rén shuōhuà de shíhou chángcháng hūshì duìfāng de gǎnshòu 。",
"Chinese1": "他跟人说话的时候常常忽视对方的感受。",
"Translate1": "When he talks to people, he often ignores the other person's feelings.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ dàoqiàn le , dànshì duìfāng bù jiēshòu 。",
"Chinese1": "我道歉了,但是对方不接受。",
"Translate1": "I apologized, but the other party didn't accept it.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ wèn le rénjiā , dànshì duìfāng bù tóngyì 。",
"Chinese1": "我问了人家,但是对方不同意。",
"Translate1": "I asked someone, but the other party disagreed.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ nàyàng shuōhuì ràng duìfāng hěn bù shūfu de 。",
"Chinese1": "你那样说会让对方很不舒服的。",
"Translate1": "It will make the other person very uncomfortable if you say that.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "gēn péngyou chǎojià de shíhou , wǒmen dōu xīwàng duìfāng néngxiān dàoqiàn 。",
"Chinese1": "跟朋友吵架的时候,我们都希望对方能先道歉。",
"Translate1": "When we quarrel with our friends, we all hope that the other party will apologize first.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ shì wǒ suǒyǒu péngyou dāngzhōng zuì cōngming de yīgè 。",
"Chinese1": "你是我所有朋友当中最聪明的一个。",
"Translate1": "You are the smartest of all my friends.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "zài zhè yībǎigè xuǎnshǒu dāngzhōng wǒ biǎoxiàn dé zuìchūsè 。",
"Chinese1": "在这一百个选手当中我表现得最出色。",
"Translate1": "Among the hundred players, I performed the best.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒmen zhǐjiàn guò yīcì , bǐcǐ bùshì hěn liǎojiě 。",
"Chinese1": "我们只见过一次,彼此不是很了解。",
"Translate1": "We only met once and didn't know each other very well.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒmen shì yīgè tuánduì , bǐcǐ yīnggāi duō gōutōng 。",
"Chinese1": "我们是一个团队,彼此应该多沟通。",
"Translate1": "We are a team and we should communicate more with each other.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ hěn zūnzhòng wǒ de duìshǒu , wǒ xīwàng bǐcǐ dōu néng yǒu hǎo de biǎoxiàn 。",
"Chinese1": "我很尊重我的对手,我希望彼此都能有好的表现。",
"Translate1": "I have a lot of respect for my opponents and I hope each other can perform well.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒmen shì yījiārén , bìxū hǎohǎo zhàogu bǐcǐ 。",
"Chinese1": "我们是一家人,必须好好照顾彼此。",
"Translate1": "We are family and we have to take good care of each other.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "hǎo péngyou zǒngshì huì péibàn bǐcǐ 。",
"Chinese1": "好朋友总是会陪伴彼此。",
"Translate1": "Best friends are always there for each other.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā mǎi le yīliàngchē 。",
"Chinese1": "他买了一辆车。",
"Translate1": "He bought a car.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "māma zuò le hěnduō cài 。",
"Chinese1": "妈妈做了很多菜。",
"Translate1": "Mom cooks a lot of dishes.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒmen chī le yìndù cài 。",
"Chinese1": "我们吃了印度菜。",
"Translate1": "We ate Indian food.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā chuān le zuì piàoliang de qúnzi 。",
"Chinese1": "她穿了最漂亮的裙子。",
"Translate1": "She is wearing the most beautiful dress.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ zuótiān kàn le diànyǐng 。",
"Chinese1": "我昨天看了电影。",
"Translate1": "I watched a movie yesterday.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ hé tóngshì yīqǐ chīlefàn 。",
"Chinese1": "我和同事一起吃了饭。",
"Translate1": "I had dinner with my colleagues.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒmen zài dòngwùyuán hé xióngmāo pāi le zhào 。",
"Chinese1": "我们在动物园和熊猫拍了照。",
"Translate1": "We took pictures with pandas at the zoo.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā nǚpéngyou wèile tācí le gōngzuò 。",
"Chinese1": "他女朋友为了他辞了工作。",
"Translate1": "His girlfriend quit her job for him.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tāmen shùnlì de dào le nánjí 。",
"Chinese1": "他们顺利地到了南极。",
"Translate1": "They arrived at the South Pole successfully.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ dào le gěi wǒ dǎdiànhuà 。",
"Chinese1": "你到了给我打电话。",
"Translate1": "Call me when you arrive.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒxià le kèqù zhǎo nǐ 。",
"Chinese1": "我下了课去找你。",
"Translate1": "I went to find you after class.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā xiǎng bìleyè jiù jiéhūn 。",
"Chinese1": "她想毕了业就结婚。",
"Translate1": "She wants to get married after graduation.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ dǎsuàn shēng le háizi jiù huíqu gōngzuò 。",
"Chinese1": "我打算生了孩子就回去工作。",
"Translate1": "I plan to go back to work after the baby is born.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā zuò gāotiě qù le guǎngzhōu 。",
"Chinese1": "他坐高铁去了广州。",
"Translate1": "He took the high-speed train to Guangzhou.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ de yīgè nántóngshì bāng wǒ bān le jiā 。",
"Chinese1": "我的一个男同事帮我搬了家。",
"Translate1": "A male colleague of mine helped me move.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "lǎobǎn qǐng wǒmen chī le yīdùn dàcān 。",
"Chinese1": "老板请我们吃了一顿大餐。",
"Translate1": "The boss treated us to a big meal.",
"Pinyin2": "",
"Chinese2": "",