-
Notifications
You must be signed in to change notification settings - Fork 1
/
test.json
12032 lines (12032 loc) · 541 KB
/
test.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
[
{
"id": "ES2003a",
"original_language": "en",
"conversation": [
{
"no": 1,
"en_speaker": "B",
"ja_sentence": "はい、それでは、始めたいと思います。",
"en_sentence": "Okay, well I think we're ready to begin."
},
{
"no": 2,
"en_speaker": "B",
"ja_sentence": "では、私の名前はアダム・ドゥグッドで、我々は、えー、グループ内の生の意見を求めて集まりました。えー、みなさん頑張りましょう。",
"en_sentence": "Right, my name's Adam Duguid, we're here because of real reaction, um, we have in the group Um, yeah, go for it mate."
},
{
"no": 3,
"en_speaker": "C",
"ja_sentence": "ああ、エベニーザー・アダムソイエです。",
"en_sentence": "Oh, Ebenezer Ademesoye."
},
{
"no": 4,
"en_speaker": "C",
"ja_sentence": "スペルをお教えしたいと思うのですが。",
"en_sentence": "Would you like me to spell that?"
},
{
"no": 5,
"en_speaker": "C",
"ja_sentence": "えー、NEZERです。",
"en_sentence": "≪S≫ Um, N_E_Z_ E_R_."
},
{
"no": 6,
"en_speaker": "B",
"ja_sentence": "NEZ。",
"en_sentence": "N_ E_ Z_."
},
{
"no": 7,
"en_speaker": "B",
"ja_sentence": "エベニーザーですね。",
"en_sentence": "Ebenezer."
},
{
"no": 8,
"en_speaker": "B",
"ja_sentence": "それであなたの役割は何ですか?",
"en_sentence": "And your role is?"
},
{
"no": 9,
"en_speaker": "C",
"ja_sentence": "私はマーケティング専門家です。",
"en_sentence": "I'm the Marketing Expert."
},
{
"no": 10,
"en_speaker": "B",
"ja_sentence": "あなたはマーケティング専門家ですね、わかりました。",
"en_sentence": "You're the Marketing Expert, okay."
},
{
"no": 11,
"en_speaker": "B",
"ja_sentence": "それから?",
"en_sentence": "Next we have?"
},
{
"no": 12,
"en_speaker": "D",
"ja_sentence": "タリク・ラーマンです。",
"en_sentence": "Tarik Rahman."
},
{
"no": 13,
"en_speaker": "D",
"ja_sentence": "TARIK。",
"en_sentence": "T_A_R_I_K_."
},
{
"no": 14,
"en_speaker": "B",
"ja_sentence": "TARIK。",
"en_sentence": "T_ R_ I_ K_."
},
{
"no": 15,
"en_speaker": "B",
"ja_sentence": "それでここでのあなたの役割は?",
"en_sentence": "And your role in this is?"
},
{
"no": 16,
"en_speaker": "D",
"ja_sentence": "インダストリアル デザイナーです。",
"en_sentence": "Industrial Designer."
},
{
"no": 17,
"en_speaker": "B",
"ja_sentence": "インダストリアル デザイナーですね。",
"en_sentence": "Industrial Designer."
},
{
"no": 18,
"en_speaker": "B",
"ja_sentence": "そして、最後は?",
"en_sentence": "And, lastly we have?"
},
{
"no": 19,
"en_speaker": "A",
"ja_sentence": "えー、デイヴ・コクランです。",
"en_sentence": "Uh, Dave Cochrane."
},
{
"no": 20,
"en_speaker": "B",
"ja_sentence": "それであなたはユーザ インターフェース デザイナーですね?",
"en_sentence": "And you're going to be the User Interface, is it?"
},
{
"no": 21,
"en_speaker": "A",
"ja_sentence": "はい、ユーザ インターフェース デザイナーです。",
"en_sentence": "User Interface Defin Designer, yes."
},
{
"no": 22,
"en_speaker": "B",
"ja_sentence": "デザイナーね。",
"en_sentence": "Designer."
},
{
"no": 23,
"en_speaker": "B",
"ja_sentence": "分かりました。",
"en_sentence": "Okay."
},
{
"no": 24,
"en_speaker": "B",
"ja_sentence": "さて。",
"en_sentence": "Right."
},
{
"no": 25,
"en_speaker": "B",
"ja_sentence": "これが今日の会議のアジェンダです。",
"en_sentence": "This is the agenda for today's meeting."
},
{
"no": 26,
"en_speaker": "B",
"ja_sentence": "ご覧の通り、開会の挨拶、自己紹介、ツールのトレーニング、プロジェクト計画についての話し合い、そしてまとめです。",
"en_sentence": "As you can see, ≪w≫ opening, acquaintance, tool training, project plan discussion, and closing."
},
{
"no": 27,
"en_speaker": "B",
"ja_sentence": "えー、すでに挨拶は終了し、そして自己紹介もある程度終わりました。",
"en_sentence": "Um, we already got ≪n≫ through opening, and partially through acquaintance."
},
{
"no": 28,
"en_speaker": "B",
"ja_sentence": "そして、我々がここにいる理由は、おそらく皆さんすでにご存じかと思いますが、新しいリモート コントロールを設計するためです。",
"en_sentence": "So, the reason we're here, we're gonna design a new remote control, as you probably all know."
},
{
"no": 29,
"en_speaker": "B",
"ja_sentence": "外観そのものは、オリジナルで、最先端、そしてユーザフレンドリーなものとします。",
"en_sentence": "The very broad overview is original, trendy, and user-friendly."
},
{
"no": 30,
"en_speaker": "B",
"ja_sentence": "もちろん、あの、これよりもう少し細かく見ていく必要がありますが、えー、個人的にはオリジナルというのがこの設計のとても重要な側面だと思います。",
"en_sentence": "Course, we'll have to go into a bit more um detail than that, but uh personally I think that the original is gonna be a very key aspect to this design."
},
{
"no": 31,
"en_speaker": "B",
"ja_sentence": "えー、とにかく世の中にはリモート コントロールがたくさんありますから、何か決定的な違いが必要です。",
"en_sentence": "Um, there's a lot of remote controls out there anyway, so we're gonna need something that's really gonna set it apart."
},
{
"no": 32,
"en_speaker": "B",
"ja_sentence": "これが今日の課題のようですね。",
"en_sentence": "This is how today seems to be going to work."
},
{
"no": 33,
"en_speaker": "B",
"ja_sentence": "重要なフェーズは3つです。おそらくすでにお聞きになっていると思いますが、機能、構造、そして詳細な設計です。",
"en_sentence": "We're gonna have the three kay phases, as you've probably already been told, the functional, architectural, and the detailed design."
},
{
"no": 34,
"en_speaker": "B",
"ja_sentence": "えー、1点目についてはユーザの求める仕様、技術的な機能、動作設計が対象となるでしょう。",
"en_sentence": "Um First one's gonna be covering the user requirement spec, technical functions, working design."
},
{
"no": 35,
"en_speaker": "B",
"ja_sentence": "2点目については、構成要素についての構想、特性、材料だと思います。最後の点については、これまでの設計についての詳しい分析となります。",
"en_sentence": "Second seems to be conceptual components, properties, materials, and the last one is a detailed analysis of our design so far."
},
{
"no": 36,
"en_speaker": "B",
"ja_sentence": "もちろん、同様のeメールを既に皆さんが受け取っておられると思います。そうですね。",
"en_sentence": "Of course, you've all got the similar emails, I believe, right."
},
{
"no": 37,
"en_speaker": "B",
"ja_sentence": "さて、どうしましょうか?",
"en_sentence": "What can I say?"
},
{
"no": 38,
"en_speaker": "B",
"ja_sentence": "エベニーザー、あなたのお気に入りの動物を描いてみますか?",
"en_sentence": "Ebenezer, ≪you wanna have a≫ you wanna draw your favourite animal?"
},
{
"no": 39,
"en_speaker": "C",
"ja_sentence": "いいですよ。",
"en_sentence": "Sure."
},
{
"no": 40,
"en_speaker": "C",
"ja_sentence": "ホワイトボードにですね。",
"en_sentence": "Whiteboard."
},
{
"no": 41,
"en_speaker": "C",
"ja_sentence": "オーケー。",
"en_sentence": "'Kay."
},
{
"no": 42,
"en_speaker": "C",
"ja_sentence": "分かりました。",
"en_sentence": "≪S≫ okay."
},
{
"no": 43,
"en_speaker": "C",
"ja_sentence": "時間があまりないので、手早くしますね。",
"en_sentence": "I will make this quick, since we don't have much time."
},
{
"no": 44,
"en_speaker": "C",
"ja_sentence": "うーん。",
"en_sentence": "Um."
},
{
"no": 45,
"en_speaker": "C",
"ja_sentence": "まあ、世界一上手な絵とは言えませんが。",
"en_sentence": "'Kay, so it's not the best picture in the world."
},
{
"no": 46,
"en_speaker": "C",
"ja_sentence": "これはゾウです。",
"en_sentence": "Here we have an elephant."
},
{
"no": 47,
"en_speaker": "C",
"ja_sentence": "第一のポイントは、Eから始まること。エベニーザーと同じですね。",
"en_sentence": "First point, begins with an E_, same like Ebenezer."
},
{
"no": 48,
"en_speaker": "C",
"ja_sentence": "それにゾウは、私のようにとても記憶力が良いです。ナイジェリアに住んでいた頃のことは思い出せませんが、ゾウを飼っていたように思います。",
"en_sentence": "Also, elephants have a very good memory, much like myself, and I can't remember back when I used to live back in Nigeria, but I think I used to have a pet elephant."
},
{
"no": 49,
"en_speaker": "C",
"ja_sentence": "それでゾウは、大きくて強く、優しい。そして素晴らしい記憶力を持っています。それにEという文字から始まります。エベニーザーと同じように。",
"en_sentence": "So elephants are big, strong and gentle, and they have great memories, and they begin with the letter E_, just like Ebenezer."
},
{
"no": 50,
"en_speaker": "B",
"ja_sentence": "素晴らしい出来ですね。",
"en_sentence": "Brilliantly done."
},
{
"no": 51,
"en_speaker": "C",
"ja_sentence": "ありがとうございます。",
"en_sentence": "Thank you."
},
{
"no": 52,
"en_speaker": "B",
"ja_sentence": "ありがとうございました。",
"en_sentence": "Thank you."
},
{
"no": 53,
"en_speaker": "B",
"ja_sentence": "タリク、絵に挑戦してみたいですか?",
"en_sentence": "Tarik, would you like to have a shot at a bit of artistry?"
},
{
"no": 55,
"en_speaker": "C",
"ja_sentence": "おお。",
"en_sentence": "Oh."
},
{
"no": 56,
"en_speaker": "B",
"ja_sentence": "あ、うーん、クリップでベルトに留めておけますよ。",
"en_sentence": "Oh, um, you can clip them to your belt."
},
{
"no": 57,
"en_speaker": "C",
"ja_sentence": "あー、その小さいのを、ああ、良いですね、これなら留められます。",
"en_sentence": "Oh oh I think you ≪ga≫ The little ≪The the≫ Oh that's good, we can clip them on."
},
{
"no": 58,
"en_speaker": "D",
"ja_sentence": "外しましょうか?",
"en_sentence": "Do we take them off?"
},
{
"no": 59,
"en_speaker": "D",
"ja_sentence": "そうですね、はい。",
"en_sentence": "Oh right, okay."
},
{
"no": 60,
"en_speaker": "B",
"ja_sentence": "ラペル マイクも付けた方がいいですね。",
"en_sentence": "You should also l um have your the lapel mic on as well."
},
{
"no": 61,
"en_speaker": "D",
"ja_sentence": "なるほど。",
"en_sentence": "Ah-ha."
},
{
"no": 62,
"en_speaker": "C",
"ja_sentence": "オーケー。",
"en_sentence": "Okay."
},
{
"no": 63,
"en_speaker": "C",
"ja_sentence": "そうですね、えー、どこかにこのマイクがあったと思います。",
"en_sentence": "Yeah, there was this microphone as well that you Just um somewhere I think so."
},
{
"no": 64,
"en_speaker": "D",
"ja_sentence": "それで、これはどこに付ければ。これもクリップで留めておくものでしょうか?",
"en_sentence": "Now where do I put the Is this supposed to be clipped as well?"
},
{
"no": 65,
"en_speaker": "B",
"ja_sentence": "うん、そのあたりに、そうそう。",
"en_sentence": "Yep, the, it's just across there, that's it."
},
{
"no": 66,
"en_speaker": "B",
"ja_sentence": "うん。",
"en_sentence": "Yep."
},
{
"no": 67,
"en_speaker": "B",
"ja_sentence": "そうですね。",
"en_sentence": "Yeah."
},
{
"no": 68,
"en_speaker": "B",
"ja_sentence": "今はたぶんポケットに留めておくだけで離れないですよ。私はあまり心配しません。",
"en_sentence": "It'll follow you if you You can probably just stick it in your pocket for now, I wouldn't worry too much."
},
{
"no": 69,
"en_speaker": "C",
"ja_sentence": "はい。",
"en_sentence": "Yeah."
},
{
"no": 70,
"en_speaker": "C",
"ja_sentence": "そうですね。",
"en_sentence": "There you go."
},
{
"no": 71,
"en_speaker": "B",
"ja_sentence": "十分に余裕があるはずです。",
"en_sentence": "Should have good range."
},
{
"no": 72,
"en_speaker": "D",
"ja_sentence": "おっと、あなたのゾウがここで襲われています。",
"en_sentence": "Uh, destroying your elephant here."
},
{
"no": 73,
"en_speaker": "D",
"ja_sentence": "えー、これはトラです。",
"en_sentence": "Uh, here we have a tiger."
},
{
"no": 74,
"en_speaker": "D",
"ja_sentence": "ええと、私はずっとトラが大好きでした。",
"en_sentence": "Uh I've always loved tigers."
},
{
"no": 75,
"en_speaker": "D",
"ja_sentence": "彼らは本当に大きくて、ネコ科最大の動物です。ええと、私は子供の時に野生のネコ科動物に関する研究課題に取り組んだことがあって、えー、大好きなネコ科動物でした。見た目がまさに最高だったからです。あの縞と、オレンジ色の。",
"en_sentence": "They're just ≪they're≫ big, ≪they're≫ biggest cats, uh I did a project on cats in the wild when I was a kid and uh it was my favourite cat, just 'cause it was looks the best, the stripes, orange."
},
{
"no": 76,
"en_speaker": "D",
"ja_sentence": "私の父は自分がバングラデシュ出身だということについてよく話してくれて、私が子供の頃、彼らに関するあらゆることを教えてくれたものです。",
"en_sentence": "My dad used to talk about he's from Bangladesh so he used to tell me all about them when he was when I was a kid."
},
{
"no": 77,
"en_speaker": "D",
"ja_sentence": "そして、ええと、彼らは本当に、えー、最も恐れられている、えー、野生動物です。",
"en_sentence": "And uh they're just the most feared of ≪of≫ uh animals in the wild."
},
{
"no": 78,
"en_speaker": "D",
"ja_sentence": "だから、あの、好きなんです。",
"en_sentence": "So uh that's why I like them."
},
{
"no": 79,
"en_speaker": "D",
"ja_sentence": "うーん、自分のことについては何も話しませんでしたが。",
"en_sentence": "Didn't say an anything about me really but Mm."
},
{
"no": 80,
"en_speaker": "B",
"ja_sentence": "素晴らしい、ありがとうございました。",
"en_sentence": "Excellent, thank you very much."
},
{
"no": 81,
"en_speaker": "B",
"ja_sentence": "デイヴ、描いてみますか。",
"en_sentence": "Dave, if you'd like to uh have a dash."
},
{
"no": 82,
"en_speaker": "A",
"ja_sentence": "えーと、えーと、サルです。うーん。",
"en_sentence": "Um Um, the monkey, um."
},
{
"no": 83,
"en_speaker": "A",
"ja_sentence": "あまり関係はないですが、ええと、私には3さ、3歳の娘がいて、親しみを込めて、おサルさんと呼んでいます。",
"en_sentence": "The one f uh in fact this is a somewhat oblique reference in fact ≪to uh well my≫ I have a three uh three y year old daughter who ≪h who who who≫ is affectionately known as Miss Monkey."
},
{
"no": 84,
"en_speaker": "A",
"ja_sentence": "えー、サルは態度を示します。",
"en_sentence": "Um, monkeys have attitude."
},
{
"no": 85,
"en_speaker": "A",
"ja_sentence": "これが良いところだと思います。",
"en_sentence": "Which I think is a good thing."
},
{
"no": 86,
"en_speaker": "A",
"ja_sentence": "そして人類進化の研究のような観点か、えー、からすると、彼らや他の霊長類はとんでもなく面白いということです。",
"en_sentence": "And I mean ≪fr and≫ from uh from the point of view of sort of the study of human evolution they and other primates are terribly interesting."
},
{
"no": 87,
"en_speaker": "A",
"ja_sentence": "えー、だから私はサルが好きです。",
"en_sentence": "Um, so I like monkeys."
},
{
"no": 88,
"en_speaker": "A",
"ja_sentence": "それで、これはおそらく何よりも態度があるように見えます。",
"en_sentence": "And ≪and th th th th thi thi≫ this one seems to have perhaps more attitude than most."
},
{
"no": 89,
"en_speaker": "B",
"ja_sentence": "ありがとうございます。",
"en_sentence": "Cheers."
},
{
"no": 90,
"en_speaker": "B",
"ja_sentence": "最高の絵とはとても言えませんが、これで十分でしょう。",
"en_sentence": "Hardly what I'd call the best drawing in the world but it'll do for now."
},
{
"no": 91,
"en_speaker": "B",
"ja_sentence": "それに、あなたのトラほど恐れられてはいないですが、あの、ネコは私の好きな動物の一つです。とても独立していて、いつもひどく尊大で、そして、どうでしょう。動物のそうした性質は愛すべきものでしょうね。",
"en_sentence": "Also not quite as feared as your average tiger, but uh cats are one of my favourite animals, they're very independent, they're snotty as hell at the best of times, and uh, what can you say, you got to love those qualities in an animal."
},
{
"no": 92,
"en_speaker": "B",
"ja_sentence": "はい。",
"en_sentence": "Right."
},
{
"no": 93,
"en_speaker": "B",
"ja_sentence": "皆さん見る限りこのホワイトボードを何とか使いこなしたようですね。",
"en_sentence": "I think we've all managed to master the whiteboard there by looks of it, so, on to it."
},
{
"no": 94,
"en_speaker": "B",
"ja_sentence": "プロジェクト ファイナンスです。",
"en_sentence": "Project finance."
},
{
"no": 95,
"en_speaker": "B",
"ja_sentence": "ご覧の通り、1個あたり12.5ユーロです。",
"en_sentence": "As you can see, twelve point five Euros per unit."
},
{
"no": 96,
"en_speaker": "B",
"ja_sentence": "私が知る限り、これはとんでもなく高いというわけではなく、そして私たちはこれを25で売りたいと思っています。",
"en_sentence": "That's not a terrible lot as far as I'm aware, and we're hoping to sell them for twenty five."
},
{
"no": 97,
"en_speaker": "B",
"ja_sentence": "私たちが5000万ユーロを目標とするなら、すさまじい量を販売しなければならないでしょう。",
"en_sentence": "If we're aiming for fifty million Euros we're gonna have to be selling an awful lot of them."
},
{
"no": 98,
"en_speaker": "C",
"ja_sentence": "おお、そうすれば利益になるので、その額に、その額を設定したのですね。分かりました。",
"en_sentence": "Oh, that was profiting, that was an amount, so that's the amount made, okay."
},
{
"no": 99,
"en_speaker": "B",
"ja_sentence": "はい。",
"en_sentence": "Yep."
},
{
"no": 100,
"en_speaker": "B",
"ja_sentence": "では、5000万ユーロで、そして1個12.5ユーロで作るなら、とんでもない量を販売しなければならないということで。",
"en_sentence": "Well, fifty million, and if you're making twelve point five Euros on each one, then, awful lot need to be sold."
},
{
"no": 101,
"en_speaker": "C",
"ja_sentence": "そうですね。",
"en_sentence": "Yeah."
},
{
"no": 102,
"en_speaker": "B",
"ja_sentence": "分かりました。",
"en_sentence": "Okay."
},
{
"no": 103,
"en_speaker": "B",
"ja_sentence": "では、このプロジェクトの、えー、内容について、進めた方が良いでしょう。",
"en_sentence": "Now we better actually just get on with ≪the≫ uh the meat of the project."
},
{
"no": 104,
"en_speaker": "B",
"ja_sentence": "さて、誰もがリモート コントロールを使ったことがあると思います。",
"en_sentence": "So I'm gonna guess that we've all used remote controls."
},
{
"no": 105,
"en_speaker": "B",
"ja_sentence": "新しいリモート コントロールがこの市場にどのような位置で参入できるかについて、何か考えはありますか?",
"en_sentence": "Any ideas of where you think a new remote control could go into this market?"
},
{
"no": 106,
"en_speaker": "A",
"ja_sentence": "えー、1つ気づいたことは、あの、さ、最高級価格帯の市場には、従来のモデルよりもは、はるかに高度な方法でプログラムできるタッチ スクリーン式LCDリモート コントロールのようなものを扱う新、新興市場があります。だから、えー、自分のニーズに合わせてインターフェースを再設計でき、マクロをプログラムできます。そして、より高いレベルで、えー、1台3役とか、1台5役とか、何にせよ、えー、コントロールできるように設計された、さまざまな、えー、さまざまなものをひとまとめにできるようになっています。はるかに高いレベルで。それで、例えば一つのマクロで、えー、テレビのチャンネルを合わせたり、VCRを巻き戻したり、巻き戻し終えたら再生したりできるようになるのです。",
"en_sentence": "Well, one thing I'm aware of is, ≪th≫ there uh um at the sort of v very high price end of the market there's ≪there's≫ a em emerging market for sort of touch screen L_C_D_ remotes that can be uh programmed in m much more sophisticated ways than sort of conventional models, so you get the sort of ≪you get um you≫ you can redesign the interface to your own needs, you can programme in macros, and you get a much greater degree um um I mean you get in these sort of three in one, five in one, whatevers, but you can get integration between the different uh ≪the the the diff≫ the different things that it's designed to control, to a much greater extent, and you can have one uh you know one macro to turn the uh you know turn the T_V_ to the right channel, get the ≪uh re uh≫ rewind the tape in the V_C_R_ and get it to play once it's rewound, for instance."
},
{
"no": 107,
"en_speaker": "B",
"ja_sentence": "なるほど。",
"en_sentence": "Okay."
},
{
"no": 108,
"en_speaker": "A",
"ja_sentence": "えー、そういった機能のいくつかをターゲットにしてはいるものの従来のままのプッシュ ボタンのデザインを採用するというリモート コントロール向けの、えー、隙間市場もあるのではないかという考えが私には浮かんでいます。",
"en_sentence": "Um ≪b≫ it occurs to me there might be a niche for uh for a remote that aimed towards some of that sort of functionality but using a just conventional push button design."
},
{
"no": 109,
"en_speaker": "A",
"ja_sentence": "ですから、それをもっと低価格の層に持ち込めば、と。",
"en_sentence": "And therefore putting it into a um well much lower price bracket."
},
{
"no": 110,
"en_speaker": "B",
"ja_sentence": "分かりました。はい、たしかにそ、そうですね。私たちが検討している価格帯では、タッチ スクリーンを採用すれば、えー、おそらく○○から外れてしまう可能性がありますね、ええ。",
"en_sentence": "Okay, yeah, tha that's true, with the price range we're looking at, going for a touch screen would probably be possibly out of our yeah."
},
{
"no": 111,
"en_speaker": "A",
"ja_sentence": "はい、絶対に高すぎます。",
"en_sentence": "Absolutely prohibitive, yeah."
},
{
"no": 112,
"en_speaker": "C",
"ja_sentence": "なるほど。",
"en_sentence": "Oh."
},
{
"no": 113,
"en_speaker": "B",
"ja_sentence": "ですが、えー、シンプルな方法で複数のユニットをコントロールするものを、えー、再度検討しているのですね。",
"en_sentence": "But you think uh again something to control multiple units in uh a simple fashion."
},
{
"no": 114,
"en_speaker": "A",
"ja_sentence": "ええ、つまり、複数のユニット間で切り替えられるものとは言いたくないのですが、えー、もっと一体化した方法で複数ユニット間での操作を、えー、可能にするようなものですね。",
"en_sentence": "Yeah, I mean I wouldn't like to say ≪you g I mean≫ you get ones that you can switch between multiple units, but something that could um operate between multiple units in a more integrated fashion."
},
{
"no": 115,
"en_speaker": "A",
"ja_sentence": "理想としては、えー、少なくともマクロを実行するための限定的な機能が入ったようなものですね。",
"en_sentence": "Some and ideally something into which it would have some at least limited facility for um running macros."
},
{
"no": 116,
"en_speaker": "B",
"ja_sentence": "その考えは、ボタンで例えばビデオ レコーダーやテレビとか、もしかすると音響システムまでいっぺんにスイッチを入れるということなら、方向に合っているかもしれませんね。しっかりとした良い考えだと思います。",
"en_sentence": "Would ≪the≫ the idea something along the lines of, one on button would turn on say the video recorder, the T_V_, maybe the sound system as well, all in one go, is that kind of Okay, that sounds like a a good strong idea."
},
{
"no": 117,
"en_speaker": "A",
"ja_sentence": "例えば、えー、ね、ほら、DVDプレイヤーの再生ボタンを押、えー、押すと、テレビもついて、希望のチャンネルになるとか。うーん。",
"en_sentence": "For instance, um let's say ≪oh oh um, or um≫ you know you pr uh you press uh say the play button for the D_V_D_ player and it turns the T_V_ on and onto the right channel as well, um Mm-hmm."
},
{
"no": 118,
"en_speaker": "C",
"ja_sentence": "わかりました。えー、私が気づいたことですが、テレビでゲームをするのがとても人気になってきていますよね。あの、私が若い頃はケーブル、ケーブル会社と契約してケーブルを使ってゲームをしていましたが、リモート コントロールは本当にたやすく壊れてしまったものです。そしてそのリモート コントロールはゲームをするための、えー、キーパッドとしては優れた類のものではありませんでした。",
"en_sentence": "Kay Well um I've noticed that uh gaming ≪c≫ is becoming quite popular with television, um when I was younger we used to ≪e≫ play games using our cable, using the cable subscribed the cable providers, but our remote controls would get worn out really easily, and the remote control was not a great kind of keyboar, um keypad, for playing games."
},
{
"no": 119,
"en_speaker": "B",
"ja_sentence": "えー、そのことについてどう解釈しますか?",
"en_sentence": "Um Any takes on this?"
},
{
"no": 120,
"en_speaker": "C",
"ja_sentence": "だからおそらく、うーんと、よりゲームや双方向テレビに特化したものだったのでしょう。",
"en_sentence": "So perhaps one that was more um specialised for game playing or interactive television."
},
{
"no": 121,
"en_speaker": "B",
"ja_sentence": "なるほど。",
"en_sentence": "Okay."
},
{
"no": 122,
"en_speaker": "C",
"ja_sentence": "好みのチャンネルに合わせたり、えー、録画したりすることのできる新しいリモート コントロールが最近出てきました。",
"en_sentence": "They they've recently brought out this new remote control, for people to set their favourite channels, or um to record things."
},
{
"no": 123,
"en_speaker": "C",
"ja_sentence": "何時に始まるのかを入力する代わりに、ただバーをスライドするだけで何時に始まるのかを示し、そして別のバーをスライドさせれば何時に終わるかを示すことができるのです。お分かりでしょうが、ええ、リモート コントロールを使うのに、えー、それほど賢くなくて良いのです。",
"en_sentence": "Instead of people entering in what time things start, you simply stri slide a bar to say what time it begins, and slide another bar to say what time it ends, you know that's Yeah, it's it's taken out the ≪Y≫ you don't have to be uh really clever to use a remote control."
},
{
"no": 124,
"en_speaker": "B",
"ja_sentence": "そうですよね。",
"en_sentence": "Okay."
},
{
"no": 125,
"en_speaker": "B",
"ja_sentence": "ええ、私はバーコードを利用したデザインを以前に耳にしたり、目にしたことがあります。はい。",
"en_sentence": "Yeah I've heard I've seen the bar-code design before, yeah."
},
{
"no": 126,
"en_speaker": "A",
"ja_sentence": "うーん。",
"en_sentence": "Mm-hmm."
},
{
"no": 127,
"en_speaker": "C",
"ja_sentence": "ゲームをするには、あの、上、下、左、右という素早い動きのために大きなボタンが欲しい、欲しいですよね。",
"en_sentence": "I think for gaming, you know you want you want some big buttons for up, down, left and right, shoot."
},
{
"no": 128,
"en_speaker": "C",
"ja_sentence": "えー、双方向テレビなら角度を変えられるようにしたいと思うでしょう。だからテレビの角度とかカメラの角度とか、そういったものを変えるためのボタンが必要でしょう。",
"en_sentence": "Uh, you wanna be able to change angles in interactive television, so you need buttons to change the television angle, the camera angles and stuff like that."
},
{
"no": 129,
"en_speaker": "B",
"ja_sentence": "はい、えー、そろそろ時間がなくなってきました。では、いくつかの意見が出ましたので、速やかに進めましょう。えー、いいでしょう。お分かりの通り、次の会議まで30分です。ですから、基本的な機能のいくつかについては決めるように努力しなければなりません。えー、ユーザ インターフェースがどのように機能するかが重要な側面でしょう。特にマクロ機能のようなものを考えるなら、プログラムしなくてはいけないし、えー、たくさんの意見が必要となるでしょうし、少なくとも何かしらの意見が必要でしょうから。",
"en_sentence": "Okay, well we're beginning to run out of time now, so, we've got a couple of ideas, we can we'll have to work fast, um, alright as you can see we've got thirty minutes until the next meeting, so we'll have to try and decide on some of the basic functionality, um, how the user interface might work, that'll be a key aspect especially if the idea of um some kind of macros facility because you have to program it, you have to have a lot of response back, or at least some kind."
},
{
"no": 130,
"en_speaker": "D",
"ja_sentence": "分かりました。",
"en_sentence": "'Kay."
},
{
"no": 131,
"en_speaker": "C",
"ja_sentence": "はい。",
"en_sentence": "Yeah."
},
{
"no": 132,
"en_speaker": "A",
"ja_sentence": "うーん。",
"en_sentence": "Mm-hmm."
},
{
"no": 133,
"en_speaker": "B",
"ja_sentence": "えー、そしておそらくユーザが何を求めているかを考えてみて理解しなくてはいけないでしょう。",
"en_sentence": "Um And we're gonna maybe ≪n≫ try and have to figure out what the user wants, yes."
},
{
"no": 134,
"en_speaker": "C",
"ja_sentence": "ユーザの求めるもの、ですね。",
"en_sentence": "What the user wants uh."
},
{
"no": 135,
"en_speaker": "C",
"ja_sentence": "分かりました。",
"en_sentence": "Okay."
},
{
"no": 136,
"en_speaker": "B",
"ja_sentence": "えー、それでは。",
"en_sentence": "Um, right."
},
{
"no": 137,
"en_speaker": "B",
"ja_sentence": "何かこの段階で付け加えたいことがある人はいますか。これまでで何か見落としている点はあると思いますか。",
"en_sentence": "Has anybody got anything they'd like to add at this stage, anything they think that might have been missed so far?"
},
{
"no": 138,
"en_speaker": "D",
"ja_sentence": "ええと、ゲームなどについて言うのであれば、ボタンよりもレバーのようなものを使うべきだと思いませんか?",
"en_sentence": "Well when you're talking about gaming and stuff, do you think they should have some sort of stick on it, rather than buttons?"
},
{
"no": 139,
"en_speaker": "C",
"ja_sentence": "おお。",
"en_sentence": "Oh."
},
{
"no": 140,
"en_speaker": "C",
"ja_sentence": "そうですね。",
"en_sentence": "Okay,."
},
{
"no": 141,
"en_speaker": "D",
"ja_sentence": "ええと、ゲームのコントロール パッドみたいなね、でもちょっとおかしいでしょうか?",
"en_sentence": "Like uh control pads, you know of games, but or is that a bit ridiculous?"
},
{
"no": 142,
"en_speaker": "C",
"ja_sentence": "うーん。",
"en_sentence": "Mm-hmm."
},
{
"no": 143,
"en_speaker": "B",
"ja_sentence": "良いのではないでしょうか。おそらく今ではほとんどの人がコンソールに慣れているでしょう。そしてそのすべてに小さなキーパッドが組み込まれていますし、最近では携帯電話にさえ使われ始めています。だからほとんどの人になじみのあるインターフェースでしょうね。",
"en_sentence": "I I don't see why not, almost everybody is probably used to a console by now, and all of them incorporate small keypads on them, in fact even the mobile phones these days are beginning to use them as well, so it's probably an interface that most people are used to."
},
{
"no": 144,
"en_speaker": "D",
"ja_sentence": "そうですよね。",
"en_sentence": "Yeah."
},
{
"no": 145,
"en_speaker": "B",
"ja_sentence": "えー、それに操作が簡単になりますし、ジョイスティックとしても使えます。",
"en_sentence": "Um and that could allow ≪n≫ easy navigation, used as a joystick as well."
},
{
"no": 146,
"en_speaker": "A",
"ja_sentence": "なるほど。",
"en_sentence": "Mm-hmm."
},
{
"no": 147,
"en_speaker": "A",
"ja_sentence": "他に組み込むべき重要な特徴として良いアイデアかもしれないのが、えー、ほとんど人間工学に基づいたようなものというか、可能な限り心地よく手にフィット、フィットするようなものを作ることですね。",
"en_sentence": "The other key feature that uh that would be a good idea built into it is ≪t is is≫ to make something you know fairly sort of ergonomic, something that just fits fits as comfortably as possible into the hand."
},
{
"no": 148,
"en_speaker": "A",
"ja_sentence": "ですが、もちろん、えー、全体としてはもっと、少し型破りというか興味をひくような、あの、け、形状も可能性として考慮に入れて。",
"en_sentence": "But of course, uh ≪al al≫ also allows for the possibility of a more sort of slightly unconventional or attractive uh sha shape for it overall,."
},
{
"no": 149,
"en_speaker": "B",
"ja_sentence": "分かりました。",
"en_sentence": "Okay."
},
{
"no": 150,
"en_speaker": "B",
"ja_sentence": "では、小さくて、スタイリッシュで、なにか少しだけ変わったものということですね。",
"en_sentence": "So, small, stylish, and something that's just a little different."
},
{
"no": 151,
"en_speaker": "A",
"ja_sentence": "曲線とか。うーん。",
"en_sentence": "A curve, mm-hmm."
},
{
"no": 152,
"en_speaker": "A",
"ja_sentence": "ちょ、ちょっと生き物のような形をしたものとか、えー、それでとにかく手の形に効率的に合うようなものでないといけませんね。",
"en_sentence": "Something ≪sort of sort of≫ sl slightly sort of biomorphic in form, uh which it would need to be to sort of conform to the shape of the hand more efficiently anyway."
},
{
"no": 153,
"en_speaker": "B",
"ja_sentence": "はい。",
"en_sentence": "Okay."
},
{
"no": 154,
"en_speaker": "B",
"ja_sentence": "もちろんそれはとても簡単にできることでしょう。",
"en_sentence": "That's definitely something that we should be able to do quite easily."
},
{
"no": 155,
"en_speaker": "B",
"ja_sentence": "まあ、そう願います。",
"en_sentence": "I would I would have hoped so anyway."
},
{
"no": 156,
"en_speaker": "B",
"ja_sentence": "えー、さて。",
"en_sentence": "Um, right."
},
{
"no": 157,
"en_speaker": "B",
"ja_sentence": "これは終わりにして、始めましょうか、えー、すぐに片付けるべきこととかを書き出して、皆さんにお渡しします。",
"en_sentence": "I'd say we finish this one up, we get started, ≪I'll get in≫, I'll write up what we've um kind of quickly done, and I'll get that out to everybody."
},
{
"no": 158,
"en_speaker": "C",
"ja_sentence": "分かりました。",
"en_sentence": "'Kay."
},
{
"no": 159,
"en_speaker": "B",
"ja_sentence": "いいですか?",
"en_sentence": "Yeah?"
},
{
"no": 160,
"en_speaker": "C",
"ja_sentence": "はい。",
"en_sentence": "So."
},
{
"no": 161,
"en_speaker": "B",
"ja_sentence": "では。",
"en_sentence": "Okay."
},
{
"no": 164,
"en_speaker": "B",
"ja_sentence": "えー、私が知っている限り、えー、特に何も言われなければ、マイクはここに置いて、ノートパソコンだけ持っていきましょう。",
"en_sentence": "Um, as far as I'm aware we leave the microphones here, um unless we get told otherwise, and just take the laptops with us."
}
]
},
{
"id": "IS1008c",
"original_language": "en",
"conversation": [
{
"no": 1,
"en_speaker": "A",
"ja_sentence": "あー、お帰りなさい。みなさん、ご一緒においししい昼食を取られたことと、あー、思います。",
"en_sentence": "Uh welcome back after lunch, I hope uh you had a good lunch together."
},
{
"no": 2,
"en_speaker": "A",
"ja_sentence": "この会議の、あー、主要なアジェンダは概念設計について話し合うことです。",
"en_sentence": "For uh this meeting the main agenda okay uh to discuss about the conceptual design ≪meeting≫."
},
{
"no": 3,
"en_speaker": "A",
"ja_sentence": "いいでしょう。オープニングはアジェンダです。それはあー、プロダクト マネージャか秘書の私です。あー、それからクリスティーンと、あー、アニエスによるプレゼンテーションと、あー、エド氏によるプレゼンテーションを行います。",
"en_sentence": "Okay and the agenda will be the opening and uh that's uh the product manager or secretary that's me and uh the presentations from the Christine and uh Agnes and from Mister Ed."
},
{
"no": 4,
"en_speaker": "A",
"ja_sentence": "そして、この会議の最後にリモコンのコンセプトとあー、機能設計を決定しなければいけない、決める予定です。そして私たちには40分間あります。すこし少ないと思いますが、終わることを期待します。では、機能チーム、クリスティーンに引き継ぎましょう。では、あー、コンポーネントのコンセプトに関して話し合います。",
"en_sentence": "And finally in this meeting we have to decide and we are to take a decision on the remote control concept and uh the functional design So we have forty minutes, I think it's uh little bit uh low, but I I hope we can finish it up so I'll handle to ≪the≫ the functional team, to ≪the≫ Christine, okay, to discuss about uh the components concept."