-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path4.3.json
More file actions
1641 lines (1641 loc) · 44.3 KB
/
Copy path4.3.json
File metadata and controls
1641 lines (1641 loc) · 44.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "jíshǐ tā méi qián , wǒ yě yào jiàgěi tā 。",
"Chinese1": "即使他没钱,我也要嫁给他。",
"Translate1": "Even if he has no money, I will marry him.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "jíshǐ nǐ hěn yǒuqián , yě mǎibùdào xìngfú 。",
"Chinese1": "即使你很有钱,也买不到幸福。",
"Translate1": "Even if you are rich, you can't buy happiness.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "jíshǐ nǐ duì zhèmén kèbùtài gǎnxìngqù , yě yàoxué 。",
"Chinese1": "即使你对这门课不太感兴趣,也要学。",
"Translate1": "Even if you are not very interested in the subject, take it.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "jíshǐ tāmen yào péicháng wǒmen , wǒmen yě yào bǎ shìqing gōngkāi 。",
"Chinese1": "即使他们要赔偿我们,我们也要把事情公开。",
"Translate1": "Even if they want to compensate us, let's make things public.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒmen děi zǒu le 。",
"Chinese1": "我们得走了。",
"Translate1": "We have to go.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "shíjiān bùzǎole , wǒ děi huíjiā le 。",
"Chinese1": "时间不早了,我得回家了。",
"Translate1": "It's getting late, I have to go home.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā shì nǐ dìdi , nǐ děi bāng tā 。",
"Chinese1": "他是你弟弟,你得帮他。",
"Translate1": "He is your brother, you have to help him.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "bùhǎoyìsi , nǐ děi mǎshàng líkāi 。",
"Chinese1": "不好意思,你得马上离开。",
"Translate1": "Sorry, you have to leave now.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "zài xuéxiào jiù děi tīng lǎoshī dehuà 。",
"Chinese1": "在学校就得听老师的话。",
"Translate1": "You have to listen to the teacher at school.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ děi xiān fùqián zài jìnqù 。",
"Chinese1": "你得先付钱再进去。",
"Translate1": "You have to pay before you go in.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "shì nǐ de cuò , nǐ děi dàoqiàn 。",
"Chinese1": "是你的错,你得道歉。",
"Translate1": "It's your fault and you have to apologize.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā méiyǒu jīngyàn , nǐ děi jiàojiào tā 。",
"Chinese1": "他没有经验,你得教教他。",
"Translate1": "He has no experience, you have to teach him.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "míngtiān qù miànshì , nǐ děi chuān děi zhèngshì yīdiǎn 。",
"Chinese1": "明天去面试,你得穿得正式一点。",
"Translate1": "You have to dress formally for the interview tomorrow.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ bìng děi tài lìhai le , děi qù kàn yīshēng 。",
"Chinese1": "你病得太厉害了,得去看医生。",
"Translate1": "You are so ill that you need to see a doctor.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā tōutōu yuē biéde nǚhái , nǐ jiào wǒ zěnme xiǎng ?",
"Chinese1": "他偷偷约别的女孩,你叫我怎么想?",
"Translate1": "What do you think of him secretly dating other girls?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ xiǎng qǐng nǐ bāng wǒ yīgè máng 。",
"Chinese1": "我想请你帮我一个忙。",
"Translate1": "I want to ask you to do me a favor.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "néng bùnéng qǐng nǐ míngtiān zhàogu yīxià wǒ de gǒu ?",
"Chinese1": "能不能请你明天照顾一下我的狗?",
"Translate1": "Could you please take care of my dog tomorrow?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā de yǎnjiǎng shǐ tīngzhòng men fēicháng jīdòng 。",
"Chinese1": "他的演讲使听众们非常激动。",
"Translate1": "His speech thrilled the audience.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "jīngjìwēijī shǐ hěnduō gōngsī dǎobì le , yě shǐ hěnduō rén shīqù le gōngzuò 。",
"Chinese1": "经济危机使很多公司倒闭了,也使很多人失去了工作。",
"Translate1": "The economic crisis closed down many companies and caused many people to lose their jobs.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhèděi kàn nǐ de shíjiān 。",
"Chinese1": "这得看你的时间。",
"Translate1": "It depends on your time.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nàyào kàn tā yuànbùyuànyì 。",
"Chinese1": "那要看他愿不愿意。",
"Translate1": "It depends on whether he is willing or not.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhèděi kàn tiānqì zěnmeyàng 。",
"Chinese1": "这得看天气怎么样。",
"Translate1": "It depends on the weather.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nàyào kàn lǎobǎn zěnme xiǎng 。",
"Chinese1": "那要看老板怎么想。",
"Translate1": "That depends on what the boss thinks.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nàděi kàn kǎoshì jiéguǒ 。",
"Chinese1": "那得看考试结果。",
"Translate1": "That depends on the test results.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "qùbùqù děi kàn wǒ de xīnqíng 。",
"Chinese1": "去不去得看我的心情。",
"Translate1": "Whether I go or not depends on my mood.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "shénme shíhou qù yào kàn gōngsī de ānpái 。",
"Chinese1": "什么时候去要看公司的安排。",
"Translate1": "When to go depends on the company's arrangements.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "xué yīnyuè háishi xué huàhuà yào kàn háizi de xìngqù 。",
"Chinese1": "学音乐还是学画画要看孩子的兴趣。",
"Translate1": "Learning music or learning painting depends on the child's interest.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "néng bùnéng liúzài zhōngguó yào kàn wǒ néng bùnéng nádào qiānzhèng 。",
"Chinese1": "能不能留在中国要看我能不能拿到签证。",
"Translate1": "Whether I can stay in China depends on whether I can get a visa.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā hǎoxiàng shì yīngguórén 。",
"Chinese1": "他好像是英国人。",
"Translate1": "He seems to be British.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ hǎoxiàng bùshì běndìrén 。",
"Chinese1": "你好像不是本地人。",
"Translate1": "You don't seem to be a local.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā hǎoxiàng shēngbìng le 。",
"Chinese1": "她好像生病了。",
"Translate1": "She seems to be ill.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ hǎoxiàng hěn bù xǐhuan tā 。",
"Chinese1": "你好像很不喜欢她。",
"Translate1": "You seem to dislike her very much.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā yīgè rén zuòzài nàr , hǎoxiàng zài xiǎng shìqing 。",
"Chinese1": "他一个人坐在那儿,好像在想事情。",
"Translate1": "He sat there alone, as if thinking about something.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "hǎoxiàng bùxíng 。",
"Chinese1": "好像不行。",
"Translate1": "It doesn't seem to work.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "hǎoxiàng yào xiàyǔ le 。",
"Chinese1": "好像要下雨了。",
"Translate1": "looks like it's going to rain.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "hǎoxiàng yǒurén qiāomén 。",
"Chinese1": "好像有人敲门。",
"Translate1": "It was as if someone was knocking on the door.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "hǎoxiàng yǒurén láiguò 。",
"Chinese1": "好像有人来过。",
"Translate1": "It seems that someone has been here.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒmen fúwù de tèsè zàiyú gèxìnghuà 。",
"Chinese1": "我们服务的特色在于个性化。",
"Translate1": "The hallmark of our service is personalization.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "chénggōng zàiyú jiānchí 。",
"Chinese1": "成功在于坚持。",
"Translate1": "Success lies in persistence.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "lǐwù zàiyú xīnyì , bù zàiyú yǒu duō guìzhòng 。",
"Chinese1": "礼物在于心意,不在于有多贵重。",
"Translate1": "A gift lies in the heart, not how expensive it is.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "dōngxi bù zàiyú wàibiǎo hǎobuhǎo kàn , zàiyú shíyòng bù shíyòng 。",
"Chinese1": "东西不在于外表好不好看,在于实用不实用。",
"Translate1": "Things don't lie in whether they look good or not, but in whether they are practical or not.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "qùbùqù zàiyú nǐ zìjǐ 。",
"Chinese1": "去不去在于你自己。",
"Translate1": "Whether you go or not is up to you.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "xué shénme zhuānyè zàiyú nǐ de xìngqù 。",
"Chinese1": "学什么专业在于你的兴趣。",
"Translate1": "What major to study depends on your interest.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ yǐwéi tā shì déguórén 。",
"Chinese1": "我以为他是德国人。",
"Translate1": "I thought he was German.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒmen yǐwéi nǐ bù zàijiā 。",
"Chinese1": "我们以为你不在家。",
"Translate1": "We thought you weren't home.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tóngshì men dū yǐwéi wǒ èrshísuì 。",
"Chinese1": "同事们都以为我二十岁。",
"Translate1": "My colleagues thought I was twenty years old.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒmen dū yǐwéi nǐ shēngqì le 。",
"Chinese1": "我们都以为你生气了。",
"Translate1": "We all thought you were mad.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "lǎoshī yǐwéi xuésheng dū tīngdǒng le 。",
"Chinese1": "老师以为学生都听懂了。",
"Translate1": "The teacher thought the students understood.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "bùyào yǐwéi tā shì nǐ de péngyou 。",
"Chinese1": "不要以为他是你的朋友。",
"Translate1": "Don't think he is your friend.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ qù chī sìchuānhuǒguō le ?",
"Chinese1": "你去吃四川火锅了?",
"Translate1": "Have you gone to eat Sichuan hotpot?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐmen fēnshǒu le ?",
"Chinese1": "你们分手了?",
"Translate1": "You broke up?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ kàndào nàzhāng zhàopiàn , yǐwéi nǐ yǒu nánpéngyou le 。",
"Chinese1": "我看到那张照片,以为你有男朋友了。",
"Translate1": "I saw that picture and thought you had a boyfriend.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "cóng wǒjiā dào nàr yào tōngguò liǎngzuò qiáo 。",
"Chinese1": "从我家到那儿要通过两座桥。",
"Translate1": "There are two bridges to get there from my house.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tōngguò nàgè hóngsè de dàmén , zuǒguǎi jiù dào le 。",
"Chinese1": "通过那个红色的大门,左拐就到了。",
"Translate1": "Go through the red door and turn left.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ tōngguò le zhège kǎoshì 。",
"Chinese1": "我通过了这个考试。",
"Translate1": "I passed this test.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā méi tōngguò zuótiān de miànshì 。",
"Chinese1": "他没通过昨天的面试。",
"Translate1": "He failed yesterday's interview.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nàgè chuān hēiyīfú de nánrén méi tōngguò jīchǎng de ānjiǎn 。",
"Chinese1": "那个穿黑衣服的男人没通过机场的安检。",
"Translate1": "The man in black didn't get through airport security.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒmen shì tōngguò tā de péngyou zhǎodào tā de 。",
"Chinese1": "我们是通过他的朋友找到他的。",
"Translate1": "We found him through his friends.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tōngguò zhège diàochá , wǒmen fāxiàn hěnduō rén dōu zhīchí tā 。",
"Chinese1": "通过这个调查,我们发现很多人都支持他。",
"Translate1": "Through this survey, we found that many people support him.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tōngguò zhège duǎnpiàn , wǒmen gēng liǎojiě nǐmen gōngsī le 。",
"Chinese1": "通过这个短片,我们更了解你们公司了。",
"Translate1": "Through this video, we know more about your company.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tōngguò tā de jièshào , wǒ rènshi le wǒ xiànzài de lǎobǎn 。",
"Chinese1": "通过他的介绍,我认识了我现在的老板。",
"Translate1": "Through his introduction, I met my current boss.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tōngguò měige yuè de péixùn , wǒmen de yuángōng gēng zhuānyè le 。",
"Chinese1": "通过每个月的培训,我们的员工更专业了。",
"Translate1": "Through monthly training, our employees are more professional.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ láizì zhōngguó 。",
"Chinese1": "我来自中国。",
"Translate1": "I am from China.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhèxiē shū dōu láizì rìběn 。",
"Chinese1": "这些书都来自日本。",
"Translate1": "These books are all from Japan.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒmen gōngsī de kèhù láizì měiguó 。",
"Chinese1": "我们公司的客户来自美国。",
"Translate1": "Our company's clients are from the United States.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ de zhège xiǎngfǎ láizì shēnghuó 。",
"Chinese1": "我的这个想法来自生活。",
"Translate1": "This idea of mine comes from life.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tīng le láizì jiàoshòu de jiànyì , wǒ juédìng qù shànghǎi 。",
"Chinese1": "听了来自教授的建议,我决定去上海。",
"Translate1": "After listening to the advice from my professor, I decided to go to Shanghai.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒlái bā 。",
"Chinese1": "我来吧。",
"Translate1": "Let me do it.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "ràng tā zìjǐ lái 。",
"Chinese1": "让他自己来。",
"Translate1": "Let him do it himself.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "háishi nǐmen zìjǐ lái bā 。",
"Chinese1": "还是你们自己来吧。",
"Translate1": "Or do it yourself.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ xiě dé hǎokàn , nǐ lái bā 。",
"Chinese1": "你写得好看,你来吧。",
"Translate1": "You write beautifully, come on.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "shéi néng dú yīxià zhèduànhuà ?",
"Chinese1": "谁能读一下这段话?",
"Translate1": "Who can read this passage?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ zěnme zuò dé zhème màn ?",
"Chinese1": "你怎么做得这么慢?",
"Translate1": "How do you do it so slowly?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhège xiāngzi zhēn zhòng ! wǒlái bā 。",
"Chinese1": "这个箱子真重!我来吧。",
"Translate1": "This box is so heavy! Let me do it.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "bùyòngxiè 。",
"Chinese1": "不用谢。",
"Translate1": "you are welcome.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "bùyòng dānxīn 。",
"Chinese1": "不用担心。",
"Translate1": "Don't worry.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "háizi bùyòng mǎipiào 。",
"Chinese1": "孩子不用买票。",
"Translate1": "Children do not need to buy a ticket.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ bùyòng guòqu , tā huì guòlái de 。",
"Chinese1": "你不用过去,她会过来的。",
"Translate1": "You don't have to go, she will come.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "jīntiān bùyòng jiābān 。",
"Chinese1": "今天不用加班。",
"Translate1": "No need to work overtime today.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhèjiàn shì bùyòng gēn tā shuō 。",
"Chinese1": "这件事不用跟他说。",
"Translate1": "There is no need to tell him about this.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "gàosu tā míngtiān bù yònglái le 。",
"Chinese1": "告诉他明天不用来了。",
"Translate1": "Tell him not to come tomorrow.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "mǎi bā , bùyòng kǎolǜ jiàqian 。",
"Chinese1": "买吧,不用考虑价钱。",
"Translate1": "Buy it, regardless of the price.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "jīntiān rénshǎo , bùyòng páiduì 。",
"Chinese1": "今天人少,不用排队。",
"Translate1": "There are few people today, so there is no need to line up.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐmen bùyòng dōu lái , wǒmen bù xūyào zhème duōrén 。",
"Chinese1": "你们不用都来,我们不需要这么多人。",
"Translate1": "You don't have to all come, we don't need so many people.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "bàba pīpíng le wǒ bìngqiě gàosu wǒ yǐhòu bùnéng shuōhuǎng 。",
"Chinese1": "爸爸批评了我并且告诉我以后不能说谎。",
"Translate1": "Dad criticized me and told me not to lie anymore.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ yào ànzhào wǒ shuō de zuò bìngqiě yào zuòhǎo 。",
"Chinese1": "你要按照我说的做并且要做好。",
"Translate1": "You do what I say and do it well.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ tōngzhī le suǒyǒu de rén , bìngqiě zhǔnbèi le suǒyǒu de cáiliào 。",
"Chinese1": "我通知了所有的人,并且准备了所有的材料。",
"Translate1": "I notified everyone and prepared all materials.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhèzhǒng xiànxiàng hěn chángjiàn bìngqiě huì chíxù hěn chángshíjiān 。",
"Chinese1": "这种现象很常见并且会持续很长时间。",
"Translate1": "This phenomenon is very common and lasts for a long time.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "kòngzhì yǐnshí bìngqiě duō yùndòng , huì ràng nǐ de shēncái yuèláiyuè hǎo 。",
"Chinese1": "控制饮食并且多运动,会让你的身材越来越好。",
"Translate1": "Controlling your diet and exercising more will make your figure better and better.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒhuì bāng nǐ zhǎodào wèntí bìngqiě jiějuéwèntí 。",
"Chinese1": "我会帮你找到问题并且解决问题。",
"Translate1": "I will help you find the problem and fix it.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ tóngyì bìngqiě zhīchí nǐ de juédìng 。",
"Chinese1": "我同意并且支持你的决定。",
"Translate1": "I agree and support your decision.",
"Pinyin2": "",
"Chinese2": "",