-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjiating1.json
More file actions
1146 lines (1146 loc) · 28.2 KB
/
jiating1.json
File metadata and controls
1146 lines (1146 loc) · 28.2 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": "jīntiān wǎnfàn wǒ zuò hóngshāoròu 。",
"Chinese1": "今天晚饭我做红烧肉。",
"Translate1": "Today's dinner, I'll make braised pork.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 2,
"Type": "",
"Desc": "",
"Pinyin1": "nǐ néng bāng wǒ xǐcài ma ?",
"Chinese1": "你能帮我洗菜吗?",
"Translate1": "Can you help me wash the vegetables?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 3,
"Type": "",
"Desc": "",
"Pinyin1": "wǒmen xūyào mǎi yīxiē tǔdòu hé húluóbo 。",
"Chinese1": "我们需要买一些土豆和胡萝卜。",
"Translate1": "We need to buy some potatoes and carrots.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 4,
"Type": "",
"Desc": "",
"Pinyin1": "bùyòng le , wǒ bùkě 。",
"Chinese1": "不用了,我不渴。",
"Translate1": "No, I'm not thirsty.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 5,
"Type": "",
"Desc": "",
"Pinyin1": "nǐ zhīdào wǒ de yàoshi fàngzài nǎlǐ ma ?",
"Chinese1": "你知道我的钥匙放在哪里吗?",
"Translate1": "Do you know where my keys are?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 6,
"Type": "",
"Desc": "",
"Pinyin1": "shuìjiào qián nǐ yào tīng yīhuìr yīnyuè ma ?",
"Chinese1": "睡觉前你要听一会儿音乐吗?",
"Translate1": "Do you want to listen to music before sleeping?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 7,
"Type": "",
"Desc": "",
"Pinyin1": "nǐ néngqiè yīxiē yángcōng ma ?",
"Chinese1": "你能切一些洋葱吗?",
"Translate1": "Can you chop some onions?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 8,
"Type": "",
"Desc": "",
"Pinyin1": "bǎ bīngxiāng lǐ de shíwù zhěnglǐ yīxià 。",
"Chinese1": "把冰箱里的食物整理一下。",
"Translate1": "Organize the food in the refrigerator.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 9,
"Type": "",
"Desc": "",
"Pinyin1": "bǎ shūjiàshàng de shū zhěnglǐ yīxià 。",
"Chinese1": "把书架上的书整理一下。",
"Translate1": "Organize the books on the shelf.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 10,
"Type": "",
"Desc": "",
"Pinyin1": "bǎ yùshì de jìngzi cā yīxià 。",
"Chinese1": "把浴室的镜子擦一下。",
"Translate1": "Wipe down the bathroom mirror.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 11,
"Type": "",
"Desc": "",
"Pinyin1": "xǐzǎoshí yào yòng wēnshuǐ 。",
"Chinese1": "洗澡时要用温水。",
"Translate1": "Use warm water when taking a shower.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 12,
"Type": "",
"Desc": "",
"Pinyin1": "wǒyào mǎi yīzhī xīn de yáshuā tóu 。",
"Chinese1": "我要买一支新的牙刷头。",
"Translate1": "I need to buy a new toothbrush head.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 13,
"Type": "",
"Desc": "",
"Pinyin1": "wǒ de xǐmiànnǎi yòng wán le 。",
"Chinese1": "我的洗面奶用完了。",
"Translate1": "I've run out of facial cleanser.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 14,
"Type": "",
"Desc": "",
"Pinyin1": "nǐ jīntiān xǐzǎo le ma ?",
"Chinese1": "你今天洗澡了吗?",
"Translate1": "Have you taken a shower today?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 15,
"Type": "",
"Desc": "",
"Pinyin1": "nǐ jīntiān xiǎng chī shénme cài ?",
"Chinese1": "你今天想吃什么菜?",
"Translate1": "What dish do you want to eat today?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 16,
"Type": "",
"Desc": "",
"Pinyin1": "wǒ xiǎng chī tángcùpáigǔ 。",
"Chinese1": "我想吃糖醋排骨。",
"Translate1": "I want to eat sweet and sour pork ribs.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 17,
"Type": "",
"Desc": "",
"Pinyin1": "wǒ qù zhǔnbèi cáiliào 。",
"Chinese1": "我去准备材料。",
"Translate1": "I'll go prepare the ingredients.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 18,
"Type": "",
"Desc": "",
"Pinyin1": "wǒmen kěyǐ zhǔnbèi yīxiē shūcài hé jiàngliào 。",
"Chinese1": "我们可以准备一些蔬菜和酱料。",
"Translate1": "We can prepare some vegetables and condiments.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 19,
"Type": "",
"Desc": "",
"Pinyin1": "wǒmen kěyǐ bǎ jiàngliào tú zài miànbāo shàng 。",
"Chinese1": "我们可以把酱料涂在面包上。",
"Translate1": "We can spread the condiments on the bread.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 20,
"Type": "",
"Desc": "",
"Pinyin1": "nǐ xiǎng chī shénmeyàng de chǎofàn ?",
"Chinese1": "你想吃什么样的炒饭?",
"Translate1": "What kind of fried rice do you want to eat?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 21,
"Type": "",
"Desc": "",
"Pinyin1": "wǒmen xūyào zhǔnbèi mǐfàn 。",
"Chinese1": "我们需要准备米饭。",
"Translate1": "We need to prepare the rice.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 22,
"Type": "",
"Desc": "",
"Pinyin1": "nǐ néng bāng wǒqiè yīxià cōng ma ?",
"Chinese1": "你能帮我切一下葱吗?",
"Translate1": "Can you help me chop some onions?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 23,
"Type": "",
"Desc": "",
"Pinyin1": "wǒyào mǎi yīpíng mùyùlù 。",
"Chinese1": "我要买一瓶沐浴露。",
"Translate1": "I need to buy a bottle of shower gel.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 24,
"Type": "",
"Desc": "",
"Pinyin1": "wǒ de yáshuā gāihuàn le 。",
"Chinese1": "我的牙刷该换了。",
"Translate1": "I need to replace my toothbrush.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 25,
"Type": "",
"Desc": "",
"Pinyin1": "xǐzǎo qiányào xiānfàng rèshuǐ 。",
"Chinese1": "洗澡前要先放热水。",
"Translate1": "You need to run hot water before taking a shower.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 26,
"Type": "",
"Desc": "",
"Pinyin1": "wǒmen xūyào bǎ cānzhuō cā yīxià 。",
"Chinese1": "我们需要把餐桌擦一下。",
"Translate1": "We need to wipe the dining table.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 27,
"Type": "",
"Desc": "",
"Pinyin1": "nǐ zhīdào wǒ de yáokòngqì zài nǎlǐ ma ?",
"Chinese1": "你知道我的遥控器在哪里吗?",
"Translate1": "Do you know where my remote control is?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 28,
"Type": "",
"Desc": "",
"Pinyin1": "wǒ xiǎng nǐ de yáokòngqì zài shāfā shàng 。",
"Chinese1": "我想你的遥控器在沙发上。",
"Translate1": "I think your remote control is on the sofa.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 29,
"Type": "",
"Desc": "",
"Pinyin1": "wǒmen jiā de xǐyījī huài le ma ?",
"Chinese1": "我们家的洗衣机坏了吗?",
"Translate1": "Is our washing machine broken?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 30,
"Type": "",
"Desc": "",
"Pinyin1": "wǒmen jiā de bīngxiāng xūyào qīngxǐ ma ?",
"Chinese1": "我们家的冰箱需要清洗吗?",
"Translate1": "Does our refrigerator need to be cleaned?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 31,
"Type": "",
"Desc": "",
"Pinyin1": "dēngpào xūyào gēnghuàn ma ?",
"Chinese1": "灯泡需要更换吗?",
"Translate1": "Does the light bulb need replacing?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 32,
"Type": "",
"Desc": "",
"Pinyin1": "nǐ kěyǐ qù dǎo lājī ma ?",
"Chinese1": "你可以去倒垃圾吗?",
"Translate1": "Can you take out the trash?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 33,
"Type": "",
"Desc": "",
"Pinyin1": "wǒmen yīnggāi bǎ chúfáng dìbǎn tuō yīxià 。",
"Chinese1": "我们应该把厨房地板拖一下。",
"Translate1": "we should mop the kitchen floor",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 34,
"Type": "",
"Desc": "",
"Pinyin1": "nǐmen kuàilái bǎ wǎnkuài shōushi le 。",
"Chinese1": "你们快来把碗筷收拾了。",
"Translate1": "Come and clean up the dishes.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 35,
"Type": "",
"Desc": "",
"Pinyin1": "nǐ jīntiān dǎsuàn zuò nǎxiē qīngjié gōngzuò ?",
"Chinese1": "你今天打算做哪些清洁工作?",
"Translate1": "What cleaning tasks do you plan to do today?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 36,
"Type": "",
"Desc": "",
"Pinyin1": "wǒ xiǎng xiān bǎ dìbǎn cā gānjìng 。",
"Chinese1": "我想先把地板擦干净。",
"Translate1": "I want to clean the floor first.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 37,
"Type": "",
"Desc": "",
"Pinyin1": "nǐ néng bǎ chuānghù cā yīxià ma ?",
"Chinese1": "你能把窗户擦一下吗?",
"Translate1": "Can you clean the windows?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 38,
"Type": "",
"Desc": "",
"Pinyin1": "wǒyào qīnglǐ yīxià chúfáng de chúguì 。",
"Chinese1": "我要清理一下厨房的橱柜。",
"Translate1": "I need to clean the kitchen cabinets.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 39,
"Type": "",
"Desc": "",
"Pinyin1": "bǎ yùshì de mǎtǒngshuā yīxià 。",
"Chinese1": "把浴室的马桶刷一下。",
"Translate1": "Clean up the toilet in the bathroom.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 40,
"Type": "",
"Desc": "",
"Pinyin1": "wǒ xiǎng bǎ kètīng de dìtǎn xī yīxià 。",
"Chinese1": "我想把客厅的地毯吸一下。",
"Translate1": "I want to vacuum the living room carpet.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 41,
"Type": "",
"Desc": "",
"Pinyin1": "wǒ kěyǐ bāng nǐ zhǔ miàn 。",
"Chinese1": "我可以帮你煮面。",
"Translate1": "I can help you cook the noodles.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 42,
"Type": "",
"Desc": "",
"Pinyin1": "nǐ jīntiān xiǎng chī shénme ?",
"Chinese1": "你今天想吃什么?",
"Translate1": "What do you want to eat today?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 43,
"Type": "",
"Desc": "",
"Pinyin1": "wǒ shì gè chúyì gāochāo de dàchú 。",
"Chinese1": "我是个厨艺高超的大厨。",
"Translate1": "I am a skilled chef.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 44,
"Type": "",
"Desc": "",
"Pinyin1": "xǐzǎoshí yào zhùyì bùyào huádǎo 。",
"Chinese1": "洗澡时要注意不要滑倒。",
"Translate1": "Be careful not to slip in the shower.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 45,
"Type": "",
"Desc": "",
"Pinyin1": "wǒ de yágāo kuàiyòng wán le 。",
"Chinese1": "我的牙膏快用完了。",
"Translate1": "I'm running out of toothpaste.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 46,
"Type": "",
"Desc": "",
"Pinyin1": "nà nǐ xūyào nǎxiē cáiliào ?",
"Chinese1": "那你需要哪些材料?",
"Translate1": "What ingredients do you need?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 47,
"Type": "",
"Desc": "",
"Pinyin1": "mǐfàn húluóbo wāndòu hé yán 。",
"Chinese1": "米饭、胡萝卜、豌豆和盐。",
"Translate1": "Rice, carrots, peas, and salt.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 48,
"Type": "",
"Desc": "",
"Pinyin1": "wǒ qù chāoshì mǎi , nǐ zàijiā zhǔnbèi 。",
"Chinese1": "我去超市买,你在家准备。",
"Translate1": "I'll go to the supermarket, you prepare at home.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 49,
"Type": "",
"Desc": "",
"Pinyin1": "wǒhuì zhǔnbèi hǎo suǒyǒu de cáiliào 。",
"Chinese1": "我会准备好所有的材料。",
"Translate1": "I'll prepare all the ingredients.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 50,
"Type": "",
"Desc": "",
"Pinyin1": "nǐ xūyào wǒ bāngmáng qiēcài ma ?",
"Chinese1": "你需要我帮忙切菜吗?",
"Translate1": "Do you need help cutting vegetables?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 51,
"Type": "",
"Desc": "",
"Pinyin1": "nǐ xūyào jiāyán ma ?",
"Chinese1": "你需要加盐吗?",
"Translate1": "Do you need to add salt?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 52,
"Type": "",
"Desc": "",
"Pinyin1": "nǐ xūyào jiā hújiāo ma ?",
"Chinese1": "你需要加胡椒吗?",
"Translate1": "Do you need to add pepper?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 53,
"Type": "",
"Desc": "",
"Pinyin1": "nǐ zhīdào wǒ de yǎnjìng zài nǎlǐ ma ?",
"Chinese1": "你知道我的眼镜在哪里吗?",
"Translate1": "Do you know where my glasses are?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 54,
"Type": "",
"Desc": "",
"Pinyin1": "nǐ néng bāng wǒ ná yīxià ma ?",
"Chinese1": "你能帮我拿一下吗?",
"Translate1": "Can you help me get them?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 55,
"Type": "",
"Desc": "",
"Pinyin1": "wǒ bù xǐhuan tàilà 。",
"Chinese1": "我不喜欢太辣。",
"Translate1": "I don't like it too spicy.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 56,
"Type": "",
"Desc": "",
"Pinyin1": "nǐ xiǎng hēdiǎn shénme ?",
"Chinese1": "你想喝点什么?",
"Translate1": "What do you want to drink?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 57,
"Type": "",
"Desc": "",
"Pinyin1": "wǒ qù pào yīxià chá 。",
"Chinese1": "我去泡一下茶。",
"Translate1": "I'll go make some tea.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 58,
"Type": "",
"Desc": "",
"Pinyin1": "nǐ juéde zhège càidān zěnmeyàng ?",
"Chinese1": "你觉得这个菜单怎么样?",
"Translate1": "What do you think of this menu?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 59,
"Type": "",
"Desc": "",
"Pinyin1": "nǐ xūyào jiāshuǐ ma ?",
"Chinese1": "你需要加水吗?",
"Translate1": "Do you need to add water?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 60,
"Type": "",
"Desc": "",
"Pinyin1": "nǐ xūyào jiā nǎilào ma ?",
"Chinese1": "你需要加奶酪吗?",
"Translate1": "Do you need to add cheese?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 61,
"Type": "",
"Desc": "",
"Pinyin1": "wǒ xūyào jiāyīdiǎn nǎilào 。",
"Chinese1": "我需要加一点奶酪。",
"Translate1": "I need to add a little cheese.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 62,
"Type": "",
"Desc": "",
"Pinyin1": "hǎo le , xiànzài kěyǐ kāifàn le 。",
"Chinese1": "好了,现在可以开饭了。",
"Translate1": "Okay, it's time to eat now.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 63,
"Type": "",
"Desc": "",
"Pinyin1": "nǐ xūyào jiā shénme tiáoliào ma ?",
"Chinese1": "你需要加什么调料吗?",
"Translate1": "Do you need to add any seasoning?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 64,
"Type": "",
"Desc": "",
"Pinyin1": "bùyòng le , wǒ xiǎng shuìjiào 。",
"Chinese1": "不用了,我想睡觉。",
"Translate1": "No, I want to sleep.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 65,
"Type": "",
"Desc": "",
"Pinyin1": "nǐ xūyào wǒ guānmén ma ?",
"Chinese1": "你需要我关门吗?",
"Translate1": "Do you need me to close the door?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 66,
"Type": "",
"Desc": "",
"Pinyin1": "shuìjiào qián nǐ yào kàn yīhuìr shū ma ?",
"Chinese1": "睡觉前你要看一会儿书吗?",
"Translate1": "Do you want to read a book before sleeping?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 67,
"Type": "",
"Desc": "",
"Pinyin1": "tāmen yīnggāi bǎ yóuyānjī qīngxǐ yīxià 。",
"Chinese1": "他们应该把油烟机清洗一下。",
"Translate1": "They should clean the range hood.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 68,
"Type": "",
"Desc": "",
"Pinyin1": "nǐ néng xǐ guō ma ?",
"Chinese1": "你能洗锅吗?",
"Translate1": "Can you wash the pot?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 69,
"Type": "",
"Desc": "",
"Pinyin1": "nǐ néng bāng wǒ bǎ cài qiēchéng xiǎokuài ma ?",
"Chinese1": "你能帮我把菜切成小块吗?",
"Translate1": "Can you help me cut the vegetables into small pieces?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 70,
"Type": "",
"Desc": "",
"Pinyin1": "nǐ jīntiān xiǎng chī shénme ?",
"Chinese1": "你今天想吃什么?",
"Translate1": "What do you want to eat today?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 71,
"Type": "",
"Desc": "",
"Pinyin1": "zǎoshang qǐlai le , nǐ yào xiān shuāyá ma ?",
"Chinese1": "早上起来了,你要先刷牙吗?",
"Translate1": "Did you brush your teeth first thing in the morning?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 72,
"Type": "",
"Desc": "",
"Pinyin1": "wǒ gānggang shuā wán le 。",
"Chinese1": "我刚刚刷完了。",
"Translate1": "I just brushed my teeth.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 73,
"Type": "",
"Desc": "",
"Pinyin1": "nǐ yào yòng nǎzhǒng yágāo ?",
"Chinese1": "你要用哪种牙膏?",
"Translate1": "Which toothpaste do you want to use?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 74,
"Type": "",
"Desc": "",
"Pinyin1": "hǎo de , wǒlái zuòfàn 。",
"Chinese1": "好的,我来做饭。",
"Translate1": "Okay, I'll cook.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 75,
"Type": "",
"Desc": "",
"Pinyin1": "nǐ xūyào bāngmáng ma ?",
"Chinese1": "你需要帮忙吗?",
"Translate1": "Do you need any help?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 76,
"Type": "",
"Desc": "",
"Pinyin1": "bùyòng le , wǒ xiǎng ānjìng yīxià 。",
"Chinese1": "不用了,我想安静一下。",
"Translate1": "No, I want to be quiet for a while.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 77,
"Type": "",
"Desc": "",
"Pinyin1": "shuìjiào qián nǐ yào guāndiào shǒujī ma ?",
"Chinese1": "睡觉前你要关掉手机吗?",
"Translate1": "Do you want to turn off your phone before sleeping?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 78,
"Type": "",
"Desc": "",
"Pinyin1": "shì de , wǒ bùxiǎng bèi dǎrǎo 。",
"Chinese1": "是的,我不想被打扰。",
"Translate1": "Yes, I don't want to be disturbed.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 79,
"Type": "",
"Desc": "",
"Pinyin1": "wǒ xiǎng chī chǎofàn 。",
"Chinese1": "我想吃炒饭。",
"Translate1": "I want to eat fried rice.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 80,
"Type": "",
"Desc": "",
"Pinyin1": "nǐ néng bāng wǒ xǐ yīxià cài ma ?",
"Chinese1": "你能帮我洗一下菜吗?",
"Translate1": "Can you help me wash the vegetables?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 81,
"Type": "",
"Desc": "",
"Pinyin1": "nǐ yàoqiè shénme ?",
"Chinese1": "你要切什么?",
"Translate1": "What do you want me to cut?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 82,
"Type": "",
"Desc": "",
"Pinyin1": "hǎo de , wǒ mǎshàng qùqiè 。",
"Chinese1": "好的,我马上去切。",
"Translate1": "Okay, I'll go cut them now.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 83,
"Type": "",
"Desc": "",
"Pinyin1": "fàn zuòhǎo le , nǐ lái chī bā 。",
"Chinese1": "饭做好了,你来吃吧。",
"Translate1": "The rice is ready, come and eat.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 84,
"Type": "",
"Desc": "",
"Pinyin1": "wèidao hěn hǎo 。",
"Chinese1": "味道很好。",
"Translate1": "The taste is very good.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 85,
"Type": "",
"Desc": "",
"Pinyin1": "bùyòng le , wǒtàilěi le 。",
"Chinese1": "不用了,我太累了。",
"Translate1": "No, I'm too tired.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 86,
"Type": "",
"Desc": "",
"Pinyin1": "shuìjiào qián nǐ yào hēyībēi shuǐ ma ?",
"Chinese1": "睡觉前你要喝一杯水吗?",
"Translate1": "Do you want to drink a glass of water before sleeping?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 87,
"Type": "",
"Desc": "",
"Pinyin1": "nǐ yào xǐliǎn ma ?",
"Chinese1": "你要洗脸吗?",
"Translate1": "Do you want to wash your face?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 88,
"Type": "",
"Desc": "",
"Pinyin1": "wǒyào xǐ yīxià 。",
"Chinese1": "我要洗一下。",
"Translate1": "I want to wash it.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 89,
"Type": "",
"Desc": "",
"Pinyin1": "nǐ yào yòng nǎzhǒng xǐmiànnǎi ?",
"Chinese1": "你要用哪种洗面奶?",
"Translate1": "Which facial cleanser do you want to use?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 90,
"Type": "",
"Desc": "",
"Pinyin1": "nǐ xūyào máojīn ma ?",
"Chinese1": "你需要毛巾吗?",
"Translate1": "Do you need a towel?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 91,
"Type": "",
"Desc": "",
"Pinyin1": "xièxie nǐ zuòfàn 。",
"Chinese1": "谢谢你做饭。",
"Translate1": "Thank you for cooking.",
"Pinyin2": "",
"Chinese2": "",