-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path6.3.json
More file actions
1168 lines (1168 loc) · 35 KB
/
6.3.json
File metadata and controls
1168 lines (1168 loc) · 35 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": "wǒmen yīngdāng zěnyàng qù bǎohù yěshēngdòngwù ?",
"Chinese1": "我们应当怎样去保护野生动物?",
"Translate1": "How should we protect wild animals?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒmen de tuánduì dìng le yīxiē mùbiāo , nǔlì qù shíxiàn 。",
"Chinese1": "我们的团队定了一些目标,努力去实现。",
"Translate1": "Our team set some goals and worked hard to achieve them.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "jīntiān wǎnshàng huì yǒu lìngrénxīngfèn de jiémù , wǒmen yīdìng yào qù kàn 。",
"Chinese1": "今天晚上会有令人兴奋的节目,我们一定要去看。",
"Translate1": "There's going to be something exciting tonight, we're definitely going to see it.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "kàndào zhèfú huà , nǐ zěnme xiǎng ?",
"Chinese1": "看到这幅画,你怎么想?",
"Translate1": "What do you think when you see this painting?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "míngtiān zhèlǐ huì xiàyǔ ma ?",
"Chinese1": "明天这里会下雨吗?",
"Translate1": "Will it rain here tomorrow?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ zuìjìn qùguò shénme dìfāng ?",
"Chinese1": "你最近去过什么地方?",
"Translate1": "Where have you been recently?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "jīntiān zǎochén tā qù zuò shénme le ?",
"Chinese1": "今天早晨他去做什么了?",
"Translate1": "What did he do this morning?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ dàgài huì zài zhècì kǎoshì zhōng qǔdé bùcuò de chéngjì 。",
"Chinese1": "我大概会在这次考试中取得不错的成绩。",
"Translate1": "I will probably do well in this exam.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ zhīdào zhōngguóxiàngqí ma ?",
"Chinese1": "你知道中国象棋吗?",
"Translate1": "Do you know Chinese chess?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nàxiē fúzhuāng dōu hěnpiāoliàng , suǒyǐ wǒ mǎi le sānjiàn 。",
"Chinese1": "那些服装都很漂亮,所以我买了三件。",
"Translate1": "Those costumes were all beautiful, so I bought three of them.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "duō xuéxí yǒuzhùyú zēngzhǎng zhīshi , tígāo jìnéng 。",
"Chinese1": "多学习有助于增长知识,提高技能。",
"Translate1": "Learning more helps to increase knowledge and improve skills.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhōngguó shìbùshì hěnduō xiāngcūn lǐ dōu yǒu xǔduō gǔlǎo de jiànzhù ?",
"Chinese1": "中国是不是很多乡村里都有许多古老的建筑?",
"Translate1": "Are there many ancient buildings in many villages in China?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ bàba měitiān zǎoshang bādiǎnbàn zhǔnshí shàngbān 。",
"Chinese1": "我爸爸每天早上八点半准时上班。",
"Translate1": "My father goes to work on time at half past eight every morning.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "hěnduō rén bàoyuàn cǐcì huódòng tài jiǎndān , bùgòu yǒuqù 。",
"Chinese1": "很多人抱怨此次活动太简单,不够有趣。",
"Translate1": "Many people complained that the activity was too simple and not interesting enough.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ de péngyou jīngcháng lǚxíng 。",
"Chinese1": "我的朋友经常旅行。",
"Translate1": "My friends travel a lot.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒmen zǒngshì nénggòu zài fùzá de huánjìng zhōng zhǎodào jiějuébànfǎ 。",
"Chinese1": "我们总是能够在复杂的环境中找到解决办法。",
"Translate1": "We have always been able to find solutions in complex environments.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "jīntiān shì xīngqī jǐ ?",
"Chinese1": "今天是星期几?",
"Translate1": "What day of the week is it?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ zěnyàngcáinéng bǎochí xīnqíng yúyuè ?",
"Chinese1": "你怎样才能保持心情愉悦?",
"Translate1": "How can you stay in a good mood?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ zěnme zuòdìtiě qù xuéxiào ?",
"Chinese1": "你怎么坐地铁去学校?",
"Translate1": "How do you go to school by subway?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ néng jiǎng chū guānyú dòngwù de yǒuqù de gùshi ma ?",
"Chinese1": "你能讲出关于动物的有趣的故事吗?",
"Translate1": "Can you tell an interesting story about animals?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ yǒu duōjiǔ méiyǒu kànguò diànshì le ?",
"Chinese1": "你有多久没有看过电视了?",
"Translate1": "How long has it been since you watched TV?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ hé nǐ de péngyou yǒu shénme gòngtóng de xīngqùàihǎo ?",
"Chinese1": "你和你的朋友有什么共同的兴趣爱好?",
"Translate1": "What interests and hobbies do you and your friends have in common?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "yóuyǒng yùndòng kěyǐ gǎishàn xīnzàng jiànkāng , zēngqiángtǐzhì 。",
"Chinese1": "游泳运动可以改善心脏健康,增强体质。",
"Translate1": "Swimming can improve heart health and strengthen your physique.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "zài wǒmen bān , dàjiā dōu hěn xǐhuan shàng tǐyùkè 。",
"Chinese1": "在我们班,大家都很喜欢上体育课。",
"Translate1": "In our class, everyone likes physical education very much.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "jīnniándōngtiān , zhèlǐ huì xiàxuě ma ?",
"Chinese1": "今年冬天,这里会下雪吗?",
"Translate1": "Will it snow here this winter?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā yīdìng huì bǎ gōngzuò zuò dé gēnghǎo , shènzhì bǐ yāoqiú de gēnghǎo 。",
"Chinese1": "他一定会把工作做得更好,甚至比要求的更好。",
"Translate1": "He will definitely do a better job, even better than required.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "yǒu de rén zài zhèlǐ gōngzuò , yǒu de rén zài zhèlǐ xuéxí 。",
"Chinese1": "有的人在这里工作,有的人在这里学习。",
"Translate1": "Some people work here, some people study here.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "yuèláiyuè duō de rén kāishǐ zhòngshì huánbǎo wèntí le 。",
"Chinese1": "越来越多的人开始重视环保问题了。",
"Translate1": "More and more people are beginning to pay attention to environmental protection issues.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tāmen tánlùnzhe zìjǐ de wèilái , wǒmen tīngdé hěn kāixīn 。",
"Chinese1": "他们谈论着自己的未来,我们听得很开心。",
"Translate1": "They talked about their future, and we had a great time listening.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "kǒngjù shì yīzhǒng yǒuhài de qíngxù , tāhuì yǐngxiǎng wǒmen de sīwéinénglì 。",
"Chinese1": "恐惧是一种有害的情绪,它会影响我们的思维能力。",
"Translate1": "Fear is a harmful emotion that affects our ability to think.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒmen yě kěyǐ tōngguò wǎngshàng xuéxí , jiéyuē shíjiān hé jīnglì 。",
"Chinese1": "我们也可以通过网上学习,节约时间和精力。",
"Translate1": "We can also save time and energy by learning online.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wèilái de diànyǐng yào zěnyàngcáinéng biànde gēng yǒuqù ?",
"Chinese1": "未来的电影要怎样才能变得更有趣?",
"Translate1": "How can the movies of the future be more interesting?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tāmen měitiān zǎo shàngchéng gōnggòngqìchē shàngxué 。",
"Chinese1": "他们每天早上乘公共汽车上学。",
"Translate1": "They go to school by bus every morning.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "jǐnguǎn zhècì kǎoshì hěnnán , dàn tāmen háishi áoguòqù le 。",
"Chinese1": "尽管这次考试很难,但他们还是熬过去了。",
"Translate1": "Although the test was difficult, they survived it.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā zhǎngde hěnpiāoliàng , suǒyǐ hěnduō rén xǐhuan hé tā jiāopéngyou 。",
"Chinese1": "她长得很漂亮,所以很多人喜欢和她交朋友。",
"Translate1": "She is very beautiful, so many people like to make friends with her.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tāmen shēnbiān zǒngshì wéirào zhe yīqún péngyou 。",
"Chinese1": "他们身边总是围绕着一群朋友。",
"Translate1": "They are always surrounded by a group of friends.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "yǒushíhou tāmen huìdào chāoshì qù mǎi yīxiē rìchángyòngpǐn 。",
"Chinese1": "有时候他们会到超市去买一些日常用品。",
"Translate1": "Sometimes they will go to the supermarket to buy some daily necessities.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "hěnduō értóng dōu kěwàng qù kànkan wàimiàn bù yīyàng de shìjiè 。",
"Chinese1": "很多儿童都渴望去看看外面不一样的世界。",
"Translate1": "Many children are eager to see a different world outside.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ bìxū hé biéren yǒuxiào gōutōng , cáinéng dádào zìjǐ de mùbiāo ,",
"Chinese1": "你必须和别人有效沟通,才能达到自己的目标,",
"Translate1": "You must communicate effectively with others in order to achieve your goals.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tāmen zhèngzài tǎolùn rúhé yìngduì quánqiú biànnuǎn wèntí 。",
"Chinese1": "他们正在讨论如何应对全球变暖问题。",
"Translate1": "They are discussing how to deal with global warming.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "jīntiān zǎoshang , tā chuān shàng yījiàn xīn yīfú cānjiā le hūnlǐ 。",
"Chinese1": "今天早上,她穿上一件新衣服参加了婚礼。",
"Translate1": "This morning, she wore a new dress to the wedding.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "qīngshàonián men yě gāi cānyù shèhuì wénmíng jiànshè , fāhuī yīngyǒu de zuòyòng 。",
"Chinese1": "青少年们也该参与社会文明建设,发挥应有的作用。",
"Translate1": "Young people should also participate in the construction of social civilization and play their due role.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "xuésheng men nǔlìxuéxí , yǐbiàn jíshí wánchéng xuéxiào bùzhì de zuòyè 。",
"Chinese1": "学生们努力学习,以便及时完成学校布置的作业。",
"Translate1": "The students work hard so that they can complete the homework assigned by the school in time.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "yīnwèi pà shēngbìng , tā měitiān zǎochén dōu jiānchí duànliànshēntǐ 。",
"Chinese1": "因为怕生病,他每天早晨都坚持锻炼身体。",
"Translate1": "Because he is afraid of getting sick, he insists on exercising every morning.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wúlùn nǐ máng bùmáng , dōu bùyào wàngjì gěi jiārén dǎdiànhuà 。",
"Chinese1": "无论你忙不忙,都不要忘记给家人打电话。",
"Translate1": "Whether you're busy or not, don't forget to call your family.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhèbù diànyǐng de zhǔtǐ chōngmǎn le làngmàn de qìfēn 。",
"Chinese1": "这部电影的主题充满了浪漫的气氛。",
"Translate1": "The theme of this film is full of romantic atmosphere.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "yào xiǎng chénggōng , zuì zhòngyào de shì jiānchíbùxiè de nǔlì 。",
"Chinese1": "要想成功,最重要的是坚持不懈的努力。",
"Translate1": "To be successful, the most important thing is to persevere in your efforts.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "rénmen zǒngshì xiǎng bǎohù zìjǐ de zhīshichǎnquán 。",
"Chinese1": "人们总是想保护自己的知识产权。",
"Translate1": "People always want to protect their intellectual property.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhuānyè de jìshùrényuán quèbǎo shèbèi zhèngcháng yùnxíng 。",
"Chinese1": "专业的技术人员确保设备正常运行。",
"Translate1": "Professional technicians ensure the normal operation of the equipment.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "yǒu tiáojiàn de jiātíng kěyǐ gěi háizi tígōng gēnghǎo de jiàoyù 。",
"Chinese1": "有条件的家庭可以给孩子提供更好的教育。",
"Translate1": "Families with conditions can provide better education for their children.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "jiānchí gōngpíng de yuánzé duìyú bǎochí shèhuì héxié hěn zhòngyào 。",
"Chinese1": "坚持公平的原则对于保持社会和谐很重要。",
"Translate1": "Upholding the principle of fairness is important to maintain a harmonious society.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "yào xiǎng ràng zìjǐ de shēnghuó gèngjiā jiǎndān , shǒuxiān yào dǒngde jiǎnshǎo làngfèi 。",
"Chinese1": "要想让自己的生活更加简单,首先要懂得减少浪费。",
"Translate1": "If you want to make your life simpler, you must first know how to reduce waste.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "jīngguò jǐnián de nǔlì , tā zhōngyú shíxiàn le zìjǐ de mèngxiǎng 。",
"Chinese1": "经过几年的努力,他终于实现了自己的梦想。",
"Translate1": "After several years of hard work, he finally realized his dream.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "yǒu le xīn de jìshù , dàliàng de gōngzuò kěyǐ zài jiāzhōng wánchéng 。",
"Chinese1": "有了新的技术,大量的工作可以在家中完成。",
"Translate1": "With new technology, a huge amount of work can be done from home.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhǐyǒu bùduàn de tànsuǒ hé chuàngxīn cáinéng jìnbù 。",
"Chinese1": "只有不断的探索和创新才能进步。",
"Translate1": "Only continuous exploration and innovation can progress.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "míngtiān lǎoshī jiào wǒmen bādiǎn zài xuéxiào jíhé 。",
"Chinese1": "明天老师叫我们八点在学校集合。",
"Translate1": "Tomorrow the teacher will ask us to gather at school at eight o'clock.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "hěnduō rén wéijù dào yīqǐ , rèliè tǎolùn dāngqián de shèhuì wèntí 。",
"Chinese1": "很多人围聚到一起,热烈讨论当前的社会问题。",
"Translate1": "Many people gathered together to discuss current social issues.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wéixiū shīfu zǐxì zhuāngpèi jīqì , fāxiàn gùzhàng hòu lìjí xiūfù 。",
"Chinese1": "维修师傅仔细装配机器,发现故障后立即修复。",
"Translate1": "The maintenance master assembles the machine carefully, and repairs it immediately when a fault is found.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhè tiānqì rèdé bùdéliǎo 。",
"Chinese1": "这天气热得不得了。",
"Translate1": "It's unbelievably hot.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhège xiāoxi bǎ wǒ zhènjīng dé bùdéliǎo 。",
"Chinese1": "这个消息把我震惊得不得了。",
"Translate1": "This news shocked me beyond belief.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhège cài làdé bùdéliǎo 。",
"Chinese1": "这个菜辣得不得了。",
"Translate1": "This dish is incredibly spicy.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ shuō de nàgè dìfāng yuǎndé bùdéliǎo 。",
"Chinese1": "你说的那个地方远得不得了。",
"Translate1": "The place you mentioned is incredibly far away.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā zhèyàng zuò yě shì bùdéyǐ 。",
"Chinese1": "他这样做也是不得已。",
"Translate1": "He did so out of necessity.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "zài zhèyàng de qíngkuàng xià , ràng wǒ bùdéyǐ bìyǎn 。",
"Chinese1": "在这样的情况下,让我不得已闭眼。",
"Translate1": "In this case, I had to close my eyes.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "xiànsuǒ duàn le , wǒ bùdéyǐ fàngqì le zhège jìhuà 。",
"Chinese1": "线索断了,我不得已放弃了这个计划。",
"Translate1": "The leads were broken, and I had to abandon the plan.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "bùfáng wǒmen xiān shìshi zàishuō 。",
"Chinese1": "不妨我们先试试再说。",
"Translate1": "Let's try it out first.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "bùfáng xiānqù le zài shuō 。",
"Chinese1": "不妨先去了在说。",
"Translate1": "Might as well go first and talk.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ shuōdéyǒulǐ , bùfáng dàjiā yīqǐ qù 。",
"Chinese1": "你说得有理,不妨大家一起去。",
"Translate1": "You're right, let's all go together.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ xiān qù bā , lùfèi huílai zài bàoxiāo 。",
"Chinese1": "你先去吧,路费回来在报销。",
"Translate1": "You go first, the travel expenses will be reimbursed when you come back.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ qù zhǎo nǐ māma bàoxiāo nǐ kǎoshì de fèiyòng 。",
"Chinese1": "你去找你妈妈报销你考试的费用。",
"Translate1": "You go to your mother to reimburse the cost of your exam.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ shízài shì tàikùn le , bùyóude shuìzháo le 。",
"Chinese1": "我实在是太困了,不由得睡着了。",
"Translate1": "I was so sleepy that I fell asleep.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā měitiān kèkǔ xuéxí , bùyóude ràng rén pèifú 。",
"Chinese1": "他每天刻苦学习,不由得让人佩服。",
"Translate1": "He studies hard every day, which is admirable.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā chízhīyǐhéng de tàidu , bùyóude lìngrén jìngpèi 。",
"Chinese1": "他持之以恒的态度,不由得令人敬佩。",
"Translate1": "His perseverance is admirable.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nà zhǐ xiǎogǒu tài kěài le , bùyóude shǐrén xīndòng 。",
"Chinese1": "那只小狗太可爱了,不由得使人心动。",
"Translate1": "That puppy is so cute that it can't help but make people's hearts flutter.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhège dìfāng de bùjú , yǒuzhùyú gěi xiāofèizhě dàilái gēnghǎo de gòuwù tǐyàn 。",
"Chinese1": "这个地方的布局,有助于给消费者带来更好的购物体验。",
"Translate1": "The layout of this place helps to bring consumers a better shopping experience.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "guǎngchǎng de bùjú píngzhěng kuānkuò",
"Chinese1": "广场的布局平整宽阔",
"Translate1": "The layout of the square is flat and wide",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhèyàng chuān xiǎnde wǒ bǐjiào chéngshú 。",
"Chinese1": "这样穿显得我比较成熟。",
"Translate1": "This makes me look more mature.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nàyàng chī xiǎnde nǐ hěn méi lǐmào 。",
"Chinese1": "那样吃显得你很没礼貌。",
"Translate1": "It looks very rude of you to eat like that.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhème zuòhuì xiǎnde nǐ hěnxiǎo qì 。",
"Chinese1": "这么做会显得你很小气。",
"Translate1": "Doing so will make you appear petty.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nàyàng shuō xiǎnde tā hěn bèn 。",
"Chinese1": "那样说显得她很笨。",
"Translate1": "She looks stupid for saying that.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhèzhǒng yánsè de yīfú xiǎnde nǐ de liǎnsè bù hǎokàn 。",
"Chinese1": "这种颜色的衣服显得你的脸色不好看。",
"Translate1": "Clothes of this color will make your face look ugly.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ jīntiān kànqǐlai hěn gāoxìng 。",
"Chinese1": "你今天看起来很高兴。",
"Translate1": "You look very happy today.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhège cāntīng kànqǐlai bùcuò , wǒmen kěyǐ shìshi 。",
"Chinese1": "这个餐厅看起来不错,我们可以试试。",
"Translate1": "This restaurant looks good, let's try it.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā kànqǐlai yǒudiǎn shēngqì 。",
"Chinese1": "她看起来有点生气。",
"Translate1": "She looks a little annoyed.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ de yīfú kànqǐlai tǐngguì de 。",
"Chinese1": "你的衣服看起来挺贵的。",
"Translate1": "Your clothes look expensive.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ nǚpéngyou kànqǐlai xiàng wǒ de zhōngwén lǎoshī 。",
"Chinese1": "你女朋友看起来像我的中文老师。",
"Translate1": "Your girlfriend looks like my Chinese teacher.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ jīntiān kànqǐlai hěn miáotiao 。",
"Chinese1": "你今天看起来很苗条。",
"Translate1": "You look slim today.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "kěnéng shì zhèjiàn yīfú xiǎnde wǒ hěn miáotiao 。",
"Chinese1": "可能是这件衣服显得我很苗条。",
"Translate1": "It may be that this dress makes me look slim.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "děng wǒ zhǎnggōngzī yǐhòu qǐng nǐ chīfàn 。",
"Chinese1": "等我涨工资以后请你吃饭。",
"Translate1": "Treat you to dinner after I raise my salary.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "tīngdào zhège xiāoxi yǐhòu , wǒ gāoxìng dé yī wǎnshàng méishuì 。",
"Chinese1": "听到这个消息以后,我高兴得一晚上没睡。",
"Translate1": "After hearing the news, I was so happy that I didn't sleep all night.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"f": "",
"Type": "",
"Desc": "",
"Pinyin1": "yǐhòu zàiyě bù lái zhèlǐ chīfàn le , yòu guì yòu nánchī 。",
"Chinese1": "以后再也不来这里吃饭了,又贵又难吃。",
"Translate1": "I will never eat here again, it's expensive and unpalatable.",
"Pinyin2": "",
"Chinese2": "",