forked from mavlink/qgroundcontrol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqgc_json_ja_JP.ts
1879 lines (1879 loc) · 95 KB
/
qgc_json_ja_JP.ts
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
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.1" language="ja" sourcelanguage="en">
<context>
<name>FlyView.SettingsGroup.json</name>
<message>
<extracomment>.QGC.MetaData.Facts[instrumentQmlFile].enumStrings, </extracomment>
<location filename="../src/Settings/FlyView.SettingsGroup.json"/>
<source>Integrated Compass/Attitude,Horizontal Compass/Atttitude,Large Vertical</source>
<translation>一体型コンパス/姿勢計, 水平コンパス/姿勢計, 大型垂直コンパス</translation>
</message>
</context>
<context>
<name>App.SettingsGroup.json</name>
<message>
<extracomment>.QGC.MetaData.Facts[offlineEditingFirmwareClass].enumStrings, </extracomment>
<location filename="../src/Settings/App.SettingsGroup.json"/>
<source>ArduPilot,PX4 Pro,Mavlink Generic</source>
<translation>ArduPilot,PX4 Pro,MAVLink 汎用</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[offlineEditingVehicleClass].enumStrings, </extracomment>
<location filename="../src/Settings/App.SettingsGroup.json"/>
<source>Fixed Wing,Multi-Rotor,VTOL,Rover,Sub,Mavlink Generic</source>
<translation>固定翼機,マルチコプター,VTOL機,ローバー,サブマリン,MAVLink 汎用</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[gstDebugLevel].enumStrings, </extracomment>
<location filename="../src/Settings/App.SettingsGroup.json"/>
<source>Disabled,Error,Warning,FixMe,Info,Debug,Log,Trace</source>
<translation>無効,エラー,警告,FixMe,情報,デバッグ,ログ,トレース</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[indoorPalette].enumStrings, </extracomment>
<location filename="../src/Settings/App.SettingsGroup.json"/>
<source>Indoor,Outdoor</source>
<translation>屋内,屋外</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[followTarget].enumStrings, </extracomment>
<location filename="../src/Settings/App.SettingsGroup.json"/>
<source>Never,Always,When in Follow Me Flight Mode</source>
<translation>設定しない,常時設定,フォローミーモード時</translation>
</message>
</context>
<context>
<name>FirmwareUpgrade.SettingsGroup.json</name>
<message>
<extracomment>.QGC.MetaData.Facts[apmChibiOS].enumStrings, </extracomment>
<location filename="../src/Settings/FirmwareUpgrade.SettingsGroup.json"/>
<source>ChibiOS,NuttX</source>
<translation>ChibiOS,NuttX</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[apmVehicleType].enumStrings, </extracomment>
<location filename="../src/Settings/FirmwareUpgrade.SettingsGroup.json"/>
<source>Multi-Rotor,Helicopter,Plane,Rover,Sub</source>
<translation>マルチローター,ヘリコプター,飛行機,ローバー,サブマリン</translation>
</message>
</context>
<context>
<name>APMMavlinkStreamRate.SettingsGroup.json</name>
<message>
<extracomment>.QGC.MetaData.Defines.StreamRateEnumStrings, </extracomment>
<location filename="../src/Settings/APMMavlinkStreamRate.SettingsGroup.json"/>
<source>Controlled By Vehicle,0 hz,1 hz,2 hz,3 hz,4 hz,5 hz,6 hz,7 hz,8 hz,9 hz,10 hz,50 hz,100 hz</source>
<translation>機体による制御,0 hz,1 hz,2 hz,3 hz,4 hz,5 hz,6 hz,7 hz,8 hz,9 hz,10 hz,50 hz,100 hz</translation>
</message>
</context>
<context>
<name>BatteryIndicator.SettingsGroup.json</name>
<message>
<extracomment>.QGC.MetaData.Facts[display].enumStrings, </extracomment>
<location filename="../src/Settings/BatteryIndicator.SettingsGroup.json"/>
<source>Percentage,Voltage,Percentage and Voltage</source>
<translation>パーセント, 電圧, パーセント & 電圧</translation>
</message>
</context>
<context>
<name>Video.SettingsGroup.json</name>
<message>
<extracomment>.QGC.MetaData.Facts[gridLines].enumStrings, </extracomment>
<location filename="../src/Settings/Video.SettingsGroup.json"/>
<source>Hide,Show</source>
<translation>非表示,表示</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[videoFit].enumStrings, </extracomment>
<location filename="../src/Settings/Video.SettingsGroup.json"/>
<source>Fit Width,Fit Height,Stretch</source>
<translation>フィット幅,フィット高,ストレッチ</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[recordingFormat].enumStrings, </extracomment>
<location filename="../src/Settings/Video.SettingsGroup.json"/>
<source>mkv,mov,mp4</source>
<translation>mkv,mov,mp4</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[forceVideoDecoder].enumStrings, </extracomment>
<location filename="../src/Settings/Video.SettingsGroup.json"/>
<source>Default,Force software decoder,Force NVIDIA decoder,Force VA-API decoder,Force DirectX3D 11 decoder,Force VideoToolbox decoder</source>
<translation>デフォルト,ソフトウェア デコーダー,NVIDIA デコーダー,VA-API デコーダー,DirectX 3D 11 デコーダー,VideoToolbox デコーダー</translation>
</message>
</context>
<context>
<name>RemoteID.SettingsGroup.json</name>
<message>
<extracomment>.QGC.MetaData.Facts[operatorIDType].enumStrings, </extracomment>
<location filename="../src/Settings/RemoteID.SettingsGroup.json"/>
<source>CAA</source>
<translation>CAA</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[selfIDType].enumStrings, </extracomment>
<location filename="../src/Settings/RemoteID.SettingsGroup.json"/>
<source>Free Text,Emergency,Extended Status</source>
<translation>フリーテキスト, 緊急性, 拡張ステータス</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[basicIDType].enumStrings, </extracomment>
<location filename="../src/Settings/RemoteID.SettingsGroup.json"/>
<source>None,SerialNumber(ANSI/CTA-2063),CAA,UTM(RFC4122),Specific</source>
<translation>なし,シリアルナンバー(ANSI/CTA-2063),CAA,UTM(RFC4122),特定</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[basicIDUaType].enumStrings, </extracomment>
<location filename="../src/Settings/RemoteID.SettingsGroup.json"/>
<source>Undefined,Airplane/FixedWing,Helicopter/Multirrotor,Gyroplane,VTOL,Ornithopter,Glider,Kite,Free Ballon,Captive Ballon,Airship,Parachute,Rocket,Tethered powered aircraft,Ground Obstacle,Other</source>
<translation>未定義,飛行機/固定翼機,ヘリコプター/マルチローター,ジャイロプレーン,VTOL,羽ばたき飛行船,グライダー,カイト,フリーバロン,キャプティブバロン,飛行船,パラシュート,ロケット,テザー動力機,地上障害物,その他</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[region].enumStrings, </extracomment>
<location filename="../src/Settings/RemoteID.SettingsGroup.json"/>
<source>FAA,EU</source>
<translation>FAA,EU</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[locationType].enumStrings, </extracomment>
<location filename="../src/Settings/RemoteID.SettingsGroup.json"/>
<source>Takeoff(Not Supported),Live GNNS, Fixed (not for FAA)</source>
<translation>離陸(未サポート),リアルタイムGNNS,固定 (FAA対象外)</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[classificationType].enumStrings, </extracomment>
<location filename="../src/Settings/RemoteID.SettingsGroup.json"/>
<source>Undefined,EU</source>
<translation>未定義, EU</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[categoryEU].enumStrings, </extracomment>
<location filename="../src/Settings/RemoteID.SettingsGroup.json"/>
<source>Undeclared,Open,Specific,Certified</source>
<translation>未申請,公開,特定,認証済</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[classEU].enumStrings, </extracomment>
<location filename="../src/Settings/RemoteID.SettingsGroup.json"/>
<source>Undeclared,Class 0,Class 1,Class 2,Class 3,Class 4,Class 5,Class 6</source>
<translation>未申請,クラス 0,クラス 1,クラス 2,クラス 3,クラス 4,クラス 5,クラス 6</translation>
</message>
</context>
<context>
<name>GimbalController.SettingsGroup.json</name>
<message>
<extracomment>.QGC.MetaData.Facts[ControlType].enumStrings, </extracomment>
<location filename="../src/Settings/GimbalController.SettingsGroup.json"/>
<source>Click to point, click and drag</source>
<translation>クリックでポイント, クリックしてドラッグ</translation>
</message>
</context>
<context>
<name>BatteryFact.json</name>
<message>
<extracomment>.QGC.MetaData.Facts[batteryFunction].enumStrings, </extracomment>
<location filename="../src/Vehicle/FactGroups/BatteryFact.json"/>
<source>n/a,All Flight Systems,Propulsion,Avionics,Payload</source>
<translation>該当なし,全フライトシステム,推進力,アビオニクス,ペイロード</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[batteryType].enumStrings, </extracomment>
<location filename="../src/Vehicle/FactGroups/BatteryFact.json"/>
<source>n/a,LIPO,LIFE,LION,NIMH</source>
<translation>n/a,LIPO,LIFE,LION,NIMH</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[chargeState].enumStrings, </extracomment>
<location filename="../src/Vehicle/FactGroups/BatteryFact.json"/>
<source>n/a,Ok,Low,Critical,Emergency,Failed,Unhealthy,Charging</source>
<translation>n/a,OK,Low,Critical,Emergency,Failed,Unhealthy,Charging</translation>
</message>
</context>
<context>
<name>GPSFact.json</name>
<message>
<extracomment>.QGC.MetaData.Facts[lock].enumStrings, </extracomment>
<location filename="../src/Vehicle/FactGroups/GPSFact.json"/>
<source>None,None,2D Lock,3D Lock,3D DGPS Lock,3D RTK GPS Lock (float),3D RTK GPS Lock (fixed),Static (fixed)</source>
<translation>None,None,2D Lock,3D Lock,3D DGPS Lock,3D RTK GPS Lock (float),3D RTK GPS Lock (fixed),Static (fixed)</translation>
</message>
</context>
<context>
<name>SubmarineFact.json</name>
<message>
<extracomment>.QGC.MetaData.Facts[inputHold].enumStrings, </extracomment>
<location filename="../src/Vehicle/FactGroups/SubmarineFact.json"/>
<source>Disabled,Enabled</source>
<translation>無効,有効</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[rollPitchToggle].enumStrings, </extracomment>
<location filename="../src/Vehicle/FactGroups/SubmarineFact.json"/>
<source>Disabled,Enabled,Unavailable</source>
<translation>無効,有効,利用不可</translation>
</message>
</context>
<context>
<name>EditPositionDialog.FactMetaData.json</name>
<message>
<extracomment>.QGC.MetaData.Facts[Hemisphere].enumStrings, </extracomment>
<location filename="../src/QmlControls/EditPositionDialog.FactMetaData.json"/>
<source>North,South</source>
<translation>北,南</translation>
</message>
</context>
<context>
<name>MavCmdInfoMultiRotor.json</name>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_TAKEOFF].param4.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoMultiRotor.json"/>
<source>Yaw</source>
<translation>ヨー</translation>
</message>
</context>
<context>
<name>MavCmdInfoFixedWing.json</name>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_TAKEOFF].param1.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoFixedWing.json"/>
<source>Pitch</source>
<translation>ピッチ</translation>
</message>
</context>
<context>
<name>MavCmdInfoCommon.json</name>
<message>
<extracomment>.mavCmdInfo[HomeRaw].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Home Position</source>
<translation>ホーム位置</translation>
</message>
<message>
<extracomment>.mavCmdInfo[HomeRaw].description, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Planned home position for mission.</source>
<translation>ミッションにて計画していたホーム位置</translation>
</message>
<message>
<extracomment>.mavCmdInfo[HomeRaw].category, .mavCmdInfo[MAV_CMD_NAV_WAYPOINT].category, .mavCmdInfo[MAV_CMD_NAV_RETURN_TO_LAUNCH].category, .mavCmdInfo[MAV_CMD_NAV_LAND].category, .mavCmdInfo[MAV_CMD_NAV_TAKEOFF].category, .mavCmdInfo[MAV_CMD_NAV_SPLINE_WAYPOINT].category, .mavCmdInfo[MAV_CMD_NAV_VTOL_TAKEOFF].category, .mavCmdInfo[MAV_CMD_NAV_VTOL_LAND].category, .mavCmdInfo[MAV_CMD_CONDITION_DELAY].category, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Basic</source>
<translation>基本</translation>
</message>
<message>
<extracomment>.mavCmdInfo[HomeRaw].param5.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Latitude</source>
<translation>緯度</translation>
</message>
<message>
<extracomment>.mavCmdInfo[HomeRaw].param6.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Longitude</source>
<translation>経度</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_WAYPOINT].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Waypoint</source>
<translation>ポイント</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_WAYPOINT].description, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Travel to a position in 3D space.</source>
<translation>3D空間の位置に移動します。</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_WAYPOINT].param1.label, .mavCmdInfo[MAV_CMD_NAV_SPLINE_WAYPOINT].param1.label, .mavCmdInfo[MAV_CMD_NAV_DELAY].param1.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Hold</source>
<translation>ホールド</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_WAYPOINT].param2.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Acceptance</source>
<translation>許容半径</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_WAYPOINT].param3.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Pass Radius</source>
<translation>経路半径</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_WAYPOINT].param4.label, .mavCmdInfo[MAV_CMD_NAV_LOITER_UNLIM].param4.label, .mavCmdInfo[MAV_CMD_NAV_LAND].param4.label, .mavCmdInfo[MAV_CMD_NAV_VTOL_TAKEOFF].param4.label, .mavCmdInfo[MAV_CMD_NAV_VTOL_LAND].param4.label, .mavCmdInfo[MAV_CMD_DO_GIMBAL_MANAGER_PITCHYAW].param2.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Yaw</source>
<translation>ヨー</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_LOITER_UNLIM].friendlyName, .mavCmdInfo[MAV_CMD_NAV_LOITER_UNLIM].category, .mavCmdInfo[MAV_CMD_NAV_LOITER_TURNS].category, .mavCmdInfo[MAV_CMD_NAV_LOITER_TIME].category, .mavCmdInfo[MAV_CMD_NAV_LOITER_TO_ALT].category, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Loiter</source>
<translation>ロイター</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_LOITER_UNLIM].description, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Travel to a position and Loiter around the specified position indefinitely.</source>
<translation>指定された位置に移動し、その周辺で無期限にロイターします。</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_LOITER_UNLIM].param3.label, .mavCmdInfo[MAV_CMD_NAV_LOITER_TURNS].param3.label, .mavCmdInfo[MAV_CMD_NAV_LOITER_TIME].param3.label, .mavCmdInfo[MAV_CMD_NAV_LOITER_TO_ALT].param2.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Radius</source>
<translation>半径</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_LOITER_TURNS].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Loiter (turns)</source>
<translation>ロイター(ターン)</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_LOITER_TURNS].description, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Travel to a position and Loiter around the specified position for a number of turns.</source>
<translation>指定された位置に移動し、その周辺で何回転かしてロイターします。</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_LOITER_TURNS].param1.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Turns</source>
<translation>ターン</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_LOITER_TURNS].param2.label, .mavCmdInfo[MAV_CMD_NAV_LOITER_TIME].param2.label, .mavCmdInfo[MAV_CMD_NAV_LOITER_TO_ALT].param1.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Leave Loiter</source>
<translation>ロイター離脱</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_LOITER_TURNS].param2.enumStrings, .mavCmdInfo[MAV_CMD_NAV_LOITER_TO_ALT].param1.enumStrings, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Direction of next waypoint,Any direction</source>
<translation>次のポイントの方向, 任意の方向</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_LOITER_TURNS].param4.label, .mavCmdInfo[MAV_CMD_NAV_LOITER_TIME].param4.label, .mavCmdInfo[MAV_CMD_NAV_LOITER_TO_ALT].param4.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Exit loiter from</source>
<translation>ロイターを終了</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_LOITER_TURNS].param4.enumStrings, .mavCmdInfo[MAV_CMD_NAV_LOITER_TIME].param4.enumStrings, .mavCmdInfo[MAV_CMD_NAV_LOITER_TO_ALT].param4.enumStrings, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Center,Tangent</source>
<translation>センター,接線</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_LOITER_TIME].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Loiter (time)</source>
<translation>ロイター(時間)</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_LOITER_TIME].description, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Travel to a position and Loiter around the specified position for an amount of time.</source>
<translation>指定された位置に移動し、その周辺で一定時間ロイターします。</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_LOITER_TIME].param1.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Loiter Time</source>
<translation>ロイター時間</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_LOITER_TIME].param2.enumStrings, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Direction of next waypoint,Current direction</source>
<translation>次のポイントの方向,現在の方向</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_RETURN_TO_LAUNCH].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Return To Launch</source>
<translation>離陸地点へ戻る</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_RETURN_TO_LAUNCH].description, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Send the vehicle back to the launch position.</source>
<translation>機体を離陸位置に戻します。</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_LAND].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Land</source>
<translation>着陸</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_LAND].description, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Land vehicle at the specified location.</source>
<translation>指定された場所に機体を着陸させます。</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_LAND].param1.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Abort Alt</source>
<translation>高度制御 中止</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_LAND].param2.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Precision Land</source>
<translation>高精度着陸</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_LAND].param2.enumStrings, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Disabled,Opportunistic,Required</source>
<translation>無効,便乗,必須</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_TAKEOFF].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Takeoff</source>
<translation>離陸</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_TAKEOFF].description, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Launch from the ground and travel towards the specified takeoff position.</source>
<translation>地上から離陸、指定した離陸位置に向かって移動します。</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_LAND_LOCAL].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Land local</source>
<translation>着陸 ローカル</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_TAKEOFF_LOCAL].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Takeoff local</source>
<translation>離陸 ローカル</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_FOLLOW].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Nav follow</source>
<translation>Nav フォロー</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_CONTINUE_AND_CHANGE_ALT].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Change Altitude</source>
<translation>高度を変更</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_CONTINUE_AND_CHANGE_ALT].description, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Continue on the current course and climb/descend to specified altitude. When the altitude is reached continue to the next command.</source>
<translation>現在のコースを継続し、指定した高度まで上昇 / 下降します。高度に達したら次のコマンドに進みます。</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_CONTINUE_AND_CHANGE_ALT].category, .mavCmdInfo[MAV_CMD_DO_CHANGE_SPEED].category, .mavCmdInfo[MAV_CMD_DO_LAND_START].category, .mavCmdInfo[MAV_CMD_DO_INVERTED_FLIGHT].category, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Flight control</source>
<translation>飛行制御</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_CONTINUE_AND_CHANGE_ALT].param1.label, .mavCmdInfo[MAV_CMD_DO_SET_MODE].param1.label, .mavCmdInfo[MAV_CMD_DO_SET_HOME].param1.label, .mavCmdInfo[MAV_CMD_DO_SET_ROI].param1.label, .mavCmdInfo[MAV_CMD_DO_DIGICAM_CONFIGURE].param1.label, .mavCmdInfo[MAV_CMD_DO_MOUNT_CONFIGURE].param1.label, .mavCmdInfo[MAV_CMD_DO_MOUNT_CONTROL].param7.label, .mavCmdInfo[MAV_CMD_SET_CAMERA_MODE].param2.label, .mavCmdInfo[MAV_CMD_DO_VTOL_TRANSITION].param1.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Mode</source>
<translation>モード</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_CONTINUE_AND_CHANGE_ALT].param1.enumStrings, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Climb,Neutral,Descend</source>
<translation>上昇,ニュートラル,下降</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_LOITER_TO_ALT].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Loiter (altitude)</source>
<translation>ロイター(高度)</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_LOITER_TO_ALT].description, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Loiter at specified position until altitude reached.</source>
<translation>高度に達するまでの指定位置でロイターを設定します。</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_FOLLOW].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Follow Me</source>
<translation>フォローミー</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_FOLLOW_REPOSITION].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Vehicle reposition</source>
<translation>機体位置変更</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_PATHPLANNING].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Path planning</source>
<translation>経路計画</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_PATHPLANNING].description, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Control autonomous path planning.</source>
<translation>自律的な経路を計画して制御します。</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_PATHPLANNING].category, .mavCmdInfo[MAV_CMD_DO_SET_MODE].category, .mavCmdInfo[MAV_CMD_DO_JUMP].category, .mavCmdInfo[MAV_CMD_DO_SET_HOME].category, .mavCmdInfo[MAV_CMD_DO_SET_REVERSE].category, .mavCmdInfo[MAV_CMD_DO_MOUNT_CONFIGURE].category, .mavCmdInfo[MAV_CMD_DO_MOUNT_CONTROL].category, .mavCmdInfo[MAV_CMD_DO_GIMBAL_MANAGER_PITCHYAW].category, .mavCmdInfo[MAV_CMD_DO_GRIPPER].category, .mavCmdInfo[MAV_CMD_DO_AUTOTUNE_ENABLE].category, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Advanced</source>
<translation>詳細設定</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_PATHPLANNING].param1.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Local planning</source>
<translation>ローカルプラン</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_PATHPLANNING].param1.enumStrings, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Disable,Enable,Enable+reset</source>
<translation>無効,有効,有効+リセット</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_PATHPLANNING].param2.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Full planning</source>
<translation>全体プラン</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_PATHPLANNING].param2.enumStrings, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Disable,Enable,Enable+reset,Enable+reset route only</source>
<translation>無効,有効,有効+リセット,有効+経路リセットのみ</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_PATHPLANNING].param4.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Heading goal</source>
<translation>ヘッディング目標</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_SPLINE_WAYPOINT].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Spline waypoint</source>
<translation>スプラインポイント</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_SPLINE_WAYPOINT].description, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Travel to a position in 3D space using spline path.</source>
<translation>滑らかな経路を用いて3D空間の指定位置に移動します。</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_ALTITUDE_WAIT].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Altitude wait</source>
<translation>高度保持</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_VTOL_TAKEOFF].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>VTOL takeoff</source>
<translation>VTOL離陸</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_VTOL_TAKEOFF].description, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Hover straight up to specified altitude, transition to fixed-wing and fly to the specified takeoff location.</source>
<translation>指定された高度まで直立ホバリングし、固定翼飛行に移行して指定された離陸地点まで飛行します。</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_VTOL_TAKEOFF].param2.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Transition Heading</source>
<translation>ヘッディング遷移</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_VTOL_TAKEOFF].param2.enumStrings, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Default,Next waypoint,Takeoff,Specified,Any</source>
<translation>デフォルト,次のポイント,離陸,指定値,すべて</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_VTOL_LAND].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>VTOL land</source>
<translation>VTOL着陸</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_VTOL_LAND].description, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Fly to specified location at current altitude, transition to multi-rotor and land.</source>
<translation>現在の高度で指定した場所まで飛行し、マルチローターに移行して着陸します。</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_VTOL_LAND].param3.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Approach Alt</source>
<translation>高度制御アプローチ</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_GUIDED_ENABLE].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Guided enable</source>
<translation>ガイドを有効</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_GUIDED_ENABLE].description, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Enable/Disabled guided mode.</source>
<translation>ガイドモードの有効 / 無効</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_GUIDED_ENABLE].param1.label, .mavCmdInfo[MAV_CMD_DO_FENCE_ENABLE].param1.label, .mavCmdInfo[MAV_CMD_DO_AUTOTUNE_ENABLE].param2.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Enable</source>
<translation>有効</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_GUIDED_ENABLE].param1.enumStrings, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>On,Off</source>
<translation>ON,OFF</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_DELAY].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Delay until</source>
<translation>遅延時間</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_DELAY].description, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Delay until the specified time is reached.</source>
<translation>指定時間に達するまで遅延させます。</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_DELAY].param2.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Hour (utc)</source>
<translation>時(UTC)</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_DELAY].param3.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Min (utc)</source>
<translation>分(UTC)</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_DELAY].param4.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Sec (utc)</source>
<translation>秒(UTC)</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_CONDITION_DELAY].friendlyName, .mavCmdInfo[MAV_CMD_CONDITION_DELAY].param1.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Delay</source>
<translation>遅延</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_CONDITION_DELAY].description, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Delay the mission for the number of seconds.</source>
<translation>秒単位でミッションを遅延させます。</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_CONDITION_CHANGE_ALT].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Wait for altitude</source>
<translation>高度の保持</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_CONDITION_CHANGE_ALT].description, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Delay the mission until the specified altitide is reached.</source>
<translation>指定された高度に達するまでミッションを遅らせます。</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_CONDITION_CHANGE_ALT].category, .mavCmdInfo[MAV_CMD_CONDITION_DISTANCE].category, .mavCmdInfo[MAV_CMD_CONDITION_YAW].category, .mavCmdInfo[MAV_CMD_CONDITION_GATE].category, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Conditionals</source>
<translation>条件</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_CONDITION_CHANGE_ALT].param1.label, .mavCmdInfo[MAV_CMD_CONDITION_YAW].param2.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Rate</source>
<translation>レート</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_CONDITION_DISTANCE].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Wait for distance</source>
<translation>間隔を保持</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_CONDITION_DISTANCE].description, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Delay the mission until within the specified distance of the next waypoint.</source>
<translation>次のポイントまでの距離が指定された間隔になるまでミッションを遅延させます。</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_CONDITION_DISTANCE].param1.label, .mavCmdInfo[MAV_CMD_DO_SET_CAM_TRIGG_DIST].param1.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Distance</source>
<translation>距離</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_CONDITION_YAW].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Wait for Yaw</source>
<translation>ヨーの保持</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_CONDITION_YAW].description, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Delay the mission until the specified heading is reached.</source>
<translation>指定された方位に到達するまでミッションを遅延させます。</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_CONDITION_YAW].param1.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Heading</source>
<translation>ヘッディング</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_CONDITION_YAW].param3.label, .mavCmdInfo[MAV_CMD_DO_SET_REVERSE].param1.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Direction</source>
<translation>方向</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_CONDITION_YAW].param3.enumStrings, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Clockwise,Shortest,Counter-Clockwise</source>
<translation>時計回り, 反時計回り</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_CONDITION_YAW].param4.label, .mavCmdInfo[MAV_CMD_DO_CHANGE_SPEED].param4.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Offset</source>
<translation>オフセット</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_CONDITION_YAW].param4.enumStrings, .mavCmdInfo[MAV_CMD_DO_CHANGE_SPEED].param4.enumStrings, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Relative,Absolute</source>
<translation>相対,絶対</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_MODE].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Set mode</source>
<translation>モード設定</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_MODE].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Set flight mode</source>
<translation>フライトモード設定</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_MODE].description, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Set flight mode.</source>
<translation>フライトモードを設定します。</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_MODE].param2.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Custom Mode</source>
<translation>カスタムモード</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_MODE].param3.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Sub Mode</source>
<translation>サブモード</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_JUMP].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Jump to item</source>
<translation>項目にジャンプ</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_JUMP].description, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Mission will continue at the specified item.</source>
<translation>指定された項目でミッションを継続します。</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_JUMP].param1.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Item #</source>
<translation>項目 #</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_JUMP].param2.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Repeat</source>
<translation>リピート</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_CHANGE_SPEED].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Change speed</source>
<translation>速度変更</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_CHANGE_SPEED].description, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Change speed and/or throttle set points.</source>
<translation>速度および / またはスロットルのセットポイントを変更します。</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_CHANGE_SPEED].param1.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Type</source>
<translation>タイプ</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_CHANGE_SPEED].param1.enumStrings, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Airspeed,Ground Speed,Ascend Speed,Descend Speed</source>
<translation>飛行速度, 地上速度, 昇降速度, 降下速度</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_CHANGE_SPEED].param2.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Speed</source>
<translation>速度</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_CHANGE_SPEED].param3.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Throttle</source>
<translation>スロットル</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_HOME].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Set launch location</source>
<translation>離陸場所を設定</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_HOME].description, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Changes the launch location either to the current location or a specified location.</source>
<translation>離陸場所を現在の場所または指定した場所に変更します。</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_HOME].param1.enumStrings, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Vehicle position,Specified position</source>
<translation>機体位置,指定された位置</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_PARAMETER].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Set Parameter</source>
<translation>パラメータ設定</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_RELAY].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Set relay</source>
<translation>中継 設定</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_RELAY].description, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Set relay to a condition.</source>
<translation>条件に中継個所を設定します。</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_RELAY].param1.label, .mavCmdInfo[MAV_CMD_DO_REPEAT_RELAY].param1.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Relay #</source>
<translation>中継 #</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_RELAY].param2.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Value</source>
<translation>値</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_REPEAT_RELAY].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Cycle relay</source>
<translation>中継サイクル</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_REPEAT_RELAY].description, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Cycle relay on/off for desired cycles/time.</source>
<translation>中継のON / OFFを任意のサイクル回数 / 時間で行います。</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_REPEAT_RELAY].param2.label, .mavCmdInfo[MAV_CMD_DO_REPEAT_SERVO].param3.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Cycles</source>
<translation>サイクル</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_REPEAT_RELAY].param3.label, .mavCmdInfo[MAV_CMD_DO_REPEAT_SERVO].param4.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Time</source>
<translation>時間</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_SERVO].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Set servo</source>
<translation>サーボ設定</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_SERVO].description, .mavCmdInfo[MAV_CMD_DO_REPEAT_SERVO].description, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Set servo to specified PWM value.</source>
<translation>指定されたPWM値にサーボを設定します。</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_SERVO].param1.label, .mavCmdInfo[MAV_CMD_DO_REPEAT_SERVO].param1.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Servo</source>
<translation>サーボ</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_SERVO].param2.label, .mavCmdInfo[MAV_CMD_DO_REPEAT_SERVO].param2.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>PWM</source>
<translation>PWM</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_REPEAT_SERVO].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Cycle servo</source>
<translation>サーボサイクル</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_ACTUATOR].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Set actuator</source>
<translation>アクチュエータ 設定</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_ACTUATOR].description, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Set actuator to specified output value (range [-1, 1]).</source>
<translation>アクチュエータを指定した出力値に設定します。(範囲 [-1, 1])</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_ACTUATOR].param1.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Actuator 1</source>
<translation>アクチュエータ 1</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_ACTUATOR].param2.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Actuator 2</source>
<translation>アクチュエータ 2</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_ACTUATOR].param3.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Actuator 3</source>
<translation>アクチュエータ 3</translation>