-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchaoshi1.json
More file actions
1102 lines (1102 loc) · 27.8 KB
/
chaoshi1.json
File metadata and controls
1102 lines (1102 loc) · 27.8 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": "zhège xīguā kànqǐlai bùcuò 。",
"Chinese1": "这个西瓜看起来不错。",
"Translate1": "This watermelon looks good.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 2,
"Type": "",
"Desc": "",
"Pinyin1": "wǒyào yīdài tǔdòu 。",
"Chinese1": "我要一袋土豆。",
"Translate1": "I want a bag of potatoes.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 3,
"Type": "",
"Desc": "",
"Pinyin1": "qǐngwèn zhèxiē miànbāo yǒuméiyǒu guòqī ?",
"Chinese1": "请问这些面包有没有过期?",
"Translate1": "Excuse me, are these breads expired?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 4,
"Type": "",
"Desc": "",
"Pinyin1": "qǐng bāng wǒ zhǎo yīxià niúnǎi zài nǎlǐ 。",
"Chinese1": "请帮我找一下牛奶在哪里。",
"Translate1": "Could you help me find where the milk is?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 5,
"Type": "",
"Desc": "",
"Pinyin1": "néngfǒu gěi wǒ yīgè gòuwùlán ?",
"Chinese1": "能否给我一个购物篮?",
"Translate1": "Can I have a shopping basket, please?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 6,
"Type": "",
"Desc": "",
"Pinyin1": "zhèshì zhèjiā chāoshì zuìxīn de cùxiāo shāngpǐn 。",
"Chinese1": "这是这家超市最新的促销商品。",
"Translate1": "This is the newest promotional item in this supermarket.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 7,
"Type": "",
"Desc": "",
"Pinyin1": "wǒ xūyào gòumǎi yīxiē xǐyīfěn 。",
"Chinese1": "我需要购买一些洗衣粉。",
"Translate1": "I need to buy some laundry detergent.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 8,
"Type": "",
"Desc": "",
"Pinyin1": "gěi wǒ liǎnggè níngméng 。",
"Chinese1": "给我两个柠檬。",
"Translate1": "Give me two lemons.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 9,
"Type": "",
"Desc": "",
"Pinyin1": "gòumǎi chāoguò yīlíng yuán kěyǐ huòdé jīfēn 。",
"Chinese1": "购买超过10元可以获得积分。",
"Translate1": "You can earn points if your purchase is over 10 yuan.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 10,
"Type": "",
"Desc": "",
"Pinyin1": "wǒ xiǎngyào zhǎodào yīxiē xīnxiān de shūcài 。",
"Chinese1": "我想要找到一些新鲜的蔬菜。",
"Translate1": "I want to find some fresh vegetables.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 11,
"Type": "",
"Desc": "",
"Pinyin1": "zhèzhǒng shǔpiàn wèidao hěn hǎo 。",
"Chinese1": "这种薯片味道很好。",
"Translate1": "This kind of potato chips tastes great.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 12,
"Type": "",
"Desc": "",
"Pinyin1": "néngfǒu gàosu wǒ zhèzhǒng yǐnliào de jiàgé ?",
"Chinese1": "能否告诉我这种饮料的价格?",
"Translate1": "Could you tell me the price of this drink?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 13,
"Type": "",
"Desc": "",
"Pinyin1": "wǒmen xūyào yīhé zhǐjīn 。",
"Chinese1": "我们需要一盒纸巾。",
"Translate1": "We need a box of tissues.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 14,
"Type": "",
"Desc": "",
"Pinyin1": "gěi wǒ yīxiē jīdàn 。",
"Chinese1": "给我一些鸡蛋。",
"Translate1": "Give me some eggs.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 15,
"Type": "",
"Desc": "",
"Pinyin1": "wǒ xūyào gòumǎi yīxiē miànbāoxiè 。",
"Chinese1": "我需要购买一些面包屑。",
"Translate1": "I need to buy some breadcrumbs.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 16,
"Type": "",
"Desc": "",
"Pinyin1": "zhèxiē píngguǒ kànqǐlai hěn měiwèi 。",
"Chinese1": "这些苹果看起来很美味。",
"Translate1": "These apples look delicious.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 17,
"Type": "",
"Desc": "",
"Pinyin1": "néngfǒu gěi wǒ yīgè gòuwùchē ?",
"Chinese1": "能否给我一个购物车?",
"Translate1": "Can I have a shopping cart, please?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 18,
"Type": "",
"Desc": "",
"Pinyin1": "qǐng nágěi wǒ yífèn shōujù 。",
"Chinese1": "请拿给我一份收据。",
"Translate1": "Please give me a receipt.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 19,
"Type": "",
"Desc": "",
"Pinyin1": "wǒ xūyào gòumǎi yīxiē yú 。",
"Chinese1": "我需要购买一些鱼。",
"Translate1": "I need to buy some fish.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 20,
"Type": "",
"Desc": "",
"Pinyin1": "qǐngwèn zhège yōuhuì shénme shíhou jiéshù ?",
"Chinese1": "请问这个优惠什么时候结束?",
"Translate1": "When does this discount end, please?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 21,
"Type": "",
"Desc": "",
"Pinyin1": "gěi wǒ yīgè fānqié 。",
"Chinese1": "给我一个番茄。",
"Translate1": "Give me a tomato.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 22,
"Type": "",
"Desc": "",
"Pinyin1": "zhèzhǒng lěngdòng shípǐn zěnme zuò ?",
"Chinese1": "这种冷冻食品怎么做?",
"Translate1": "How do I prepare this frozen food?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 23,
"Type": "",
"Desc": "",
"Pinyin1": "wǒ xūyào yīxiē mǐfàn 。",
"Chinese1": "我需要一些米饭。",
"Translate1": "I need some rice.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 24,
"Type": "",
"Desc": "",
"Pinyin1": "zhège jiàgéhélǐ ma ?",
"Chinese1": "这个价格合理吗?",
"Translate1": "Is this price reasonable?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 25,
"Type": "",
"Desc": "",
"Pinyin1": "néngfǒu gěi wǒ yīxiē kāfēidòu ?",
"Chinese1": "能否给我一些咖啡豆?",
"Translate1": "Can I have some coffee beans, please?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 26,
"Type": "",
"Desc": "",
"Pinyin1": "wǒ xūyào gòumǎi yīxiē ròu 。",
"Chinese1": "我需要购买一些肉。",
"Translate1": "I need to buy some meat.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 27,
"Type": "",
"Desc": "",
"Pinyin1": "qǐngwèn zhège yōuhuì shìyòng yú nǎxiē shāngpǐn ?",
"Chinese1": "请问这个优惠适用于哪些商品?",
"Translate1": "What products does this discount apply to, please?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 28,
"Type": "",
"Desc": "",
"Pinyin1": "gěi wǒ yīxiē huángguā 。",
"Chinese1": "给我一些黄瓜。",
"Translate1": "Give me some cucumbers.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 29,
"Type": "",
"Desc": "",
"Pinyin1": "zhèzhǒng tèjià shāngpǐn fēicháng shíhuì 。",
"Chinese1": "这种特价商品非常实惠。",
"Translate1": "This promotional item is very affordable.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 30,
"Type": "",
"Desc": "",
"Pinyin1": "wǒ xūyào gòumǎi yīxiē shuǐguǒ 。",
"Chinese1": "我需要购买一些水果。",
"Translate1": "I need to buy some fruit.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 31,
"Type": "",
"Desc": "",
"Pinyin1": "néngfǒu gěi wǒ yīxiē chéngzi ?",
"Chinese1": "能否给我一些橙子?",
"Translate1": "Can I have some oranges, please?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 32,
"Type": "",
"Desc": "",
"Pinyin1": "qǐngwèn zhège shāngpǐn yǒuméiyǒu bǎozhìqī ?",
"Chinese1": "请问这个商品有没有保质期?",
"Translate1": "Does this product have a shelf life, please?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 33,
"Type": "",
"Desc": "",
"Pinyin1": "wǒ xūyào yīxiē niúròu 。",
"Chinese1": "我需要一些牛肉。",
"Translate1": "I need some beef.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 34,
"Type": "",
"Desc": "",
"Pinyin1": "zhège shāngpǐn dǎzhé le ma ?",
"Chinese1": "这个商品打折了吗?",
"Translate1": "Is this product on sale?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 35,
"Type": "",
"Desc": "",
"Pinyin1": "gěi wǒ yīpíng huāshēngyóu 。",
"Chinese1": "给我一瓶花生油。",
"Translate1": "Give me a bottle of peanut oil.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 36,
"Type": "",
"Desc": "",
"Pinyin1": "wǒ xūyào gòumǎi yīxiē miànfěn 。",
"Chinese1": "我需要购买一些面粉。",
"Translate1": "I need to buy some flour.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 37,
"Type": "",
"Desc": "",
"Pinyin1": "zhège shāngpǐn yǒuméiyǒu qítā kǒuwèi ?",
"Chinese1": "这个商品有没有其他口味?",
"Translate1": "Does this product have other flavors?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 38,
"Type": "",
"Desc": "",
"Pinyin1": "néngfǒu gěi wǒ yīxiē qīngcài ?",
"Chinese1": "能否给我一些青菜?",
"Translate1": "Can I have some greens, please?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 39,
"Type": "",
"Desc": "",
"Pinyin1": "zhège cùxiāo huódòng hěn huásuàn 。",
"Chinese1": "这个促销活动很划算。",
"Translate1": "This promotional activity is a good deal.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 40,
"Type": "",
"Desc": "",
"Pinyin1": "wǒ xūyào gòumǎi yīxiē huǒtuǐ 。",
"Chinese1": "我需要购买一些火腿。",
"Translate1": "I need to buy some ham.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 41,
"Type": "",
"Desc": "",
"Pinyin1": "qǐngwèn zhège shāngpǐn yǒu duōshǎo kùcún ?",
"Chinese1": "请问这个商品有多少库存?",
"Translate1": "How much stock does this product have, please?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 42,
"Type": "",
"Desc": "",
"Pinyin1": "gěi wǒ yīxiē yángcōng 。",
"Chinese1": "给我一些洋葱。",
"Translate1": "Give me some onions.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 43,
"Type": "",
"Desc": "",
"Pinyin1": "zhège shāngpǐn de pèifāng shì shénme ?",
"Chinese1": "这个商品的配方是什么?",
"Translate1": "What's the recipe for this product?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 44,
"Type": "",
"Desc": "",
"Pinyin1": "qǐngwèn zhèlǐ yǒuméiyǒu yùmǐ ?",
"Chinese1": "请问这里有没有玉米?",
"Translate1": "Do you have corn here?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 45,
"Type": "",
"Desc": "",
"Pinyin1": "wǒ xiǎng mǎi yīkuài zhīshì 。",
"Chinese1": "我想买一块芝士。",
"Translate1": "I'd like to buy a piece of cheese.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 46,
"Type": "",
"Desc": "",
"Pinyin1": "zhèzhǒng xǐfàshuǐ hěn shòuhuānyíng 。",
"Chinese1": "这种洗发水很受欢迎。",
"Translate1": "This shampoo is very popular.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 47,
"Type": "",
"Desc": "",
"Pinyin1": "gěi wǒ yījiàn txù , qǐng 。",
"Chinese1": "给我一件T恤,请。",
"Translate1": "Give me a Tshirt, please.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 48,
"Type": "",
"Desc": "",
"Pinyin1": "wǒ xiǎngyào gòumǎi yīpíng pútaojiǔ 。",
"Chinese1": "我想要购买一瓶葡萄酒。",
"Translate1": "I want to buy a bottle of wine.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 49,
"Type": "",
"Desc": "",
"Pinyin1": "zhège yōuhuì zhǐxiàn jīntiān 。",
"Chinese1": "这个优惠只限今天。",
"Translate1": "This offer only applies today.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 50,
"Type": "",
"Desc": "",
"Pinyin1": "wǒ xūyào gòumǎi yīxiē lǜchá 。",
"Chinese1": "我需要购买一些绿茶。",
"Translate1": "I need to buy some green tea.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 51,
"Type": "",
"Desc": "",
"Pinyin1": "néngfǒu gàosu wǒ zhège shāngpǐn de zhòngliàng ?",
"Chinese1": "能否告诉我这个商品的重量?",
"Translate1": "Can you tell me the weight of this product?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 52,
"Type": "",
"Desc": "",
"Pinyin1": "gěi wǒ yīxiē miànbāo 。",
"Chinese1": "给我一些面包。",
"Translate1": "Give me some bread.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 53,
"Type": "",
"Desc": "",
"Pinyin1": "zhège páizi de qiǎokèlì fēicháng hǎochī 。",
"Chinese1": "这个牌子的巧克力非常好吃。",
"Translate1": "This brand of chocolate is delicious.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 54,
"Type": "",
"Desc": "",
"Pinyin1": "wǒmen xūyào gòumǎi yīxiē wèishēngzhǐ 。",
"Chinese1": "我们需要购买一些卫生纸。",
"Translate1": "We need to buy some toilet paper.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 55,
"Type": "",
"Desc": "",
"Pinyin1": "gěi wǒ yīgè xiāngjiāo bā 。",
"Chinese1": "给我一个香蕉吧。",
"Translate1": "Give me a banana, please.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 56,
"Type": "",
"Desc": "",
"Pinyin1": "zhège guìtái de shòuhuòyuán hěn yǒushàn 。",
"Chinese1": "这个柜台的售货员很友善。",
"Translate1": "The salesperson at this counter is very friendly.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 57,
"Type": "",
"Desc": "",
"Pinyin1": "wǒ xūyào gòumǎi yīxiē xǐwǎn yè 。",
"Chinese1": "我需要购买一些洗碗液。",
"Translate1": "I need to buy some dishwashing liquid.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 58,
"Type": "",
"Desc": "",
"Pinyin1": "zhèzhǒng guǒzhī hányǒu duōshǎo tángfēn ?",
"Chinese1": "这种果汁含有多少糖分?",
"Translate1": "How much sugar does this juice contain?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 59,
"Type": "",
"Desc": "",
"Pinyin1": "gěi wǒ yīxiē fānqiéjiàng 。",
"Chinese1": "给我一些番茄酱。",
"Translate1": "Give me some ketchup.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 60,
"Type": "",
"Desc": "",
"Pinyin1": "zhèzhǒng pīsà kànqǐlai hěn měiwèi 。",
"Chinese1": "这种披萨看起来很美味。",
"Translate1": "This pizza looks delicious.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 61,
"Type": "",
"Desc": "",
"Pinyin1": "wǒmen xūyào gòumǎi yīxiē shǒuzhǐ 。",
"Chinese1": "我们需要购买一些手纸。",
"Translate1": "We need to buy some tissue paper.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 62,
"Type": "",
"Desc": "",
"Pinyin1": "qǐngwèn zhèzhǒng yàopǐn xūyào chǔfāng ma ?",
"Chinese1": "请问这种药品需要处方吗?",
"Translate1": "Do I need a prescription for this medicine?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 63,
"Type": "",
"Desc": "",
"Pinyin1": "gěi wǒ yīdài yángcōng 。",
"Chinese1": "给我一袋洋葱。",
"Translate1": "Give me a bag of onions.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 64,
"Type": "",
"Desc": "",
"Pinyin1": "zhège lěngcángguì lǐ yǒu hěnduō ròulèi shípǐn 。",
"Chinese1": "这个冷藏柜里有很多肉类食品。",
"Translate1": "There are many meat products in this refrigerator.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 65,
"Type": "",
"Desc": "",
"Pinyin1": "wǒ xūyào gòumǎi yīxiē bǐnggān 。",
"Chinese1": "我需要购买一些饼干。",
"Translate1": "I need to buy some cookies.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 66,
"Type": "",
"Desc": "",
"Pinyin1": "zhège shāngpǐn shìfǒu kěyǐ tuìhuò ?",
"Chinese1": "这个商品是否可以退货?",
"Translate1": "Can this product be returned?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 67,
"Type": "",
"Desc": "",
"Pinyin1": "gěi wǒ yīxiē mángguǒ 。",
"Chinese1": "给我一些芒果。",
"Translate1": "Give me some mangoes.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 68,
"Type": "",
"Desc": "",
"Pinyin1": "zhèzhǒng xǐyī yèduì pífū yǒuhài ma ?",
"Chinese1": "这种洗衣液对皮肤有害吗?",
"Translate1": "Is this laundry detergent harmful to the skin?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 69,
"Type": "",
"Desc": "",
"Pinyin1": "wǒmen xūyào gòumǎi yīxiē zhǐjīn 。",
"Chinese1": "我们需要购买一些纸巾。",
"Translate1": "We need to buy some paper towels.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 70,
"Type": "",
"Desc": "",
"Pinyin1": "qǐngwèn zhège shāngpǐn yǒuméiyǒu chéngfèn qīngdān ?",
"Chinese1": "请问这个商品有没有成份清单?",
"Translate1": "Does this product have an ingredient list?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 71,
"Type": "",
"Desc": "",
"Pinyin1": "gěi wǒ yīxiē xiāngcài 。",
"Chinese1": "给我一些香菜。",
"Translate1": "Give me some cilantro.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 72,
"Type": "",
"Desc": "",
"Pinyin1": "zhège jiàgébǐ qítā chāoshì piányi 。",
"Chinese1": "这个价格比其他超市便宜。",
"Translate1": "This price is cheaper than other supermarkets.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 73,
"Type": "",
"Desc": "",
"Pinyin1": "wǒ xūyào gòumǎi yīxiē niú nǎilào 。",
"Chinese1": "我需要购买一些牛奶酪。",
"Translate1": "I need to buy some cheese.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 74,
"Type": "",
"Desc": "",
"Pinyin1": "zhège shāngpǐn yǒuméiyǒu bǎoxiūqī ?",
"Chinese1": "这个商品有没有保修期?",
"Translate1": "Does this product have a warranty period?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 75,
"Type": "",
"Desc": "",
"Pinyin1": "gěi wǒ yīxiē mógu 。",
"Chinese1": "给我一些蘑菇。",
"Translate1": "Give me some mushrooms.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 76,
"Type": "",
"Desc": "",
"Pinyin1": "zhèzhǒng miàntiáo yǒu shénme kǒuwèi ?",
"Chinese1": "这种面条有什么口味?",
"Translate1": "What flavors does this noodle have?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 77,
"Type": "",
"Desc": "",
"Pinyin1": "wǒmen xūyào gòumǎi yīxiē mǎlíngshǔ 。",
"Chinese1": "我们需要购买一些马铃薯。",
"Translate1": "We need to buy some potatoes.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 78,
"Type": "",
"Desc": "",
"Pinyin1": "qǐngwèn zhège shāngpǐn yǒuméiyǒu xiàngòu shùliàng ?",
"Chinese1": "请问这个商品有没有限购数量?",
"Translate1": "Is there a limit on the quantity of this product?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 79,
"Type": "",
"Desc": "",
"Pinyin1": "gěi wǒ yīhé xīhóngshì 。",
"Chinese1": "给我一盒西红柿。",
"Translate1": "Give me a box of tomatoes.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 80,
"Type": "",
"Desc": "",
"Pinyin1": "zhège cùxiāo huódòng bǐjiào huásuàn 。",
"Chinese1": "这个促销活动比较划算。",
"Translate1": "This promotional activity is more costeffective.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 81,
"Type": "",
"Desc": "",
"Pinyin1": "wǒ xūyào gòumǎi yīxiē hǎixiān 。",
"Chinese1": "我需要购买一些海鲜。",
"Translate1": "I need to buy some seafood.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 82,
"Type": "",
"Desc": "",
"Pinyin1": "zhège shāngpǐn yǒuméiyǒu pīhào ?",
"Chinese1": "这个商品有没有批号?",
"Translate1": "Does this product have a batch number?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 83,
"Type": "",
"Desc": "",
"Pinyin1": "gěi wǒ yīxiē húluóbo 。",
"Chinese1": "给我一些胡萝卜。",
"Translate1": "Give me some carrots.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 84,
"Type": "",
"Desc": "",
"Pinyin1": "qǐngwèn zài nǎlǐ kěyǐ zhǎodào xǐyīfěn ?",
"Chinese1": "请问在哪里可以找到洗衣粉?",
"Translate1": "Excuse me, where can I find the laundry detergent?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 85,
"Type": "",
"Desc": "",
"Pinyin1": "zhège páizi de bǐnggān hěn hǎochī 。",
"Chinese1": "这个牌子的饼干很好吃。",
"Translate1": "This brand of cookies is very delicious.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 86,
"Type": "",
"Desc": "",
"Pinyin1": "wǒ xūyào gòumǎi yīxiē chúfángyòngpǐn 。",
"Chinese1": "我需要购买一些厨房用品。",
"Translate1": "I need to buy some kitchenware.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 87,
"Type": "",
"Desc": "",
"Pinyin1": "nǐmen zhèlǐ yǒuméiyǒu dǎzhé de shāngpǐn ?",
"Chinese1": "你们这里有没有打折的商品?",
"Translate1": "Do you have any discounted items here?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 88,
"Type": "",
"Desc": "",
"Pinyin1": "wǒ xiǎng mǎi yījiàn xīn de chènshān 。",
"Chinese1": "我想买一件新的衬衫。",
"Translate1": "I want to buy a new shirt.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 89,
"Type": "",
"Desc": "",
"Pinyin1": "zhège jiàqian hélǐ ma ?",
"Chinese1": "这个价钱合理吗?",
"Translate1": "Is this price reasonable?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 90,
"Type": "",
"Desc": "",
"Pinyin1": "qǐngwèn zhège shāngpǐn háiyǒu huò ma ?",
"Chinese1": "请问这个商品还有货吗?",
"Translate1": "Excuse me, do you still have this item in stock?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"sid": 91,
"Type": "",
"Desc": "",
"Pinyin1": "máfan gěi wǒ yīzhāng gòuwùdài 。",
"Chinese1": "麻烦给我一张购物袋。",
"Translate1": "Can you give me a shopping bag please?",
"Pinyin2": "",
"Chinese2": "",