Newer
Older
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>SubmarineFact.json</name>
<message>
<extracomment>.QGC.MetaData.Facts[lights2].shortDescription, </extracomment>
<location filename="../src/Vehicle/SubmarineFact.json"/>
<source>Lights 2 level</source>
<translation>İşıqlar 2ci səviyyə</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[inputHold].shortDescription, </extracomment>
<location filename="../src/Vehicle/SubmarineFact.json"/>
<source>Input Hold</source>
<translation>Giriş kontrol</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[rollPitchToggle].enumStrings, </extracomment>
<location filename="../src/Vehicle/SubmarineFact.json"/>
<source>Disabled,Enabled,Unavailable</source>
<translation>Deaktiv,Aktiv,Mövcud deyil</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[lights1].shortDescription, </extracomment>
<location filename="../src/Vehicle/SubmarineFact.json"/>
<source>Lights 1 level</source>
<translation>İşıqlar 1ci səviyyə</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[tetherTurns].shortDescription, </extracomment>
<location filename="../src/Vehicle/SubmarineFact.json"/>
<source>Tether Turns</source>
<translation>Bağlantı Növbələri</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[inputHold].enumStrings, </extracomment>
<location filename="../src/Vehicle/SubmarineFact.json"/>
<source>Disabled,Enabled</source>
<translation>Deaktiv,Aktiv</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[cameraTilt].shortDescription, </extracomment>
<location filename="../src/Vehicle/SubmarineFact.json"/>
<source>Camera Tilt</source>
<translation>Kamera Əyimi</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[rangefinderDistance].shortDescription, </extracomment>
<location filename="../src/Vehicle/SubmarineFact.json"/>
<source>Rangefinder</source>
<translation>Məsafəölçən</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[pilotGain].shortDescription, </extracomment>
<location filename="../src/Vehicle/SubmarineFact.json"/>
<source>Pilot Gain</source>
<translation>Pilot Qazancı</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[rollPitchToggle].shortDescription, </extracomment>
<location filename="../src/Vehicle/SubmarineFact.json"/>
<source>Roll/Pitch Toggle</source>
<translation>Roll/Pitch Keçidi</translation>
</message>
</context>
<context>
<name>SetpointFact.json</name>
<message>
<extracomment>.QGC.MetaData.Facts[pitchRate].shortDescription, </extracomment>
<location filename="../src/Vehicle/SetpointFact.json"/>
<source>Pitch Rate Setpoint</source>
<translation>Pitch Dərəcəsi Təyinat nöqtəsi</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[pitch].shortDescription, </extracomment>
<location filename="../src/Vehicle/SetpointFact.json"/>
<source>Pitch Setpoint</source>
<translation>Pitch Təyinat nöqtəsi</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[yaw].shortDescription, </extracomment>
<location filename="../src/Vehicle/SetpointFact.json"/>
<source>Yaw Setpoint</source>
<translation>Yaw təyinat nöqtəsi</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[yawRate].shortDescription, </extracomment>
<location filename="../src/Vehicle/SetpointFact.json"/>
<source>Yaw Rate Setpoint</source>
<translation>Yaw dərəcə təyinat nöqtəsi</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[roll].shortDescription, </extracomment>
<location filename="../src/Vehicle/SetpointFact.json"/>
<source>Roll Setpoint</source>
<translation>Roll təyinat nöqtəsi</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[rollRate].shortDescription, </extracomment>
<location filename="../src/Vehicle/SetpointFact.json"/>
<source>Roll Rate Setpoint</source>
<translation>Roll dərəcə təyinat nöqtəsi</translation>
</message>
</context>
<context>
<name>EstimatorStatusFactGroup.json</name>
<message>
<extracomment>.QGC.MetaData.Facts[accelError].shortDescription, </extracomment>
<location filename="../src/Vehicle/EstimatorStatusFactGroup.json"/>
<source>Accel Error</source>
<translation>Aksel Error</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[haglRatio].shortDescription, </extracomment>
<location filename="../src/Vehicle/EstimatorStatusFactGroup.json"/>
<source>HAGL Ratio</source>
<translation>HAGL kəsri</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[vertPosAccuracy].shortDescription, </extracomment>
<location filename="../src/Vehicle/EstimatorStatusFactGroup.json"/>
<source>Vert Pos Accuracy</source>
<translation>Şaquli Poz Dəqiqliyi</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[horizPosAccuracy].shortDescription, </extracomment>
<location filename="../src/Vehicle/EstimatorStatusFactGroup.json"/>
<source>Horiz Pos Accuracy</source>
<translation>Üfüqi Poz Dəqiqliyi</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[goodConstPosModeEstimate].shortDescription, </extracomment>
<location filename="../src/Vehicle/EstimatorStatusFactGroup.json"/>
<source>Good Const Pos Mode Estimate</source>
<translation>Yaxşı Sabit Poz Rejim Təxmini</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[goodPredHorizPosAbsEstimate].shortDescription, </extracomment>
<location filename="../src/Vehicle/EstimatorStatusFactGroup.json"/>
<source>Good Pred Horiz Pos Abs Estimate</source>
<translation>Yaxşı Təxmin Üfüqi Poz Mütləq Təxmini</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[goodAttitudeEsimate].shortDescription, </extracomment>
<location filename="../src/Vehicle/EstimatorStatusFactGroup.json"/>
<source>Good Attitude Esimate</source>
<translation>Yaxşı Münasibət Təxmini</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[goodHorizVelEstimate].shortDescription, </extracomment>
<location filename="../src/Vehicle/EstimatorStatusFactGroup.json"/>
<source>Good Horiz Vel Estimate</source>
<translation>Yaxşı Üfüqi Sürət Təxmini</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[goodVertPosAbsEstimate].shortDescription, </extracomment>
<location filename="../src/Vehicle/EstimatorStatusFactGroup.json"/>
<source>Good Vert Pos Abs Estimate</source>
<translation>Yaxşı Şaquli Poz Mütləq Təxmini</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[horizPosRatio].shortDescription, </extracomment>
<location filename="../src/Vehicle/EstimatorStatusFactGroup.json"/>
<source>Horiz Pos Ratio</source>
<translation>Üfüqi Poz Kəsr</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[velRatio].shortDescription, </extracomment>
<location filename="../src/Vehicle/EstimatorStatusFactGroup.json"/>
<source>Vel Ratio</source>
<translation>Sürət kəsri</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[goodVertPosAGLEstimate].shortDescription, </extracomment>
<location filename="../src/Vehicle/EstimatorStatusFactGroup.json"/>
<source>Good Vert Pos AGL Estimate</source>
<translation>Yaxşı Şaquli Poz AGL Təxmin</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[goodHorizPosRelEstimate].shortDescription, </extracomment>
<location filename="../src/Vehicle/EstimatorStatusFactGroup.json"/>
<source>Good Horiz Pos Rel Estimate</source>
<translation>Yaxşı Üfüqi Poz Nisbi Təxmini</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[magRatio].shortDescription, </extracomment>
<location filename="../src/Vehicle/EstimatorStatusFactGroup.json"/>
<source>Mag Ratio</source>
<translation>Böyüklük kəsri</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[tasRatio].shortDescription, </extracomment>
<location filename="../src/Vehicle/EstimatorStatusFactGroup.json"/>
<source>TAS Ratio</source>
<translation>TAS kəsri</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[vertPosRatio].shortDescription, </extracomment>
<location filename="../src/Vehicle/EstimatorStatusFactGroup.json"/>
<source>Vert Pos Ratio</source>
<translation>Şaquli Poz Kəsri</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[gpsGlitch].shortDescription, </extracomment>
<location filename="../src/Vehicle/EstimatorStatusFactGroup.json"/>
<source>Gps Glitch</source>
<translation>GPS pozuntusu</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[goodVertVelEstimate].shortDescription, </extracomment>
<location filename="../src/Vehicle/EstimatorStatusFactGroup.json"/>
<source>Good Vert Vel Estimate</source>
<translation>Yaxşı Şaquli Sürət Təxmini</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[goodHorizPosAbsEstimate].shortDescription, </extracomment>
<location filename="../src/Vehicle/EstimatorStatusFactGroup.json"/>
<source>Good Horiz Pos Abs Estimate</source>
<translation>Yaxşı Üfüqi Poz Mütləq Təxmini</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[goodPredHorizPosRelEstimate].shortDescription, </extracomment>
<location filename="../src/Vehicle/EstimatorStatusFactGroup.json"/>
<source>Good Pred Horiz Pos Rel Estimate</source>
<translation>Yaxşı Təxmin Üfüqi Poz Nisbi Təxmini</translation>
</message>
</context>
<context>
<name>VehicleFact.json</name>
<message>
<extracomment>.QGC.MetaData.Facts[headingToNextWP].shortDescription, </extracomment>
<location filename="../src/Vehicle/VehicleFact.json"/>
<source>Next WP Heading</source>
<translation>Növbəti WP-a səfər</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[missionItemIndex].shortDescription, </extracomment>
<location filename="../src/Vehicle/VehicleFact.json"/>
<source>Mission Item Index</source>
<translation>Missiya bənd indeksi</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[altitudeRelative].shortDescription, </extracomment>
<location filename="../src/Vehicle/VehicleFact.json"/>
<source>Alt (Rel)</source>
<translation>Yüks.(Nisbi)</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[throttlePct].shortDescription, </extracomment>
<location filename="../src/Vehicle/VehicleFact.json"/>
<source>Throttle %</source>
<translation>Qəza %</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[airSpeed].shortDescription, </extracomment>
<location filename="../src/Vehicle/VehicleFact.json"/>
<source>Air Speed</source>
<translation>Hava sürəti</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[altitudeAMSL].shortDescription, </extracomment>
<location filename="../src/Vehicle/VehicleFact.json"/>
<source>Alt (AMSL)</source>
<translation>Yüks.(AMSL)</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[hobbs].shortDescription, </extracomment>
<location filename="../src/Vehicle/VehicleFact.json"/>
<source>Hobbs Meter</source>
<translation>Hobbs metr</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[groundSpeed].shortDescription, </extracomment>
<location filename="../src/Vehicle/VehicleFact.json"/>
<source>Ground Speed</source>
<translation>Yer sürəti</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[yawRate].shortDescription, </extracomment>
<location filename="../src/Vehicle/VehicleFact.json"/>
<source>Yaw Rate</source>
<translation>Yaw dərəcəsi</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[distanceToHome].shortDescription, </extracomment>
<location filename="../src/Vehicle/VehicleFact.json"/>
<source>Distance to Home</source>
<translation>Evə qədər məsafə</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[heading].shortDescription, </extracomment>
<location filename="../src/Vehicle/VehicleFact.json"/>
<source>Heading</source>
<translation>Səfər etmək</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[headingToHome].shortDescription, </extracomment>
<location filename="../src/Vehicle/VehicleFact.json"/>
<source>Heading to Home</source>
<translation>Evə səfər edir</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[climbRate].shortDescription, </extracomment>
<location filename="../src/Vehicle/VehicleFact.json"/>
<source>Climb Rate</source>
<translation>Dırmanma sürəti</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[pitch].shortDescription, </extracomment>
<location filename="../src/Vehicle/VehicleFact.json"/>
<source>Pitch</source>
<translation>Pitch</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[rollRate].shortDescription, </extracomment>
<location filename="../src/Vehicle/VehicleFact.json"/>
<source>Roll Rate</source>
<translation>Roll dərəcəsi</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[flightTime].shortDescription, </extracomment>
<location filename="../src/Vehicle/VehicleFact.json"/>
<source>Flight Time</source>
<translation>Uçuş müddəti</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[pitchRate].shortDescription, </extracomment>
<location filename="../src/Vehicle/VehicleFact.json"/>
<source>Pitch Rate</source>
<translation>Pitch dərəcəsi</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[flightDistance].shortDescription, </extracomment>
<location filename="../src/Vehicle/VehicleFact.json"/>
<source>Flight Distance</source>
<translation>Uçuş uzunluğu</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[roll].shortDescription, </extracomment>
<location filename="../src/Vehicle/VehicleFact.json"/>
<source>Roll</source>
<translation>Roll</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[distanceToGCS].shortDescription, </extracomment>
<location filename="../src/Vehicle/VehicleFact.json"/>
<source>Distance to GCS</source>
<translation>GCS-a məsafə</translation>
</message>
</context>
<context>
<name>TemperatureFact.json</name>
<message>
<extracomment>.QGC.MetaData.Facts[temperature3].shortDescription, </extracomment>
<location filename="../src/Vehicle/TemperatureFact.json"/>
<source>Temperature (3)</source>
<translation>Temperatur (3)</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[temperature2].shortDescription, </extracomment>
<location filename="../src/Vehicle/TemperatureFact.json"/>
<source>Temperature (2)</source>
<translation>Temperatur (2)</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[temperature1].shortDescription, </extracomment>
<location filename="../src/Vehicle/TemperatureFact.json"/>
<source>Temperature (1)</source>
<translation>Temperatur (1)</translation>
</message>
</context>
<context>
<name>WindFact.json</name>
<message>
<extracomment>.QGC.MetaData.Facts[verticalSpeed].shortDescription, </extracomment>
<location filename="../src/Vehicle/WindFact.json"/>
<source>Wind Spd (vert)</source>
<translation>Külək Sürəti (şaquli)</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[direction].shortDescription, </extracomment>
<location filename="../src/Vehicle/WindFact.json"/>
<source>Wind Direction</source>
<translation>Küləyin istiqaməti</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[speed].shortDescription, </extracomment>
<location filename="../src/Vehicle/WindFact.json"/>
<source>Wind Spd</source>
<translation>Küləyin sürəti</translation>
</message>
</context>
<context>
<name>GPSFact.json</name>
<message>
<extracomment>.QGC.MetaData.Facts[lock].enumStrings, </extracomment>
<location filename="../src/Vehicle/GPSFact.json"/>
<source>None,None,2D Lock,3D Lock,3D DGPS Lock,3D RTK GPS Lock (float),3D RTK GPS Lock (fixed),Static (fixed)</source>
<translation>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>
<message>
<extracomment>.QGC.MetaData.Facts[vdop].shortDescription, </extracomment>
<location filename="../src/Vehicle/GPSFact.json"/>
<source>VDOP</source>
<translation>VDOP</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[hdop].shortDescription, </extracomment>
<location filename="../src/Vehicle/GPSFact.json"/>
<source>HDOP</source>
<translation>HDOP</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[count].shortDescription, </extracomment>
<location filename="../src/Vehicle/GPSFact.json"/>
<source>Sat Count</source>
<translation>Sat sayısı</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[mgrs].shortDescription, </extracomment>
<location filename="../src/Vehicle/GPSFact.json"/>
<source>MGRS Position</source>
<translation>MGRS pozisiyası</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[lon].shortDescription, </extracomment>
<location filename="../src/Vehicle/GPSFact.json"/>
<source>Longitude</source>
<translation>Uzunluq</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[courseOverGround].shortDescription, </extracomment>
<location filename="../src/Vehicle/GPSFact.json"/>
<source>Course Over Ground</source>
<translation>Torpaq üstündəki kurs</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[lat].shortDescription, </extracomment>
<location filename="../src/Vehicle/GPSFact.json"/>
<source>Latitude</source>
<translation>Enlik</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[lock].shortDescription, </extracomment>
<location filename="../src/Vehicle/GPSFact.json"/>
<source>GPS Lock</source>
<translation>GPS Kilidi</translation>
</message>
</context>
<context>
<name>ClockFact.json</name>
<message>
<extracomment>.QGC.MetaData.Facts[currentDate].shortDescription, </extracomment>
<location filename="../src/Vehicle/ClockFact.json"/>
<source>Date</source>
<translation>Tarix</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[currentTime].shortDescription, </extracomment>
<location filename="../src/Vehicle/ClockFact.json"/>
<source>Time</source>
<translation>Vaxt</translation>
</message>
</context>
<context>
<name>VibrationFact.json</name>
<message>
<extracomment>.QGC.MetaData.Facts[clipCount3].shortDescription, </extracomment>
<location filename="../src/Vehicle/VibrationFact.json"/>
<source>Clip Count (3)</source>
<translation>Klip Sayısı (3)</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[clipCount1].shortDescription, </extracomment>
<location filename="../src/Vehicle/VibrationFact.json"/>
<source>Clip Count (1)</source>
<translation>Klip Sayısı (1)</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[yAxis].shortDescription, </extracomment>
<location filename="../src/Vehicle/VibrationFact.json"/>
<source>Vibe yAxis</source>
<translation>Vibe yOxu</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[xAxis].shortDescription, </extracomment>
<location filename="../src/Vehicle/VibrationFact.json"/>
<source>Vibe xAxis</source>
<translation>Vibe xOxu</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[clipCount2].shortDescription, </extracomment>
<location filename="../src/Vehicle/VibrationFact.json"/>
<source>Clip Count (2)</source>
<translation>Klip Sayısı (2)</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[zAxis].shortDescription, </extracomment>
<location filename="../src/Vehicle/VibrationFact.json"/>
<source>Vibe zAxis</source>
<translation>Vibe zOxu</translation>
</message>
</context>
<context>
<name>GPSRTKFact.json</name>
<message>
<extracomment>.QGC.MetaData.Facts[active].shortDescription, </extracomment>
<location filename="../src/Vehicle/GPSRTKFact.json"/>
<source>Survey-In Active</source>
<translation>Dolanma Aktiv</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[currentAccuracy].shortDescription, </extracomment>
<location filename="../src/Vehicle/GPSRTKFact.json"/>
<source>Current Survey-In Accuracy</source>
<translation>Hazırkı Dolanma Dəqiqliyi</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[currentAltitude].shortDescription, </extracomment>
<location filename="../src/Vehicle/GPSRTKFact.json"/>
<source>Current Survey-In Altitude</source>
<translation>Hazırki Dolanma Yüksəkiyi</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[valid].shortDescription, </extracomment>
<location filename="../src/Vehicle/GPSRTKFact.json"/>
<source>Survey-In Valid</source>
<translation>Dolnma Yararlı</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[currentLongitude].shortDescription, </extracomment>
<location filename="../src/Vehicle/GPSRTKFact.json"/>
<source>Current Survey-In Longitude</source>
<translation>Hazırki Dolanma Uzunluğu</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[connected].shortDescription, </extracomment>
<location filename="../src/Vehicle/GPSRTKFact.json"/>
<source>Connected</source>
<translation>Qoşuldu</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[currentDuration].shortDescription, </extracomment>
<location filename="../src/Vehicle/GPSRTKFact.json"/>
<source>Current Survey-In Duration</source>
<translation>Hazırki Dolanma Müddəti</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[numSatellites].shortDescription, </extracomment>
<location filename="../src/Vehicle/GPSRTKFact.json"/>
<source>Number of Satellites</source>
<translation>Peyklərin Sayı</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[currentLatitude].shortDescription, </extracomment>
<location filename="../src/Vehicle/GPSRTKFact.json"/>
<source>Current Survey-In Latitude</source>
<translation>Hazırki Dolanma Enliyi</translation>
</message>
</context>
<context>
<name>BatteryFact.json</name>
<message>
<extracomment>.QGC.MetaData.Facts[instantPower].shortDescription, </extracomment>
<location filename="../src/Vehicle/BatteryFact.json"/>
<source>Watts</source>
<translation>Watt</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[temperature].shortDescription, </extracomment>
<location filename="../src/Vehicle/BatteryFact.json"/>
<source>Temperature</source>
<translation>Temperatur</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[timeRemaining].shortDescription, </extracomment>
<location filename="../src/Vehicle/BatteryFact.json"/>
<source>Time Remaining</source>
<translation>Qalan vaxt</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[mahConsumed].shortDescription, </extracomment>
<location filename="../src/Vehicle/BatteryFact.json"/>
<source>Consumed</source>
<translation>Xərclənən</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[percentRemaining].shortDescription, </extracomment>
<location filename="../src/Vehicle/BatteryFact.json"/>
<source>Percent</source>
<translation>Faiz</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[current].shortDescription, </extracomment>
<location filename="../src/Vehicle/BatteryFact.json"/>
<source>Current</source>
<translation>Hazırki</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[voltage].shortDescription, </extracomment>
<location filename="../src/Vehicle/BatteryFact.json"/>
<source>Voltage</source>
<translation>Gərginlik</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[chargeState].enumStrings, </extracomment>
<location filename="../src/Vehicle/BatteryFact.json"/>
<source>n/a,Normal Operation,Low Battery State,Critical Battery State,Emergency Battery State,Battery Failed,Battery Unhealthy</source>
<translation>bilinmir,Normal Operasiya,Az Batereya Vəziyyəti,Kritik Batereya Vəziyyəti, Təcili Batereya Vəziyyəti,Batereya Xəta Verdi, Batereya Zədəli</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[chargeState].shortDescription, </extracomment>
<location filename="../src/Vehicle/BatteryFact.json"/>
<source>Charge State</source>
<translation>Şarj vəziyyəti</translation>
</message>
</context>
<context>
<name>DistanceSensorFact.json</name>
<message>
<extracomment>.QGC.MetaData.Facts[rotationYaw90].shortDescription, </extracomment>
<location filename="../src/Vehicle/DistanceSensorFact.json"/>
<source>Right</source>
<translation>Sağ</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[rotationYaw225].shortDescription, </extracomment>
<location filename="../src/Vehicle/DistanceSensorFact.json"/>
<source>Rear/Left</source>
<translation>Arxa/Sol</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[rotationYaw45].shortDescription, </extracomment>
<location filename="../src/Vehicle/DistanceSensorFact.json"/>
<source>Forward/Right</source>
<translation>İrəli/Sağ</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[rotationYaw135].shortDescription, </extracomment>
<location filename="../src/Vehicle/DistanceSensorFact.json"/>
<source>Rear/Right</source>
<translation>Arxa/Sağ</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[rotationYaw315].shortDescription, </extracomment>
<location filename="../src/Vehicle/DistanceSensorFact.json"/>
<source>Forward/Left</source>
<translation>İrəli/Sol</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[rotationPitch90].shortDescription, </extracomment>
<location filename="../src/Vehicle/DistanceSensorFact.json"/>
<source>Up</source>
<translation>Yuxarı</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[rotationPitch270].shortDescription, </extracomment>
<location filename="../src/Vehicle/DistanceSensorFact.json"/>
<source>Down</source>
<translation>Aşağı</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[rotationNone].shortDescription, </extracomment>
<location filename="../src/Vehicle/DistanceSensorFact.json"/>
<source>Forward</source>
<translation>İrəli</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[rotationYaw180].shortDescription, </extracomment>
<location filename="../src/Vehicle/DistanceSensorFact.json"/>
<source>Rear</source>
<translation>Arxa</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[rotationYaw270].shortDescription, </extracomment>
<location filename="../src/Vehicle/DistanceSensorFact.json"/>
<source>Left</source>
<translation>Sol</translation>
</message>
</context>
<context>
<name>TerrainFactGroup.json</name>
<message>
<extracomment>.QGC.MetaData.Facts[blocksPending].shortDescription, </extracomment>
<location filename="../src/Vehicle/TerrainFactGroup.json"/>
<source>Blocks Pending</source>
<translation>Bloklar Gözləyir</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[blocksLoaded].shortDescription, </extracomment>
<location filename="../src/Vehicle/TerrainFactGroup.json"/>
<source>Blocks Loaded</source>
<translation>Bloklar Yüklənir</translation>
</message>
</context>
<context>
<name>APMFollowComponent.FactMetaData.json</name>
<message>
<extracomment>.QGC.MetaData.Facts[distance].shortDescription, </extracomment>
<location filename="../src/AutoPilotPlugins/APM/APMFollowComponent.FactMetaData.json"/>
<source>Horizontal distance from ground station to vehicle</source>
<translation>Yer stansiyasından aparata qədər üfüqi məsafə</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[height].shortDescription, </extracomment>
<location filename="../src/AutoPilotPlugins/APM/APMFollowComponent.FactMetaData.json"/>
<source>Vertical distance from Launch (home) position to vehicle</source>
<translation>Qalxış nöqtəsindən (ev) aparata qədər şaquli məsafə</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[angle].shortDescription, </extracomment>
<location filename="../src/AutoPilotPlugins/APM/APMFollowComponent.FactMetaData.json"/>
<source>Angle from ground station to vehicle</source>
<translation>Yer stansiyası ilə aparat arasında dərəcə</translation>
</message>
</context>
<context>
<name>APM-MavCmdInfoFixedWing.json</name>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_LOITER_TURNS].param4.enumStrings, .mavCmdInfo[MAV_CMD_NAV_LOITER_TIME].param4.enumStrings, </extracomment>
<location filename="../src/FirmwarePlugin/APM/APM-MavCmdInfoFixedWing.json"/>
<source>Center,Tangent</source>
<translation>Mərkəz,Toxunan</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_LOITER_TURNS].param4.label, .mavCmdInfo[MAV_CMD_NAV_LOITER_TIME].param4.label, </extracomment>
<location filename="../src/FirmwarePlugin/APM/APM-MavCmdInfoFixedWing.json"/>
<source>Exit loiter from</source>
<translation>dən Loiteri Çıx</translation>
</message>
</context>
<context>
<name>APM-MavCmdInfoCommon.json</name>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_FENCE_ENABLE].param1.label, </extracomment>
<location filename="../src/FirmwarePlugin/APM/APM-MavCmdInfoCommon.json"/>
<source>Enable</source>
<translation>Aktiv</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_VTOL_LAND].description, </extracomment>
<location filename="../src/FirmwarePlugin/APM/APM-MavCmdInfoCommon.json"/>
<source>Land using VTOL mode.</source>
<translation>VTOL rejimi ilə eniş et.</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_VTOL_TAKEOFF].description, </extracomment>
<location filename="../src/FirmwarePlugin/APM/APM-MavCmdInfoCommon.json"/>
<source>Takeoff to specified altitude.</source>
<translation>Verilmiş yüksəkliyə qalxış.</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_MOUNT_CONTROL].param3.label, </extracomment>
<location filename="../src/FirmwarePlugin/APM/APM-MavCmdInfoCommon.json"/>
<source>Yaw</source>
<translation>Yaw</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_MOUNT_CONTROL].param2.label, </extracomment>
<location filename="../src/FirmwarePlugin/APM/APM-MavCmdInfoCommon.json"/>
<source>Roll</source>
<translation>Roll</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_VTOL_TAKEOFF].category, .mavCmdInfo[MAV_CMD_NAV_VTOL_LAND].category, </extracomment>
<location filename="../src/FirmwarePlugin/APM/APM-MavCmdInfoCommon.json"/>
<source>VTOL</source>
<translation>VTOL</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_RELAY].param2.enumStrings, </extracomment>
<location filename="../src/FirmwarePlugin/APM/APM-MavCmdInfoCommon.json"/>
<source>On,Off</source>
<translation>Aç/Qapat</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_RELAY].param2.label, </extracomment>
<location filename="../src/FirmwarePlugin/APM/APM-MavCmdInfoCommon.json"/>
<source>Setting</source>
<translation>Tənzimləmə</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_MOUNT_CONTROL].param1.label, </extracomment>
<location filename="../src/FirmwarePlugin/APM/APM-MavCmdInfoCommon.json"/>
<source>Pitch</source>
<translation>Pitch</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_FENCE_ENABLE].param1.enumStrings, </extracomment>
<location filename="../src/FirmwarePlugin/APM/APM-MavCmdInfoCommon.json"/>
<source>Enable,Disable</source>
<translation>Aktiv/Deaktiv</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_TAKEOFF].description, </extracomment>
<location filename="../src/FirmwarePlugin/APM/APM-MavCmdInfoCommon.json"/>
<source>Take off from the ground and ascend to specified altitude.</source>
<translation>Yerdən qalxış və verilmiş yüksəkliyə qalxmaq.</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_LOITER_UNLIM].param4.label, .mavCmdInfo[MAV_CMD_NAV_LOITER_TURNS].param4.label, .mavCmdInfo[MAV_CMD_NAV_LOITER_TIME].param4.label, </extracomment>
<location filename="../src/FirmwarePlugin/APM/APM-MavCmdInfoCommon.json"/>
<source>Heading</source>
<translation>Səfər etmək</translation>
</message>
</context>
<context>
<name>PX4-MavCmdInfoMultiRotor.json</name>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_LOITER_UNLIM].description, </extracomment>
<location filename="../src/FirmwarePlugin/PX4/PX4-MavCmdInfoMultiRotor.json"/>
<source>Travel to a position and Loiter indefinitely.</source>
<translation>Bir pozisiyaya səyahət et və qeyri-müəyyən Loiter et.</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_LOITER_TIME].description, </extracomment>
<location filename="../src/FirmwarePlugin/PX4/PX4-MavCmdInfoMultiRotor.json"/>
<source>Travel to a position and Loiter for an amount of time.</source>
<translation>Bir pozisiyaya səyahət et və bəlli vaxt Loiter et.</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_TAKEOFF].description, </extracomment>
<location filename="../src/FirmwarePlugin/PX4/PX4-MavCmdInfoMultiRotor.json"/>
<source>Hover straight up to specified altitude. Then travel to specified position.</source>
<translation>Verilən yüksəkliyə qalx. Sonra verilən pozisiyaya get.</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_LOITER_TURNS].description, </extracomment>
<location filename="../src/FirmwarePlugin/PX4/PX4-MavCmdInfoMultiRotor.json"/>
<source>Travel to a position and Loiter for a number of turns.</source>
<translation>Pozisiyaya get və bir neçə dəfə Loiter et.</translation>
</message>
</context>
<context>
<name>AirMap.SettingsGroup.json</name>
<message>
<extracomment>.QGC.MetaData.Facts[apiKey].shortDescription, </extracomment>
<location filename="../src/Airmap/AirMap.SettingsGroup.json"/>
<source>AirMap API Key</source>
<translation>AirMap API açarı</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[password].shortDescription, </extracomment>
<location filename="../src/Airmap/AirMap.SettingsGroup.json"/>
<source>AirMap Password</source>
<translation>AirMap Şifrəsi</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[enableTelemetry].shortDescription, </extracomment>
<location filename="../src/Airmap/AirMap.SettingsGroup.json"/>
<source>Enable AirMap Telemetry</source>
<translation>AirMap Telemetriyasını aç</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[enableAirMap].shortDescription, </extracomment>
<location filename="../src/Airmap/AirMap.SettingsGroup.json"/>
<source>Enable AirMap</source>
<translation>AirMapi aç</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[clientID].shortDescription, </extracomment>
<location filename="../src/Airmap/AirMap.SettingsGroup.json"/>
<source>AirMap Client ID</source>
<translation>AirMap Client IDsi</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[userName].shortDescription, </extracomment>
<location filename="../src/Airmap/AirMap.SettingsGroup.json"/>
<source>AirMap User Name</source>
<translation>AirMap İstifadəçi adı</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[enableAirspace].shortDescription, </extracomment>
<location filename="../src/Airmap/AirMap.SettingsGroup.json"/>
<source>Show Airspace on Map (Experimental)</source>
<translation>Hava boşluğunu xəritədə göstər (Eksperimental)</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[usePersonalApiKey].shortDescription, </extracomment>
<location filename="../src/Airmap/AirMap.SettingsGroup.json"/>
<source>Use Personal AirMap API Key</source>
<translation>Şəxsi AirMap Açarı istifadə et</translation>
</message>
</context>
<context>
<name>MissionSettings.FactMetaData.json</name>
<message>
<extracomment>.QGC.MetaData.Facts[PlannedHomePositionAltitude].shortDescription, </extracomment>
<location filename="../src/MissionManager/MissionSettings.FactMetaData.json"/>
<source>Launch position altitude</source>
<translation>Mövqe hündürlüyünü başladın</translation>
</message>
</context>
<context>
<name>FWLandingPattern.FactMetaData.json</name>
<message>
<extracomment>.QGC.MetaData.Facts[StopTakingVideo].shortDescription, </extracomment>
<location filename="../src/MissionManager/FWLandingPattern.FactMetaData.json"/>
<source>Stop taking video</source>
<translation>Video çəkməyi dayandırın</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[StopTakingPhotos].shortDescription, </extracomment>
<location filename="../src/MissionManager/FWLandingPattern.FactMetaData.json"/>
<source>Stop taking photos</source>
<translation>Şəkil çəkməyi dayandırın</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[LoiterAltitude].shortDescription, </extracomment>
<location filename="../src/MissionManager/FWLandingPattern.FactMetaData.json"/>
<source>Aircraft will proceed to the loiter point and loiter downwards until it reaches this approach altitude. Once altitude is reached the aircraft will proceed to land.</source>
<translation>Aparat bu yanaşma hündürlüyünə çatana qədər Loiter nöqtəsinə və Loiterdən aşağıya doğru irəliləyəcək. Hündürlüyə çatdıqdan sonra aparat eniş edəcək.</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[LandingAltitude].shortDescription, </extracomment>
<location filename="../src/MissionManager/FWLandingPattern.FactMetaData.json"/>
<source>Altitude for landing point.</source>
<translation>Eniş nöqtəsi üçün hündürlük.</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[ValueSetIsDistance].shortDescription, </extracomment>
<location filename="../src/MissionManager/FWLandingPattern.FactMetaData.json"/>
<source>Value controller loiter point is distance</source>
<translation>Dəyər tənzimləyicisinin loiter nöqtəsi məsafədir</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[LoiterRadius].shortDescription, </extracomment>
<location filename="../src/MissionManager/FWLandingPattern.FactMetaData.json"/>
<source>Loiter radius.</source>
<translation>Loiter radiusu.</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[LandingDistance].shortDescription, </extracomment>
<location filename="../src/MissionManager/FWLandingPattern.FactMetaData.json"/>
<source>Distance between landing and loiter points.</source>
<translation>Eniş və loiter nöqtələri arasındakı məsafə.</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[LandingHeading].shortDescription, </extracomment>
<location filename="../src/MissionManager/FWLandingPattern.FactMetaData.json"/>
<source>Heading from loiter point to land point.</source>
<translation>Loiter nöqtəsindən eniş nöqtəsinə səfər.</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[GlideSlope].shortDescription, </extracomment>
<location filename="../src/MissionManager/FWLandingPattern.FactMetaData.json"/>
<source>The glide slope between the loiter and landing point.</source>
<translation>Loiter və eniş nöqtəsi arasındakı yamac.</translation>
</message>
</context>
<context>
<name>UT-MavCmdInfoFixedWing.json</name>
<message>
<extracomment>.mavCmdInfo[Override testing].description, .mavCmdInfo[Override testing].category, </extracomment>
<location filename="../src/MissionManager/UnitTest/UT-MavCmdInfoFixedWing.json"/>
<source>override fw 4</source>
<translation>Üzərindən keçmək fw 4</translation>
</message>
<message>
<extracomment>.mavCmdInfo[Override testing].param7.label, </extracomment>
<location filename="../src/MissionManager/UnitTest/UT-MavCmdInfoFixedWing.json"/>
<source>override fw 4 7</source>
<translation>Üzərindən keçmək fw 4 7</translation>
</message>
<message>
<extracomment>.mavCmdInfo[Override testing].param5.label, </extracomment>
<location filename="../src/MissionManager/UnitTest/UT-MavCmdInfoFixedWing.json"/>
<source>override fw 4 5</source>
<translation>Üzərindən keçmək fw 4 5</translation>
</message>
<message>
<extracomment>.mavCmdInfo[Override testing].param7.enumStrings, .mavCmdInfo[Override testing].param5.enumStrings, .mavCmdInfo[Override testing].param3.enumStrings, .mavCmdInfo[Override testing].param1.enumStrings, </extracomment>
<location filename="../src/MissionManager/UnitTest/UT-MavCmdInfoFixedWing.json"/>
<source>1,2</source>
<translation>1,2</translation>
</message>
<message>
<extracomment>.mavCmdInfo[Override testing].param3.label, </extracomment>
<location filename="../src/MissionManager/UnitTest/UT-MavCmdInfoFixedWing.json"/>
<source>override fw 4 3</source>
<translation>Üzərindən keçmək fw 4 3</translation>
</message>
<message>
<extracomment>.mavCmdInfo[Override testing].param1.label, </extracomment>
<location filename="../src/MissionManager/UnitTest/UT-MavCmdInfoFixedWing.json"/>
<source>override fw 4 1</source>
<translation>Üzərindən keçmək fw 4 1</translation>
</message>
</context>
<context>
<name>UT-MavCmdInfoCommon.json</name>
<message>
<extracomment>.mavCmdInfo[UNITTEST_3].category, .mavCmdInfo[UNITTEST_4].category, .mavCmdInfo[UNITTEST_5].category, </extracomment>
<location filename="../src/MissionManager/UnitTest/UT-MavCmdInfoCommon.json"/>
<source>category</source>
<translation>kateqoriya</translation>
</message>
<message>
<extracomment>.mavCmdInfo[UNITTEST_5].friendlyName, </extracomment>