forked from mavlink/qgroundcontrol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqgc_json_bg_BG.ts
1831 lines (1831 loc) · 96.8 KB
/
qgc_json_bg_BG.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="bg" sourcelanguage="en">
<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 type="unfinished">ArduPilot,PX4 Pro,Mavlink Generic</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 type="unfinished">Fixed Wing,Multi-Rotor,VTOL,Rover,Sub,Mavlink Generic</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 type="unfinished">Disabled,Error,Warning,FixMe,Info,Debug,Log,Trace</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[indoorPalette].enumStrings, </extracomment>
<location filename="../src/Settings/App.SettingsGroup.json"/>
<source>Indoor,Outdoor</source>
<translation type="unfinished">Indoor,Outdoor</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 type="unfinished">Never,Always,When in Follow Me Flight Mode</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[qLocaleLanguage].enumStrings, </extracomment>
<location filename="../src/Settings/App.SettingsGroup.json"/>
<source>System,Azerbaijani (Azerbaijani),български (Bulgarian),中文 (Chinese),Nederlands (Dutch),English,Suomi (Finnish),Français (French),Deutsche (German),Ελληνικά (Greek), עברית (Hebrew),Italiano (Italian),日本人 (Japanese),한국어 (Korean),Norsk (Norwegian),Polskie (Polish),Português (Portuguese),Pусский (Russian),Español (Spanish),Svenska (Swedish),Türk (Turkish)</source>
<translation type="unfinished">System,Azerbaijani (Azerbaijani),български (Bulgarian),中文 (Chinese),Nederlands (Dutch),English,Suomi (Finnish),Français (French),Deutsche (German),Ελληνικά (Greek), עברית (Hebrew),Italiano (Italian),日本人 (Japanese),한국어 (Korean),Norsk (Norwegian),Polskie (Polish),Português (Portuguese),Pусский (Russian),Español (Spanish),Svenska (Swedish),Türk (Turkish)</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 type="unfinished">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 type="unfinished">Multi-Rotor,Helicopter,Plane,Rover,Sub</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 type="unfinished">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</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 type="unfinished">Hide,Show</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 type="unfinished">Fit Width,Fit Height,Stretch</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[recordingFormat].enumStrings, </extracomment>
<location filename="../src/Settings/Video.SettingsGroup.json"/>
<source>mkv,mov,mp4</source>
<translation type="unfinished">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 type="unfinished">Default,Force software decoder,Force NVIDIA decoder,Force VA-API decoder,Force DirectX3D 11 decoder,Force VideoToolbox decoder</translation>
</message>
</context>
<context>
<name>BatteryFact.json</name>
<message>
<extracomment>.QGC.MetaData.Facts[batteryFunction].enumStrings, </extracomment>
<location filename="../src/Vehicle/BatteryFact.json"/>
<source>n/a,All Flight Systems,Propulsion,Avionics,Payload</source>
<translation type="unfinished">n/a,All Flight Systems,Propulsion,Avionics,Payload</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[batteryType].enumStrings, </extracomment>
<location filename="../src/Vehicle/BatteryFact.json"/>
<source>n/a,LIPO,LIFE,LION,NIMH</source>
<translation type="unfinished">n/a,LIPO,LIFE,LION,NIMH</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[chargeState].enumStrings, </extracomment>
<location filename="../src/Vehicle/BatteryFact.json"/>
<source>n/a,Ok,Low,Critical,Emergency,Failed,Unhealthy,Charging</source>
<translation type="unfinished">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/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 type="unfinished">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/SubmarineFact.json"/>
<source>Disabled,Enabled</source>
<translation type="unfinished">Disabled,Enabled</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[rollPitchToggle].enumStrings, </extracomment>
<location filename="../src/Vehicle/SubmarineFact.json"/>
<source>Disabled,Enabled,Unavailable</source>
<translation type="unfinished">Disabled,Enabled,Unavailable</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 type="unfinished">North,South</translation>
</message>
</context>
<context>
<name>UT-MavCmdInfoFixedWing.json</name>
<message>
<extracomment>.mavCmdInfo[Override testing].description, .mavCmdInfo[Override testing].category, </extracomment>
<location filename="../src/MissionManager/UnitTest/UT-MavCmdInfoFixedWing.json"/>
<source>override fw 4</source>
<translation type="unfinished">override fw 4</translation>
</message>
<message>
<extracomment>.mavCmdInfo[Override testing].param1.label, </extracomment>
<location filename="../src/MissionManager/UnitTest/UT-MavCmdInfoFixedWing.json"/>
<source>override fw 4 1</source>
<translation type="unfinished">override fw 4 1</translation>
</message>
<message>
<extracomment>.mavCmdInfo[Override testing].param1.enumStrings, .mavCmdInfo[Override testing].param3.enumStrings, .mavCmdInfo[Override testing].param5.enumStrings, .mavCmdInfo[Override testing].param7.enumStrings, </extracomment>
<location filename="../src/MissionManager/UnitTest/UT-MavCmdInfoFixedWing.json"/>
<source>1,2</source>
<translation type="unfinished">1,2</translation>
</message>
<message>
<extracomment>.mavCmdInfo[Override testing].param3.label, </extracomment>
<location filename="../src/MissionManager/UnitTest/UT-MavCmdInfoFixedWing.json"/>
<source>override fw 4 3</source>
<translation type="unfinished">override fw 4 3</translation>
</message>
<message>
<extracomment>.mavCmdInfo[Override testing].param5.label, </extracomment>
<location filename="../src/MissionManager/UnitTest/UT-MavCmdInfoFixedWing.json"/>
<source>override fw 4 5</source>
<translation type="unfinished">override fw 4 5</translation>
</message>
<message>
<extracomment>.mavCmdInfo[Override testing].param7.label, </extracomment>
<location filename="../src/MissionManager/UnitTest/UT-MavCmdInfoFixedWing.json"/>
<source>override fw 4 7</source>
<translation type="unfinished">override fw 4 7</translation>
</message>
</context>
<context>
<name>UT-MavCmdInfoCommon.json</name>
<message>
<extracomment>.mavCmdInfo[UNITTEST_2].param1.label, .mavCmdInfo[UNITTEST_3].param1.label, .mavCmdInfo[UNITTEST_4].param1.label, .mavCmdInfo[UNITTEST_5].param1.label, </extracomment>
<location filename="../src/MissionManager/UnitTest/UT-MavCmdInfoCommon.json"/>
<source>param1</source>
<translation type="unfinished">param1</translation>
</message>
<message>
<extracomment>.mavCmdInfo[UNITTEST_3].friendlyName, </extracomment>
<location filename="../src/MissionManager/UnitTest/UT-MavCmdInfoCommon.json"/>
<source>Unit Test 3</source>
<translation type="unfinished">Unit Test 3</translation>
</message>
<message>
<extracomment>.mavCmdInfo[UNITTEST_3].description, .mavCmdInfo[UNITTEST_4].description, .mavCmdInfo[UNITTEST_5].description, </extracomment>
<location filename="../src/MissionManager/UnitTest/UT-MavCmdInfoCommon.json"/>
<source>description</source>
<translation type="unfinished">description</translation>
</message>
<message>
<extracomment>.mavCmdInfo[UNITTEST_3].category, .mavCmdInfo[UNITTEST_4].category, .mavCmdInfo[UNITTEST_5].category, </extracomment>
<location filename="../src/MissionManager/UnitTest/UT-MavCmdInfoCommon.json"/>
<source>category</source>
<translation type="unfinished">category</translation>
</message>
<message>
<extracomment>.mavCmdInfo[UNITTEST_3].param1.enumStrings, .mavCmdInfo[UNITTEST_3].param2.enumStrings, .mavCmdInfo[UNITTEST_3].param3.enumStrings, .mavCmdInfo[UNITTEST_3].param4.enumStrings, .mavCmdInfo[UNITTEST_3].param5.enumStrings, .mavCmdInfo[UNITTEST_3].param6.enumStrings, .mavCmdInfo[UNITTEST_3].param7.enumStrings, .mavCmdInfo[UNITTEST_4].param1.enumStrings, .mavCmdInfo[UNITTEST_4].param2.enumStrings, .mavCmdInfo[UNITTEST_4].param3.enumStrings, .mavCmdInfo[UNITTEST_4].param4.enumStrings, .mavCmdInfo[UNITTEST_4].param5.enumStrings, .mavCmdInfo[UNITTEST_4].param6.enumStrings, .mavCmdInfo[UNITTEST_4].param7.enumStrings, .mavCmdInfo[UNITTEST_5].param1.enumStrings, .mavCmdInfo[UNITTEST_5].param2.enumStrings, .mavCmdInfo[UNITTEST_5].param3.enumStrings, .mavCmdInfo[UNITTEST_5].param4.enumStrings, .mavCmdInfo[UNITTEST_5].param5.enumStrings, .mavCmdInfo[UNITTEST_5].param6.enumStrings, .mavCmdInfo[UNITTEST_5].param7.enumStrings, </extracomment>
<location filename="../src/MissionManager/UnitTest/UT-MavCmdInfoCommon.json"/>
<source>1,2</source>
<translation type="unfinished">1,2</translation>
</message>
<message>
<extracomment>.mavCmdInfo[UNITTEST_3].param2.label, .mavCmdInfo[UNITTEST_4].param2.label, .mavCmdInfo[UNITTEST_5].param2.label, </extracomment>
<location filename="../src/MissionManager/UnitTest/UT-MavCmdInfoCommon.json"/>
<source>param2</source>
<translation type="unfinished">param2</translation>
</message>
<message>
<extracomment>.mavCmdInfo[UNITTEST_3].param3.label, .mavCmdInfo[UNITTEST_4].param3.label, .mavCmdInfo[UNITTEST_5].param3.label, </extracomment>
<location filename="../src/MissionManager/UnitTest/UT-MavCmdInfoCommon.json"/>
<source>param3</source>
<translation type="unfinished">param3</translation>
</message>
<message>
<extracomment>.mavCmdInfo[UNITTEST_3].param4.label, .mavCmdInfo[UNITTEST_4].param4.label, .mavCmdInfo[UNITTEST_5].param4.label, </extracomment>
<location filename="../src/MissionManager/UnitTest/UT-MavCmdInfoCommon.json"/>
<source>param4</source>
<translation type="unfinished">param4</translation>
</message>
<message>
<extracomment>.mavCmdInfo[UNITTEST_3].param5.label, .mavCmdInfo[UNITTEST_4].param5.label, .mavCmdInfo[UNITTEST_5].param5.label, </extracomment>
<location filename="../src/MissionManager/UnitTest/UT-MavCmdInfoCommon.json"/>
<source>param5</source>
<translation type="unfinished">param5</translation>
</message>
<message>
<extracomment>.mavCmdInfo[UNITTEST_3].param6.label, .mavCmdInfo[UNITTEST_4].param6.label, .mavCmdInfo[UNITTEST_5].param6.label, </extracomment>
<location filename="../src/MissionManager/UnitTest/UT-MavCmdInfoCommon.json"/>
<source>param6</source>
<translation type="unfinished">param6</translation>
</message>
<message>
<extracomment>.mavCmdInfo[UNITTEST_3].param7.label, .mavCmdInfo[UNITTEST_4].param7.label, .mavCmdInfo[UNITTEST_5].param7.label, </extracomment>
<location filename="../src/MissionManager/UnitTest/UT-MavCmdInfoCommon.json"/>
<source>param7</source>
<translation type="unfinished">param7</translation>
</message>
<message>
<extracomment>.mavCmdInfo[UNITTEST_4].friendlyName, </extracomment>
<location filename="../src/MissionManager/UnitTest/UT-MavCmdInfoCommon.json"/>
<source>Unit Test 4</source>
<translation type="unfinished">Unit Test 4</translation>
</message>
<message>
<extracomment>.mavCmdInfo[UNITTEST_5].friendlyName, </extracomment>
<location filename="../src/MissionManager/UnitTest/UT-MavCmdInfoCommon.json"/>
<source>Unit Test 5</source>
<translation type="unfinished">Unit Test 5</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 type="unfinished">Yaw</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 type="unfinished">Pitch</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 type="unfinished">Home Position</translation>
</message>
<message>
<extracomment>.mavCmdInfo[HomeRaw].description, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Planned home position for mission.</source>
<translation type="unfinished">Planned home position for mission.</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 type="unfinished">Basic</translation>
</message>
<message>
<extracomment>.mavCmdInfo[HomeRaw].param5.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Latitude</source>
<translation type="unfinished">Latitude</translation>
</message>
<message>
<extracomment>.mavCmdInfo[HomeRaw].param6.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Longitude</source>
<translation type="unfinished">Longitude</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_WAYPOINT].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Waypoint</source>
<translation type="unfinished">Waypoint</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 type="unfinished">Travel to a position in 3D space.</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 type="unfinished">Hold</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_WAYPOINT].param2.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Acceptance</source>
<translation type="unfinished">Acceptance</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_WAYPOINT].param3.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Pass Radius</source>
<translation type="unfinished">Pass Radius</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, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Yaw</source>
<translation type="unfinished">Yaw</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 type="unfinished">Loiter</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 type="unfinished">Travel to a position and Loiter around the specified position indefinitely.</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 type="unfinished">Radius</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_LOITER_TURNS].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Loiter (turns)</source>
<translation type="unfinished">Loiter (turns)</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 type="unfinished">Travel to a position and Loiter around the specified position for a number of turns.</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_LOITER_TURNS].param1.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Turns</source>
<translation type="unfinished">Turns</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 type="unfinished">Leave Loiter</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 type="unfinished">Direction of next waypoint,Any direction</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 type="unfinished">Exit loiter from</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 type="unfinished">Center,Tangent</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_LOITER_TIME].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Loiter (time)</source>
<translation type="unfinished">Loiter (time)</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 type="unfinished">Travel to a position and Loiter around the specified position for an amount of time.</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_LOITER_TIME].param1.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Loiter Time</source>
<translation type="unfinished">Loiter Time</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 type="unfinished">Direction of next waypoint,Current direction</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 type="unfinished">Return To Launch</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 type="unfinished">Send the vehicle back to the launch position.</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_LAND].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Land</source>
<translation type="unfinished">Land</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 type="unfinished">Land vehicle at the specified location.</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_LAND].param1.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Abort Alt</source>
<translation type="unfinished">Abort Alt</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_LAND].param2.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Precision Land</source>
<translation type="unfinished">Precision Land</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_LAND].param2.enumStrings, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Disabled,Opportunistic,Required</source>
<translation type="unfinished">Disabled,Opportunistic,Required</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_TAKEOFF].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Takeoff</source>
<translation type="unfinished">Takeoff</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 type="unfinished">Launch from the ground and travel towards the specified takeoff position.</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_LAND_LOCAL].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Land local</source>
<translation type="unfinished">Land local</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_TAKEOFF_LOCAL].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Takeoff local</source>
<translation type="unfinished">Takeoff local</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_FOLLOW].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Nav follow</source>
<translation type="unfinished">Nav follow</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 type="unfinished">Change Altitude</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 type="unfinished">Continue on the current course and climb/descend to specified altitude. When the altitude is reached continue to the next command.</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 type="unfinished">Flight control</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 type="unfinished">Mode</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 type="unfinished">Climb,Neutral,Descend</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_LOITER_TO_ALT].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Loiter (altitude)</source>
<translation type="unfinished">Loiter (altitude)</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 type="unfinished">Loiter at specified position until altitude reached.</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_FOLLOW].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Follow Me</source>
<translation type="unfinished">Follow Me</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_FOLLOW_REPOSITION].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Vehicle reposition</source>
<translation type="unfinished">Vehicle reposition</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_PATHPLANNING].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Path planning</source>
<translation type="unfinished">Path planning</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_PATHPLANNING].description, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Control autonomous path planning.</source>
<translation type="unfinished">Control autonomous path planning.</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_GRIPPER].category, .mavCmdInfo[MAV_CMD_DO_AUTOTUNE_ENABLE].category, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Advanced</source>
<translation type="unfinished">Advanced</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_PATHPLANNING].param1.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Local planning</source>
<translation type="unfinished">Local planning</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 type="unfinished">Disable,Enable,Enable+reset</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_PATHPLANNING].param2.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Full planning</source>
<translation type="unfinished">Full planning</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 type="unfinished">Disable,Enable,Enable+reset,Enable+reset route only</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_PATHPLANNING].param4.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Heading goal</source>
<translation type="unfinished">Heading goal</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_SPLINE_WAYPOINT].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Spline waypoint</source>
<translation type="unfinished">Spline waypoint</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 type="unfinished">Travel to a position in 3D space using spline path.</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_ALTITUDE_WAIT].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Altitude wait</source>
<translation type="unfinished">Altitude wait</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_VTOL_TAKEOFF].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>VTOL takeoff</source>
<translation type="unfinished">VTOL takeoff</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 type="unfinished">Hover straight up to specified altitude, transition to fixed-wing and fly to the specified takeoff location.</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_VTOL_TAKEOFF].param2.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Transition Heading</source>
<translation type="unfinished">Transition Heading</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 type="unfinished">Default,Next waypoint,Takeoff,Specified,Any</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_VTOL_LAND].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>VTOL land</source>
<translation type="unfinished">VTOL land</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 type="unfinished">Fly to specified location at current altitude, transition to multi-rotor and land.</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_VTOL_LAND].param3.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Approach Alt</source>
<translation type="unfinished">Approach Alt</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_GUIDED_ENABLE].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Guided enable</source>
<translation type="unfinished">Guided enable</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 type="unfinished">Enable/Disabled guided mode.</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 type="unfinished">Enable</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_GUIDED_ENABLE].param1.enumStrings, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>On,Off</source>
<translation type="unfinished">On,Off</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_DELAY].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Delay until</source>
<translation type="unfinished">Delay until</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_DELAY].description, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Delay unti the specified time is reached.</source>
<translation type="unfinished">Delay unti the specified time is reached.</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_DELAY].param2.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Hour (utc)</source>
<translation type="unfinished">Hour (utc)</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_DELAY].param3.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Min (utc)</source>
<translation type="unfinished">Min (utc)</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_DELAY].param4.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Sec (utc)</source>
<translation type="unfinished">Sec (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 type="unfinished">Delay</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 type="unfinished">Delay the mission for the number of seconds.</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_CONDITION_CHANGE_ALT].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Wait for altitude</source>
<translation type="unfinished">Wait for altitude</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 type="unfinished">Delay the mission until the specified altitide is reached.</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 type="unfinished">Conditionals</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 type="unfinished">Rate</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_CONDITION_DISTANCE].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Wait for distance</source>
<translation type="unfinished">Wait for distance</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 type="unfinished">Delay the mission until within the specified distance of the next waypoint.</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 type="unfinished">Distance</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_CONDITION_YAW].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Wait for Yaw</source>
<translation type="unfinished">Wait for Yaw</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 type="unfinished">Delay the mission until the specified heading is reached.</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_CONDITION_YAW].param1.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Heading</source>
<translation type="unfinished">Heading</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 type="unfinished">Direction</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_CONDITION_YAW].param3.enumStrings, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Clockwise,Counter-Clockwise</source>
<translation type="unfinished">Clockwise,Counter-Clockwise</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 type="unfinished">Offset</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 type="unfinished">Relative,Absolute</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_MODE].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Set mode</source>
<translation type="unfinished">Set mode</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_MODE].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Set flight mode</source>
<translation type="unfinished">Set flight mode</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_MODE].description, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Set flight mode.</source>
<translation type="unfinished">Set flight mode.</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_MODE].param2.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Custom Mode</source>
<translation type="unfinished">Custom Mode</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_MODE].param3.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Sub Mode</source>
<translation type="unfinished">Sub Mode</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_JUMP].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Jump to item</source>
<translation type="unfinished">Jump to item</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 type="unfinished">Mission will continue at the specified item.</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_JUMP].param1.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Item #</source>
<translation type="unfinished">Item #</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_JUMP].param2.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Repeat</source>
<translation type="unfinished">Repeat</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_CHANGE_SPEED].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Change speed</source>
<translation type="unfinished">Change speed</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 type="unfinished">Change speed and/or throttle set points.</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_CHANGE_SPEED].param1.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Type</source>
<translation type="unfinished">Type</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_CHANGE_SPEED].param1.enumStrings, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Airspeed,Ground Speed</source>
<translation type="unfinished">Airspeed,Ground Speed</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_CHANGE_SPEED].param2.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Speed</source>
<translation type="unfinished">Speed</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_CHANGE_SPEED].param3.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Throttle</source>
<translation type="unfinished">Throttle</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_HOME].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Set launch location</source>
<translation type="unfinished">Set launch location</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 type="unfinished">Changes the launch location either to the current location or a specified location.</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 type="unfinished">Vehicle position,Specified position</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_PARAMETER].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Set Parameter</source>
<translation type="unfinished">Set Parameter</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_RELAY].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Set relay</source>
<translation type="unfinished">Set relay</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 type="unfinished">Set relay to a condition.</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 type="unfinished">Relay #</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_RELAY].param2.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Value</source>
<translation type="unfinished">Value</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_REPEAT_RELAY].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Cycle relay</source>
<translation type="unfinished">Cycle relay</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 type="unfinished">Cycle relay on/off for desired cycles/time.</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 type="unfinished">Cycles</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 type="unfinished">Time</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_SERVO].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Set servo</source>
<translation type="unfinished">Set servo</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 type="unfinished">Set servo to specified PWM value.</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 type="unfinished">Servo</translation>