-
Notifications
You must be signed in to change notification settings - Fork 3.9k
/
Copy pathqgc_json_es_ES.ts
1874 lines (1874 loc) · 95.8 KB
/
qgc_json_es_ES.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="es-ES" sourcelanguage="en">
<context>
<name>MavCmdInfoCommon.json</name>
<message>
<extracomment>.mavCmdInfo[HomeRaw].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Home Position</source>
<translation>Posición de inicio</translation>
</message>
<message>
<extracomment>.mavCmdInfo[HomeRaw].description, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Planned home position for mission.</source>
<translation>Posición de inicio planificada para la misión.</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>Básico</translation>
</message>
<message>
<extracomment>.mavCmdInfo[HomeRaw].param5.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Latitude</source>
<translation>Latitud</translation>
</message>
<message>
<extracomment>.mavCmdInfo[HomeRaw].param6.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Longitude</source>
<translation>Longitud</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_WAYPOINT].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Waypoint</source>
<translation>Punto de ruta</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>Trasladarse a una posición 3D en el espacio</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>Mantener</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_WAYPOINT].param2.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Acceptance</source>
<translation>Aceptación</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_WAYPOINT].param3.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Pass Radius</source>
<translation>Radio de paso</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>Guiñada </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>Esperar</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>Trasladarse a una posición y esperar alrededor de una posición específica de manera indefinida</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>Radio</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_LOITER_TURNS].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Loiter (turns)</source>
<translation>Esperar (vueltas)</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>Trasladarse a una posición y esperar alrededor de una posición específica durante un número de vueltas especificado.</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_LOITER_TURNS].param1.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Turns</source>
<translation>Vueltas.</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>Cesar espera</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>Dirección del siguiente punto de ruta,Cualquier dirección. </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>Salir de espera desde</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>Centro, tangente</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_LOITER_TIME].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Loiter (time)</source>
<translation>Espera (tiempo)</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>Trasladarse a una posición y esperar alrededor de la posición específica por una cantidad de tiempo</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_LOITER_TIME].param1.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Loiter Time</source>
<translation>Tiempo de espera</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>Dirección del siguiente punto de ruta, dirección actual</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>Regreso a punto de despegue</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>Enviar el vehículo de regreso a la posición de lanzamiento</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_LAND].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Land</source>
<translation>Aterrizar</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>Aterrizar el vehículo en la ubicación especificada</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_LAND].param1.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Abort Alt</source>
<translation>Altitud de abortar</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_LAND].param2.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Precision Land</source>
<translation>Aterrizaje de precisión</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_LAND].param2.enumStrings, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Disabled,Opportunistic,Required</source>
<translation>Deshabilitado,Oportunista,Requerido</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_TAKEOFF].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Takeoff</source>
<translation>Despegue</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>Despegue desde tierra y viajar hacia la posición de despegue especificada</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_LAND_LOCAL].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Land local</source>
<translation>Aterrizaje local</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_TAKEOFF_LOCAL].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Takeoff local</source>
<translation>Despegue local</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_FOLLOW].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Nav follow</source>
<translation>Seguir navegación </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>Cambiar altitud</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>Continuar en la dirección actual y ascender/descender a la altitud especificada. Cuando se alcance la altitud continuar al siguiente comando</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>Control de Vuelo</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>Modo</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>Ascender,neutro,descender</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_LOITER_TO_ALT].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Loiter (altitude)</source>
<translation>Espera (altitud)</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>Esperar en una posición especificada hasta que se alcance una altitud</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_FOLLOW].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Follow Me</source>
<translation>Sígueme</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_FOLLOW_REPOSITION].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Vehicle reposition</source>
<translation>Reposición del vehículo.</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_PATHPLANNING].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Path planning</source>
<translation>Planificación de ruta </translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_PATHPLANNING].description, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Control autonomous path planning.</source>
<translation>Control de la planificación autónoma de la ruta</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>Avanzado</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_PATHPLANNING].param1.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Local planning</source>
<translation>Planificación local</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>Deshabilitar, Activar,Activar+restablecer</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_PATHPLANNING].param2.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Full planning</source>
<translation>Planificación completa</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>Deshabilitar, activar, activar+reset,Activar+restablecer ruta únicamente </translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_PATHPLANNING].param4.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Heading goal</source>
<translation>Rumbo objetivo </translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_SPLINE_WAYPOINT].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Spline waypoint</source>
<translation>Punto de ruta Spline</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>Viaja a una posición en espacio 3D usando la ruta Spline</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_ALTITUDE_WAIT].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Altitude wait</source>
<translation>Altitud de espera </translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_VTOL_TAKEOFF].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>VTOL takeoff</source>
<translation>Despegue 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>Mantener posición hasta la altitud especificada, hacer transición a ala fija y volar hasta la posición de despegue especificada.</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_VTOL_TAKEOFF].param2.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Transition Heading</source>
<translation>Rumbo de transición</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>Por defecto,siguiente punto de ruta,despegue,especificado,cualquiera </translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_VTOL_LAND].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>VTOL land</source>
<translation>Aterrizaje 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>Volar a la ubicación especificada a la altitud actual, hacer transición a multi-rotor y aterrizar</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_VTOL_LAND].param3.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Approach Alt</source>
<translation>Altitud de aproximación </translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_GUIDED_ENABLE].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Guided enable</source>
<translation>Guiado activado</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>Habilitado/deshabilitado modo guiado</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>Habilitar</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_GUIDED_ENABLE].param1.enumStrings, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>On,Off</source>
<translation>Encendido,Apagado</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_DELAY].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Delay until</source>
<translation>Retardo hasta</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 type="unfinished">Delay until 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>Hora (utc)</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_DELAY].param3.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Min (utc)</source>
<translation>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>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>Retraso</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>Retrasar la misión por una cantidad de segundos</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_CONDITION_CHANGE_ALT].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Wait for altitude</source>
<translation>Esperar a la altitud</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>Retrasar la misión hasta que se alcance la altitud especificada.</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>Condicionales</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>Tasa</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_CONDITION_DISTANCE].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Wait for distance</source>
<translation>Esperar distancia</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>Retrasar la misión hasta alcanzar la distancia especificada del siguiente punto de ruta
</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>Distancia</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_CONDITION_YAW].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Wait for Yaw</source>
<translation>Esperar a guiñar</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>Retrasar la misión hasta que se alcance el rumbo especificado</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_CONDITION_YAW].param1.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Heading</source>
<translation>Rumbo</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>Dirección</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 type="unfinished">Clockwise,Shortest,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>Compensación</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>Relativo,Absoluto</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_MODE].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Set mode</source>
<translation>Establecer modo</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_MODE].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Set flight mode</source>
<translation>Establecer modo de vuelo</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_MODE].description, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Set flight mode.</source>
<translation>Establecer modo de vuelo.</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_MODE].param2.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Custom Mode</source>
<translation>Modo personalizado</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_MODE].param3.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Sub Mode</source>
<translation>Sub modo</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_JUMP].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Jump to item</source>
<translation>Saltar al objeto</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>La misión continuará en el elemento especificado.</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_JUMP].param1.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Item #</source>
<translation>Objeto #</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_JUMP].param2.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Repeat</source>
<translation>Repetir</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_CHANGE_SPEED].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Change speed</source>
<translation>Cambiar velocidad</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>Cambia los puntos de velocidad y/o acelerador</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_CHANGE_SPEED].param1.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Type</source>
<translation>Tipo</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 type="unfinished">Airspeed,Ground Speed,Ascend Speed,Descend Speed</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_CHANGE_SPEED].param2.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Speed</source>
<translation>Velocidad</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_CHANGE_SPEED].param3.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Throttle</source>
<translation>Acelerador</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_HOME].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Set launch location</source>
<translation>Establecer ubicación de lanzamiento</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>Cambia la ubicación de lanzamiento ya sea a la ubicación actual o a una ubicación especificada.</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>Posición del vehículo, posición especificada</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_PARAMETER].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Set Parameter</source>
<translation>Establecer parámetro</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_RELAY].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Set relay</source>
<translation>Establecer relevo</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>Establecer el relevo a una condición </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>Relevo #</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_RELAY].param2.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Value</source>
<translation>Valor</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_REPEAT_RELAY].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Cycle relay</source>
<translation>Ciclo de relevo </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>Ciclos</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>Tiempo</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_SERVO].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Set servo</source>
<translation>Fijar 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>Fijar servo en un valor específico de 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>Servo</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>Ciclo de servo</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_ACTUATOR].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Set actuator</source>
<translation type="unfinished">Set actuator</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 type="unfinished">Set actuator to specified output value (range [-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 type="unfinished">Actuator 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 type="unfinished">Actuator 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 type="unfinished">Actuator 3</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_ACTUATOR].param4.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Actuator 4</source>
<translation type="unfinished">Actuator 4</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_FLIGHTTERMINATION].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Flight termination</source>
<translation>Finalizar vuelo</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_LAND_START].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Land start</source>
<translation>Inicio de aterrizaje</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_LAND_START].description, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Marker to indicate start of landing sequence.</source>
<translation>Marcador para indicar el inicio de secuencia de aterrizaje</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_RALLY_LAND].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Rally land</source>
<translation>Aterrizaje inmediato</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_GO_AROUND].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Go around</source>
<translation>Da la vuelta</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_REPOSITION].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Reposition</source>
<translation>Reposición </translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_PAUSE_CONTINUE].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Pause/Continue</source>
<translation>Pausar/continuar</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_REVERSE].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Set moving direction</source>
<translation>Establecer dirección de movimiento </translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_REVERSE].description, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Set moving direction to forward or reverse.</source>
<translation>Establecer dirección de movimiento hacia adelante o atras</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_REVERSE].param1.enumStrings, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Forward,Reverse</source>
<translation>Hacia delante,Hacia atas</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_ROI_LOCATION].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Region of interest (ROI)</source>
<translation>Región de interés (RDI)</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_ROI_LOCATION].description, .mavCmdInfo[MAV_CMD_DO_SET_ROI].description, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Sets the region of interest for cameras.</source>
<translation>Establece la región de interés para las cámaras</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_ROI_LOCATION].category, .mavCmdInfo[MAV_CMD_DO_SET_ROI_WPNEXT_OFFSET].category, .mavCmdInfo[MAV_CMD_DO_SET_ROI_NONE].category, .mavCmdInfo[MAV_CMD_DO_SET_ROI].category, .mavCmdInfo[MAV_CMD_DO_DIGICAM_CONFIGURE].category, .mavCmdInfo[MAV_CMD_DO_DIGICAM_CONTROL].category, .mavCmdInfo[MAV_CMD_DO_SET_CAM_TRIGG_DIST].category, .mavCmdInfo[MAV_CMD_SET_CAMERA_MODE].category, .mavCmdInfo[MAV_CMD_IMAGE_START_CAPTURE].category, .mavCmdInfo[MAV_CMD_IMAGE_STOP_CAPTURE].category, .mavCmdInfo[MAV_CMD_VIDEO_START_CAPTURE].category, .mavCmdInfo[MAV_CMD_VIDEO_STOP_CAPTURE].category, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Camera</source>
<translation>Cámara</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_ROI_WPNEXT_OFFSET].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>ROI to next waypoint</source>
<translation>RDI para el siguiente punto de ruta</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_ROI_WPNEXT_OFFSET].description, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Sets the region of interest to point towards the next waypoint with optional offsets.</source>
<translation>Establece la region de interés para apuntar hacia el siguiente punto de ruta con compensaciones opcionales</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_ROI_WPNEXT_OFFSET].param5.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Pitch offset</source>
<translation type="unfinished">Pitch offset</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_ROI_WPNEXT_OFFSET].param6.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Roll offset</source>
<translation type="unfinished">Roll offset</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_ROI_WPNEXT_OFFSET].param7.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Yaw offset</source>
<translation type="unfinished">Yaw offset</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_ROI_NONE].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Cancel ROI</source>
<translation type="unfinished">Cancel ROI</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_ROI_NONE].description, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Cancels the region of interest.</source>
<translation type="unfinished">Cancels the region of interest.</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_CONTROL_VIDEO].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Control video</source>
<translation type="unfinished">Control video</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_ROI].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Region of interest</source>
<translation type="unfinished">Region of interest</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_ROI].param1.enumStrings, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>None,Next waypoint,Mission item,Location,ROI item</source>
<translation type="unfinished">None,Next waypoint,Mission item,Location,ROI item</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_ROI].param2.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Mission Index</source>
<translation type="unfinished">Mission Index</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_ROI].param3.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>ROI Index</source>
<translation type="unfinished">ROI Index</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_DIGICAM_CONFIGURE].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Camera config</source>
<translation type="unfinished">Camera config</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_DIGICAM_CONFIGURE].description, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Configure onboard camera controller.</source>
<translation type="unfinished">Configure onboard camera controller.</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_DIGICAM_CONFIGURE].param2.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Shutter spd</source>
<translation type="unfinished">Shutter spd</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_DIGICAM_CONFIGURE].param3.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Aperture</source>
<translation type="unfinished">Aperture</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_DIGICAM_CONFIGURE].param4.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>ISO</source>
<translation type="unfinished">ISO</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_DIGICAM_CONFIGURE].param5.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Exposure</source>
<translation type="unfinished">Exposure</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_DIGICAM_CONFIGURE].param6.label, .mavCmdInfo[MAV_CMD_DO_DIGICAM_CONTROL].param5.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Command</source>
<translation type="unfinished">Command</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_DIGICAM_CONFIGURE].param7.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Cut off</source>
<translation type="unfinished">Cut off</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_DIGICAM_CONTROL].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Camera control</source>
<translation type="unfinished">Camera control</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_DIGICAM_CONTROL].description, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Control onboard camera.</source>
<translation type="unfinished">Control onboard camera.</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_DIGICAM_CONTROL].param1.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Session</source>
<translation type="unfinished">Session</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_DIGICAM_CONTROL].param2.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Zoom</source>
<translation type="unfinished">Zoom</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_DIGICAM_CONTROL].param3.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Step</source>
<translation type="unfinished">Step</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_DIGICAM_CONTROL].param4.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Focus lock</source>