forked from mavlink/qgroundcontrol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqgc_json_az_AZ.ts
1879 lines (1879 loc) · 94.8 KB
/
qgc_json_az_AZ.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="az" sourcelanguage="en">
<context>
<name>FlyView.SettingsGroup.json</name>
<message>
<extracomment>.QGC.MetaData.Facts[instrumentQmlFile].enumStrings, </extracomment>
<location filename="../src/Settings/FlyView.SettingsGroup.json"/>
<source>Integrated Compass/Attitude,Horizontal Compass/Atttitude,Large Vertical</source>
<translation type="unfinished">Integrated Compass/Attitude,Horizontal Compass/Atttitude,Large Vertical</translation>
</message>
</context>
<context>
<name>App.SettingsGroup.json</name>
<message>
<extracomment>.QGC.MetaData.Facts[offlineEditingFirmwareClass].enumStrings, </extracomment>
<location filename="../src/Settings/App.SettingsGroup.json"/>
<source>ArduPilot,PX4 Pro,Mavlink Generic</source>
<translation>ArduPilot,PX4 Pro,Mavlink 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>İçəri,Bayır</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>Heç vaxt, Həmişə, Uçuş rejimi məni izlədikdə</translation>
</message>
</context>
<context>
<name>FirmwareUpgrade.SettingsGroup.json</name>
<message>
<extracomment>.QGC.MetaData.Facts[apmChibiOS].enumStrings, </extracomment>
<location filename="../src/Settings/FirmwareUpgrade.SettingsGroup.json"/>
<source>ChibiOS,NuttX</source>
<translation>ChibiOS,NuttX</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[apmVehicleType].enumStrings, </extracomment>
<location filename="../src/Settings/FirmwareUpgrade.SettingsGroup.json"/>
<source>Multi-Rotor,Helicopter,Plane,Rover,Sub</source>
<translation>Çox Rotor, Vertolyot, Təyyarə, 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>Aparat ilə idarə olunur,0 hz,1 hz,2 hz,3 hz,4 hz,5 hz,6 hz,7 hz,8 hz,9 hz,10 hz,50 hz,100 hz</translation>
</message>
</context>
<context>
<name>BatteryIndicator.SettingsGroup.json</name>
<message>
<extracomment>.QGC.MetaData.Facts[display].enumStrings, </extracomment>
<location filename="../src/Settings/BatteryIndicator.SettingsGroup.json"/>
<source>Percentage,Voltage,Percentage and Voltage</source>
<translation type="unfinished">Percentage,Voltage,Percentage and Voltage</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>Gizlət, Göstər</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>Uyğunluğu doldur, genişliyi doldur,Dart</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[recordingFormat].enumStrings, </extracomment>
<location filename="../src/Settings/Video.SettingsGroup.json"/>
<source>mkv,mov,mp4</source>
<translation>mkv,mov,mp4</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[forceVideoDecoder].enumStrings, </extracomment>
<location filename="../src/Settings/Video.SettingsGroup.json"/>
<source>Default,Force software decoder,Force NVIDIA decoder,Force VA-API decoder,Force DirectX3D 11 decoder,Force VideoToolbox decoder</source>
<translation 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>RemoteID.SettingsGroup.json</name>
<message>
<extracomment>.QGC.MetaData.Facts[operatorIDType].enumStrings, </extracomment>
<location filename="../src/Settings/RemoteID.SettingsGroup.json"/>
<source>CAA</source>
<translation type="unfinished">CAA</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[selfIDType].enumStrings, </extracomment>
<location filename="../src/Settings/RemoteID.SettingsGroup.json"/>
<source>Free Text,Emergency,Extended Status</source>
<translation type="unfinished">Free Text,Emergency,Extended Status</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[basicIDType].enumStrings, </extracomment>
<location filename="../src/Settings/RemoteID.SettingsGroup.json"/>
<source>None,SerialNumber(ANSI/CTA-2063),CAA,UTM(RFC4122),Specific</source>
<translation type="unfinished">None,SerialNumber(ANSI/CTA-2063),CAA,UTM(RFC4122),Specific</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[basicIDUaType].enumStrings, </extracomment>
<location filename="../src/Settings/RemoteID.SettingsGroup.json"/>
<source>Undefined,Airplane/FixedWing,Helicopter/Multirrotor,Gyroplane,VTOL,Ornithopter,Glider,Kite,Free Ballon,Captive Ballon,Airship,Parachute,Rocket,Tethered powered aircraft,Ground Obstacle,Other</source>
<translation type="unfinished">Undefined,Airplane/FixedWing,Helicopter/Multirrotor,Gyroplane,VTOL,Ornithopter,Glider,Kite,Free Ballon,Captive Ballon,Airship,Parachute,Rocket,Tethered powered aircraft,Ground Obstacle,Other</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[region].enumStrings, </extracomment>
<location filename="../src/Settings/RemoteID.SettingsGroup.json"/>
<source>FAA,EU</source>
<translation type="unfinished">FAA,EU</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[locationType].enumStrings, </extracomment>
<location filename="../src/Settings/RemoteID.SettingsGroup.json"/>
<source>Takeoff(Not Supported),Live GNNS, Fixed (not for FAA)</source>
<translation type="unfinished">Takeoff(Not Supported),Live GNNS, Fixed (not for FAA)</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[classificationType].enumStrings, </extracomment>
<location filename="../src/Settings/RemoteID.SettingsGroup.json"/>
<source>Undefined,EU</source>
<translation type="unfinished">Undefined,EU</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[categoryEU].enumStrings, </extracomment>
<location filename="../src/Settings/RemoteID.SettingsGroup.json"/>
<source>Undeclared,Open,Specific,Certified</source>
<translation type="unfinished">Undeclared,Open,Specific,Certified</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[classEU].enumStrings, </extracomment>
<location filename="../src/Settings/RemoteID.SettingsGroup.json"/>
<source>Undeclared,Class 0,Class 1,Class 2,Class 3,Class 4,Class 5,Class 6</source>
<translation type="unfinished">Undeclared,Class 0,Class 1,Class 2,Class 3,Class 4,Class 5,Class 6</translation>
</message>
</context>
<context>
<name>GimbalController.SettingsGroup.json</name>
<message>
<extracomment>.QGC.MetaData.Facts[ControlType].enumStrings, </extracomment>
<location filename="../src/Settings/GimbalController.SettingsGroup.json"/>
<source>Click to point, click and drag</source>
<translation type="unfinished">Click to point, click and drag</translation>
</message>
</context>
<context>
<name>BatteryFact.json</name>
<message>
<extracomment>.QGC.MetaData.Facts[batteryFunction].enumStrings, </extracomment>
<location filename="../src/Vehicle/FactGroups/BatteryFact.json"/>
<source>n/a,All Flight Systems,Propulsion,Avionics,Payload</source>
<translation type="unfinished">n/a,All Flight Systems,Propulsion,Avionics,Payload</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[batteryType].enumStrings, </extracomment>
<location filename="../src/Vehicle/FactGroups/BatteryFact.json"/>
<source>n/a,LIPO,LIFE,LION,NIMH</source>
<translation type="unfinished">n/a,LIPO,LIFE,LION,NIMH</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[chargeState].enumStrings, </extracomment>
<location filename="../src/Vehicle/FactGroups/BatteryFact.json"/>
<source>n/a,Ok,Low,Critical,Emergency,Failed,Unhealthy,Charging</source>
<translation 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/FactGroups/GPSFact.json"/>
<source>None,None,2D Lock,3D Lock,3D DGPS Lock,3D RTK GPS Lock (float),3D RTK GPS Lock (fixed),Static (fixed)</source>
<translation>Yox,Yox,2D Kilid,3D Kilid,3D DGPS Kilidi,3D RTK GPS Kilidi (dəyişkən),3D RTK GPS Kilidi (sabit),Statik (sabit)</translation>
</message>
</context>
<context>
<name>SubmarineFact.json</name>
<message>
<extracomment>.QGC.MetaData.Facts[inputHold].enumStrings, </extracomment>
<location filename="../src/Vehicle/FactGroups/SubmarineFact.json"/>
<source>Disabled,Enabled</source>
<translation>Deaktiv,Aktiv</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[rollPitchToggle].enumStrings, </extracomment>
<location filename="../src/Vehicle/FactGroups/SubmarineFact.json"/>
<source>Disabled,Enabled,Unavailable</source>
<translation>Deaktiv,Aktiv,Mövcud deyil</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>Şimal,Cənub</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>Ev mövqeyi</translation>
</message>
<message>
<extracomment>.mavCmdInfo[HomeRaw].description, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Planned home position for mission.</source>
<translation>Missiya üçün planlaşdırılan ev mövqeyi.</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>Əsas</translation>
</message>
<message>
<extracomment>.mavCmdInfo[HomeRaw].param5.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Latitude</source>
<translation>Enlik</translation>
</message>
<message>
<extracomment>.mavCmdInfo[HomeRaw].param6.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Longitude</source>
<translation>Uzunluq</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_WAYPOINT].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Waypoint</source>
<translation>İstiqamət nöqtəsi</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_WAYPOINT].description, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Travel to a position in 3D space.</source>
<translation>3D məkanında bir yerə səyahət edin.</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>Gözlət</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_WAYPOINT].param2.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Acceptance</source>
<translation>Qəbul</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, .mavCmdInfo[MAV_CMD_DO_GIMBAL_MANAGER_PITCHYAW].param2.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Yaw</source>
<translation>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>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>Radius</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_LOITER_TURNS].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Loiter (turns)</source>
<translation>Loiter (dönüş)</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>Döngələr</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>Loiterdan çıxın</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>Mərkəz,Tangent</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_LOITER_TIME].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Loiter (time)</source>
<translation>Loiter (vaxt)</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>Qalxış yerinə qayıt</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>Aparatı işə salma mövqeyinə göndərin.</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_LAND].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Land</source>
<translation>Eniş</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>Aparatı göstərilən yerə endirin.</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_LAND].param1.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Abort Alt</source>
<translation>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>Qalxış</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>Yerdən başlayın və göstərilən uçuş mövqeyinə doğru səyahət edin.</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_LAND_LOCAL].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Land local</source>
<translation>Lokal eniş</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_TAKEOFF_LOCAL].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Takeoff local</source>
<translation>Qalxış lokal</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_FOLLOW].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Nav follow</source>
<translation>Nav izlə</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>Hündürlük dəyişdirin</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>Cari kursa davam edin və göstərilən hündürlüyə qalxın / enin. Hündürlüyə çatdıqda növbəti əmrə davam edin.</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>Uçuş kontrolu</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>Rejim</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>Dırmanma,Neytral,Enmə</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_LOITER_TO_ALT].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Loiter (altitude)</source>
<translation>Loiter (hündürlük)</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>Hündürlüyə çatana qədər müəyyən bir vəziyyətdə loiter edin.</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_FOLLOW].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Follow Me</source>
<translation>Məni izləyin</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_FOLLOW_REPOSITION].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Vehicle reposition</source>
<translation>Aparatların yerləşdirilməsi</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_PATHPLANNING].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Path planning</source>
<translation>Yolun planlaşdırılması</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_PATHPLANNING].description, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Control autonomous path planning.</source>
<translation>Avtonom yol planlamasına nəzarət edin.</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>Ətraflı</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_PATHPLANNING].param1.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Local planning</source>
<translation>Yerli planlaşdırma</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>Deaktiv,Aktiv,Aktiv+Sıfırlamaq</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_PATHPLANNING].param2.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Full planning</source>
<translation>Full planlama</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>Deaktiv et,Aktiv et,Aktiv et və sıfırla,Yalnız marşrutu deaktiv et, </translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_PATHPLANNING].param4.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Heading goal</source>
<translation>Məqsədə səfər edilir</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_SPLINE_WAYPOINT].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Spline waypoint</source>
<translation>Əyri WP</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>Spline yolundan istifadə edərək 3D məkanında bir yerə səyahət edin.</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_ALTITUDE_WAIT].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Altitude wait</source>
<translation>Hündürlük gözləmək</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_VTOL_TAKEOFF].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>VTOL takeoff</source>
<translation>VTOL qalxış</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>Düzgün müəyyən hündürlüyə hover edin, sabit qanadlara keçin və göstərilən qalxış yerinə uçun.</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>VTOL eniş</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>Cari yüksəklikdə göstərilən yerə uçun, çox rotorluya keçin və eniş edin .</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>Rəhbər etməyi aktiv etmək</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>Rəhbərlik edən rejimi aktivləşdir/deaktiv edin.</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>Aktivləşdirin</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>qədər gecikmə</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>Saat (utc)</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_DELAY].param3.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Min (utc)</source>
<translation>Dəq (utc)</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_DELAY].param4.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Sec (utc)</source>
<translation>Saniyə (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>Gecikmə</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>Missiyanı bir neçə saniyə gecikdirin.</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_CONDITION_CHANGE_ALT].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Wait for altitude</source>
<translation>Hündürlüyü gözləyin</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>Göstərilən hündürlüyə çatana qədər missiyanı gecikdirin.</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>Şərtlər</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>Dərəcə</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_CONDITION_DISTANCE].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Wait for distance</source>
<translation>Məsafəni gözləyin</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>Növbəti WP-ın göstərilən məsafəsinə qədər missiyanı təxirə salın.</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>Məsafə</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_CONDITION_YAW].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Wait for Yaw</source>
<translation>Yaw üçün gözləyin</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>İstiqamət</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>Ofset</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>Nisbi,Mütləq</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_MODE].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Set mode</source>
<translation>Rejimi təyin edin</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_MODE].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Set flight mode</source>
<translation>Uçuş rejimini təyin edin</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_MODE].description, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Set flight mode.</source>
<translation>Uçuş rejimini təyin edin.</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_MODE].param2.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Custom Mode</source>
<translation>Xüsusi rejim</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_MODE].param3.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Sub Mode</source>
<translation>Alt rejimi</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_JUMP].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Jump to item</source>
<translation>Elementə keçin</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>Missiya göstərilən maddədə davam edəcəkdir.</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_JUMP].param1.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Item #</source>
<translation>Element #</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_JUMP].param2.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Repeat</source>
<translation>Təkrarlamaq</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_CHANGE_SPEED].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Change speed</source>
<translation>Sürəti dəyişdirin</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>Sürəti və / və ya tənzimləmə nöqtəsini dəyişdirin.</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_CHANGE_SPEED].param1.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Type</source>
<translation>Növ</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>Sürət</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_CHANGE_SPEED].param3.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Throttle</source>
<translation>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>Başlanğıc yerini təyin edin</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>Başlanğıc yerini ya cari yerə, ya da müəyyən edilmiş yerə dəyişdirir.</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>Aparatın mövqeyi, Müəyyən edilmiş mövqe</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_PARAMETER].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Set Parameter</source>
<translation>Parametr təyin edin</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_RELAY].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Set relay</source>
<translation>Releyi təyin edin</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>Relai vəziyyətə gətirin.</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>Rele #</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_RELAY].param2.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Value</source>
<translation>Dəyər</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_REPEAT_RELAY].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Cycle relay</source>
<translation>Döngü rölesi</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>Dövrə relesini söndür/yandır.</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>Dövrlər</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>Vaxt</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_SERVO].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Set servo</source>
<translation>Servo təyin edin</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>Servonu müəyyən PWM dəyərinə təyin edin.</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>Döngü 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>