-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path6.1.json
More file actions
1124 lines (1124 loc) · 32.6 KB
/
Copy path6.1.json
File metadata and controls
1124 lines (1124 loc) · 32.6 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": "shuō dé dào róngyì , nà nǐ lái !",
"Chinese1": "说得倒容易,那你来!",
"Translate1": "It's easy to say, then you come!",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ xiǎng dé dǎo měi ! bù gōngzuò hái xiǎng ná gōngzī ?",
"Chinese1": "你想得倒美!不工作还想拿工资?",
"Translate1": "You have a good idea! Want to get paid without working?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ xiǎng dé dào jiǎndān ! zěnme kěnéng ?",
"Chinese1": "你想得倒简单!怎么可能?",
"Translate1": "It's easy for you to think! How can it be?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhège xiǎonǚhái dào tǐng yǒnggǎn de 。",
"Chinese1": "这个小女孩倒挺勇敢的。",
"Translate1": "The little girl was quite brave.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhèyàng zuò hěn shì bìyào 。",
"Chinese1": "这样做很是必要。",
"Translate1": "It is necessary to do so.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ de gōngzuò biǎoxiàn ràng lǐngdǎo hěn shì mǎnyì 。",
"Chinese1": "你的工作表现让领导很是满意。",
"Translate1": "Your work performance makes the leader very satisfied.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhèjiàn shì ràng wǒ hěn shì bù shūfu 。",
"Chinese1": "这件事让我很是不舒服。",
"Translate1": "This incident made me very uncomfortable.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ lǎobǎn hěn shì xǐhuan nǐ de shèjì fēnggé 。",
"Chinese1": "我老板很是喜欢你的设计风格。",
"Translate1": "My boss likes your design style very much.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā dōu tuìxiū le ,hái zài chuàngyè , ràng rén hěn shì pèifú 。",
"Chinese1": "他都退休了,还在创业,让人很是佩服。",
"Translate1": "He has retired and is still starting a business, which is very admirable.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐmen de biǎoyǎn tài kuāzhāng le , ràng rén hěn shì shòubùliǎo 。",
"Chinese1": "你们的表演太夸张了,让人很是受不了。",
"Translate1": "Your performance is too exaggerated, it is unbearable.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ bàba dāng guò dàchú , tā hěn shì huì chī 。",
"Chinese1": "我爸爸当过大厨,他很是会吃。",
"Translate1": "My dad used to be a chef and he is very good at eating.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ mèimei suīrán xiǎo , dàn hěn shì huì shuōhuà 。",
"Chinese1": "我妹妹虽然小,但很是会说话。",
"Translate1": "Although my sister is small, she is very good at talking.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhège nánrén hěn shì huì piàn nǚrén 。",
"Chinese1": "这个男人很是会骗女人。",
"Translate1": "This man is very good at deceiving women.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "dà lǎobǎn hěn shì néng hē 。",
"Chinese1": "大老板很是能喝。",
"Translate1": "The big boss is very drinkable.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "zuótiān wǒ de yuēhuì bùtài shùnlì , tā ràng wǒ děng le zúzú liǎnggè xiǎoshí 。",
"Chinese1": "昨天我的约会不太顺利,她让我等了足足两个小时。",
"Translate1": "Yesterday my appointment didn't go well, she kept me waiting for two full hours.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "guàibude tā hànyǔ shuō dé nàme hǎo , tā zài zhōngguó zhù le zúzú shínián de shíjiān !",
"Chinese1": "怪不得他汉语说得那么好,他在中国住了足足十年的时间!",
"Translate1": "No wonder he speaks Chinese so well, he has lived in China for ten years!",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ yīzài gēn nǐ shuō , chūménzàiwài yào xiǎoxīn 。",
"Chinese1": "我一再跟你说,出门在外要小心。",
"Translate1": "I tell you again and again, be careful when you go out.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā zǒngshì yóuyóuyùyù , yīzài cuòshīliángjī 。",
"Chinese1": "他总是犹犹豫豫,一再错失良机。",
"Translate1": "He was always hesitating and missed opportunities again and again.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ fùmǔ xiànglái bù xǐhuan wǒ gēn nǐmen yīqǐ chūqù wánr 。",
"Chinese1": "我父母向来不喜欢我跟你们一起出去玩儿。",
"Translate1": "My parents never liked me hanging out with you guys.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ xiànglái nǔlì , suǒyǐ wǒ měi yīcì kǎoshì dōu dé mǎnfēn 。",
"Chinese1": "我向来努力,所以我每一次考试都得满分。",
"Translate1": "I have always worked hard, so I get full marks in every test.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "dìyīmíng guǒrán shì tā ! wǒ jiù zhīdào 。",
"Chinese1": "第一名果然是她!我就知道。",
"Translate1": "The first place is indeed her! I knew it.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "dàchú zuò de cài guǒrán bù yīyàng !hǎochī !",
"Chinese1": "大厨做的菜果然不一样!好吃!",
"Translate1": "The dishes made by the chef are really different! tasty!",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ shuō dé méicuò ! tā guǒrán shì gè piànzi !",
"Chinese1": "你说得没错!他果然是个骗子!",
"Translate1": "You are right! He really is a liar!",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhège zhǐténgyào guǒrán yǒuxiào , wǒ de tóuténg hǎoduō le 。",
"Chinese1": "这个止疼药果然有效,我的头疼好多了。",
"Translate1": "The painkiller really worked, and my headache was much better.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "sījī shīfu shuō mǎshàng dào , guǒrán , liǎngfēnzhōng yǐhòu chē jiù lái le 。",
"Chinese1": "司机师傅说马上到,果然,两分钟以后车就来了。",
"Translate1": "The driver said he would be there soon, and sure enough, the car arrived in two minutes.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā ràng wǒbié dānxīn , guǒrán , tā hěnkuài xiūhǎo le wǒmen de wǎngluò 。",
"Chinese1": "他让我别担心,果然,他很快修好了我们的网络。",
"Translate1": "He told me not to worry, and sure enough, he fixed our network quickly.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tiānqìyùbào shuō jīn zǎoyào xià dàyǔ , guǒránrúcǐ !",
"Chinese1": "天气预报说今早要下大雨,果然如此!",
"Translate1": "The weather forecast called for heavy rain this morning, and it did!",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "lǎobǎn jīntiān sìhū bù tàigāoxīng 。",
"Chinese1": "老板今天似乎不太高兴。",
"Translate1": "The boss doesn't seem very happy today.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ shuō dé sìhū hěn yǒu dàoli 。",
"Chinese1": "你说得似乎很有道理。",
"Translate1": "What you say seems to make sense.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā sìhū míngbai zhèjù huà de yìsi , què yòu shuōbùqīngchǔ 。",
"Chinese1": "他似乎明白这句话的意思,却又说不清楚。",
"Translate1": "He seemed to understand the meaning of this sentence, but he couldn't explain it clearly.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā sìhū yǐnmán le shénme 。",
"Chinese1": "她似乎隐瞒了什么。",
"Translate1": "She seems to be hiding something.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "sìhū méiyǒu rén guānxīn nàgè xiǎonánhái 。",
"Chinese1": "似乎没有人关心那个小男孩。",
"Translate1": "No one seemed to care about the little boy.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā sìhū cái sānshíchūtóu , dàn qíshí yǐjīng kuài wǔshí le 。",
"Chinese1": "她似乎才三十出头,但其实已经快五十了。",
"Translate1": "She seemed to be in her early thirties, but was actually in her late fifties.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ nánpéngyou sìhū lěnglěngde , qíshí tā hěn rèqíng 。",
"Chinese1": "我男朋友似乎冷冷的,其实他很热情。",
"Translate1": "My boyfriend seems cold, but in fact he is very warm.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "fánshì yòng jīdàn zuò de cài , tā dōu bù xǐhuan 。",
"Chinese1": "凡是用鸡蛋做的菜,他都不喜欢。",
"Translate1": "He doesn't like any dishes made with eggs.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "fánshì huìyuán dōu yǒu zhékòu 。",
"Chinese1": "凡是会员都有折扣。",
"Translate1": "All members have discounts.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "fánshì tīngshuō zhèjiàn shì de rén wúbù jīngyà 。",
"Chinese1": "凡是听说这件事的人无不惊讶。",
"Translate1": "Everyone who heard about it was amazed.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "fánshì kànguò tā de biǎoyǎn de rén wúbù zàntàn tā de yǎnjì 。",
"Chinese1": "凡是看过他的表演的人无不赞叹他的演技。",
"Translate1": "Anyone who has seen his performances admires his acting skills.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "bù jiào tā qù , tā piānpiān yào qù 。",
"Chinese1": "不叫他去,他偏偏要去。",
"Translate1": "He was not asked to go, but he just wanted to go.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "dàjiā dōu jiào tā líkāi le , piānpiān tā huán lài zhe bù zǒu 。",
"Chinese1": "大家都叫他离开了,偏偏他还赖着不走。",
"Translate1": "Everyone told him to leave, but he still lingered.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "xīngqītiān tālái zhǎo wǒ , piānpiān wǒ bù zàijiā 。",
"Chinese1": "星期天他来找我,偏偏我不在家。",
"Translate1": "He came to see me on Sunday, but I was not at home.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "biéde rén dōu xuéhuì le , piānpiān tā bùhuì 。",
"Chinese1": "别的人都学会了,偏偏他不会。",
"Translate1": "Everyone else has learned it, but he can't.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "míngtiān de bùmén huìyì yīlǜ dōu yào cānjiā 。",
"Chinese1": "明天的部门会议一律都要参加。",
"Translate1": "Tomorrow's departmental meeting must be attended.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "bù xūyào de dōngxi yīlǜ juāndiào 。",
"Chinese1": "不需要的东西一律捐掉。",
"Translate1": "Donate everything you don't need.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhèngfǔ mìnglìng zhòng wūrǎn qǐyè yīlǜ tíngyè 。",
"Chinese1": "政府命令重污染企业一律停业。",
"Translate1": "The government ordered all heavily polluting enterprises to close down.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "cóng míngnián yīyuè qǐ jiǔhòu jiàchē yīlǜ zhòngfá 。",
"Chinese1": "从明年一月起酒后驾车一律重罚。",
"Translate1": "Drunk driving will be punished heavily from January next year.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhèxiē gānggang guòqī de shíwù yīlǜ dōu bànjià 。",
"Chinese1": "这些刚刚过期的食物一律都半价。",
"Translate1": "All food items that have just expired are half price.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhèlǐ de jiājù yīlǜ xīn de 。",
"Chinese1": "这里的家具一律新的。",
"Translate1": "The furniture here is all new.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ kòngxián shíjiān wúfēi shì yóuyǒng kànshū éryǐ 。",
"Chinese1": "我空闲时间无非是游泳、看书而已。",
"Translate1": "In my free time I spend nothing more than swimming and reading.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ wúfēi shì pīpíng le tā jǐjù , tā zěnme kū le ?",
"Chinese1": "我无非是批评了他几句,他怎么哭了?",
"Translate1": "I just criticized him a few words, why is he crying?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā zhèyàng zuò , wúfēi shì wèile zhēngqǔ gēng duō de quánlì 。",
"Chinese1": "他这样做,无非是为了争取更多的权利。",
"Translate1": "He did this only to fight for more rights.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā wúfēi shì gè jīnglǐ , méishénme liǎobuqǐ de 。",
"Chinese1": "他无非是个经理,没什么了不起的。",
"Translate1": "He was nothing more than a manager, nothing special.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "háizi xiǎngdedào de wúfēi shì nǐ de guānxīn bàliǎo 。",
"Chinese1": "孩子想得到的无非是你的关心罢了。",
"Translate1": "All your child wants is your concern.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "xiànzài bù hǎohǎo zhǔnbèi kǎoshì , dàoshíhòu kěndìng kǎo bùhǎo 。",
"Chinese1": "现在不好好准备考试,到时候肯定考不好。",
"Translate1": "If you don't prepare well for the exam now, you will definitely fail the exam then.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ xiān zìjǐ shìyīshì , dàoshíhòu wǒ zài jiào nǐ 。",
"Chinese1": "你先自己试一试,到时候我再教你。",
"Translate1": "You try it yourself first, and I will teach you when the time comes.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā yǐjīng dàoqiàn le , nǐ hébì hái shēngqì ?",
"Chinese1": "他已经道歉了,你何必还生气?",
"Translate1": "He has already apologized, why are you still angry?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "dōu shì yījiārén , nǐmen hébì zhème kèqi ?",
"Chinese1": "都是一家人,你们何必这么客气?",
"Translate1": "We are all a family, why are you so polite?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "shànghǎi de fángzi nàme guì , nǐ érzi hébì yào zài nàr mǎifángzi ?",
"Chinese1": "上海的房子那么贵,你儿子何必要在那儿买房子?",
"Translate1": "Houses in Shanghai are so expensive, why should your son buy a house there?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "hébì dàjiā dōu qù ne ? yīgè rénqù jiùxíngle 。",
"Chinese1": "何必大家都去呢?一个人去就行了。",
"Translate1": "Why should everyone go? Just go alone.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "hébì qīnzì guòlái ne ? dǎgè diànhuà jiùxíngle 。",
"Chinese1": "何必亲自过来呢?打个电话就行了。",
"Translate1": "Why come here in person? Just a phone call away.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "hébì máfan biéren ne ? wǒ zìjǐ néng xíng 。",
"Chinese1": "何必麻烦别人呢?我自己能行。",
"Translate1": "Why bother others? I can do it myself.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "zuótiān yǒurén lái zhǎo nǐ lái zhe 。",
"Chinese1": "昨天有人来找你来着。",
"Translate1": "昨天有人来找你来着。",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nàběnshū zuótiān hái zài zhèr lái zhe , jīntiān zěnme zhǎo bùdào le ?",
"Chinese1": "那本书昨天还在这儿来着,今天怎么找不到了?",
"Translate1": "That book was still here yesterday, why can't I find it today?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā jiào shénme lái zhe ?",
"Chinese1": "他叫什么来着?",
"Translate1": "what is his name",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nàshǒugē shì shéi chàng de lái zhe ?",
"Chinese1": "那首歌是谁唱的来着?",
"Translate1": "Who sang that song?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒmen shàngcì shuō zhōumò qù nǎr wánlái zhe ?",
"Chinese1": "我们上次说周末去哪儿玩来着?",
"Translate1": "Last time we talked about where we went to play on the weekend?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ shuō shénme lái zhe ! nǐ yī chīhuǒguō jiù lādùzi !",
"Chinese1": "我说什么来着!你一吃火锅就拉肚子!",
"Translate1": "What did I say! You get diarrhea when you eat hot pot!",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ shuō shénme lái zhe ! zhège dōngxi kěndìng shì jiǎ de !",
"Chinese1": "我说什么来着!这个东西肯定是假的!",
"Translate1": "What did I say! This thing must be fake!",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ shuō shénme lái zhe ! tā bùshì zhēnde xǐhuan nǐ !",
"Chinese1": "我说什么来着!他不是真的喜欢你!",
"Translate1": "What did I say! He doesn't really like you!",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ shuō shénme lái zhe ! tāmen huì huílai de 。",
"Chinese1": "我说什么来着!他们会回来的。",
"Translate1": "What did I say! They will be back.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhèr yǒu gāoyādiàn xiàn , qǐng bùyào kàojìn , yǐmiǎn fāshēng wēixiǎn 。",
"Chinese1": "这儿有高压电线,请不要靠近,以免发生危险。",
"Translate1": "There are high-voltage wires here, please don't get close to avoid danger.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "jiāqiáng ānquáncuòshī , yǐmiǎn fāshēng gōngshāngshìgù 。",
"Chinese1": "加强安全措施,以免发生工伤事故。",
"Translate1": "Strengthen safety measures to avoid industrial accidents.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ gǎnjǐn zǒu , yǐmiǎn wǎn le 。",
"Chinese1": "你赶紧走,以免晚了。",
"Translate1": "You hurry up before it's too late.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "kuài zhuāzhù nàgè huàirén , yǐmiǎn pǎo le 。",
"Chinese1": "快抓住那个坏人,以免跑了。",
"Translate1": "Catch that bad guy quickly before he gets away.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tāmen nǔlì xùnliàn , yǐmiǎn zài bǐsài zhōngshū le 。",
"Chinese1": "他们努力训练,以免在比赛中输了。",
"Translate1": "They train hard so as not to lose in the game.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ gǎnjǐn jiěshìyīxià , yǐmiǎn tā shāngxīn 。",
"Chinese1": "你赶紧解释一下,以免她伤心。",
"Translate1": "You explain it quickly, lest she be sad.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "bùyào zài hébiān wánshuǎ , yǐmiǎn nǐ diào dào hélǐ 。",
"Chinese1": "不要在河边玩耍,以免你掉到河里。",
"Translate1": "Don't play by the river, lest you fall into the river.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ de zuòpǐn yuèláiyuè yǒu chuàngzàoxìng 。",
"Chinese1": "你的作品越来越有创造性。",
"Translate1": "Your work is getting more and more creative.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tāmen shìfǒu kǎolǜ guò zài shànghǎi mǎifáng ?",
"Chinese1": "他们是否考虑过在上海买房?",
"Translate1": "Have they considered buying a house in Shanghai?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ fùmǔ shìfǒu tóngyì nǐmen zhùzàiyīqǐ ?",
"Chinese1": "你父母是否同意你们住在一起?",
"Translate1": "Do your parents agree that you live together?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ shìfǒu qīngchu zhèyàng zuò de hòuguǒ ?",
"Chinese1": "你是否清楚这样做的后果?",
"Translate1": "Are you aware of the consequences of doing so?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhèxiē jiějuéwèntí de fāngshì réngrán yǒu bùzúzhīchù 。",
"Chinese1": "这些解决问题的方式仍然有不足之处。",
"Translate1": "These solutions to the problem still have deficiencies.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ mèimei hěnpiāoliàng ma 。",
"Chinese1": "你妹妹很漂亮嘛。",
"Translate1": "Your sister is very beautiful.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā tǐng yǒuqián de ma 。",
"Chinese1": "他挺有钱的嘛。",
"Translate1": "He is quite rich.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "bùxiǎng qù jiù bùyào qù ma 。",
"Chinese1": "不想去就不要去嘛。",
"Translate1": "Don't go if you don't want to go.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐbié tài qiānxū ma 。",
"Chinese1": "你别太谦虚嘛。",
"Translate1": "Don't be too modest.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "dàjiā yǒuhuà jiù shuō ma 。",
"Chinese1": "大家有话就说嘛。",
"Translate1": "If you have something to say, just say it.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ gēn tā hěn shú ma 。",
"Chinese1": "你跟他很熟嘛。",
"Translate1": "You know him very well.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "chénggōng yǔfǒu , yào kào zìjǐ 。",
"Chinese1": "成功与否,要靠自己。",
"Translate1": "Whether you succeed or not depends on yourself.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "yàoshi bù dǒng , jiù hǎohǎoxué 。",
"Chinese1": "要是不懂,就好好学。",
"Translate1": "If you don't understand, learn it well.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "rúguǒ nǐ bùxiǎng qù jiù bù qù 。",
"Chinese1": "如果你不想去就不去。",
"Translate1": "If you don't want to go don't go.",
"Pinyin2": "",
"Chinese2": "",