-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path5.3.json
More file actions
1146 lines (1146 loc) · 31.4 KB
/
5.3.json
File metadata and controls
1146 lines (1146 loc) · 31.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "dàxióngmāo ma , dàjiā dōu xǐhuan 。",
"Chinese1": "大熊猫嘛,大家都喜欢。",
"Translate1": "Everyone likes giant pandas.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "shēchǐpǐn ma , yīdìng bù piányi 。",
"Chinese1": "奢侈品嘛,一定不便宜。",
"Translate1": "Luxury, it must not be cheap.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "háizi ma , bù dǒng zhèxiē hěn zhèngcháng 。",
"Chinese1": "孩子嘛,不懂这些很正常。",
"Translate1": "Children, it is normal to not understand these things.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "lǎobǎn qǐngkè ma , dāngrán yào dàfāng 。",
"Chinese1": "老板请客嘛,当然要大方。",
"Translate1": "The boss treats guests, of course he must be generous.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhè shì shéi de bǐ ne ?",
"Chinese1": "这是谁的笔呢?",
"Translate1": "Whose pen is this?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā qù nǎr le ne ?",
"Chinese1": "他去哪儿了呢?",
"Translate1": "Where did he go?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "zěnme huì ne ?",
"Chinese1": "怎么会呢?",
"Translate1": "how could be?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ qùbùqù guàngjiē ?",
"Chinese1": "你去不去逛街?",
"Translate1": "Are you going shopping?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ yǒu jiàn guò nàgè rén ma ?",
"Chinese1": "你有见过那个人吗?",
"Translate1": "Have you ever met that person?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ yǒu zìjǐ zuòguò fàn ma ?",
"Chinese1": "你有自己做过饭吗?",
"Translate1": "Have you ever cooked your own meals?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ yǒu zài zuò jiānzhí ma ?",
"Chinese1": "你有在做兼职吗?",
"Translate1": "Are you working part-time?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ yǒu zài kǎolǜ gēn tā fēnshǒu 。",
"Chinese1": "我有在考虑跟她分手。",
"Translate1": "I'm thinking about breaking up with her.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒmen chūchāi dōu zhù sānxīngjí yǐshàng de jiǔdiàn 。",
"Chinese1": "我们出差都住三星级以上的酒店。",
"Translate1": "We stay in three-star or higher hotels on business trips.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhèlǐ de dōngtiān qìwēn dōu zài língdùyǐxià 。",
"Chinese1": "这里的冬天气温都在零度以下。",
"Translate1": "The temperature here is below freezing in winter.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "yǐxià jiù tántán zhège wèntí yīnggāi zěnme jiějué 。",
"Chinese1": "以下就谈谈这个问题应该怎么解决。",
"Translate1": "Let's talk about how to solve this problem.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "yǐshàng zhǐshì wǒ gèrén de kànfǎ 。",
"Chinese1": "以上只是我个人的看法。",
"Translate1": "The above is just my personal opinion.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "liǎngtiān yǐnèi bìxū wánchéng 。",
"Chinese1": "两天以内必须完成。",
"Translate1": "Must be completed within two days.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "bànxiǎoshí yǐnèi néng sòngdào ma ?",
"Chinese1": "半小时以内能送到吗?",
"Translate1": "Can it be delivered within half an hour?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "qǐng nǐ zhàn zài liǎngmǐ yǐwài de dìfāng 。",
"Chinese1": "请你站在两米以外的地方。",
"Translate1": "Please stand two meters away.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhège qū yǐwài de jǐge qū dōu bù tài fādá 。",
"Chinese1": "这个区以外的几个区都不太发达。",
"Translate1": "Several districts outside this district are less developed.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "cóng bìyè yǐlái , tā yīzhí zài jiào hànyǔ 。",
"Chinese1": "从毕业以来,她一直在教汉语。",
"Translate1": "She has been teaching Chinese since graduation.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "zìcóng tā gēn wǒ fēnshǒu hòu , tā jiù méiyǒu liánxì guò wǒ 。",
"Chinese1": "自从他跟我分手后,他就没有联系过我。",
"Translate1": "He hasn't contacted me since he broke up with me.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "zìcóng yòng shǒujī fùkuǎn hòu , wǒ hěnshǎo dài xiànjīn chūmén 。",
"Chinese1": "自从用手机付款后,我很少带现金出门。",
"Translate1": "Since paying with my phone, I rarely leave the house with cash.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "zìcóng chǎo wánjià , liǎnggè rén zàiyě méiyǒu shuō guò huà 。",
"Chinese1": "自从吵完架,两个人再也没有说过话。",
"Translate1": "Since the quarrel, the two have never spoken again.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "duì yīgè mínzú éryán , tuánjié kěyǐ zhànshèng yīqiè 。",
"Chinese1": "对一个民族而言,团结可以战胜一切。",
"Translate1": "For a nation, unity conquers all.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "duì xiāofèizhě éryán , cùxiāo huódòng hěn yǒu xīyǐnlì 。",
"Chinese1": "对消费者而言,促销活动很有吸引力。",
"Translate1": "Promotions are attractive to consumers.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒmen dū wéi nǐ gāoxìng 。",
"Chinese1": "我们都为你高兴。",
"Translate1": "We are all happy for you.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "shéi wéi wǒ kǎolǜ guò ?",
"Chinese1": "谁为我考虑过?",
"Translate1": "Who thought about me?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐmen kěyǐ lái wéi wǒmen jiāyóu 。",
"Chinese1": "你们可以来为我们加油。",
"Translate1": "You can come and cheer for us.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhège shēngridàngāo shì wéi nǐ zhǔnbèi de 。",
"Chinese1": "这个生日蛋糕是为你准备的。",
"Translate1": "This birthday cake is for you.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "fùmǔ wéi jiātíng fùchū le hěnduō 。",
"Chinese1": "父母为家庭付出了很多。",
"Translate1": "Parents pay a lot for the family.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ bù wéi zìjǐ de háizi dānxīn ma ?",
"Chinese1": "你不为自己的孩子担心吗?",
"Translate1": "Don't you worry about your children?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "xièxie nǐ wéi wǒmen tígōng zhème duō zīyuán 。",
"Chinese1": "谢谢你为我们提供这么多资源。",
"Translate1": "Thank you for providing us with so many resources.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā wéi gōngsī de fāzhǎn gòngxiàn le hěnduō 。",
"Chinese1": "他为公司的发展贡献了很多。",
"Translate1": "He has contributed a lot to the development of the company.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "hěnduō rén dū zài wéi nàxiē háizi qídǎo 。",
"Chinese1": "很多人都在为那些孩子祈祷。",
"Translate1": "Many people are praying for these children.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ píng shénme guài wǒ !",
"Chinese1": "你凭什么怪我!",
"Translate1": "Why do you blame me!",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ méiyǒu zuòcuò , tā píng shénme mà wǒ ?",
"Chinese1": "我没有做错,他凭什么骂我?",
"Translate1": "I did nothing wrong, why did he scold me?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā yīzhí hěn zhōngchéng , nǐ píng shénme huáiyí tā ?",
"Chinese1": "她一直很忠诚,你凭什么怀疑她?",
"Translate1": "She has always been loyal, why do you doubt her?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "xiǎobái píngzhe zìjǐ de nǔlì zhìfù 。",
"Chinese1": "小白凭着自己的努力致富。",
"Translate1": "Xiaobai gets rich through his own efforts.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā píngzhe zhìhuì zhànshèng le hěnduō de kùnnán 。",
"Chinese1": "他凭着智慧战胜了很多的困难。",
"Translate1": "He overcame many difficulties with his wisdom.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ gěi tā piàn le 。",
"Chinese1": "我给他骗了。",
"Translate1": "I was lied to by him.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhème hǎo de jīhuì gěi nǐ làngfèi le 。",
"Chinese1": "这么好的机会给你浪费了。",
"Translate1": "Such a good opportunity wasted for you.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "háizi dōu gěi nǐ chǒnghuài le 。",
"Chinese1": "孩子都给你宠坏了。",
"Translate1": "The children are spoiled by you.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhèlǐ de shuǐ dōu gěi wūrǎn le 。",
"Chinese1": "这里的水都给污染了。",
"Translate1": "The water here is polluted.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ yǐjīng jìnlì le , zhìyú jiéguǒ zhǐnéng kànyùnqì le 。",
"Chinese1": "我已经尽力了,至于结果只能看运气了。",
"Translate1": "I've tried my best, and the result can only depend on luck.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā gēn wǒ shuō míngtiān huílai , zhìyú jùtǐ de shíjiān , wǒ jiù bù zhīdào le 。",
"Chinese1": "她跟我说明天回来,至于具体的时间,我就不知道了。",
"Translate1": "She explained to me that she would come back tomorrow, but I don't know the exact time.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "jiù zhèxiē shìqing láishuō , tā méiyǒu cuò 。",
"Chinese1": "就这些事情来说,他没有错。",
"Translate1": "As far as these things are concerned, he is not wrong.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "chèn niánqīng , duōqù wánwán bā 。",
"Chinese1": "趁年轻,多去玩玩吧。",
"Translate1": "Go play more while you are young.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "chèn tiānqì hǎo , wǒyào qù yěcān 。",
"Chinese1": "趁天气好,我要去野餐。",
"Translate1": "I'm going to have a picnic while the weather is fine.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "chèn háizi shuìzháo de shíhou , wǒ xǐ le hěnduō yīfú 。",
"Chinese1": "趁孩子睡着的时候,我洗了很多衣服。",
"Translate1": "I do a lot of laundry while the kids are asleep.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "xiǎotōu yīdìng shì chèn wǒ bù zhùyì de shíhou , bǎ wǒ de shǒujī tōuzǒu de 。",
"Chinese1": "小偷一定是趁我不注意的时候,把我的手机偷走的。",
"Translate1": "The thief must have stolen my phone while I wasn't looking.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "yàobushì tā bāngmáng , wǒmen bù kěnéng zhème kuài zhǎodào zhège dìfāng 。",
"Chinese1": "要不是她帮忙,我们不可能这么快找到这个地方。",
"Translate1": "If it wasn't for her help, we wouldn't have found the place so quickly.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "yàobushì nǐ shuō nǐ xiǎng chī , wǒ bùhuì zuò zhège cài de 。",
"Chinese1": "要不是你说你想吃,我不会做这个菜的。",
"Translate1": "I wouldn't have made this dish if you hadn't said you wanted to eat it.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "yàobushì yīnwèi tā shì nǐ péngyou , wǒ shì bùhuì bāng tā de 。",
"Chinese1": "要不是因为他是你朋友,我是不会帮他的。",
"Translate1": "If it weren't for him being your friend, I wouldn't have helped him.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "yàobushì nǐmen chídào dehuà , wǒmen zǎojiù dào le 。",
"Chinese1": "要不是你们迟到的话,我们早就到了。",
"Translate1": "If you were not late, we would have arrived long ago.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "yàobushì nǐ gāngcái shuō cuòhuà , tā shì bùhuì shēngqì de 。",
"Chinese1": "要不是你刚才说错话,他是不会生气的。",
"Translate1": "If you hadn't said the wrong thing just now, he wouldn't be angry.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒnéng zhème kuài zuò wán , duōkuī le nǐ bāng wǒ 。",
"Chinese1": "我能这么快做完,多亏了你帮我。",
"Translate1": "I was able to finish it so quickly, thanks to your help.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ méi chídào , duōkuī le nǐ kāichē sòng wǒ 。",
"Chinese1": "我没迟到,多亏了你开车送我。",
"Translate1": "I wasn't late, thanks to you driving me.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "duōkuī nǐ de sǎn , wǒ cái méi línshī 。",
"Chinese1": "多亏你的伞,我才没淋湿。",
"Translate1": "Thanks to your umbrella, I didn't get wet.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "duōkuī nǐ bāng wǒ , wǒ cáinéng zhème kuài zuò wán 。",
"Chinese1": "多亏你帮我,我才能这么快做完。",
"Translate1": "Thanks to your help, I was able to finish it so quickly.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhèjiàn shìqing duōkuī le nǐ de tíxǐng , bùrán wǒ kěndìng wàng le 。",
"Chinese1": "这件事情多亏了你的提醒,不然我肯定忘了。",
"Translate1": "Thanks to your reminder of this matter, otherwise I must have forgotten.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā zhǐshì kāigè wánxiào éryǐ , bùyào dàngzhēn 。",
"Chinese1": "他只是开个玩笑而已,不要当真。",
"Translate1": "He was just joking, don't take it seriously.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ cái hē le yīpíng píjiǔ éryǐ , zěnme huì hēzuì le ne ?",
"Chinese1": "你才喝了一瓶啤酒而已,怎么会喝醉了呢?",
"Translate1": "You only drank a bottle of beer, how can you get drunk?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "dào shénme qiàn a , yòu bùshì nǐ de cuò 。",
"Chinese1": "道什么歉啊,又不是你的错。",
"Translate1": "What's your apology? It's not your fault.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "méiyǒu qián kàn shénme diànyǐng 。",
"Chinese1": "没有钱看什么电影。",
"Translate1": "No money to watch any movie.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "hái chī shénme zǎofàn a , yào chídào le 。",
"Chinese1": "还吃什么早饭啊,要迟到了。",
"Translate1": "What do you have for breakfast? I'm going to be late.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā yǒushíhou xiàng xiǎohái yīyàng tiānzhēn 。",
"Chinese1": "她有时候像小孩一样天真。",
"Translate1": "She is sometimes as innocent as a child.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā hěn shēngqì , xiàng fēngzi yīyàng dàjiào qǐlai 。",
"Chinese1": "他很生气,像疯子一样大叫起来。",
"Translate1": "He got angry and yelled like a madman.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ zěnme xiàng wǒ mā yīyàng luōsuo !",
"Chinese1": "你怎么像我妈一样啰嗦!",
"Translate1": "Why are you talking like my mother!",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "shànghǎi de dōngtiān bùxiàng běijīng nàme gān 。",
"Chinese1": "上海的冬天不像北京那么干。",
"Translate1": "Winter in Shanghai is not as dry as in Beijing.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ bù xiàng wǒ fùmǔ nàme xǐhuan shěngqián 。",
"Chinese1": "我不像我父母那么喜欢省钱。",
"Translate1": "I'm not as fond of saving money as my parents are.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "bǐqǐ shànghǎi , wǒ lǎojiā de wùjià piányi duō le 。",
"Chinese1": "比起上海,我老家的物价便宜多了。",
"Translate1": "Compared with Shanghai, the prices in my hometown are much cheaper.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒgē de chéngjì bùrú wǒ 。",
"Chinese1": "我哥的成绩不如我。",
"Translate1": "My brother's grades are not as good as mine.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā zǒngshì juéde zìjǐ bùrú biéren 。",
"Chinese1": "他总是觉得自己不如别人。",
"Translate1": "He always felt that he was inferior to others.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhèjiàn qúnzi bùrú nà jiàn hǎokàn 。",
"Chinese1": "这件裙子不如那件好看。",
"Translate1": "This dress is not as pretty as that one.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nàgè shuōfa bùrú zhège shuōfa shíyòng 。",
"Chinese1": "那个说法不如这个说法实用。",
"Translate1": "That statement is less practical than this one.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā chuān dé bùrú nǐ hǎokàn 。",
"Chinese1": "他穿得不如你好看。",
"Translate1": "He doesn't dress as well as you do.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ dānxīn wǒ jiěshì dé bùrú nǐ qīngchu 。",
"Chinese1": "我担心我解释得不如你清楚。",
"Translate1": "I'm afraid I didn't explain it as clearly as you.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ dǎzì bùrú nǐ dǎ dé kuài 。",
"Chinese1": "我打字不如你打得快。",
"Translate1": "I can't type as fast as you.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "yǔqí kōngxiǎng , bùrú mǎshàng xíngdòng 。",
"Chinese1": "与其空想,不如马上行动。",
"Translate1": "Instead of dreaming, act now.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "yǔqí tiāntiān chǎojià , bùrú líhūn 。",
"Chinese1": "与其天天吵架,不如离婚。",
"Translate1": "It is better to divorce than to quarrel every day.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā suàn tiāncái 。",
"Chinese1": "她算天才。",
"Translate1": "She is a genius.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhèsuàn mìmì ma ?",
"Chinese1": "这算秘密吗?",
"Translate1": "Is this a secret?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā suànbùsuàn nǐ nǚpéngyou ?",
"Chinese1": "她算不算你女朋友?",
"Translate1": "Does she count as your girlfriend?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhèjiā diàn de dōngxi suàn piányi de 。",
"Chinese1": "这家店的东西算便宜的。",
"Translate1": "The stuff in this store is cheap.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ nǚér suàn tīnghuà de 。",
"Chinese1": "我女儿算听话的。",
"Translate1": "My daughter is obedient.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "zài wǒmen gōngsī , wǒsuàn niánqīng de 。",
"Chinese1": "在我们公司,我算年轻的。",
"Translate1": "In our company, I am considered young.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "lǎoshī jiǎnmàn le yǔsù , yǐbiàn xuésheng néng tīngdǒng 。",
"Chinese1": "老师减慢了语速,以便学生能听懂。",
"Translate1": "The teacher slowed down the speech so that the students could understand it.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhānglǎoshī de kè hěn shòu xuésheng de huānyíng 。",
"Chinese1": "张老师的课很受学生的欢迎。",
"Translate1": "Teacher Zhang's class is very popular with students.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "shòu lěngkōngqì de yǐngxiǎng , jīntiān shànghǎi tèbié lěng 。",
"Chinese1": "受冷空气的影响,今天上海特别冷。",
"Translate1": "Affected by the cold air, Shanghai is extremely cold today.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ zài měiguó de dìyīnián , shòudào le hěnduō péngyou de bāngzhù 。",
"Chinese1": "我在美国的第一年,受到了很多朋友的帮助。",
"Translate1": "In my first year in the United States, I was helped by many friends.",
"Pinyin2": "",
"Chinese2": "",