-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHSK3.2.json
More file actions
2191 lines (2191 loc) · 55.9 KB
/
HSK3.2.json
File metadata and controls
2191 lines (2191 loc) · 55.9 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
[
{
"sid": 1,
"Type": "",
"Desc": "",
"Pinyin1": "bùyào wàngjì suǒmén 。",
"Chinese1": "不要忘记锁门。",
"Translate1": "Don't forget to lock the door.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 2,
"Type": "",
"Desc": "",
"Pinyin1": "míngtiān wǒ gěi dàjiā zhǎnshì yīgè kēxuéshíyàn 。",
"Chinese1": "明天我给大家展示一个科学实验。",
"Translate1": "Tomorrow I will show you a science experiment.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 3,
"Type": "",
"Desc": "",
"Pinyin1": "bié zài zhèlǐ xīyān 。",
"Chinese1": "别在这里吸烟。",
"Translate1": "Don't smoke here.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 4,
"Type": "",
"Desc": "",
"Pinyin1": "dàhǎi yǒu xǔduō yǒuqù de shēngwù 。",
"Chinese1": "大海有许多有趣的生物。",
"Translate1": "There are many interesting creatures in the sea.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 5,
"Type": "",
"Desc": "",
"Pinyin1": "háizi men zài cāochǎngshàng wánshuǎ 。",
"Chinese1": "孩子们在操场上玩耍。",
"Translate1": "Children play on the playground.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 6,
"Type": "",
"Desc": "",
"Pinyin1": "quánjiā yīqǐ qù jiāoyóu , duōme kāixīn 。",
"Chinese1": "全家一起去郊游,多么开心。",
"Translate1": "What a joy to go on an outing with the whole family.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 7,
"Type": "",
"Desc": "",
"Pinyin1": "chūntiān lái le , huādōukāi le 。",
"Chinese1": "春天来了,花都开了。",
"Translate1": "Spring is here and the flowers are blooming.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 8,
"Type": "",
"Desc": "",
"Pinyin1": "jīntiānxiàwǔ wǒyào cānjiā yīgè jùhuì 。",
"Chinese1": "今天下午我要参加一个聚会。",
"Translate1": "I'm going to a party this afternoon.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 9,
"Type": "",
"Desc": "",
"Pinyin1": "bùduàn de nǔlì , cáinéng shíxiàn mèngxiǎng 。",
"Chinese1": "不断地努力,才能实现梦想。",
"Translate1": "Only by working hard can your dreams come true.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 10,
"Type": "",
"Desc": "",
"Pinyin1": "xīnnián dào le , dàjiā gāi tuányuán le 。",
"Chinese1": "新年到了,大家该团圆了。",
"Translate1": "The new year is here, and it's time for everyone to reunite.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 11,
"Type": "",
"Desc": "",
"Pinyin1": "xuéxiào líjiā bùyuǎn , kěyǐ bùxíng shàngxué 。",
"Chinese1": "学校离家不远,可以步行上学。",
"Translate1": "The school is not far from home and you can walk to school.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 12,
"Type": "",
"Desc": "",
"Pinyin1": "shànliáng de rén , dàjiā dōu xǐhuan 。",
"Chinese1": "善良的人,大家都喜欢。",
"Translate1": "Kind people are liked by everyone.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 13,
"Type": "",
"Desc": "",
"Pinyin1": "jīntiān hěn rè , chūmén yào zhùyì fángshài 。",
"Chinese1": "今天很热,出门要注意防晒。",
"Translate1": "It's hot today, so pay attention to sunscreen when you go out.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 14,
"Type": "",
"Desc": "",
"Pinyin1": "qù bówùguǎn bā , xīnshǎng yīxià wénhuà 。",
"Chinese1": "去博物馆吧,欣赏一下文化。",
"Translate1": "Go to a museum and enjoy the culture.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 15,
"Type": "",
"Desc": "",
"Pinyin1": "jiànkāng yǐnshí shì hěn zhòngyào de 。",
"Chinese1": "健康饮食是很重要的。",
"Translate1": "Eating a healthy diet is important.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 16,
"Type": "",
"Desc": "",
"Pinyin1": "nǐ jīntiān xūyào bǎ zhège gōngzuò zuò wán 。",
"Chinese1": "你今天需要把这个工作做完。",
"Translate1": "You need to get this job done today.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 17,
"Type": "",
"Desc": "",
"Pinyin1": "bàba zhèngzài zhònghuā , kànqǐlai hěn máng 。",
"Chinese1": "爸爸正在种花,看起来很忙。",
"Translate1": "Dad is planting flowers and looks very busy.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 18,
"Type": "",
"Desc": "",
"Pinyin1": "nǎxiē rén míngtiān néng yīqǐ qù yěcān ?",
"Chinese1": "哪些人明天能一起去野餐?",
"Translate1": "Who can go to the picnic tomorrow?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 19,
"Type": "",
"Desc": "",
"Pinyin1": "zūnzhòng biéren cáinéng lājìn bǐcǐ de jùlí 。",
"Chinese1": "尊重别人才能拉近彼此的距离。",
"Translate1": "Respect for others is the only way to get closer to each other.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 20,
"Type": "",
"Desc": "",
"Pinyin1": "wǒ zhèngzài zhǔnbèi jīntiān de jiémù 。",
"Chinese1": "我正在准备今天的节目。",
"Translate1": "I'm preparing for today's program.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 21,
"Type": "",
"Desc": "",
"Pinyin1": "tā jīntiān méiyǒu lái shàngkè 。",
"Chinese1": "他今天没有来上课。",
"Translate1": "He didn't come to class today.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 22,
"Type": "",
"Desc": "",
"Pinyin1": "jīzhǎng bìxū quèbǎo fēixíng ānquán 。",
"Chinese1": "机长必须确保飞行安全。",
"Translate1": "The captain must ensure the safety of the flight.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 23,
"Type": "",
"Desc": "",
"Pinyin1": "háizi men hěn qīdài kàn diànyǐng 。 。",
"Chinese1": "孩子们很期待看电影。。",
"Translate1": "The kids were looking forward to watching the movie. .",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 24,
"Type": "",
"Desc": "",
"Pinyin1": "tā huì bǎ mìmì bǎoshǒu dào sǐ 。",
"Chinese1": "她会把秘密保守到死。",
"Translate1": "She'll keep it a secret until she dies.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 25,
"Type": "",
"Desc": "",
"Pinyin1": "cáiwùrényuán yǐjīng chǔlǐ le zhàngmù 。",
"Chinese1": "财务人员已经处理了账目。",
"Translate1": "Accounts have been processed by the financial staff.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 26,
"Type": "",
"Desc": "",
"Pinyin1": "dàjiā bìxū zūnshǒu zhíyè cāoshǒu 。",
"Chinese1": "大家必须遵守职业操守。",
"Translate1": "Everyone must abide by professional ethics.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 27,
"Type": "",
"Desc": "",
"Pinyin1": "tāmen yǐjīng qǔdé le zhòngdà de jìnzhǎn 。",
"Chinese1": "他们已经取得了重大的进展。",
"Translate1": "They have made significant progress.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 28,
"Type": "",
"Desc": "",
"Pinyin1": "dàjiā zhèngzài tǎolùn zhe zhècì chūnyóu 。",
"Chinese1": "大家正在讨论着这次春游。",
"Translate1": "Everyone is discussing this spring outing.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 30,
"Type": "",
"Desc": "",
"Pinyin1": "tā zhèngzài wéi hūnlǐ zuò zhǔnbèi 。",
"Chinese1": "她正在为婚礼做准备。",
"Translate1": "She is getting ready for the wedding.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 31,
"Type": "",
"Desc": "",
"Pinyin1": "qǐyè zhèngzài zhāopìn xīnrén 。",
"Chinese1": "企业正在招聘新人。",
"Translate1": "Businesses are hiring new people.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 32,
"Type": "",
"Desc": "",
"Pinyin1": "zhèjiàn shì yǐnqǐ le dàjiā de guānzhù 。",
"Chinese1": "这件事引起了大家的关注。",
"Translate1": "This incident has attracted everyone's attention.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 33,
"Type": "",
"Desc": "",
"Pinyin1": "zhíxíng shíyào jiāyǐ tiáozhěng 。",
"Chinese1": "执行时要加以调整。",
"Translate1": "To be adjusted during execution.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 34,
"Type": "",
"Desc": "",
"Pinyin1": "nǐ dàodǐ xiǎng biǎodá shénme ?",
"Chinese1": "你到底想表达什么?",
"Translate1": "What exactly are you trying to express?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 35,
"Type": "",
"Desc": "",
"Pinyin1": "zhè zhēnshi tiāndà de cuòwù !",
"Chinese1": "这真是天大的错误!",
"Translate1": "What a big mistake!",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 36,
"Type": "",
"Desc": "",
"Pinyin1": "nǐ zhēn yǒu yǒngqì !",
"Chinese1": "你真有勇气!",
"Translate1": "You are so brave!",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 37,
"Type": "",
"Desc": "",
"Pinyin1": "nǐ dǎnzi zhēn dà !",
"Chinese1": "你胆子真大!",
"Translate1": "You are so brave!",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 38,
"Type": "",
"Desc": "",
"Pinyin1": "nǐ bǐ yǐqián gēng piàoliang le !",
"Chinese1": "你比以前更漂亮了!",
"Translate1": "You are more beautiful than ever!",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 39,
"Type": "",
"Desc": "",
"Pinyin1": "zěnme nénggòu zhème yúmèi !",
"Chinese1": "怎么能够这么愚昧!",
"Translate1": "How can you be so ignorant!",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 40,
"Type": "",
"Desc": "",
"Pinyin1": "nǐhǎo , hěn gāoxìng jiàndào nǐ !",
"Chinese1": "你好,很高兴见到你!",
"Translate1": "Hi, nice to meet you!",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 41,
"Type": "",
"Desc": "",
"Pinyin1": "méiyǒu rén kěyǐ zǔdǎng wǒ 。",
"Chinese1": "没有人可以阻挡我。",
"Translate1": "No one can stop me.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 42,
"Type": "",
"Desc": "",
"Pinyin1": "wǒhuì fèndǒudàodǐ 。",
"Chinese1": "我会奋斗到底。",
"Translate1": "I will fight to the end.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 43,
"Type": "",
"Desc": "",
"Pinyin1": "wǒ bùxiǎng shīqù nǐ 。",
"Chinese1": "我不想失去你。",
"Translate1": "I do not want to lose you.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 44,
"Type": "",
"Desc": "",
"Pinyin1": "wǒhuì yǒngyuǎn ài nǐ 。",
"Chinese1": "我会永远爱你。",
"Translate1": "I will love you forever.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 45,
"Type": "",
"Desc": "",
"Pinyin1": "yǒu nǐ zài , wǒ jiù yǒu zìxìn !",
"Chinese1": "有你在,我就有自信!",
"Translate1": "With you, I have confidence!",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 46,
"Type": "",
"Desc": "",
"Pinyin1": "nǐ yīdìng yào jiānqiáng !",
"Chinese1": "你一定要坚强!",
"Translate1": "You must be strong!",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 47,
"Type": "",
"Desc": "",
"Pinyin1": "yīqiè dōuhuì yǒu hǎo de jiéguǒ de !",
"Chinese1": "一切都会有好的结果的!",
"Translate1": "Everything will work out!",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 48,
"Type": "",
"Desc": "",
"Pinyin1": "wǒhuì yǒngyuǎn péibàn nǐ !",
"Chinese1": "我会永远陪伴你!",
"Translate1": "I will always be with you!",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 49,
"Type": "",
"Desc": "",
"Pinyin1": "nǐ bùyào zǒng xiǎngzhe bàofù tāmen 。",
"Chinese1": "你不要总想着报复他们。",
"Translate1": "You don't always want to get revenge on them.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 50,
"Type": "",
"Desc": "",
"Pinyin1": "shénme dū huì guòqu de 。",
"Chinese1": "什么都会过去的。",
"Translate1": "Everything will pass.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 51,
"Type": "",
"Desc": "",
"Pinyin1": "bù huīxīn , jìxù jiāyóu bā !",
"Chinese1": "不灰心,继续加油吧!",
"Translate1": "Don't be discouraged, keep going!",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 52,
"Type": "",
"Desc": "",
"Pinyin1": "hòuzheliǎnpí , yǒnggǎn miànduì 。",
"Chinese1": "厚着脸皮,勇敢面对。",
"Translate1": "Thick-skinned and brave.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 53,
"Type": "",
"Desc": "",
"Pinyin1": "bùyào zǒng duì zìjǐ tài kēkè 。",
"Chinese1": "不要总对自己太苛刻。",
"Translate1": "Don't always be too hard on yourself.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 54,
"Type": "",
"Desc": "",
"Pinyin1": "nǐ yīnggāi zuò yīgè yǒu zhǔjiàn de rén !",
"Chinese1": "你应该做一个有主见的人!",
"Translate1": "You should be an independent person!",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 55,
"Type": "",
"Desc": "",
"Pinyin1": "bié ràng biéren cǎità nǐ 。",
"Chinese1": "别让别人踩踏你。",
"Translate1": "Don't let others step on you.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 56,
"Type": "",
"Desc": "",
"Pinyin1": "yǒngyuǎn bùyào fàngqì xīwàng 。",
"Chinese1": "永远不要放弃希望。",
"Translate1": "Never give up hope.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 57,
"Type": "",
"Desc": "",
"Pinyin1": "wǒmen huì yīqǐ qiánjìn 。",
"Chinese1": "我们会一起前进。",
"Translate1": "We will move forward together.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 58,
"Type": "",
"Desc": "",
"Pinyin1": "zuò yīxiē nǐ mèngxiǎng zhōng de shì 。",
"Chinese1": "做一些你梦想中的事。",
"Translate1": "Do something of your dreams.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 59,
"Type": "",
"Desc": "",
"Pinyin1": "fāxiàn bìng tànsuǒ nǐ nèixīnshēnchù 。",
"Chinese1": "发现并探索你内心深处。",
"Translate1": "Discover and explore the depths of your being.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 60,
"Type": "",
"Desc": "",
"Pinyin1": "zǒuchū nǐ de shūshì qū !",
"Chinese1": "走出你的舒适区!",
"Translate1": "Get out of your comfort zone!",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 61,
"Type": "",
"Desc": "",
"Pinyin1": "bié ràng biéren dehuà zuǒyòu nǐ 。",
"Chinese1": "别让别人的话左右你。",
"Translate1": "Don't let other people's words sway you.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 62,
"Type": "",
"Desc": "",
"Pinyin1": "xiāngxìn nǐ zìjǐ bìng bǎochí nǐ de xìnxīn 。",
"Chinese1": "相信你自己并保持你的信心。",
"Translate1": "Believe in yourself and maintain your confidence.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 63,
"Type": "",
"Desc": "",
"Pinyin1": "gǎnyú zuò zìjǐ !",
"Chinese1": "敢于做自己!",
"Translate1": "Dare to be yourself!",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 64,
"Type": "",
"Desc": "",
"Pinyin1": "shǐzhōng jìzhu , bùyào xiàng mìngyùn dītóu 。",
"Chinese1": "始终记住,不要向命运低头。",
"Translate1": "Always remember, don't bow to fate.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 65,
"Type": "",
"Desc": "",
"Pinyin1": "zhǐyǒu yǒngyú pīnbó , cáinéng chénggōng 。",
"Chinese1": "只有勇于拼搏,才能成功。",
"Translate1": "Only with the courage to fight hard can we succeed.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 66,
"Type": "",
"Desc": "",
"Pinyin1": "yīdìng yào yǒu zìxìn !",
"Chinese1": "一定要有自信!",
"Translate1": "Must have self-confidence!",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 67,
"Type": "",
"Desc": "",
"Pinyin1": "wǒ qù nàjiā shāngdiàn mǎiguò dōngxi 。",
"Chinese1": "我去那家商店买过东西。",
"Translate1": "I went to that store to buy something.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 68,
"Type": "",
"Desc": "",
"Pinyin1": "tiānsè zhújiàn biànàn le 。",
"Chinese1": "天色逐渐变暗了。",
"Translate1": "It was getting dark gradually.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 69,
"Type": "",
"Desc": "",
"Pinyin1": "wǒ měitiān chī liǎngdùn fàn 。",
"Chinese1": "我每天吃两顿饭。",
"Translate1": "I eat two meals a day.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 70,
"Type": "",
"Desc": "",
"Pinyin1": "tāxué le hǎojǐnián pǔtōnghuà le 。",
"Chinese1": "他学了好几年普通话了。",
"Translate1": "He has studied Mandarin for several years.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 71,
"Type": "",
"Desc": "",
"Pinyin1": "wǒ àikàn diànshìjù 。",
"Chinese1": "我爱看电视剧。",
"Translate1": "I love watching TV shows.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 72,
"Type": "",
"Desc": "",
"Pinyin1": "zuótiānzǎoshàng tā fāqǐ le tǎolùn 。",
"Chinese1": "昨天早上他发起了讨论。",
"Translate1": "He initiated the discussion yesterday morning.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 73,
"Type": "",
"Desc": "",
"Pinyin1": "tīngdéchū tā de shēngyīn ma ?",
"Chinese1": "听得出他的声音吗?",
"Translate1": "Can you hear his voice?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 74,
"Type": "",
"Desc": "",
"Pinyin1": "wǒ gēn péngyou zài liáotiān 。",
"Chinese1": "我跟朋友在聊天。",
"Translate1": "I am chatting with my friend.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 75,
"Type": "",
"Desc": "",
"Pinyin1": "wǒ xiǎng jìxù xuéxí pǔtōnghuà 。",
"Chinese1": "我想继续学习普通话。",
"Translate1": "I want to continue learning Mandarin.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 76,
"Type": "",
"Desc": "",
"Pinyin1": "jiǔdiǎnbàn wǒmen zhǔnshí dào nàli 。",
"Chinese1": "九点半我们准时到那里。",
"Translate1": "We got there on time at half past nine.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 77,
"Type": "",
"Desc": "",
"Pinyin1": "wǒ nǔlì dì gēnzhe lǎoshī xuéxí pǔtōnghuà 。",
"Chinese1": "我努力地跟着老师学习普通话。",
"Translate1": "I worked hard to learn Mandarin with my teacher.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 78,
"Type": "",
"Desc": "",
"Pinyin1": "tā bù zàijiā , wàichū mǎicài qù le 。",
"Chinese1": "他不在家,外出买菜去了。",
"Translate1": "He is not at home, he went out to buy groceries.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 79,
"Type": "",
"Desc": "",
"Pinyin1": "jīntiān zhēnde tàirè le !",
"Chinese1": "今天真的太热了!",
"Translate1": "It's really hot today!",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 80,
"Type": "",
"Desc": "",
"Pinyin1": "kōngtiáo de zàoyīn ràng tā wúfǎ rùshuì 。",
"Chinese1": "空调的噪音让他无法入睡。",
"Translate1": "The noise of the air conditioner kept him from sleeping.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 81,
"Type": "",
"Desc": "",
"Pinyin1": "zuótiānwǎnshàng qīdiǎn tā zài chīwǎnfàn 。",
"Chinese1": "昨天晚上七点他在吃晚饭。",
"Translate1": "He was having dinner at seven o'clock last night.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 82,
"Type": "",
"Desc": "",
"Pinyin1": "tā xǐhuan shōují gèzhǒng jīngdiǎn de diànyǐng 。",
"Chinese1": "他喜欢收集各种经典的电影。",
"Translate1": "He likes to collect all kinds of classic movies.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 83,
"Type": "",
"Desc": "",
"Pinyin1": "tā shì zhèlǐ zuì shòuhuānyíng de rén zhīyī 。",
"Chinese1": "她是这里最受欢迎的人之一。",
"Translate1": "She is one of the most popular people here.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 84,
"Type": "",
"Desc": "",
"Pinyin1": "zuótiān nàgè nǚhái shì wǒmen xuéxiào de 。",
"Chinese1": "昨天那个女孩是我们学校的。",
"Translate1": "That girl was from our school yesterday.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 85,
"Type": "",
"Desc": "",
"Pinyin1": "wǒ xiǎng tígāo pǔtōnghuà de shuǐpíng 。",
"Chinese1": "我想提高普通话的水平。",
"Translate1": "I want to improve my Mandarin.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 86,
"Type": "",
"Desc": "",
"Pinyin1": "yěxǔ nǐ kěyǐ jiārù pǔtōnghuà xuéxíbān 。",
"Chinese1": "也许你可以加入普通话学习班。",
"Translate1": "Maybe you could join a Mandarin class.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 87,
"Type": "",
"Desc": "",
"Pinyin1": "nǐ kěyǐ jīngcháng liànxí pǔtōnghuà 。",
"Chinese1": "你可以经常练习普通话。",
"Translate1": "You can practice Mandarin often.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 88,
"Type": "",
"Desc": "",
"Pinyin1": "wǒ kěyǐ xiàng nǐ qǐngjiào yīgè wèntí ma ?",
"Chinese1": "我可以向你请教一个问题吗?",
"Translate1": "Can i ask you a question",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 89,
"Type": "",
"Desc": "",
"Pinyin1": "bǐsài wǒ ná le dìyīmíng 。",
"Chinese1": "比赛我拿了第一名。",
"Translate1": "I won the first place in the game.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 90,
"Type": "",
"Desc": "",
"Pinyin1": "wǒmen láizì bùtóng de chéngshì 。",
"Chinese1": "我们来自不同的城市。",
"Translate1": "We are from different cities.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 91,
"Type": "",
"Desc": "",
"Pinyin1": "jīntiān de duìhuà hěn yǒuqù 。",
"Chinese1": "今天的对话很有趣。",
"Translate1": "Interesting conversation today.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 92,
"Type": "",
"Desc": "",
"Pinyin1": "nǐ yǒu duōjiǔ méi jiàndào wǒ le ?",
"Chinese1": "你有多久没见到我了?",
"Translate1": "How long has it been since you saw me?",
"Pinyin2": "",
"Chinese2": "",