-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path1105.json
More file actions
2191 lines (2191 loc) · 50.1 KB
/
1105.json
File metadata and controls
2191 lines (2191 loc) · 50.1 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": "nǐ xǐhuan chīshuǐguǒ ma ?",
"Chinese1": "你喜欢吃水果吗?",
"Translate1": "Do you like to eat fruits?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ shì xuésheng 。",
"Chinese1": "我是学生。",
"Translate1": "I am a student.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ shì zhèlǐ de rén ma ?",
"Chinese1": "你是这里的人吗?",
"Translate1": "Are you here?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "tāmen shì yǒuqiánrén 。",
"Chinese1": "他们是有钱人。",
"Translate1": "They are rich.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ shì lǎobǎn ma ?",
"Chinese1": "你是老板吗?",
"Translate1": "Are you the boss?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhè shì wǒ nánpéngyou 。",
"Chinese1": "这是我男朋友。",
"Translate1": "This is my boyfriend.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nà shì nǐmen gōngsī ma ?",
"Chinese1": "那是你们公司吗?",
"Translate1": "Is that your company?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ māma shì lǎoshī ma ?",
"Chinese1": "你妈妈是老师吗?",
"Translate1": "Is your mother a teacher?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhè dū shì nǐ de qián 。",
"Chinese1": "这都是你的钱。",
"Translate1": "This is your money.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nà shì shénme cài ?",
"Chinese1": "那是什么菜?",
"Translate1": "What kind of dish is that?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ yě shì tā de péngyou 。",
"Chinese1": "我也是他的朋友。",
"Translate1": "I am also his friend.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā méi tīngdào , shìbùshì ?",
"Chinese1": "他没听到,是不是?",
"Translate1": "He didn't hear it, isn't it?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ shìbùshì huán méi chīfàn ?",
"Chinese1": "你是不是还没吃饭?",
"Translate1": "Did you not eat yet?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐmen shìbùshì zhōngguó rén ?",
"Chinese1": "你们是不是中国人?",
"Translate1": "Are you Chinese?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ dào le , shì ma ?",
"Chinese1": "你到了,是吗?",
"Translate1": "Are you here?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ yǒu liǎnggè háizi , shì ma ?",
"Chinese1": "你有两个孩子,是吗?",
"Translate1": "Do you have two children, right?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "mǐfàn tàiduō le 。",
"Chinese1": "米饭太多了。",
"Translate1": "There are too many rice.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "xiànzài tàiwǎn le 。",
"Chinese1": "现在太晚了。",
"Translate1": "it is too late now.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "lǎobǎn tàimáng le 。",
"Chinese1": "老板太忙了。",
"Translate1": "The boss is too busy.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "lǎoshī tàilěi le 。",
"Chinese1": "老师太累了。",
"Translate1": "The teacher is too tired.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhège cèsuǒ tàizàng le 。",
"Chinese1": "这个厕所太脏了。",
"Translate1": "This toilet is too dirty.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ tàihǎole 。",
"Chinese1": "你太好了。",
"Translate1": "You are very nice.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā tàishuài le 。",
"Chinese1": "他太帅了。",
"Translate1": "He is so handsome.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhège nǚhái tàipiāoliàng le 。",
"Chinese1": "这个女孩太漂亮了。",
"Translate1": "This girl is so beautiful.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "xiǎomāo tài kěài le !",
"Chinese1": "小猫太可爱了!",
"Translate1": "The kitten is so cute!",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ de háizi tài cōngming le 。",
"Chinese1": "你的孩子太聪明了。",
"Translate1": "Your child is too smart.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ hěn hǎo 。",
"Chinese1": "我很好。",
"Translate1": "I'm very good.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ hěnpiāoliàng 。",
"Chinese1": "你很漂亮。",
"Translate1": "You are beautiful.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā hěn gāoxìng 。",
"Chinese1": "他很高兴。",
"Translate1": "He is very happy.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhōngwén hěnnán 。",
"Chinese1": "中文很难。",
"Translate1": "Chinese is difficult.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "lǎobǎn hěn shēngqì 。",
"Chinese1": "老板很生气。",
"Translate1": "The boss is very angry.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒmen hěnlěi 。",
"Chinese1": "我们很累。",
"Translate1": "We are tired.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ gēge yě hěn gāo 。",
"Chinese1": "我哥哥也很高。",
"Translate1": "My brother is also very high.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐjiā yě hěn yuǎn ma ?",
"Chinese1": "你家也很远吗?",
"Translate1": "Is your home far away?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "bàba hěn máng , māma yě hěn máng 。",
"Chinese1": "爸爸很忙,妈妈也很忙。",
"Translate1": "Dad is very busy and mother is very busy.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā hé tā dìdi dū hěnshuài 。",
"Chinese1": "他和他弟弟都很帅。",
"Translate1": "He and his brother are handsome.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā hěn gāo 。",
"Chinese1": "他很高。",
"Translate1": "He is tall.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā fēicháng gāo 。",
"Chinese1": "他非常高。",
"Translate1": "He is very high.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "māma qù chāoshì mǎi le yīxiē shuǐguǒ 。",
"Chinese1": "妈妈去超市买了一些水果。",
"Translate1": "Mom went to the supermarket to buy some fruits.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "shàng gè zhōumò tā mǎi le yīxiē yīfú 。",
"Chinese1": "上个周末他买了一些衣服。",
"Translate1": "He bought some clothes last weekend.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒmen hěnkuài huì jiàndào yīxiē xīn tóngshì 。",
"Chinese1": "我们很快会见到一些新同事。",
"Translate1": "We will soon see some new colleagues.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ è bù è ?",
"Chinese1": "你饿不饿?",
"Translate1": "Are you hungry?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "xiàkè yǐhòu , xuésheng men wèn le wǒ yīxiē wèntí 。",
"Chinese1": "下课以后,学生们问了我一些问题。",
"Translate1": "After class, the students asked me some questions.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "gěi wǒ yīxiē shíjiān , hǎo ma ?",
"Chinese1": "给我一些时间,好吗?",
"Translate1": "Give me some time, okay?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā gěi wǒ dài le yīxiē shū 。",
"Chinese1": "他给我带了一些书。",
"Translate1": "He brought me some books.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ kěyǐ jiè wǒ yīxiē qián ma ?",
"Chinese1": "你可以借我一些钱吗?",
"Translate1": "Can you borrow some money?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ xiǎng zài kāfēi lǐ fàng yīxiē táng ma ?",
"Chinese1": "你想在咖啡里放一些糖吗?",
"Translate1": "Do you want to put some sugar in coffee?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒ zài zhōngguó de shíhou , qùguò yīxiē hěnpiāoliàng de dìfāng 。",
"Chinese1": "我在中国的时候,去过一些很漂亮的地方。",
"Translate1": "When I was in China, I went to some beautiful places.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "duōshǎo qián ?",
"Chinese1": "多少钱?",
"Translate1": "How much?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ de shǒujī duōshǎo qián ?",
"Chinese1": "你的手机多少钱?",
"Translate1": "How much is your mobile phone?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒmen de wǔfàn duōshǎo qián ?",
"Chinese1": "我们的午饭多少钱?",
"Translate1": "How much is our lunch?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhèbēi kāfēi duōshǎo qián ?",
"Chinese1": "这杯咖啡多少钱?",
"Translate1": "How much is this cup of coffee?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhèjiàn yīfú duōshǎo qián ?",
"Chinese1": "这件衣服多少钱?",
"Translate1": "how much is this shirt?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "liǎngkuài wǔmáo",
"Chinese1": "两块五毛",
"Translate1": "Two pieces",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "sānkuài bāmáo",
"Chinese1": "三块八毛",
"Translate1": "Three pieces of eight",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "shíkuài liǎngmáo",
"Chinese1": "十块两毛",
"Translate1": "Ten pieces",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "èrshísān kuài bāmáo",
"Chinese1": "二十三块八毛",
"Translate1": "Twenty -three pieces",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǔshíkuài wǔmáo",
"Chinese1": "五十块五毛",
"Translate1": "Fifty pieces",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "tā yǒu jǐge háizi ?",
"Chinese1": "他有几个孩子?",
"Translate1": "How many children do he have?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐjiā yǒu jǐge fángjiān ?",
"Chinese1": "你家有几个房间?",
"Translate1": "How many rooms do you have?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "tāmen zài zhèlǐ zhù jǐge xīngqī ?",
"Chinese1": "他们在这里住几个星期?",
"Translate1": "How many weeks do they live here?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ dài le jǐjiàn yīfú ?",
"Chinese1": "你带了几件衣服?",
"Translate1": "How many clothes did you bring?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "lǎobǎn měitiān gōngzuò jǐge xiǎoshí ?",
"Chinese1": "老板每天工作几个小时?",
"Translate1": "How many hours do the boss work every day?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ qùguò duōshǎo gè guójiā ?",
"Chinese1": "你去过多少个国家?",
"Translate1": "How many countries have you been to?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐmen bānyǒu duōshǎo gè xuésheng ?",
"Chinese1": "你们班有多少个学生?",
"Translate1": "How many students do you have?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ dàxué de shíhou kàn le duōshǎo běnshū ?",
"Chinese1": "你大学的时候看了多少本书?",
"Translate1": "How many books did you read when you were in college?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "tāmen zuótiān qǐng le duōshǎo gè péngyou ?",
"Chinese1": "他们昨天请了多少个朋友?",
"Translate1": "How many friends did they invite yesterday?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "shànghǎi yǒu duōshǎo gè wàiguó gōngsī ?",
"Chinese1": "上海有多少个外国公司?",
"Translate1": "How many foreign companies does Shanghai have?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ zuìjìn zěnmeyàng ?",
"Chinese1": "你最近怎么样?",
"Translate1": "how have you been?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhōngguó zěnmeyàng ?",
"Chinese1": "中国怎么样?",
"Translate1": "How is china?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "běijīng dōngtiān zěnmeyàng ?",
"Chinese1": "北京冬天怎么样?",
"Translate1": "How is Beijing winter?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "jīntiāntiānqì zěnmeyàng ?",
"Chinese1": "今天天气怎么样?",
"Translate1": "How's the weather today?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ mèimei de gōngzuò zěnmeyàng ?",
"Chinese1": "你妹妹的工作怎么样?",
"Translate1": "How about your sister's work?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ de xīnshǒujī zěnmeyàng ?",
"Chinese1": "你的新手机怎么样?",
"Translate1": "How about your new phone?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhèlǐ de cài zěnmeyàng ?",
"Chinese1": "这里的菜怎么样?",
"Translate1": "How about the dishes here?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ juéde shànghǎi zěnmeyàng ?",
"Chinese1": "你觉得上海怎么样?",
"Translate1": "How do you think Shanghai?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ juéde wǒ zěnmeyàng ?",
"Chinese1": "你觉得我怎么样?",
"Translate1": "What do you think about me?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ juéde zhōngwén zěnmeyàng ?",
"Chinese1": "你觉得中文怎么样?",
"Translate1": "How do you think Chinese?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhèshì shénme ?",
"Chinese1": "这是什么?",
"Translate1": "what is this?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ xǐhuan chī shénme cài ?",
"Chinese1": "你喜欢吃什么菜?",
"Translate1": "what dishes do you like to eat?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ zài kàn shénme shū ?",
"Chinese1": "你在看什么书?",
"Translate1": "What book are you reading?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "tākāi shénme chē ?",
"Chinese1": "他开什么车?",
"Translate1": "What kind of car he drove?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǎlǐ nǎr",
"Chinese1": "哪里、哪儿",
"Translate1": "Where, wherever",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǎge",
"Chinese1": "哪个",
"Translate1": "Which one",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ yào qù nǎr ?",
"Chinese1": "你要去哪儿?",
"Translate1": "Where are you going?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒmen zài nǎr ?",
"Chinese1": "我们在哪儿?",
"Translate1": "Where are we?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "zhège zhōumò nǐ xiǎng qù nǎr ?",
"Chinese1": "这个周末你想去哪儿?",
"Translate1": "Where do you want to go this weekend?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐhǎo , nǐ yào qù nǎr ?",
"Chinese1": "你好,你要去哪儿?",
"Translate1": "Hello, where are you going?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ yào nǎge ?",
"Chinese1": "你要哪个?",
"Translate1": "which one you want?",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "wǒyào zhège 。",
"Chinese1": "我要这个。",
"Translate1": "I want this.",
"Pinyin2": "",
"Chinese2": "",
"Translate2": ""
},
{
"Key": "",
"Type": "",
"Desc": "",
"Pinyin1": "nǐ xǐhuan nǎge cài ?",
"Chinese1": "你喜欢哪个菜?",
"Translate1": "Which dish do you like?",
"Pinyin2": "",
"Chinese2": "",