-
Notifications
You must be signed in to change notification settings - Fork 15
/
translated_110.txt
4606 lines (4606 loc) · 70 KB
/
translated_110.txt
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
""
"Back"
"Demo Exit"
"Speed up"
"Slow down"
"To start speed"
"View"
"Normal View"
"Sky View"
"Highway mode"
"100m scale"
""
"Destination"
"Configuration"
"communication"
"info"
"Configuration"
"Edit"
"Destination"
"Street address"
"Phone Number"
"Genre"
"Name"
"Surroundings"
"Registered"
"Search history"
"Return Home"
"Root erase"
"Info"
"Congestion info"
"sensor"
"Learning"
"Connection State"
"E-start"
"Image display"
"Maintenance"
"Edit"
"Root"
"Registered"
"Search"
"Erase"
"Phonebook"
"Learning"
"Travel"
"Configuration"
"Logo"
"Display"
"Function"
"Bluetooth"
"Communication"
"Volume"
"Easy"
"Setup"
"Real-time"
"Probe"
"Other"
"Real-time"
"mobile phone"
"Other"
"Option"
"Configuration"
"Vehicle"
"Camera Settings"
"Initialization"
"Position"
"Fix"
"Security"
"Lock"
"Date/time setting"
"Road switching"
"Register"
"Find facilities"
"Home"
"Back"
"Go Here"
"Register here"
"Find facilities"
"Home"
"Back"
"Destination"
"Waypoint"
"Go Here"
"Looking..."
"Register here"
"Find facilities"
"Back"
"Destination"
"Waypoint"
"Recommendation"
"Distance priority"
"Mains priority"
"Pay standard"
"Fee avoidance"
"Ferry priority"
"Ferry standard"
"Ferry avoidance"
"distance"
"Turnaround time"
"Fee"
"%3.1fkm"
"%7dkm"
"%2d minute"
"%2d time%2d minute"
"%6d time"
"**Minute"
"%6d Or more yen"
"%6d yen"
"**** Yen or more"
"**** Yen"
"unknown"
"0 Yen"
"OK"
"Route profile"
"Other Lumpur - To"
"Route map"
"Advanced Routing"
"**** Km"
"Detailed info"
"Show map"
"next page"
"Originating"
"[name]"
"[Street address]"
"[phone number]"
"Detailed info"
"Originating"
"Erase"
"Show map"
"[Name]"
"[phone number]"
"[2D mark]"
"[Sound effect]"
"Registration method"
"Favorite spot"
"Name"
"Delete"
"Candidate display"
"Genre selection"
"Area selection"
"Ah"
"Or"
""
"I was"
"A"
"The"
"Or"
"Or"
"Et al.,"
""
"Candidate display"
"Genre"
"Candidate display"
"Street address"
"Ah"
"Or"
""
"I was"
"A"
"The"
"Or"
"Or"
"Et al.,"
""
"Phone Number"
"Display Choices"
"Registered land"
"Call date and time order"
"Ascending order of distance"
"2D mark the order"
"Search history"
"Advanced Routing"
"add to"
"Search by Address"
"Find the phone number"
"Search by genre"
"Search by name"
"Find surrounding facilities"
"Look from registered location"
"Recent search"
"Find your favorite spot"
"Look for location"
"Price info"
"Search"
"You are here"
"Home"
"Destination"
"Select Road"
"Non-toll"
"Tollway"
"My favorite spot"
"Surrounding facilities"
"Candidate display"
"Vehicle around"
"Root around"
"FM Info"
"lead"
"Final"
"table of contents"
"Tuning"
"<"
">"
"next"
"Forward"
"1"
"2"
"3"
"4"
"5"
"6"
"7"
"8"
"9"
"Ten"
"%4.1fMHz"
"FM info"
"FM center"
"Station select"
"Auto"
"list"
"seek"
"FM multiplex"
"Station name"
"frequency"
"Receiving state"
"%4.1fMHz"
"Station list"
"%4.1fMHz"
"seek"
"Receiving state"
"**. * MHz"
"%4.1fMHz"
"Sensor learning"
"Trip meter"
"Vehicle speed"
"Distance learning"
"Orientation (right)"
"Orientation (left)"
"3D level"
"*"
"%7.2fkm"
"%7ld number"
"Learning level%4d"
"Sensor learning"
"3D hybrid"
"Simplified hybrid"
"All reset"
"Distance reset"
"Connection Status"
"Vehicle speed pulse:"
"Vehicle speed pulse: **"
"GPS antenna: OK"
"GPS antenna: NO"
"Power supply voltage:.%1fV"
"Power supply voltage: NO"
"Gyro voltage:.%1fV"
"Gyro voltage: NO"
"Mount: OK"
"Mount: NO (mounting angle)"
"Mount: NO (vibration)"
"Illumination: ON"
"Illumination: OFF"
"Back signal: HIGH"
"Back signal: LOW"
"Back signal: NO"
"Parking brake: ON"
"Parking brake: OFF"
"Bluetooth: OK"
"Bluetooth: NO"
"Image display"
"full screen"
"Recommendation"
"Distance priority"
"Mains priority"
"Pay standard"
"Fee avoidance"
"Ferry priority"
"Ferry standard"
"Ferry avoidance"
"distance"
"Turnaround time"
"Fee"
"%3.1fkm"
"%7dkm"
"**** Km"
"%2d minute"
"%2d time%2d minute"
"%6d time"
"**Minute"
"%6d Or more yen"
"%6d yen"
"**** Yen or more"
"**** Yen"
"unknown"
"0 Yen"
"Route profile"
"Advanced Routing"
"Root erase"
"O ye land Feed"
"demo run"
"demo run Exit"
"Re-search for a fee avoidance"
"Re-search for a fee standard"
"O ye land designated"
"Getting on and off IC specified"
"Place of departure specified"
"Departure delisting"
"Route profile"
"Guidance start"
"medium-sized car"
"%6d yen"
"%6d yen"
"****yen"
"%3.1fkm"
"%4dkm"
"**** Km"
"1"
"2"
"3"
"4"
"5"
"6"
"Map scroll"
"distance"
"Turnaround time"
"Fee"
"%3.1fkm"
"%7dkm"
"%2d minute"
"%2d time%2d minute"
"%6d time"
"Recommendation"
"Recommended 2"
"Distance priority"
"Distance priority 2"
"Mains priority"
"Mains priority 2"
"Pay standard"
"Fee avoidance"
"Ferry priority"
"Ferry standard"
"Ferry avoidance"
"%s /%s /%s root"
"%d Or more yen"
"%d yen"
"unknown"
"Decision"
"**** Km"
"**Minute"
"**** Yen or more"
"****yen"
"add to"
"Delete"
"Sorting"
"Search start"
"Advanced Routing"
"Delete"
"Sort/manual"
"boarding IC specified"
"Entrance IC"
"Exit IC specified"
"Delisting"
"Inlet and outlet"
"Entrance Only"
"Exit Only"
"Entrance IC /%s"
"Exit IC specified /%s"
"JCT"
"JCT"
"Direction"
"distance"
"Turnaround time"
"Fee"
"%3.1fkm"
"%7dkm"
"%2d minute"
"%2d time%2d minute"
"%6d time"
"%d more yen"
"%d yen"
"unknown"
"Decision"
"Candidate change"
"Recommendation"
"Recommended 2"
"Distance priority"
"Distance priority 2"
"Mains priority"
"Mains priority 2"
"Pay standard"
"Fee avoidance"
"Ferry priority"
"Ferry standard"
"Ferry avoidance"
"%s /%s /%s root"
"%d.%s /%s /%s root"
"1"
"2"
"3"
"4"
"5"
"6"
"**** Km"
"**Minute"
"****yen"
"Registered land edit"
"Edit"
"Erase"
"Edit"
"Call date and time order"
"Distance from vehicle position"
"2D mark the order"
"registered content"
"name"
"phone number"
"2D mark"
"Sound effect"
"Position correction"
"Unregistered"
"name"
"phone number"
"2D mark"
"Sound effect"
"Configuration"
"Confirmation"
"Erase"
"Select all"
"CANCEL"
"Call date and time order"
"Ascending order of distance from the vehicle position"
"2D mark the order"
"Erase"
"Select all"
"CANCEL"
"Phonebook erase"
"Select all"
"CANCEL"
"Favorite point edit"
"Edit"
"Erase"
"Edit"
"Erase"
"Logo display setting"
"display"
"Hide"
"display"
"Bluetooth Settings"
"Connection destination change/delete"
"Registration"
"Passkey"
"Radio wave"
"ON"
"OFF"
"Connection destination change/delete"
"Hands-free/BT AUDIO"
"BT AUDIO"
"hands free"
"/"
"Passkey"
"During Bluetooth processing"
"Registration"
"/"
"The radio wave state setting"
"ON"
"OFF"
"Candidate display"
"To register from the device"
"re-search"
"/"
"Function setting"
"Show map"
"Route guidance"
"Congestion info"
"Other"
"2D (normal view) map orientation"
"Heading up"
"North up"
"Auto highway mode"
"Map color switching"
"ON"
"OFF"
"Time interlocking"
"Daytime color fixed"
"Night color fixed"
"Travel locus automatic erasing"
"Home near"
"When the power is turned off"
"Traveling locus display"
"2D (normal view) fixed scroll"
"Route search criteria"
"Recommendation"
"Distance priority"
"Mains priority"
"Toll road use conditions"
"standard"
"Avoidance"
"Ferry route use conditions"
"priority"
"Learning route search"
"Congestion consideration route search"
"Smart IC consideration route search"
"Congestion consideration auto re-route"
"Congestion consideration auto"
"Way, estimated arrival time display"
"Based on the route"
"The new route"
"Destination"
"Land"
"20km/h"
"30km/h"
"40km/h"
"50km/h"
"60km/h"
"80km/h"
"100km/h"
"Intersection guidance display"
"Estimated arrival time speed (general road)"
"Expected time of arrival rate (toll road)"
"ETC lane guidance display"
"Distance By Rate guidance"
"Congestion info display target road"
"Toll road, general road"
"Toll road only"
"General road only"
"Do not show"
"Congestion info display"
"Favorable view"
"Regulation Display"
"Parking info mark display"
"Congestion auto guide"
"Display of current location info"
"City name"
"Traveling road name"
"Toll road note point-border assistance"
"Level crossing guidance"
"Refresh guidance"
"Light lighting guidance"
"E-start guide"
"Parking brake alert"
"Safe driving, drunk driving prevention"
"Connection destination setting"
"access point"
"Configuration"
"Connection Settings"
"Connection 1"
"Connection 2"
"Unset"
"Provider list"
"Other provider"
"Manual Setup"
"Host name"
"Destination phone number"
"ID"
"password"
"Primary DNS"
"Secondary DNS"
"Proxy server"
"Proxy server name"
"port number"
"ID"
"password"
"Host name"
"The destination phone number"
"Primary DNS"
"Secondary DNS"
"Proxy server"
"use"
"do not use"
"Proxy server name"
"port number"
"Vehicle info setting"
"Midsize car"
"Normal car"
"Light car"
"No setting"
"3 number"
"RV"
"Minivan · 1BOX"
"Toll segment"
"Parking restrictions (car)"
"Parking restriction (vehicle size)"
"%3dcm"
"%s /%s /%s"
"%s /%s"
"%s"
"L:"
"W:"
"H:"
"Parking restrictions (car)"
"3 number"
"RV"
"Minivan · 1BOX"
"Parking/length (L)"
"Parking/width (W)"
"Parking/height (H)"
"%c%c%c cm"
"Setting initialization"
"Logo display setting"
"Function setting"
"Bluetooth Settings"
"Communication connection setting"
"Volume setting"
"Easy Setup startup Display"
"Smart loop setting"
"Option setting"
"Vehicle info setting"
"Camera Settings"
"Start the Easy Setup"
"Later to set up"
"Forward"
"Exit"
"Introduction Back to"
"Home setting"
"Home registration"
"Registration change"
"ETC mounting state setting"
"Attached to car"
"Not attached to car"
"Option setting"
"E Start screen"
"TV to"
"VICS graphic info"
"MUTE the ON/to OFF"
"Volume setting"
"Return to home"
"Changing the source"
"Source to OFF"
"Real-time info"
"Redial"
"Bluetooth Settings"
"Connection destination change"
"Communication connection setting"
"mobile phone"
"Unset"
"Vehicle type setting"
"Manual Setup"
"Probe info transmission"
"Probe info received"
"Transmission setting"
"Congestion info acquisition start"
"Congestion info continuous acquisition"
"ON"
"OFF"
"Auto"
"manual"
"Option setting"
"Volume setting"
"info volume"
"Earpiece volume"
"Ring volume"
"Beep"
"ON"
"OFF"
"-"
"+"
"MIN"
"MAX"
"Vehicle position correction"
"Vehicle direction correction"
"mobile phone"
"Phonebook"
"call"
"Read"
"Dial"
"Originating"
"Redial"
"Phonebook"
"Phonebook read"
"Dialing"
"FM emergency info"
"VICS emergency info"
"The new route"
"Based on the root"
"%3.1fkm"
"%d minute"
"%d km"
"%d yen"
"Candidate route selection"
"**. * Km"
"****Minute"
"**** Km"
"*****yen"
"To return to original route after %dm"
"New route after %dm"
"The new route"
"distance"
"Turnaround time"
"Fee"
"%3.1fkm"
"%d minute"
"%dkm"
"%dyen"
"New route"
"OK"
"**. * Km"
"****Minute"
"**** Km"
"****yen"
"OFF"
"SEEK"
"SEARCH"
"SCAN"
"M"
"S"
"M+S"
"P%d"
"SCAN"
"Exit"
"Back"
"Preset change"
"Service change"
"A TV schedule"
"Program content"
"D"
"operation"
"next page"
"Band switching"
"Exit"
"Back"
"scan"
"Service list"
"Subtitle change"
"Voice switching"
"Video switching"
"Program info acquisition"
"Previous page"
"Scanning"
"Abort"
"Obtaining program info"
"Abort"
"Service list"
"D"
"Button off"
"Digit"
"Position <<"
"Position >>"
"1"
"2"
"3"
"4"
"5"
"6"
"7"
"8"
"9"
"10/0"
"11/*"
"12/#"
"cross"
"HEAT (ERROR-13)"
"HEAT (ERROR-12)"
"ANTENNA (ERROR-20)"
"ERROR-11"
"SEEK"
"SEARCH"
"Detail"
"View"
"SEEK"
"BSM"
"STEREO"
"P%d"
"Presets"
"Band"
"BSM"
"Abort"
"Searching for stations"
"1620kHz"
"1629kHz"
"1620kHz"
"1629kHz"
"View"
"Auto"
"manual"
"1-6"
"Function"
"Band"
"View"
"Back"
"1"
"2"
"3"
"4"
"5"
"6"
"Back"
"Function 1"
"Function 2"
"Function 3"
"Function 4"
"Auto/Manual"
"No Title"
"No Name"
"PAUSE"
"STOP"
"READY"
"ERROR-11"
"ERROR-21"
"ERROR-30"
"ERROR-A6"
"Control Mode: iPod"
"Of"
"No Title"
"No Name"
"REPEAT ONE"
"REPEAT ALL"
"REPEAT ONE SHUFFLE SONGS"
"REPEAT ALL SHUFFLE SONGS"
"REPEAT ONE SHUFFLE ALBUMS"
"REPEAT ALL SHUFFLE ALBUMS"
"PAUSE"
"STOP"
"READY"
"ERROR-11"
"ERROR-21"
"ERROR-30"
"ERROR-A6"
"list"
"Control mode switching"
"Exit"
"Back"
"Exit"
"Back"
"list"
"Control mode switching"
"View"
"list"
"Control mode switching"
"View"
"Exit"
"Music"
"video"
"Track"
"No Name"
"PAUSE"
"TRACK REPEAT"
"RANDOM"
"No Title"
"No Name"
"PAUSE"
"TRACK REPEAT"
"RANDOM"
"list"
"repeat"
"random"
"Track"
"Track"
"TRACK REPEAT"
"FOLDER REPEAT-RANDOM"
"FOLDER REPEAT"
"RANDOM"
"MP3"
"WMA"
"AAC"
"PAUSE"
"list"
"repeat"
"random"
"No Name"
"PAUSE"
"TRACK REPEAT"
"FOLDER REPEAT-RANDOM"
"FOLDER REPEAT"
"RANDOM"
"MP3"
"WMA"
"AAC"
"Angle%-2d"
"Japanese"
"English"
"French"
"German"
"Italian"
"Spanish"
"Portuguese"
"Chinese"
"Korean"
"Other"
"PAUSE"
"STOP"
"DolbyD"
"MPEG-A"
"LPCM"
"DTS"
"1ch"
"2ch"
"3ch"
"4ch"
"5ch"
"5.1ch"
"6ch"
"7ch"
"7.1ch"
"8ch"
"1 + 1ch"
"CHAPTER REPEAT"
"TITLE REPEAT"
"L + R"
"L"
"R"
"MIX"
"Top menu"
"Menu"
"Bookmark"
"repeat"
"next page"
"View"
"Subtitle change"
"Voice switching"
"L/R switching"
"angle"
"return"
"10 key search"
"Previous page"
"View"
"Back"
"Decision"
"Button off"
"position"
"TITLE search"
"CHAPTER search"
"TIME search"
"10 key mode"
"PAUSE"
"STOP"
"Back"
"TITLE"
"CHAPTER"
"TIME"
"10 key mode"
"1"
"2"
"3"
"4"
"5"
"6"
"7"
"8"
"9"
"Minute"
"0"
"Seconds"
"Decision"
"Delete"
"OFF"
"AV menu"
"Audio Settings"
"Fader/balance setting"
"Fader 0"
"Front %d"
"Rear %d"
"Balance 0"
"Right %d"
"Left %d"
"Loudness setting"
"ON"
"OFF"
"Equalizer settings"
"SUPER BASS"
"POWERFUL"
"NATURAL"
"VOCAL"
"FLAT"
"CUSTOM1"
"CUSTOM2"
"Source level adjuster setting"
"± 0dB"
"Sound field setting (VSC)"
"MUSIC STUDIO"
"DYNAMIC THEATER"
"ACTOR'S STAGE"
"RELAX LIVING"
"System setting"
"Wide Mode setting"
"FULL"
"JUST"
"CINEMA"
"ZOOM"
"NORMAL"
"Mute timing"
"Guide telephone"
"phone"
"OFF"
"Mute level"
"-10dB"
"-20dB"
"MUTE"
"-"
"ON"
"AUX setting"
"clock display settings"
"Guide settings"
"Front L"
"Front R"
"Front L+R"
"DVD Video settings"
"DivX VOD code"
"TV settings"
"IPod wide screen"
"VTR settings"
"Wide Mode"
"FULL"