-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path12.07.json
More file actions
3291 lines (3291 loc) · 84.6 KB
/
12.07.json
File metadata and controls
3291 lines (3291 loc) · 84.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
[
{
"Key": "a1",
"Type": "",
"Desc": "",
"Pinyin1": "zhège zhǔyi hǎojíle 。",
"Chinese1": "这个主意好极了。",
"Translate1": "That's a great idea.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wèidao hǎojíle !",
"Chinese1": "味道好极了!",
"Translate1": "Tastes great!",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā de yīngwén bàngjíle 。",
"Chinese1": "他的英文棒极了。",
"Translate1": "His English is excellent.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "hūnlǐ rènao jíle 。",
"Chinese1": "婚礼热闹极了。",
"Translate1": "The wedding was very lively.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "yīdiǎn shēngyīn dū méiyǒu , ānjìng jíle 。",
"Chinese1": "一点声音都没有,安静极了。",
"Translate1": "There was no sound at all, it was extremely quiet.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "zuótiān de pàiduì wúliáo jíle !",
"Chinese1": "昨天的派对无聊极了!",
"Translate1": "Yesterday's party was so boring!",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā nàme shēngqì , wǒmen dōu hàipà jíle 。",
"Chinese1": "他那么生气,我们都害怕极了。",
"Translate1": "He was so angry that we were all terrified.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "gāokǎo nàtiān , wǒ jǐnzhāng jíle 。",
"Chinese1": "高考那天,我紧张极了。",
"Translate1": "On the day of the college entrance examination, I was extremely nervous.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhèjiàn shì ràng wǒmen dōu gāngà jíle 。",
"Chinese1": "这件事让我们都尴尬极了。",
"Translate1": "This incident embarrasses us all.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nàgè nánhái tǎoyàn jíle !",
"Chinese1": "那个男孩讨厌极了!",
"Translate1": "That boy is so annoying!",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ de liǎn hónghóngde 。",
"Chinese1": "你的脸红红的。",
"Translate1": "Your face is red.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "bǎobǎo de yǎnjīng dàdàde 。",
"Chinese1": "宝宝的眼睛大大的。",
"Translate1": "The baby's eyes are big.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "jīnwǎn de yuèliang yuányuánde 。",
"Chinese1": "今晚的月亮圆圆的。",
"Translate1": "The moon is full tonight.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā bàba gāogāo pàngpàngde 。",
"Chinese1": "她爸爸高高胖胖的。",
"Translate1": "Her father is tall and fat.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ mèimei shòushòuxiǎoxiǎo de 。",
"Chinese1": "我妹妹瘦瘦小小的。",
"Translate1": "My sister is thin and small.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "gāogāoxìngxìng",
"Chinese1": "高高兴兴",
"Translate1": "happily",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "rèrènàonào",
"Chinese1": "热热闹闹",
"Translate1": "lively",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "piāopiāoliàngliàng",
"Chinese1": "漂漂亮亮",
"Translate1": "pretty",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "shūshufufu",
"Chinese1": "舒舒服服",
"Translate1": "Comfortable",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "ānānjìngjìng",
"Chinese1": "安安静静",
"Translate1": "Quiet",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒmen qīngqingchǔchǔ de kàndào tā gēn yīgè pàngpàngde nánrén shàngchē le 。",
"Chinese1": "我们清清楚楚的看到他跟一个胖胖的男人上车了。",
"Translate1": "We clearly saw him get into the car with a fat man.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ zhēnxiǎng shūshufufu de tǎng zài shāfā shàng kàndiànshì 。",
"Chinese1": "我真想舒舒服服地躺在沙发上看电视。",
"Translate1": "I really want to lie comfortably on the sofa and watch TV.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ māma xīnxīnkǔkǔ de zuò le liǎnggè xiǎoshí de fàn , nǐ zěnme bùchī ?",
"Chinese1": "你妈妈辛辛苦苦地做了两个小时的饭,你怎么不吃?",
"Translate1": "Your mother has worked so hard to cook a meal for two hours, why don't you eat it?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "mèimei kuài guòshēngrì le , wǒ dǎsuàn gěi tā bàn yīgè shēngripàiduì 。",
"Chinese1": "妹妹快过生日了,我打算给她办一个生日派对。",
"Translate1": "My sister's birthday is coming soon, and I plan to hold a birthday party for her.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "lái , hēdiǎn jiǔ , gāoxìng gāoxìng 。",
"Chinese1": "来,喝点酒,高兴高兴。",
"Translate1": "Come on, have a drink and be happy.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "dào zhèlǐ lái liángkuai liángkuai 。",
"Chinese1": "到这里来凉快凉快。",
"Translate1": "Come here to cool off.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ xiǎng qù wàimiàn zǒuzǒu , ānjìng yīxià 。",
"Chinese1": "我想去外面走走,安静一下。",
"Translate1": "I want to go for a walk outside and be quiet.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "xiǎng bùxiǎng qù zuò gè ànmó , fàngsōng yīxià 。",
"Chinese1": "想不想去做个按摩,放松一下。",
"Translate1": "Want to go for a massage and relax.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ yào nǔlì de xuéxí 。",
"Chinese1": "你要努力地学习。",
"Translate1": "You have to study hard.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "yǔtiān dì huá , mànmàn de zǒu 。",
"Chinese1": "雨天地滑,慢慢地走。",
"Translate1": "On rainy days, the ground is slippery, walk slowly.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā shùnlì de tōngguò kǎoshì le 。",
"Chinese1": "他顺利地通过考试了。",
"Translate1": "He passed the exam successfully.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā rènzhēn de duì wǒ shuō : “ wǒ xǐhuan nǐ 。",
"Chinese1": "他认真地对我说:“我喜欢你。",
"Translate1": "He said to me seriously: \"I like you\".",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā rèqíng de yōngbào le wǒ 。",
"Chinese1": "他热情地拥抱了我。",
"Translate1": "He hugged me warmly.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā jīdòng de duì wǒ shuō “ xièxie ” 。",
"Chinese1": "她激动地对我说“谢谢”。",
"Translate1": "She excitedly said \"thank you\" to me.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "lǎoshī shēngqì de kànzhe wǒmen 。",
"Chinese1": "老师生气地看着我们。",
"Translate1": "The teacher looked at us angrily.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "háizi men kāixīn dechàng le qǐlai 。",
"Chinese1": "孩子们开心地唱了起来。",
"Translate1": "The children sang happily.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "dàjiā dōu zài jiàoshì lǐ ānānjìngjìng de kànshū 。",
"Chinese1": "大家都在教室里安安静静地看书。",
"Translate1": "Everyone is reading quietly in the classroom.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ xīwàng nǐ kuàikuàilèlè de zhǎngdà 。",
"Chinese1": "我希望你快快乐乐地长大。",
"Translate1": "I hope you grow up happily.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "yòu xiàyǔ le !",
"Chinese1": "又下雨了!",
"Translate1": "It's raining again!",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ yòu chídào le 。",
"Chinese1": "你又迟到了。",
"Translate1": "You are late again.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "bǎobǎo yòu kū le 。",
"Chinese1": "宝宝又哭了。",
"Translate1": "The baby is crying again.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ yòu wàng le 。",
"Chinese1": "我又忘了。",
"Translate1": "I forgot again.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā yòu méilái shàngkè 。",
"Chinese1": "他又没来上课。",
"Translate1": "He didn't come to class again.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ zhècì yòu bù fùqián ?",
"Chinese1": "你这次又不付钱?",
"Translate1": "You don't pay again this time?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ yòu bù cānjiā ?",
"Chinese1": "你又不参加?",
"Translate1": "Are you not going to participate?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "duìbuqǐ , wǒ yòu méidài shū 。",
"Chinese1": "对不起,我又没带书。",
"Translate1": "Sorry, I don't have any books with me.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "jīntiān yòu yào jiābān le !",
"Chinese1": "今天又要加班了!",
"Translate1": "I have to work overtime again today!",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "lǎobǎn qǐngkè , yòu kěyǐ chī dàcān le !",
"Chinese1": "老板请客,又可以吃大餐了!",
"Translate1": "The boss treats you, and you can have a big meal again!",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "kuài guònián le , wǒmen yòu néng ná hóngbāo le !",
"Chinese1": "快过年了,我们又能拿红包了!",
"Translate1": "It's almost Chinese New Year, we can get red envelopes again!",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ yīzhí zài xuéxí zhōngwén 。",
"Chinese1": "我一直在学习中文。",
"Translate1": "I have been studying Chinese.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "zuótiānwǎnshàng wǒ yīzhí zài zuòzuòyè 。",
"Chinese1": "昨天晚上我一直在做作业。",
"Translate1": "I was doing my homework last night.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "lǎobǎn yīzhí hěn máng 。",
"Chinese1": "老板一直很忙。",
"Translate1": "The boss has been very busy.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ yīzhí hěn xǐhuan nǐ 。",
"Chinese1": "我一直很喜欢你。",
"Translate1": "I have always liked you.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "bàba yīzhí dōu bù chōuyān 。",
"Chinese1": "爸爸一直都不抽烟。",
"Translate1": "Dad has never smoked.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ nánpéngyou yīzhí zài zhōngguó jiào yīngwén 。",
"Chinese1": "我男朋友一直在中国教英文。",
"Translate1": "My boyfriend has been teaching English in China.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "shíbāsuì yǐhòu , tā yīzhí yīgè rénzhù 。",
"Chinese1": "十八岁以后,他一直一个人住。",
"Translate1": "Since the age of eighteen, he has been living alone.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ yīzhí zài zhèjiā gōngsī gōngzuò ma ?",
"Chinese1": "你一直在这家公司工作吗?",
"Translate1": "Have you been working for this company?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐmen yīzhí zhùzàiyīqǐ ma ?",
"Chinese1": "你们一直住在一起吗?",
"Translate1": "Have you been living together?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "běijīng de kōngqì yīzhí hěn bùhǎo 。",
"Chinese1": "北京的空气一直很不好。",
"Translate1": "The air in Beijing has always been very bad.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā zǒngshì chídào 。",
"Chinese1": "他总是迟到。",
"Translate1": "He is always late.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ zǒngshì wàngjì zhège cí 。",
"Chinese1": "我总是忘记这个词。",
"Translate1": "I keep forgetting this word.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā zǒngshì yīgè rén chīfàn 。",
"Chinese1": "他总是一个人吃饭。",
"Translate1": "He always eats alone.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ nánpéngyou zǒngshì shuō zānghuà 。",
"Chinese1": "你男朋友总是说脏话。",
"Translate1": "Your boyfriend is always swearing.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ de xuésheng zǒngshì wèn wǒ hěnduō yǒuyìsi de wèntí 。",
"Chinese1": "我的学生总是问我很多有意思的问题。",
"Translate1": "My students always ask me a lot of interesting questions.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā zǒngshì hěnlěi 。",
"Chinese1": "他总是很累。",
"Translate1": "He is always tired.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ wèishénme zǒngshì hěn máng ?",
"Chinese1": "你为什么总是很忙?",
"Translate1": "why are you always so busy",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐjiā zǒngshì hěn gānjìng 。",
"Chinese1": "你家总是很干净。",
"Translate1": "Your home is always clean.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "háizi men zǒngshì fēicháng kāixīn 。",
"Chinese1": "孩子们总是非常开心。",
"Translate1": "The kids are always so happy.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ de xuésheng zǒngshì tèbié nǔlì 。",
"Chinese1": "我的学生总是特别努力。",
"Translate1": "My students always work really hard.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "tāmen yǐjīng liǎngtiān méi chī dōngxi le 。",
"Chinese1": "他们已经两天没吃东西了。",
"Translate1": "They have not eaten for two days.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒmen yǐjīng shínián méijiàn le 。",
"Chinese1": "我们已经十年没见了。",
"Translate1": "We haven't seen each other for ten years.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā yǐjīng yīgè xīngqī méi xǐzǎo le 。",
"Chinese1": "他已经一个星期没洗澡了。",
"Translate1": "He hasn't showered for a week.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ duōchángshíjiān méi guāhúzi le ?",
"Chinese1": "你多长时间没刮胡子了?",
"Translate1": "How long has it been since you shaved?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā bànge yuè méi chūmén le 。",
"Chinese1": "她半个月没出门了。",
"Translate1": "She hasn't gone out for half a month.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐmen duōjiǔ méi huíjiā le ?",
"Chinese1": "你们多久没回家了?",
"Translate1": "How long have you been home?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ duōjiǔ méi xiūjià le ?",
"Chinese1": "你多久没休假了?",
"Translate1": "How long has it been since you took a vacation?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "mǎi bā , nǐ yǐjīng yīnián duō méi mǎi xīn yīfú le 。",
"Chinese1": "买吧,你已经一年多没买新衣服了。",
"Translate1": "Go ahead, you haven't bought new clothes in over a year.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ hǎoxiàng hěnjiǔméi zhème kāixīn le 。",
"Chinese1": "你好像很久没这么开心了。",
"Translate1": "It seems like you haven't been this happy in a long time.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ yǐjīng shínián méi lái zhōngguó le 。",
"Chinese1": "我已经十年没来中国了。",
"Translate1": "I haven't been to China for ten years.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ shàngcì lái zhōngguó shì èrlíngyīlíng nián 。",
"Chinese1": "我上次来中国是2010年。",
"Translate1": "The last time I came to China was 2010.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ zhōngyú dào le !",
"Chinese1": "你终于到了!",
"Translate1": "You are finally here!",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒmen zhōngyú jiànmiàn le !",
"Chinese1": "我们终于见面了!",
"Translate1": "We finally meet!",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐmen zhōngyú míngbai le 。",
"Chinese1": "你们终于明白了。",
"Translate1": "You finally understand.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "zuòyè zhōngyú zuò wán le !",
"Chinese1": "作业终于做完了!",
"Translate1": "The homework is finally done!",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "fēijī zhōngyú qǐfēi le !",
"Chinese1": "飞机终于起飞了!",
"Translate1": "The plane finally took off!",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐmen zhōngyú juédìng le 。",
"Chinese1": "你们终于决定了。",
"Translate1": "You have finally decided.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "fàn zhōngyú zuòhǎo le 。",
"Chinese1": "饭终于做好了。",
"Translate1": "The meal is finally ready.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhège yuànwàng zhōngyú shíxiàn le !",
"Chinese1": "这个愿望终于实现了!",
"Translate1": "This wish finally came true!",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒmen zhǎo le liǎnggè duō xiǎoshí , zhōngyú zhǎodào le nàjiādiàn 。",
"Chinese1": "我们找了两个多小时,终于找到了那家店。",
"Translate1": "We searched for more than two hours and finally found the store.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhèxiē wèntí zhōngyú jiějué le 。",
"Chinese1": "这些问题终于解决了。",
"Translate1": "These problems are finally solved.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ zuótiānwǎnshàng shíyīdiǎn cái dào jiā 。",
"Chinese1": "我昨天晚上十一点才到家。",
"Translate1": "I didn't get home until eleven o'clock last night.",
"Pinyin2": "",
"Chinese2": "",