-
Notifications
You must be signed in to change notification settings - Fork 6
/
dev.json
11570 lines (11570 loc) · 426 KB
/
dev.json
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
{
"dlg-02d8c41c-bab2-4c50-817f-235dc3f5e476": [
{
"utteranceID": 0,
"speaker": "customer",
"source": "Hallo,",
"target": "Hello."
},
{
"utteranceID": 1,
"speaker": "agent",
"source": "Hi, how can I help you?",
"target": "Hallo, wie kann ich Ihnen helfen?"
},
{
"utteranceID": 2,
"speaker": "customer",
"source": "Hallo, ich bin auf der Suche nach einem Restaurant im Arden Fair Einkaufszentrum in San Francisco, Kalifornien.",
"target": "Hi, I'm looking for a restaurant inside the Arden Fair mall in San Francisco, California."
},
{
"utteranceID": 3,
"speaker": "agent",
"source": "Ok, what type of restaurant are you looking for?",
"target": "Ok. Welche Art von Restaurant suchen Sie denn genau?"
},
{
"utteranceID": 4,
"speaker": "customer",
"source": "Ich suche ein günstiges Fastfood-Restaurant.",
"target": "I'm looking for a cheap fast food restaurant."
},
{
"utteranceID": 5,
"speaker": "agent",
"source": "Sure, give me a second, I will be right back with a couple of options.",
"target": "Klar, geben Sie mir eine Sekunde, ich bin gleich zurück mit ein paar Optionen."
},
{
"utteranceID": 6,
"speaker": "customer",
"source": "Okay.",
"target": "Okay."
},
{
"utteranceID": 7,
"speaker": "agent",
"source": "I found: Seasons 52, a Rotating menu of seasonal American dishes alongside International wines in an upscale setting. I also found: Pluto's: a Local counter-serve chain featuring build-your-own salads & sandwiches in a casual, modern setting.",
"target": "Ich fand: Seasons 52, ein wechselndes Menü mit saisonalen amerikanischen Gerichten neben internationalen Weinen in einer gehobenen Umgebung. Ich habe auch: Pluto's: eine lokale Counter-Service-Kette, die Salate & Sandwiches zum Selbermachen in einem ungezwungenen, modernen Ambiente anbietet, gefunden."
},
{
"utteranceID": 8,
"speaker": "customer",
"source": "Bietet die erste Option vegetarische Gerichte an?",
"target": "Does the first option offer any vegetarian meals?"
},
{
"utteranceID": 9,
"speaker": "agent",
"source": "Yes, they do.",
"target": "Ja, das tun sie."
},
{
"utteranceID": 10,
"speaker": "customer",
"source": "Und wie viel kostet die zweite Option?",
"target": "And how much does the second option cost?"
},
{
"utteranceID": 11,
"speaker": "agent",
"source": "They are all average priced.",
"target": "Sie sind alle von durchschnittlichem Preis."
},
{
"utteranceID": 12,
"speaker": "customer",
"source": "Es gibt eine zweite Möglichkeit, das Essen mitzunehmen.",
"target": "There's a second option off a letting you take your food to go."
},
{
"utteranceID": 13,
"speaker": "agent",
"source": "Yes, you can get it to go at Pluto's.",
"target": "Ja, Sie können es bei Pluto zum Mitnehmen bekommen."
},
{
"utteranceID": 14,
"speaker": "customer",
"source": "Oder ich denke, ich werde die zweite Option wählen.",
"target": "Or I think I'll choose the second option."
},
{
"utteranceID": 15,
"speaker": "agent",
"source": "Sure, would you like their phone number?",
"target": "Sicher, möchten Sie deren Telefonnummer?"
},
{
"utteranceID": 16,
"speaker": "customer",
"source": "Ja, bitte.",
"target": "Yes, please."
},
{
"utteranceID": 17,
"speaker": "agent",
"source": "It is (916) 921-2500, do you want me to repeat that?",
"target": "Es ist (916) 921-2500, soll ich das wiederholen?"
},
{
"utteranceID": 18,
"speaker": "customer",
"source": "Ich habe es verstanden. Vielen Dank.",
"target": "I got it. Thank you."
},
{
"utteranceID": 19,
"speaker": "agent",
"source": "You're welcome, bye.",
"target": "Gern geschehen, auf Wiedersehen."
},
{
"utteranceID": 20,
"speaker": "customer",
"source": "Auf Wiedersehen.",
"target": "Bye."
}
],
"dlg-04800578-2c5c-4b44-8ba3-e94bf25d55fa": [
{
"utteranceID": 0,
"speaker": "agent",
"source": "Hi there, how can I help today?",
"target": "Hallo, wie kann ich heute helfen?"
},
{
"utteranceID": 1,
"speaker": "customer",
"source": "Hallo. Ein Freund von mir und ich wollen heute Abend Aquaman sehen.",
"target": "Hey. A friend of mine and I want to see Aquaman tonight."
},
{
"utteranceID": 2,
"speaker": "agent",
"source": "Sure, Aquaman is a great choice. where do you want to watch.",
"target": "Klar, Aquaman ist eine gute Wahl. Wo wollen Sie ihn sehen?"
},
{
"utteranceID": 3,
"speaker": "customer",
"source": "Seattle Regal Cinemas.",
"target": "Seattle Regal Cinemas."
},
{
"utteranceID": 4,
"speaker": "agent",
"source": "Great, Regal Cinemas Meridian 16 is showing Aquaman at the following times. 2:40pm, 7:10pm, and 9:30pm.",
"target": "Großartig, Regal Cinemas Meridian 16 zeigt Aquaman zu den folgenden Zeiten. 14:40 Uhr, 19:10 Uhr und 21:30 Uhr."
},
{
"utteranceID": 5,
"speaker": "agent",
"source": "Do any of these work for you?",
"target": "Passt irgendetwas davon für Sie?"
},
{
"utteranceID": 6,
"speaker": "customer",
"source": "Ja, um 19:10 Uhr.",
"target": "Yes, 7:10 p.m."
},
{
"utteranceID": 7,
"speaker": "agent",
"source": "And did u say you need 2 tickets?",
"target": "Und Sie haben gesagt, Sie brauchen 2 Tickets?"
},
{
"utteranceID": 8,
"speaker": "customer",
"source": "Ja, bitte zwei Tickets.",
"target": "Yes, two tickets, please."
},
{
"utteranceID": 9,
"speaker": "agent",
"source": "2 tickets to see Aquaman at 7:10pm at Regal Cinemas Meridian 16 will come out to $24.",
"target": "2 Eintrittskarten für Aquaman um 19:10 Uhr im Regal Cinemas Meridian 16, werden $24 kosten."
},
{
"utteranceID": 10,
"speaker": "agent",
"source": "Did you want to process the payment now?",
"target": "Wollten Sie die Zahlung jetzt bearbeiten?"
},
{
"utteranceID": 11,
"speaker": "customer",
"source": "Noch nicht. Gibt es Gutscheine?",
"target": "Not yet. Are there any coupons available?"
},
{
"utteranceID": 12,
"speaker": "agent",
"source": "Sorry, I'm not sure.",
"target": "Entschuldigung, ich weiß es nicht genau."
},
{
"utteranceID": 13,
"speaker": "customer",
"source": "Das ist okay. Sie können die Zahlung bearbeiten.",
"target": "That's okay. You can process the payment."
},
{
"utteranceID": 14,
"speaker": "agent",
"source": "Great, I've booked your tickets. They'll be available on your phone momentarily.",
"target": "Toll, ich habe Ihre Tickets gebucht. Sie werden in Kürze auf Ihrem Telefon verfügbar sein."
},
{
"utteranceID": 15,
"speaker": "agent",
"source": "Did you need anything else?",
"target": "Brauchen Sie sonst noch etwas?"
},
{
"utteranceID": 16,
"speaker": "customer",
"source": "Nein, das ist alles. Ich danke Ihnen vielmals.",
"target": "No, that will be all. Thank you so much."
},
{
"utteranceID": 17,
"speaker": "agent",
"source": "Awesome, enjoy.",
"target": "Klasse, viel Spaß."
}
],
"dlg-05624d2b-6a62-41e5-b804-589365581d18": [
{
"utteranceID": 0,
"speaker": "agent",
"source": "Hi there.",
"target": "Hallo."
},
{
"utteranceID": 1,
"speaker": "customer",
"source": "Hallo. Ich wollte ein Ticket für Glass in Winsborough bekommen.",
"target": "Hi. I wanted to get one ticket for Glass in Winsborough."
},
{
"utteranceID": 2,
"speaker": "agent",
"source": "Okay what state is that?",
"target": "Okay, welcher Staat ist das?"
},
{
"utteranceID": 3,
"speaker": "customer",
"source": "Es ist in Virginia.",
"target": "It's in Virginia."
},
{
"utteranceID": 4,
"speaker": "agent",
"source": "Did you have a theater in mind?",
"target": "Hatten Sie ein Theater im Sinn?"
},
{
"utteranceID": 5,
"speaker": "customer",
"source": "Zeus Theater sollte in Ordnung sein.",
"target": "Zeus Theater should be fine."
},
{
"utteranceID": 6,
"speaker": "agent",
"source": "Great. There's three showtimes, 4, 7, and 9:40.",
"target": "Großartig! Es gibt drei Spielzeiten, 16, 19 und 21:40 Uhr."
},
{
"utteranceID": 7,
"speaker": "customer",
"source": "Ich möchte den Film nach 20:00 Uhr sehen.",
"target": "I want to see the movie after 8:00."
},
{
"utteranceID": 8,
"speaker": "agent",
"source": "Great I'll see if the 9:40 showing has tickets available.",
"target": "Großartig, ich werde sehen, ob in der 21:40 Uhr Vorstellung noch Tickets verfügbar sind."
},
{
"utteranceID": 9,
"speaker": "agent",
"source": "So that's 1 ticket to glass at Zeus Digital for 9:40 right?",
"target": "Das ist also 1 Ticket für Glass bei Zeus Digital um 21:40 Uhr oder?"
},
{
"utteranceID": 10,
"speaker": "customer",
"source": "Ja, hört sich gut an. Wie lang ist der Film?",
"target": "Yep, sounds good. How long is the movie?"
},
{
"utteranceID": 11,
"speaker": "agent",
"source": "2h 9m.",
"target": "2h 9m."
},
{
"utteranceID": 12,
"speaker": "customer",
"source": "Okay. Klingt gut.",
"target": "Okay, sounds good."
},
{
"utteranceID": 13,
"speaker": "agent",
"source": "Hm... it looks like the showing is sold out. I can cancel or try another theater.",
"target": "Hm... es sieht so aus, als ob die Show ausverkauft ist. Ich kann abbrechen oder ein anderes Kino ausprobieren."
},
{
"utteranceID": 14,
"speaker": "customer",
"source": "Fahren Sie fort und brechen Sie es dann ab.",
"target": "Go ahead and cancel it then."
},
{
"utteranceID": 15,
"speaker": "agent",
"source": "Alright, your card has not been charged. Have a good day.",
"target": "In Ordnung, Ihre Karte wurde nicht belastet. Einen schönen Tag noch."
},
{
"utteranceID": 16,
"speaker": "customer",
"source": "Vielen Dank Gleichfalls!",
"target": "Thank you. You, too."
},
{
"utteranceID": 17,
"speaker": "agent",
"source": "Thanks.",
"target": "Vielen Dank."
}
],
"dlg-085e645b-3cca-46cb-a334-c8c3c478ca29": [
{
"utteranceID": 0,
"speaker": "agent",
"source": "Hi there.",
"target": "Hallo."
},
{
"utteranceID": 1,
"speaker": "customer",
"source": "Hallo. Wie geht es Ihnen heute?",
"target": "Hi. How are you doing today?"
},
{
"utteranceID": 2,
"speaker": "agent",
"source": "very well, thanks for asking.",
"target": "Dehr gut, danke der Nachfrage."
},
{
"utteranceID": 3,
"speaker": "agent",
"source": "How can I help you?",
"target": "Womit kann ich Ihnen behilflich sein?"
},
{
"utteranceID": 4,
"speaker": "customer",
"source": "Eigentlich wollte ich eine Pizza in dieser neuen Pizzeria namens Bella Luna bestellen.",
"target": "I was actually looking to order a pizza from this new pizzeria called Bella Luna."
},
{
"utteranceID": 5,
"speaker": "agent",
"source": "Sure thing. what would you like?",
"target": "Gerne. Was möchten Sie gerne bestellen?"
},
{
"utteranceID": 6,
"speaker": "customer",
"source": "Nun, zuerst möchte ich zwei Pizzen, beide klein. Auf einer von ihnen möchte ich Fleisch ohne kanadischen Speck, aber alles andere, und dann die andere halb Salami, halb Käse. Und ich möchte, dass beide eine dünne Kruste haben.",
"target": "Well first off, I would like two pizzas, both of them small. On one of them, I would want meat lover's without Canadian bacon, but everything else, and then the other one, half pepperoni, half cheese. And I would like both of them to be thin crust."
},
{
"utteranceID": 7,
"speaker": "agent",
"source": "SO that's 2 small pizzas, one meatlovers, no canadian bacon, one half pepperoni half cheese both thin crust right?",
"target": "Das sind also 2 kleine Pizzen, eine mit Fleisch, aber ohne kanadischen Speck, eine Hälfte Salami, die andere Hälfte Käse, beide mit dünner Kruste, richtig?"
},
{
"utteranceID": 8,
"speaker": "customer",
"source": "Genau. Stimmt.",
"target": "Exactly. That's right."
},
{
"utteranceID": 9,
"speaker": "customer",
"source": "Und nur um sicherzugehen, dass dies Bella Luna sein soll, richtig?",
"target": "And just to make sure this is Bella Luna, correct?"
},
{
"utteranceID": 10,
"speaker": "agent",
"source": "Correct! Great. Your total is $30.84 and it'll be ready in 30 minutes.",
"target": "Richtig! Prima! Ihre Gesamtsumme ist 30,84 $ und die Bestellung wird in 30 Minuten fertig sein."
},
{
"utteranceID": 11,
"speaker": "customer",
"source": "30 Minuten? Okay, wunderbar. Vielen Dank.",
"target": "30 minutes? Okay, wonderful. Appreciate it."
},
{
"utteranceID": 12,
"speaker": "agent",
"source": "no problem, enjoy.",
"target": "Kein Problem, guten Appetit."
},
{
"utteranceID": 13,
"speaker": "customer",
"source": "Noch einen schönen Tag.",
"target": "You have a good day."
},
{
"utteranceID": 14,
"speaker": "agent",
"source": "you too.",
"target": "Gleichfalls."
}
],
"dlg-10d82ecc-8885-4d04-ac90-381c17bb8423": [
{
"utteranceID": 0,
"speaker": "customer",
"source": "Hallo. Ich bin auf der Suche nach einem Ort zum Mittagessen in San Francisco oder Sacramento, Kalifornien.",
"target": "Hi. I'm looking for a place to eat lunch in San Francisco or Sacramento, California."
},
{
"utteranceID": 1,
"speaker": "agent",
"source": "Hi, what would you like to do today?",
"target": "Hallo, was möchten Sie heute machen?"
},
{
"utteranceID": 2,
"speaker": "agent",
"source": "Place for lunch in Sacramento, California is that right.",
"target": "Ein Ort zum Mittagessen in Sacramento, Kalifornien, das ist richtig."
},
{
"utteranceID": 3,
"speaker": "customer",
"source": "Ja. Ich bin im Moment in der Nähe von 19th in der Stadtmitte.",
"target": "Yes. I'm in midtown near 19th for now."
},
{
"utteranceID": 4,
"speaker": "agent",
"source": "Ok what part of town?",
"target": "Ok, welcher Teil der Stadt?"
},
{
"utteranceID": 5,
"speaker": "agent",
"source": "L St & 19th St. got it.",
"target": "L St & 19th St. verstanden."
},
{
"utteranceID": 6,
"speaker": "customer",
"source": "Ich möchte mexikanisches Essen essen.",
"target": "I'd like to eat Mexican food."
},
{
"utteranceID": 7,
"speaker": "agent",
"source": "What kind of food do you want to eat?",
"target": "Welche Art von Essen möchten Sie essen?"
},
{
"utteranceID": 8,
"speaker": "agent",
"source": "Mexican Cuisine, ok, any features you want me to look into.",
"target": "Mexikanische Küche, okay, alles Mögliche, das ich ausprobieren kann."
},
{
"utteranceID": 9,
"speaker": "customer",
"source": "Ich mag eine intime Atmosphäre, einen vernünftigen Preis und gute Kritiken.",
"target": "I like an intimate atmosphere, reasonable price, and good reviews."
},
{
"utteranceID": 10,
"speaker": "agent",
"source": "Intimate atmosphere, reasonable price with good reviews, got it.",
"target": "Intime Atmosphäre, angemessener Preis mit guten Bewertungen, verstanden."
},
{
"utteranceID": 11,
"speaker": "agent",
"source": "Ok let me see what 2 best options I can find for you.",
"target": "Ok, lassen Sie mich sehen, welche 2 besten Optionen ich für Sie finden kann."
},
{
"utteranceID": 12,
"speaker": "agent",
"source": "We have Zocalo Midtown Roomy, elegant restaurant & bar with modern Mexican dishes, classic margaritas & weekend brunch.",
"target": "Wir haben das Zocalo Midtown Roomy, ein elegantes Restaurant & Bar mit modernen mexikanischen Gerichten, klassischen Margaritas & Wochenendbrunch."
},
{
"utteranceID": 13,
"speaker": "customer",
"source": "Wie sind die Bewertungen für die erste?",
"target": "What are the reviews like for the first one?"
},
{
"utteranceID": 14,
"speaker": "agent",
"source": "And another is Mayahuel Spacious eatery featuring elevated Mexican Cuisine & a wide-ranging tequila menu in a stylish space.",
"target": "Ein weiteres ist das geräumige Restaurant Mayahuel, das gehobene mexikanische Küche & ein umfangreiches Tequila-Menü in stilvollem Ambiente bietet."
},
{
"utteranceID": 15,
"speaker": "agent",
"source": "What would you like to know about each restaurant?",
"target": "Was möchten Sie über jedes Restaurant wissen?"
},
{
"utteranceID": 16,
"speaker": "agent",
"source": "They both have a star rating of 4.4.",
"target": "Sie haben beide eine Bewertung von 4,4 Sternen."
},
{
"utteranceID": 17,
"speaker": "customer",
"source": "Okay. Und die Preisspanne bei dem Zweiten?",
"target": "Okay. And then the price for the second one?"
},
{
"utteranceID": 18,
"speaker": "agent",
"source": "Mayahuel is moderately priced at average 15-20 dollars per person.",
"target": "Mayahuel kostet durchschnittlich 15-20 Dollar pro Person."
},
{
"utteranceID": 19,
"speaker": "customer",
"source": "Und wie ist dann die Atmosphäre bei der dritten?",
"target": "And then, what's the atmosphere like at the third one?"
},
{
"utteranceID": 20,
"speaker": "agent",
"source": "Mayahuel have an small and intimate but stylish space with bar counter seatings as well.",
"target": "Mayahuel hat einen kleinen und intimen, aber stilvollen Raum mit Sitzgelegenheiten an der Theke."
},
{
"utteranceID": 21,
"speaker": "customer",
"source": "Okay, ich würde das ignorieren.",
"target": "Okay, I was going to ignore that one."
},
{
"utteranceID": 22,
"speaker": "agent",
"source": "Mayahuel sure, what info do you need for the restaurant.",
"target": "Mayahuel sicher, welche Infos brauchen Sie für das Restaurant."
},
{
"utteranceID": 23,
"speaker": "customer",
"source": "Nur die Telefonnummer.",
"target": "Just the phone number."
},
{
"utteranceID": 24,
"speaker": "agent",
"source": "Ok their Phone number is (916) 441-7200.",
"target": "Ok, ihre Telefonnummer ist (916) 441-7200."
},
{
"utteranceID": 25,
"speaker": "customer",
"source": "Nein, das wird alles sein.",
"target": "Nope, that'll be it."
},
{
"utteranceID": 26,
"speaker": "agent",
"source": "Would you like any additional assistance?",
"target": "Möchten Sie zusätzliche Hilfe?"
},
{
"utteranceID": 27,
"speaker": "agent",
"source": "Great, enjoy the rest of your day.",
"target": "Großartig, genießen Sie den Rest Ihres Tages."
},
{
"utteranceID": 28,
"speaker": "customer",
"source": "Ja, Sie auch.",
"target": "Yeah, you, too."
}
],
"dlg-114eb80b-bc2e-4092-be14-2fafbe9bbdf1": [
{
"utteranceID": 0,
"speaker": "agent",
"source": "hi, how can i help you?",
"target": "Hallo, wie kann ich Ihnen helfen?"
},
{
"utteranceID": 1,
"speaker": "customer",
"source": "Oh.",
"target": "Oh."
},
{
"utteranceID": 2,
"speaker": "customer",
"source": "Ich möchte eine Getränkebestellung für Starbucks aufgeben, der in Hollywood, Kalifornien.",
"target": "I want to get a drink order for Starbucks the one on Hollywood in California."
},
{
"utteranceID": 3,
"speaker": "agent",
"source": "okay, Starbucks in Hollywood. what would you like to drink?",
"target": "Okay, Starbucks in Hollywood. Was möchten Sie trinken?"
},
{
"utteranceID": 4,
"speaker": "customer",
"source": "Ich möchte einen Grande Americano.",
"target": "I want a Grande Americano."
},
{
"utteranceID": 5,
"speaker": "agent",
"source": "sure. grande americano it is!",
"target": "Natürlich. Grande Americano, so soll es sein!"
},
{
"utteranceID": 6,
"speaker": "customer",
"source": "Außerdem wollte ich auch, dass die mit 2% verwendet wird.",
"target": "Also wanted, yeah, I want that to be 2%."
},
{
"utteranceID": 7,
"speaker": "agent",
"source": "any milk preference?",
"target": "Irgendeine Milchpräferenz?"
},
{
"utteranceID": 8,
"speaker": "agent",
"source": "2% milk for your grande americano.",
"target": "2% Milch für Ihren Grande Americano."
},
{
"utteranceID": 9,
"speaker": "customer",
"source": "Könnten Sie sicherstellen, dass diese verwendet wird?",
"target": "Could you make sure sure that it has?"
},
{
"utteranceID": 10,
"speaker": "customer",
"source": "Und mit Schlagsahne.",
"target": "And with whipped cream."
},
{
"utteranceID": 11,
"speaker": "agent",
"source": "did you say you want extra whipped cream?",
"target": "Haben Sie gesagt, Sie wollen extra Schlagsahne?"
},
{
"utteranceID": 12,
"speaker": "customer",
"source": "Ja.",
"target": "Yes."
},
{
"utteranceID": 13,
"speaker": "agent",
"source": "okay, i'll make sure they get that.",
"target": "Okay, ich werde dafür sorgen, dass Sie das bekommen."
},
{
"utteranceID": 14,
"speaker": "agent",
"source": "would you like anything else?",
"target": "Möchten Sie noch etwas anderes?"
},
{
"utteranceID": 15,
"speaker": "customer",
"source": "Ja, fügen Sie noch einen Bagel hinzu.",
"target": "Yes, then add a bagel."
},
{
"utteranceID": 16,
"speaker": "agent",
"source": "okay, adding a bagel.",
"target": "Okay, ich füge einen Bagel hinzu."
},
{
"utteranceID": 17,
"speaker": "customer",
"source": "Okay. Ich glaube das ist alles was ich brauche.",
"target": "Okay. I believe that's all I need."
},
{
"utteranceID": 18,
"speaker": "agent",
"source": "so i have a bagel, and a grande americano with 2% milk and extra whipped cream, is that correct?",
"target": "Ich habe also einen Bagel und einen Grande Americano mit 2% Milch und extra Schlagsahne aufgenommen. Stimmt das so?"
},
{
"utteranceID": 19,
"speaker": "customer",
"source": "Richtig.",
"target": "Correct."
},
{
"utteranceID": 20,
"speaker": "agent",
"source": "okay, your coffee will be ready for pickup at the Hollywood starbucks in 37 minutes.",
"target": "Okay, in 37 Minuten ist Ihr Kaffee beim Hollywood-Starbucks abholbereit."
},
{
"utteranceID": 21,
"speaker": "customer",
"source": "Okay, cool.",
"target": "Okay, cool."
},
{
"utteranceID": 22,
"speaker": "agent",
"source": "enjoy!",
"target": "Viel Freude damit!"
},
{
"utteranceID": 23,
"speaker": "customer",
"source": "Vielen Dank.",
"target": "Thank you."
}
],
"dlg-12e4fdc6-6899-4644-8551-c9dc7f008727": [
{
"utteranceID": 0,
"speaker": "agent",
"source": "hi, how can i help you?",
"target": "Hallo, wie kann ich Ihnen helfen?"
},
{
"utteranceID": 1,
"speaker": "customer",
"source": "Hallo, Hallo. Ich möchte heute etwas zu Mittag essen. Ich bin gerade in der Arden Fair Mall in Sacramento.",
"target": "Hello. Hi. I'd like to find some food to eat for lunch today. I'm inside the Arden Fair Mall right now in Sacramento."
},
{
"utteranceID": 2,
"speaker": "agent",
"source": "ok, what type of restaurant are you looking for?",
"target": "Ok, nach welcher Art von Restaurant suchen Sie?"
},
{
"utteranceID": 3,
"speaker": "customer",
"source": "Nun, ich möchte amerikanisches Essen. Ich möchte, dass es irgendwie schnell, locker und wirklich alles, was keine Beschwerden über die Sauberkeit hat, würde ich gerne sehen.",
"target": "Well, I'd like American food. I'd like it to be sort of fast, casual and really anything that doesn't have complaints about the cleanliness, I would like to see."
},
{
"utteranceID": 4,
"speaker": "customer",
"source": "Und stellen Sie sicher, dass serviert wird. Also, als hätten sie Hilfe von unseren Kellnern da.",
"target": "And make sure that it's waited. So, like they have aid of our servers there."
},
{
"utteranceID": 5,
"speaker": "agent",
"source": "sure, give me a second while i search that for you.",
"target": "Sicher, geben Sie mir eine Sekunde, während ich das für Sie suche."
},
{
"utteranceID": 6,
"speaker": "agent",
"source": "i found Seasons 52: Rotating menu of seasonal American dishes alongside international wines in an upscale setting. and BJ's Restaurant & Brewhouse: Family-friendly chain outpost pairs familiar pub fare with an extensive list of house brews.",
"target": "Ich habe das Seasons 52 gefunden, mit wechselndem Menü mit saisonalen amerikanischen Gerichten neben internationalen Weinen in einer gehobenen Umgebung. Und das BJ's Restaurant & Brewhouse: Die familienfreundliche Außenfiliale kombiniert bekannte Pub-Gerichte mit einer umfangreichen Liste von Hausgebräuen."
},
{
"utteranceID": 7,
"speaker": "customer",
"source": "Was für saisonale Biere serviert das BJ's Brewhouse?",
"target": "For BJ's brewhouse what they serve seasonal beard there?"
},
{
"utteranceID": 8,
"speaker": "agent",
"source": "yes, they do. local and seasonal beers.",
"target": "Ja, das tun sie. lokale und saisonale Biere."
},
{
"utteranceID": 9,
"speaker": "customer",
"source": "Und in welcher Saison ist das Seasons 52 gerade?",
"target": "And for seasons 52 what season are they at right now?"
},
{
"utteranceID": 10,
"speaker": "customer",
"source": "Also, welche Art von Menü haben sie?",
"target": "So, what type of menu do they have?"
},
{
"utteranceID": 11,
"speaker": "customer",
"source": "Und geben Sie mir ein drittes Restaurant.",
"target": "And give me a third restaurant."
},
{
"utteranceID": 12,
"speaker": "agent",
"source": "they serve modern american food.",
"target": "Sie servieren modernes amerikanisches Essen."
},
{
"utteranceID": 13,
"speaker": "agent",
"source": "The Cheesecake Factory: American chain restaurant offering sizable portions from a vast menu including signature cheesecake.",
"target": "The Cheesecake Factory: Ein amerikanisches Kettenrestaurant, das große Portionen von einer umfangreichen Speisekarte einschließlich charakteristischem Käsekuchen anbietet."
},
{
"utteranceID": 14,
"speaker": "customer",
"source": "Servieren sie etwas anderes als Käsekuchen?",
"target": "Do they serve anything other than cheesecake?"
},
{
"utteranceID": 15,
"speaker": "agent",
"source": "yes, they do.",
"target": "Ja, das tun sie."
},
{
"utteranceID": 16,
"speaker": "customer",
"source": "Okay, dann gehen wir zu The Cheesecake Factory. Kann ich deren Telefonnummer bekommen?",
"target": "Okay, let's go to the The Cheesecake Factory then. Can I get their phone number?"
},
{
"utteranceID": 17,
"speaker": "agent",
"source": "ok. their number is (916) 567-0606.",
"target": "In Ordnung. Ihre Nummer lautet (916) 567-0606."
},
{
"utteranceID": 18,
"speaker": "customer",
"source": "In Ordnung. Vielen Dank.",
"target": "Alright. Thank you so much."
},
{
"utteranceID": 19,
"speaker": "agent",
"source": "you're welcome, bye!",
"target": "Keine Ursache, auf Wiedersehen!"
}
],
"dlg-1314a04a-3276-4163-8ec6-ce4809644de3": [
{
"utteranceID": 0,
"speaker": "agent",
"source": "hi, how can i help you?",
"target": "Hallo, wie kann ich Ihnen helfen?"
},
{
"utteranceID": 1,
"speaker": "customer",
"source": "Hallo, ich suche nach drei Pizzen.",
"target": "Hey, I'm looking to order three pizzas."
},
{
"utteranceID": 2,
"speaker": "agent",
"source": "sure, from where?",
"target": "sicher, woher?"
},
{
"utteranceID": 3,
"speaker": "customer",
"source": "Bella Luna.",
"target": "Bella Luna."
},
{
"utteranceID": 4,
"speaker": "agent",
"source": "what kind of toppings would you like to add?",
"target": "Welche Art von Belag möchten Sie hinzufügen?"
},
{
"utteranceID": 5,
"speaker": "customer",
"source": "Nun, ich möchte, dass zwei von ihnen vegetarisch sind und die andere Hühnchen Alfredo.",
"target": "Well, I want two of them to be veggie lovers and then the other one I want to be a chicken alfredo."
},
{
"utteranceID": 6,
"speaker": "customer",
"source": "Und ich möchte, dass alle groß sind.",
"target": "And I want all of them to be the large."
},
{
"utteranceID": 7,
"speaker": "agent",
"source": "ok, let me repeat that order back to you.",
"target": "ok, lassen Sie mich die Bestellung nochmal wiederholen."
},
{
"utteranceID": 8,
"speaker": "agent",
"source": "3 large pizzas, 2 veggie lovers, 1 chicken alfredo.",
"target": "3 große Pizzen, 2 Veggie Lovers, 1 Hühnchen Alfredo."
},
{
"utteranceID": 9,
"speaker": "customer",
"source": "Eigentlich habe ich etwas vergessen. Könnten alle eine dünne Kruste haben?",
"target": "Actually, I forgot. Could you make all of them thin crust?"
},
{
"utteranceID": 10,
"speaker": "agent",
"source": "ok, let me add that to the order.",
"target": "ok, lassen Sie mich das zur Bestellung hinzufügen."
},
{
"utteranceID": 11,
"speaker": "agent",
"source": "3 large thin crust pizzas, 2 veggie lovers, 1 chicken alfredo.",
"target": "3 große Pizzen mit dünner Kruste, 2 Veggie Lovers, 1 Hähnchen Alfredo."
},
{
"utteranceID": 12,
"speaker": "customer",
"source": "Ja, das hört sich gut an.",
"target": "Yeah, that sounds good."
},
{
"utteranceID": 13,
"speaker": "agent",
"source": "great, would you like to add any sides or drinks?",
"target": "Toll, möchten Sie irgendwelche Beilagen oder Getränke hinzufügen?"
},
{
"utteranceID": 14,
"speaker": "customer",
"source": "Nein, das ist in Ordnung.",
"target": "No, that's fine."
},
{
"utteranceID": 15,
"speaker": "agent",
"source": "ok, your total will come out to $72, is that ok?",
"target": "Ok, Ihre Gesamtsumme wird 72 $ betragen, ist das ok?"
},
{
"utteranceID": 16,
"speaker": "customer",
"source": "Ja.",
"target": "Yep."
},
{
"utteranceID": 17,
"speaker": "agent",
"source": "your receipt will be texted to you.",
"target": "Ihre Quittung wird Ihnen per SMS zugeschickt."
},
{
"utteranceID": 18,
"speaker": "customer",
"source": "Vielen Dank.",
"target": "Thanks."
},