-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjiating2.json
More file actions
1124 lines (1124 loc) · 27.7 KB
/
Copy pathjiating2.json
File metadata and controls
1124 lines (1124 loc) · 27.7 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": 105,
"Type": "",
"Desc": "",
"Pinyin1": "bǎ xǐyījī lǐ de yīfú ná chūlái 。",
"Chinese1": "把洗衣机里的衣服拿出来。",
"Translate1": "Take the clothes out of the washing machine.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 106,
"Type": "",
"Desc": "",
"Pinyin1": "bǎ chúfáng de dìmiàn tuō yīxià 。",
"Chinese1": "把厨房的地面拖一下。",
"Translate1": "Mop the kitchen floor.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 107,
"Type": "",
"Desc": "",
"Pinyin1": "wǒ xiǎng bǎ chuángdān hé bèi tàohuàn yīxià 。",
"Chinese1": "我想把床单和被套换一下。",
"Translate1": "I want to change the bed sheets and duvet cover.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 108,
"Type": "",
"Desc": "",
"Pinyin1": "jīntiān wǎnshàng nǐ xiǎng chī shénme ?",
"Chinese1": "今天晚上你想吃什么?",
"Translate1": "What do you want to eat tonight?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 109,
"Type": "",
"Desc": "",
"Pinyin1": "wǒ xiǎng chī yìdàlì miàn 。",
"Chinese1": "我想吃意大利面。",
"Translate1": "I want to eat spaghetti.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 110,
"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": 111,
"Type": "",
"Desc": "",
"Pinyin1": "nǐ xūyào wǒ zhǔ mǐfàn ma ?",
"Chinese1": "你需要我煮米饭吗?",
"Translate1": "Do you need me to cook the rice?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 112,
"Type": "",
"Desc": "",
"Pinyin1": "wǒ yǐjīng zhǔ hǎo le 。",
"Chinese1": "我已经煮好了。",
"Translate1": "No, I've already cooked it.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 113,
"Type": "",
"Desc": "",
"Pinyin1": "wǒlái xǐwǎn 。",
"Chinese1": "我来洗碗。",
"Translate1": "I'll wash the dishes.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 114,
"Type": "",
"Desc": "",
"Pinyin1": "nǐ xūyào shénme cáiliào ?",
"Chinese1": "你需要什么材料?",
"Translate1": "What ingredients do you need?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 115,
"Type": "",
"Desc": "",
"Pinyin1": "nǐ xūyào qiè yángcōng ma ?",
"Chinese1": "你需要切洋葱吗?",
"Translate1": "Do you need me to chop the onions?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 116,
"Type": "",
"Desc": "",
"Pinyin1": "nǐ néng bāng wǒ zhǔ miàn ma ?",
"Chinese1": "你能帮我煮面吗?",
"Translate1": "Can you help me cook the noodles?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 117,
"Type": "",
"Desc": "",
"Pinyin1": "xièxie nǐ de bāngzhù 。",
"Chinese1": "谢谢你的帮助。",
"Translate1": "Thank you for your help.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 118,
"Type": "",
"Desc": "",
"Pinyin1": "nǐ xǐzǎo le ma ?",
"Chinese1": "你洗澡了吗?",
"Translate1": "Have you taken a shower?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 119,
"Type": "",
"Desc": "",
"Pinyin1": "wǒyào yòng nàzhī bòhe wèi de 。",
"Chinese1": "我要用那支薄荷味的。",
"Translate1": "I want to use the mint-flavored one.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 120,
"Type": "",
"Desc": "",
"Pinyin1": "hǎo de , wǒ gěi nǐ nálái 。",
"Chinese1": "好的,我给你拿来。",
"Translate1": "Okay, I'll get it for you.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 121,
"Type": "",
"Desc": "",
"Pinyin1": "huán méiyǒu , wǒ děng yīxià zài xǐ 。",
"Chinese1": "还没有,我等一下再洗。",
"Translate1": "Not yet, I'll take one later.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 122,
"Type": "",
"Desc": "",
"Pinyin1": "nǐ yào yòng nǎzhǒng mùyùlù ?",
"Chinese1": "你要用哪种沐浴露?",
"Translate1": "Which shower gel do you want to use?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 123,
"Type": "",
"Desc": "",
"Pinyin1": "wǒyào yòng nà píng xūnyīcǎo wèi de 。",
"Chinese1": "我要用那瓶薰衣草味的。",
"Translate1": "I want to use the lavender-scented one.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 124,
"Type": "",
"Desc": "",
"Pinyin1": "xǐzǎo de shuǐwēn zěnmeyàng ?",
"Chinese1": "洗澡的水温怎么样?",
"Translate1": "How's the water temperature for showering?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 125,
"Type": "",
"Desc": "",
"Pinyin1": "nǐ yào shūtóu ma ?",
"Chinese1": "你要梳头吗?",
"Translate1": "Do you want to comb your hair?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 126,
"Type": "",
"Desc": "",
"Pinyin1": "wǒyào shū yīxià 。",
"Chinese1": "我要梳一下。",
"Translate1": "I want to comb it.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 127,
"Type": "",
"Desc": "",
"Pinyin1": "nǐ juéde zhège guōhǎo yòng ma ?",
"Chinese1": "你觉得这个锅好用吗?",
"Translate1": "Do you think this pot is good?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 128,
"Type": "",
"Desc": "",
"Pinyin1": "nǐ néng bāng wǒ zhǎo yīxià kāipíngqì ma ?",
"Chinese1": "你能帮我找一下开瓶器吗?",
"Translate1": "Can you help me find the bottle opener?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 129,
"Type": "",
"Desc": "",
"Pinyin1": "tā zài zhège chōuti lǐ 。",
"Chinese1": "它在这个抽屉里。",
"Translate1": "It's in this drawer.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 130,
"Type": "",
"Desc": "",
"Pinyin1": "tā hěn fēnglì 。",
"Chinese1": "它很锋利。",
"Translate1": "It's very sharp.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 131,
"Type": "",
"Desc": "",
"Pinyin1": "bǎ xǐwǎnjī lǐ de wǎnkuài ná chūlái 。",
"Chinese1": "把洗碗机里的碗筷拿出来。",
"Translate1": "Take the dishes out of the dishwasher.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 132,
"Type": "",
"Desc": "",
"Pinyin1": "bǎ kètīng de shāfā tàohuàn le 。",
"Chinese1": "把客厅的沙发套换了。",
"Translate1": "Changed the sofa cover in the living room.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 133,
"Type": "",
"Desc": "",
"Pinyin1": "wǒ juéde hěn bùcuò 。",
"Chinese1": "我觉得很不错。",
"Translate1": "I think it's great.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 134,
"Type": "",
"Desc": "",
"Pinyin1": "wǒ juéde zhège cài xūyào zài zhǔ yīhuìr 。",
"Chinese1": "我觉得这个菜需要再煮一会儿。",
"Translate1": "I think this dish needs to be cooked a little longer.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 135,
"Type": "",
"Desc": "",
"Pinyin1": "nǐ juéde zhège cài de wèidao zěnmeyàng ?",
"Chinese1": "你觉得这个菜的味道怎么样?",
"Translate1": "What do you think of the taste of this dish?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 136,
"Type": "",
"Desc": "",
"Pinyin1": "wǒ juéde yǒudiǎnxián 。",
"Chinese1": "我觉得有点咸。",
"Translate1": "I think it's a little salty.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 137,
"Type": "",
"Desc": "",
"Pinyin1": "nǐ néng bāng wǒ zhǎo yīxià cānjīnzhǐ ma ?",
"Chinese1": "你能帮我找一下餐巾纸吗?",
"Translate1": "Can you help me find the napkins?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 138,
"Type": "",
"Desc": "",
"Pinyin1": "bùyòng le , wǒ yǐjīng qièhǎo le 。",
"Chinese1": "不用了,我已经切好了。",
"Translate1": "No, I've already cut them.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 139,
"Type": "",
"Desc": "",
"Pinyin1": "nǐ néng bāng wǒ ná yīxià chǎoguō ma ?",
"Chinese1": "你能帮我拿一下炒锅吗?",
"Translate1": "Can you help me get the wok?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 140,
"Type": "",
"Desc": "",
"Pinyin1": "nǐ néng bǎ chúfáng qīngjié gānjìng ma ?",
"Chinese1": "你能把厨房清洁干净吗?",
"Translate1": "Can you clean the kitchen thoroughly?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 141,
"Type": "",
"Desc": "",
"Pinyin1": "wǒmen yī qǐlai 。",
"Chinese1": "我们一起来。",
"Translate1": "Iet's do it together.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 142,
"Type": "",
"Desc": "",
"Pinyin1": "wǒlái cā zàotái 。",
"Chinese1": "我来擦灶台。",
"Translate1": "I'll clean the stove.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 143,
"Type": "",
"Desc": "",
"Pinyin1": "nǐ juéde zhè dàocài zěnmeyàng ?",
"Chinese1": "你觉得这道菜怎么样?",
"Translate1": "How do you think this dish tastes?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 144,
"Type": "",
"Desc": "",
"Pinyin1": "mǎtǒng xūyào xiūlǐ ma ?",
"Chinese1": "马桶需要修理吗?",
"Translate1": "Does the toilet need repairing?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 145,
"Type": "",
"Desc": "",
"Pinyin1": "chuānghù xūyào qīngxǐ ma ?",
"Chinese1": "窗户需要清洗吗?",
"Translate1": "Do the windows need cleaning?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 146,
"Type": "",
"Desc": "",
"Pinyin1": "nǐ xūyào wǒ bāng nǐ cā zhuōzi ma ?",
"Chinese1": "你需要我帮你擦桌子吗?",
"Translate1": "Do you need help wiping the table?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 147,
"Type": "",
"Desc": "",
"Pinyin1": "wǒ yǐjīng cā guò le 。",
"Chinese1": "我已经擦过了。",
"Translate1": "I've already wiped it.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 148,
"Type": "",
"Desc": "",
"Pinyin1": "nǐ néng bāng wǒ bǎ lājī dǎodiào ma ?",
"Chinese1": "你能帮我把垃圾倒掉吗?",
"Translate1": "Can you help me take out the trash?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 149,
"Type": "",
"Desc": "",
"Pinyin1": "wǒhuì bāng nǐ dǎodiào 。",
"Chinese1": "我会帮你倒掉。",
"Translate1": "I'll help you take it out.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 150,
"Type": "",
"Desc": "",
"Pinyin1": "nǐ xūyào wǒ bāng nǐ shōushi chúfáng ma ?",
"Chinese1": "你需要我帮你收拾厨房吗?",
"Translate1": "Do you need help cleaning the kitchen?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 151,
"Type": "",
"Desc": "",
"Pinyin1": "dìtǎn xūyào qīngxǐ ma ?",
"Chinese1": "地毯需要清洗吗?",
"Translate1": "Does the carpet need cleaning?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 152,
"Type": "",
"Desc": "",
"Pinyin1": "wǒ kàndào shàngmiàn yǒuxiē wūzì le 。",
"Chinese1": "我看到上面有些污渍了。",
"Translate1": "I saw some stains on it.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 153,
"Type": "",
"Desc": "",
"Pinyin1": "wǒ fāxiàn tā wúfǎ jiārè shíwù le 。",
"Chinese1": "我发现它无法加热食物了。",
"Translate1": "I found it cannot heat up food anymore.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 154,
"Type": "",
"Desc": "",
"Pinyin1": "nǐ yào yòng nǎzhǒng shūzi ?",
"Chinese1": "你要用哪种梳子?",
"Translate1": "Which comb do you want to use?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 155,
"Type": "",
"Desc": "",
"Pinyin1": "wǒyào yòng nàgè kuānchǐ de 。",
"Chinese1": "我要用那个宽齿的。",
"Translate1": "I want to use the wide-toothed one.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 156,
"Type": "",
"Desc": "",
"Pinyin1": "nǐ yào tú fángshàishuāng ma ?",
"Chinese1": "你要涂防晒霜吗?",
"Translate1": "Do you want to apply sunscreen?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 157,
"Type": "",
"Desc": "",
"Pinyin1": "nǐ zhīdào wǒ de qiánbāo zài nǎlǐ ma ?",
"Chinese1": "你知道我的钱包在哪里吗?",
"Translate1": "Do you know where my wallet is?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 158,
"Type": "",
"Desc": "",
"Pinyin1": "hěn hǎo , bùtàirè yě bù tàilěng 。",
"Chinese1": "很好,不太热也不太冷。",
"Translate1": "It's good, not too hot or too cold.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 159,
"Type": "",
"Desc": "",
"Pinyin1": "nǐ xūyào máojīn ma ?",
"Chinese1": "你需要毛巾吗?",
"Translate1": "Do you need a towel?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 160,
"Type": "",
"Desc": "",
"Pinyin1": "wǒmen kěyǐ bǎ mǐfàn fàngjìn guōlǐzhǔ shú 。",
"Chinese1": "我们可以把米饭放进锅里煮熟。",
"Translate1": "We can cook the rice in a pot.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 161,
"Type": "",
"Desc": "",
"Pinyin1": "wǒmen kěyǐ zhǔnbèi yīxiē shūcài hé ròulèi 。",
"Chinese1": "我们可以准备一些蔬菜和肉类。",
"Translate1": "We can prepare some vegetables and meat.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 162,
"Type": "",
"Desc": "",
"Pinyin1": "wǒ xiǎng bǎ kètīng de qiángbì cā yīxià 。",
"Chinese1": "我想把客厅的墙壁擦一下。",
"Translate1": "I want to clean the walls in the living room.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 163,
"Type": "",
"Desc": "",
"Pinyin1": "wǒ xiǎng bǎ chuānglián chāixiàlái xǐ yīxià 。",
"Chinese1": "我想把窗帘拆下来洗一下。",
"Translate1": "I want to take down the curtains and wash them.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 164,
"Type": "",
"Desc": "",
"Pinyin1": "wǒlái cā bīngxiāng 。",
"Chinese1": "我来擦冰箱。",
"Translate1": "I'll clean the fridge.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 165,
"Type": "",
"Desc": "",
"Pinyin1": "nǐ néng cā chúguì ma ?",
"Chinese1": "你能擦橱柜吗?",
"Translate1": "Can you clean the cabinets?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 166,
"Type": "",
"Desc": "",
"Pinyin1": "wǒlái cā dìbǎn 。",
"Chinese1": "我来擦地板。",
"Translate1": "I'll mop the floor.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 167,
"Type": "",
"Desc": "",
"Pinyin1": "chúfáng xiànzài kànqǐlai hěn gānjìng 。",
"Chinese1": "厨房现在看起来很干净。",
"Translate1": "The kitchen looks very clean now.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 168,
"Type": "",
"Desc": "",
"Pinyin1": "nǐ zhīdào wǒ de shǒujī zài nǎlǐ ma ?",
"Chinese1": "你知道我的手机在哪里吗?",
"Translate1": "Do you know where my phone is?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 169,
"Type": "",
"Desc": "",
"Pinyin1": "nǐ néng bāng wǒ bǎ chuángdān huàn yīxià ma ?",
"Chinese1": "你能帮我把床单换一下吗?",
"Translate1": "Can you help me change the bed sheets?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 170,
"Type": "",
"Desc": "",
"Pinyin1": "nǐ yào yòng nǎzhǒng chuángdān ?",
"Chinese1": "你要用哪种床单?",
"Translate1": "Which bed sheet do you want to use?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 171,
"Type": "",
"Desc": "",
"Pinyin1": "xǐwán zǎohòu , nǐ yào shuìjiào ma ?",
"Chinese1": "洗完澡后,你要睡觉吗?",
"Translate1": "Are you going to sleep after showering?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 172,
"Type": "",
"Desc": "",
"Pinyin1": "wèidao hěn hǎo , nǐ zuò dé hěnbàng 。",
"Chinese1": "味道很好,你做得很棒。",
"Translate1": "It tastes great, you did a great job.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 173,
"Type": "",
"Desc": "",
"Pinyin1": "nǐ néng bāng wǒ zhǎo yīxià yán ma ?",
"Chinese1": "你能帮我找一下盐吗?",
"Translate1": "Can you help me find the salt?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 174,
"Type": "",
"Desc": "",
"Pinyin1": "shì de , wǒ hěn lěi le 。",
"Chinese1": "是的,我很累了。",
"Translate1": "Yes, I'm very tired.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 175,
"Type": "",
"Desc": "",
"Pinyin1": "nǐ yào kāi kōngtiáo ma ?",
"Chinese1": "你要开空调吗?",
"Translate1": "Do you want to turn on the air conditioner?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 176,
"Type": "",
"Desc": "",
"Pinyin1": "bùyòng le , xiànzài tiānqì bùtàirè 。",
"Chinese1": "不用了,现在天气不太热。",
"Translate1": "No, it's not too hot now.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 177,
"Type": "",
"Desc": "",
"Pinyin1": "wǒyào yòng nàgè báisè de 。",
"Chinese1": "我要用那个白色的。",
"Translate1": "I want to use the white one.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 178,
"Type": "",
"Desc": "",
"Pinyin1": "wǒ xūyào jiāyīdiǎn xiāngcài hé bāxīlì 。",
"Chinese1": "我需要加一点香菜和巴西利。",
"Translate1": "I need to add a little cilantro and basil.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 179,
"Type": "",
"Desc": "",
"Pinyin1": "nǐ xūyào zhǔ duōjiǔ ?",
"Chinese1": "你需要煮多久?",
"Translate1": "How long do you need to cook it?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 180,
"Type": "",
"Desc": "",
"Pinyin1": "nǐ néng bāng wǒ bǎ dìbǎn cā yīxià ma ?",
"Chinese1": "你能帮我把地板擦一下吗?",
"Translate1": "Can you help me mop the floor?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 181,
"Type": "",
"Desc": "",
"Pinyin1": "wǒlái cā zhuōzi 。",
"Chinese1": "我来擦桌子。",
"Translate1": "I'll wipe the table.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 182,
"Type": "",
"Desc": "",
"Pinyin1": "nǐ juéde zhège huǒhòu zěnmeyàng ?",
"Chinese1": "你觉得这个火候怎么样?",
"Translate1": "What do you think of the heat?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 183,
"Type": "",
"Desc": "",
"Pinyin1": "wǒ juéde huán xūyào jiādiǎn yán 。",
"Chinese1": "我觉得还需要加点盐。",
"Translate1": "I think we need to add some salt.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 184,
"Type": "",
"Desc": "",
"Pinyin1": "wǒlái shìshi wèidao 。",
"Chinese1": "我来试试味道。",
"Translate1": "Iet me taste it.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 185,
"Type": "",
"Desc": "",
"Pinyin1": "wǒmen kěyǐ bǎ tāmen fàngjìn guōlǐ chǎo 。",
"Chinese1": "我们可以把它们放进锅里炒。",
"Translate1": "We can sauté them in a pan.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 186,
"Type": "",
"Desc": "",
"Pinyin1": "wǒmen xūyào jiārù fānqiéjiàng hé tiáowèiliào 。",
"Chinese1": "我们需要加入番茄酱和调味料。",
"Translate1": "We need to add tomato sauce and seasoning.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 187,
"Type": "",
"Desc": "",
"Pinyin1": "nǐ xiǎng chī shénmeyàng de hànbǎo ?",
"Chinese1": "你想吃什么样的汉堡?",
"Translate1": "What kind of burger do you want to eat?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 188,
"Type": "",
"Desc": "",
"Pinyin1": "wǒmen xūyào zhǔnbèi hànbǎo ròu 。",
"Chinese1": "我们需要准备汉堡肉。",
"Translate1": "We need to prepare the burger patty.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 189,
"Type": "",
"Desc": "",
"Pinyin1": "zhè dàocài zuò dé hěn hàochī 。",
"Chinese1": "这道菜做得很好吃。",
"Translate1": "This dish tastes really delicious.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 190,
"Type": "",
"Desc": "",
"Pinyin1": "wǒlái sǎodì 。",
"Chinese1": "我来扫地。",
"Translate1": "I'll sweep the floor.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 191,
"Type": "",
"Desc": "",
"Pinyin1": "nǐ yào gài bèizi ma ?",
"Chinese1": "你要盖被子吗?",
"Translate1": "Do you want to cover yourself with a blanket?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 192,
"Type": "",
"Desc": "",
"Pinyin1": "nǐ xūyào zhěntou ma ?",
"Chinese1": "你需要枕头吗?",
"Translate1": "Do you need a pillow?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 193,
"Type": "",
"Desc": "",
"Pinyin1": "nǐ yào kāidēng ma ?",
"Chinese1": "你要开灯吗?",
"Translate1": "Do you want to turn on the light?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 194,
"Type": "",
"Desc": "",
"Pinyin1": "wǒlái jiādiǎn shuǐ 。",
"Chinese1": "我来加点水。",
"Translate1": "I'll add some water.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 195,
"Type": "",
"Desc": "",
"Pinyin1": "jīntiān wǎnshàng wǒ xiǎng zuò yìdàlì miàn 。",
"Chinese1": "今天晚上我想做意大利面。",
"Translate1": "Tonight I want to make spaghetti.",
"Pinyin2": "",
"Chinese2": "",