forked from mavlink/qgroundcontrol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqgc_json_zh_CN.ts
1831 lines (1831 loc) · 91.8 KB
/
qgc_json_zh_CN.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="zh-CN" sourcelanguage="en">
<context>
<name>App.SettingsGroup.json</name>
<message>
<extracomment>.QGC.MetaData.Facts[offlineEditingFirmwareClass].enumStrings, </extracomment>
<location filename="../src/Settings/App.SettingsGroup.json"/>
<source>ArduPilot,PX4 Pro,Mavlink Generic</source>
<translation>ArduPilot,PX4 Pro,Mavlink 通用</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[offlineEditingVehicleClass].enumStrings, </extracomment>
<location filename="../src/Settings/App.SettingsGroup.json"/>
<source>Fixed Wing,Multi-Rotor,VTOL,Rover,Sub,Mavlink Generic</source>
<translation 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>室内,室外</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[followTarget].enumStrings, </extracomment>
<location filename="../src/Settings/App.SettingsGroup.json"/>
<source>Never,Always,When in Follow Me Flight Mode</source>
<translation>从不,总是,处于“跟随我”飞行模式时</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[qLocaleLanguage].enumStrings, </extracomment>
<location filename="../src/Settings/App.SettingsGroup.json"/>
<source>System,Azerbaijani (Azerbaijani),български (Bulgarian),中文 (Chinese),Nederlands (Dutch),English,Suomi (Finnish),Français (French),Deutsche (German),Ελληνικά (Greek), עברית (Hebrew),Italiano (Italian),日本人 (Japanese),한국어 (Korean),Norsk (Norwegian),Polskie (Polish),Português (Portuguese),Pусский (Russian),Español (Spanish),Svenska (Swedish),Türk (Turkish)</source>
<translation type="unfinished">System,Azerbaijani (Azerbaijani),български (Bulgarian),中文 (Chinese),Nederlands (Dutch),English,Suomi (Finnish),Français (French),Deutsche (German),Ελληνικά (Greek), עברית (Hebrew),Italiano (Italian),日本人 (Japanese),한국어 (Korean),Norsk (Norwegian),Polskie (Polish),Português (Portuguese),Pусский (Russian),Español (Spanish),Svenska (Swedish),Türk (Turkish)</translation>
</message>
</context>
<context>
<name>FirmwareUpgrade.SettingsGroup.json</name>
<message>
<extracomment>.QGC.MetaData.Facts[apmChibiOS].enumStrings, </extracomment>
<location filename="../src/Settings/FirmwareUpgrade.SettingsGroup.json"/>
<source>ChibiOS,NuttX</source>
<translation>ChibiOS,NuttX</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[apmVehicleType].enumStrings, </extracomment>
<location filename="../src/Settings/FirmwareUpgrade.SettingsGroup.json"/>
<source>Multi-Rotor,Helicopter,Plane,Rover,Sub</source>
<translation>多机器人,直升机,固定翼,旋翼和水下装置</translation>
</message>
</context>
<context>
<name>APMMavlinkStreamRate.SettingsGroup.json</name>
<message>
<extracomment>.QGC.MetaData.Defines.StreamRateEnumStrings, </extracomment>
<location filename="../src/Settings/APMMavlinkStreamRate.SettingsGroup.json"/>
<source>Controlled By Vehicle,0 hz,1 hz,2 hz,3 hz,4 hz,5 hz,6 hz,7 hz,8 hz,9 hz,10 hz,50 hz,100 hz</source>
<translation>由无人机控制,0 赫兹,1赫兹,2 赫兹,3 赫兹,4 赫兹,5 赫兹,6 赫兹,7 赫兹,8 赫兹,9 赫兹,10 赫兹,50 赫兹,100 赫兹</translation>
</message>
</context>
<context>
<name>Video.SettingsGroup.json</name>
<message>
<extracomment>.QGC.MetaData.Facts[gridLines].enumStrings, </extracomment>
<location filename="../src/Settings/Video.SettingsGroup.json"/>
<source>Hide,Show</source>
<translation>隐藏,显示</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[videoFit].enumStrings, </extracomment>
<location filename="../src/Settings/Video.SettingsGroup.json"/>
<source>Fit Width,Fit Height,Stretch</source>
<translation>适合宽度,适合高度,拉伸数</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[recordingFormat].enumStrings, </extracomment>
<location filename="../src/Settings/Video.SettingsGroup.json"/>
<source>mkv,mov,mp4</source>
<translation>mkv,mov,mp4</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[forceVideoDecoder].enumStrings, </extracomment>
<location filename="../src/Settings/Video.SettingsGroup.json"/>
<source>Default,Force software decoder,Force NVIDIA decoder,Force VA-API decoder,Force DirectX3D 11 decoder,Force VideoToolbox decoder</source>
<translation type="unfinished">Default,Force software decoder,Force NVIDIA decoder,Force VA-API decoder,Force DirectX3D 11 decoder,Force VideoToolbox decoder</translation>
</message>
</context>
<context>
<name>BatteryFact.json</name>
<message>
<extracomment>.QGC.MetaData.Facts[batteryFunction].enumStrings, </extracomment>
<location filename="../src/Vehicle/BatteryFact.json"/>
<source>n/a,All Flight Systems,Propulsion,Avionics,Payload</source>
<translation type="unfinished">n/a,All Flight Systems,Propulsion,Avionics,Payload</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[batteryType].enumStrings, </extracomment>
<location filename="../src/Vehicle/BatteryFact.json"/>
<source>n/a,LIPO,LIFE,LION,NIMH</source>
<translation type="unfinished">n/a,LIPO,LIFE,LION,NIMH</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[chargeState].enumStrings, </extracomment>
<location filename="../src/Vehicle/BatteryFact.json"/>
<source>n/a,Ok,Low,Critical,Emergency,Failed,Unhealthy,Charging</source>
<translation type="unfinished">n/a,Ok,Low,Critical,Emergency,Failed,Unhealthy,Charging</translation>
</message>
</context>
<context>
<name>GPSFact.json</name>
<message>
<extracomment>.QGC.MetaData.Facts[lock].enumStrings, </extracomment>
<location filename="../src/Vehicle/GPSFact.json"/>
<source>None,None,2D Lock,3D Lock,3D DGPS Lock,3D RTK GPS Lock (float),3D RTK GPS Lock (fixed),Static (fixed)</source>
<translation>无,无,2D锁定,3D锁定,3D DGPS锁定,3D RTK GPS 锁定(浮动),3D RTK GPS锁定(固定),静态(固定)</translation>
</message>
</context>
<context>
<name>SubmarineFact.json</name>
<message>
<extracomment>.QGC.MetaData.Facts[inputHold].enumStrings, </extracomment>
<location filename="../src/Vehicle/SubmarineFact.json"/>
<source>Disabled,Enabled</source>
<translation>禁用,启用</translation>
</message>
<message>
<extracomment>.QGC.MetaData.Facts[rollPitchToggle].enumStrings, </extracomment>
<location filename="../src/Vehicle/SubmarineFact.json"/>
<source>Disabled,Enabled,Unavailable</source>
<translation>禁用,启用,不可用</translation>
</message>
</context>
<context>
<name>EditPositionDialog.FactMetaData.json</name>
<message>
<extracomment>.QGC.MetaData.Facts[Hemisphere].enumStrings, </extracomment>
<location filename="../src/QmlControls/EditPositionDialog.FactMetaData.json"/>
<source>North,South</source>
<translation>北,南</translation>
</message>
</context>
<context>
<name>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>覆盖 fw 4</translation>
</message>
<message>
<extracomment>.mavCmdInfo[Override testing].param1.label, </extracomment>
<location filename="../src/MissionManager/UnitTest/UT-MavCmdInfoFixedWing.json"/>
<source>override fw 4 1</source>
<translation>覆盖 fw 4 1</translation>
</message>
<message>
<extracomment>.mavCmdInfo[Override testing].param1.enumStrings, .mavCmdInfo[Override testing].param3.enumStrings, .mavCmdInfo[Override testing].param5.enumStrings, .mavCmdInfo[Override testing].param7.enumStrings, </extracomment>
<location filename="../src/MissionManager/UnitTest/UT-MavCmdInfoFixedWing.json"/>
<source>1,2</source>
<translation>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>覆盖 fw 4 3</translation>
</message>
<message>
<extracomment>.mavCmdInfo[Override testing].param5.label, </extracomment>
<location filename="../src/MissionManager/UnitTest/UT-MavCmdInfoFixedWing.json"/>
<source>override fw 4 5</source>
<translation>覆盖 fw 4 5</translation>
</message>
<message>
<extracomment>.mavCmdInfo[Override testing].param7.label, </extracomment>
<location filename="../src/MissionManager/UnitTest/UT-MavCmdInfoFixedWing.json"/>
<source>override fw 4 7</source>
<translation>覆盖 fw 4 7</translation>
</message>
</context>
<context>
<name>UT-MavCmdInfoCommon.json</name>
<message>
<extracomment>.mavCmdInfo[UNITTEST_2].param1.label, .mavCmdInfo[UNITTEST_3].param1.label, .mavCmdInfo[UNITTEST_4].param1.label, .mavCmdInfo[UNITTEST_5].param1.label, </extracomment>
<location filename="../src/MissionManager/UnitTest/UT-MavCmdInfoCommon.json"/>
<source>param1</source>
<translation>参数1</translation>
</message>
<message>
<extracomment>.mavCmdInfo[UNITTEST_3].friendlyName, </extracomment>
<location filename="../src/MissionManager/UnitTest/UT-MavCmdInfoCommon.json"/>
<source>Unit Test 3</source>
<translation>参数1</translation>
</message>
<message>
<extracomment>.mavCmdInfo[UNITTEST_3].description, .mavCmdInfo[UNITTEST_4].description, .mavCmdInfo[UNITTEST_5].description, </extracomment>
<location filename="../src/MissionManager/UnitTest/UT-MavCmdInfoCommon.json"/>
<source>description</source>
<translation>描述</translation>
</message>
<message>
<extracomment>.mavCmdInfo[UNITTEST_3].category, .mavCmdInfo[UNITTEST_4].category, .mavCmdInfo[UNITTEST_5].category, </extracomment>
<location filename="../src/MissionManager/UnitTest/UT-MavCmdInfoCommon.json"/>
<source>category</source>
<translation>类别</translation>
</message>
<message>
<extracomment>.mavCmdInfo[UNITTEST_3].param1.enumStrings, .mavCmdInfo[UNITTEST_3].param2.enumStrings, .mavCmdInfo[UNITTEST_3].param3.enumStrings, .mavCmdInfo[UNITTEST_3].param4.enumStrings, .mavCmdInfo[UNITTEST_3].param5.enumStrings, .mavCmdInfo[UNITTEST_3].param6.enumStrings, .mavCmdInfo[UNITTEST_3].param7.enumStrings, .mavCmdInfo[UNITTEST_4].param1.enumStrings, .mavCmdInfo[UNITTEST_4].param2.enumStrings, .mavCmdInfo[UNITTEST_4].param3.enumStrings, .mavCmdInfo[UNITTEST_4].param4.enumStrings, .mavCmdInfo[UNITTEST_4].param5.enumStrings, .mavCmdInfo[UNITTEST_4].param6.enumStrings, .mavCmdInfo[UNITTEST_4].param7.enumStrings, .mavCmdInfo[UNITTEST_5].param1.enumStrings, .mavCmdInfo[UNITTEST_5].param2.enumStrings, .mavCmdInfo[UNITTEST_5].param3.enumStrings, .mavCmdInfo[UNITTEST_5].param4.enumStrings, .mavCmdInfo[UNITTEST_5].param5.enumStrings, .mavCmdInfo[UNITTEST_5].param6.enumStrings, .mavCmdInfo[UNITTEST_5].param7.enumStrings, </extracomment>
<location filename="../src/MissionManager/UnitTest/UT-MavCmdInfoCommon.json"/>
<source>1,2</source>
<translation>1,2</translation>
</message>
<message>
<extracomment>.mavCmdInfo[UNITTEST_3].param2.label, .mavCmdInfo[UNITTEST_4].param2.label, .mavCmdInfo[UNITTEST_5].param2.label, </extracomment>
<location filename="../src/MissionManager/UnitTest/UT-MavCmdInfoCommon.json"/>
<source>param2</source>
<translation>参数2</translation>
</message>
<message>
<extracomment>.mavCmdInfo[UNITTEST_3].param3.label, .mavCmdInfo[UNITTEST_4].param3.label, .mavCmdInfo[UNITTEST_5].param3.label, </extracomment>
<location filename="../src/MissionManager/UnitTest/UT-MavCmdInfoCommon.json"/>
<source>param3</source>
<translation>参数3</translation>
</message>
<message>
<extracomment>.mavCmdInfo[UNITTEST_3].param4.label, .mavCmdInfo[UNITTEST_4].param4.label, .mavCmdInfo[UNITTEST_5].param4.label, </extracomment>
<location filename="../src/MissionManager/UnitTest/UT-MavCmdInfoCommon.json"/>
<source>param4</source>
<translation>参数4</translation>
</message>
<message>
<extracomment>.mavCmdInfo[UNITTEST_3].param5.label, .mavCmdInfo[UNITTEST_4].param5.label, .mavCmdInfo[UNITTEST_5].param5.label, </extracomment>
<location filename="../src/MissionManager/UnitTest/UT-MavCmdInfoCommon.json"/>
<source>param5</source>
<translation>参数5</translation>
</message>
<message>
<extracomment>.mavCmdInfo[UNITTEST_3].param6.label, .mavCmdInfo[UNITTEST_4].param6.label, .mavCmdInfo[UNITTEST_5].param6.label, </extracomment>
<location filename="../src/MissionManager/UnitTest/UT-MavCmdInfoCommon.json"/>
<source>param6</source>
<translation>参数6</translation>
</message>
<message>
<extracomment>.mavCmdInfo[UNITTEST_3].param7.label, .mavCmdInfo[UNITTEST_4].param7.label, .mavCmdInfo[UNITTEST_5].param7.label, </extracomment>
<location filename="../src/MissionManager/UnitTest/UT-MavCmdInfoCommon.json"/>
<source>param7</source>
<translation>参数7</translation>
</message>
<message>
<extracomment>.mavCmdInfo[UNITTEST_4].friendlyName, </extracomment>
<location filename="../src/MissionManager/UnitTest/UT-MavCmdInfoCommon.json"/>
<source>Unit Test 4</source>
<translation>单元测试 4</translation>
</message>
<message>
<extracomment>.mavCmdInfo[UNITTEST_5].friendlyName, </extracomment>
<location filename="../src/MissionManager/UnitTest/UT-MavCmdInfoCommon.json"/>
<source>Unit Test 5</source>
<translation>单元测试 5</translation>
</message>
</context>
<context>
<name>MavCmdInfoMultiRotor.json</name>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_TAKEOFF].param4.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoMultiRotor.json"/>
<source>Yaw</source>
<translation type="unfinished">Yaw</translation>
</message>
</context>
<context>
<name>MavCmdInfoFixedWing.json</name>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_TAKEOFF].param1.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoFixedWing.json"/>
<source>Pitch</source>
<translation type="unfinished">Pitch</translation>
</message>
</context>
<context>
<name>MavCmdInfoCommon.json</name>
<message>
<extracomment>.mavCmdInfo[HomeRaw].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Home Position</source>
<translation>起始位置</translation>
</message>
<message>
<extracomment>.mavCmdInfo[HomeRaw].description, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Planned home position for mission.</source>
<translation>计划执行任务的起始位置。</translation>
</message>
<message>
<extracomment>.mavCmdInfo[HomeRaw].category, .mavCmdInfo[MAV_CMD_NAV_WAYPOINT].category, .mavCmdInfo[MAV_CMD_NAV_RETURN_TO_LAUNCH].category, .mavCmdInfo[MAV_CMD_NAV_LAND].category, .mavCmdInfo[MAV_CMD_NAV_TAKEOFF].category, .mavCmdInfo[MAV_CMD_NAV_SPLINE_WAYPOINT].category, .mavCmdInfo[MAV_CMD_NAV_VTOL_TAKEOFF].category, .mavCmdInfo[MAV_CMD_NAV_VTOL_LAND].category, .mavCmdInfo[MAV_CMD_CONDITION_DELAY].category, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Basic</source>
<translation>常规</translation>
</message>
<message>
<extracomment>.mavCmdInfo[HomeRaw].param5.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Latitude</source>
<translation>纬度</translation>
</message>
<message>
<extracomment>.mavCmdInfo[HomeRaw].param6.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Longitude</source>
<translation>经度</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_WAYPOINT].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Waypoint</source>
<translation>航点</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_WAYPOINT].description, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Travel to a position in 3D space.</source>
<translation>前往三维空间中的某个位置。</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_WAYPOINT].param1.label, .mavCmdInfo[MAV_CMD_NAV_SPLINE_WAYPOINT].param1.label, .mavCmdInfo[MAV_CMD_NAV_DELAY].param1.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Hold</source>
<translation>保持</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_WAYPOINT].param2.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Acceptance</source>
<translation>接受</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_WAYPOINT].param3.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Pass Radius</source>
<translation>通过半径</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_WAYPOINT].param4.label, .mavCmdInfo[MAV_CMD_NAV_LOITER_UNLIM].param4.label, .mavCmdInfo[MAV_CMD_NAV_LAND].param4.label, .mavCmdInfo[MAV_CMD_NAV_VTOL_TAKEOFF].param4.label, .mavCmdInfo[MAV_CMD_NAV_VTOL_LAND].param4.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Yaw</source>
<translation>偏航</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_LOITER_UNLIM].friendlyName, .mavCmdInfo[MAV_CMD_NAV_LOITER_UNLIM].category, .mavCmdInfo[MAV_CMD_NAV_LOITER_TURNS].category, .mavCmdInfo[MAV_CMD_NAV_LOITER_TIME].category, .mavCmdInfo[MAV_CMD_NAV_LOITER_TO_ALT].category, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Loiter</source>
<translation>盘旋</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_LOITER_UNLIM].description, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Travel to a position and Loiter around the specified position indefinitely.</source>
<translation>移动到一个位置,在指定的半径周围盘旋。</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_LOITER_UNLIM].param3.label, .mavCmdInfo[MAV_CMD_NAV_LOITER_TURNS].param3.label, .mavCmdInfo[MAV_CMD_NAV_LOITER_TIME].param3.label, .mavCmdInfo[MAV_CMD_NAV_LOITER_TO_ALT].param2.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Radius</source>
<translation>半径</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_LOITER_TURNS].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Loiter (turns)</source>
<translation>盘旋 (旋转)</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_LOITER_TURNS].description, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Travel to a position and Loiter around the specified position for a number of turns.</source>
<translation>移动到一个位置,在指定的半径周围盘旋指定圈數。</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_LOITER_TURNS].param1.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Turns</source>
<translation>转到</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_LOITER_TURNS].param2.label, .mavCmdInfo[MAV_CMD_NAV_LOITER_TIME].param2.label, .mavCmdInfo[MAV_CMD_NAV_LOITER_TO_ALT].param1.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Leave Loiter</source>
<translation>离开盤旋模式</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_LOITER_TURNS].param2.enumStrings, .mavCmdInfo[MAV_CMD_NAV_LOITER_TO_ALT].param1.enumStrings, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Direction of next waypoint,Any direction</source>
<translation 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>退出盘旋</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_LOITER_TURNS].param4.enumStrings, .mavCmdInfo[MAV_CMD_NAV_LOITER_TIME].param4.enumStrings, .mavCmdInfo[MAV_CMD_NAV_LOITER_TO_ALT].param4.enumStrings, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Center,Tangent</source>
<translation>中心,切线</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_LOITER_TIME].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Loiter (time)</source>
<translation>悬停(时间)</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_LOITER_TIME].description, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Travel to a position and Loiter around the specified position for an amount of time.</source>
<translation 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>返回起飞点</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_RETURN_TO_LAUNCH].description, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Send the vehicle back to the launch position.</source>
<translation>将无人机送回起飞位置。</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_LAND].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Land</source>
<translation>降落</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_LAND].description, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Land vehicle at the specified location.</source>
<translation>在指定位置降落无人机。</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_LAND].param1.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Abort Alt</source>
<translation>中止高度</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_LAND].param2.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Precision Land</source>
<translation 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>起飞</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_TAKEOFF].description, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Launch from the ground and travel towards the specified takeoff position.</source>
<translation>从地面发射并前往指定的起飞位置。</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_LAND_LOCAL].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Land local</source>
<translation>降落地点</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_TAKEOFF_LOCAL].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Takeoff local</source>
<translation>本地起飞</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_FOLLOW].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Nav follow</source>
<translation>跟随导航</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_CONTINUE_AND_CHANGE_ALT].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Change Altitude</source>
<translation>改变高度</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_CONTINUE_AND_CHANGE_ALT].description, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Continue on the current course and climb/descend to specified altitude. When the altitude is reached continue to the next command.</source>
<translation>沿当前路线继续,然后爬升/下降到指定的高度。 到达高度后,继续执行下一个命令。</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_CONTINUE_AND_CHANGE_ALT].category, .mavCmdInfo[MAV_CMD_DO_CHANGE_SPEED].category, .mavCmdInfo[MAV_CMD_DO_LAND_START].category, .mavCmdInfo[MAV_CMD_DO_INVERTED_FLIGHT].category, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Flight control</source>
<translation>飞行控制</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_CONTINUE_AND_CHANGE_ALT].param1.label, .mavCmdInfo[MAV_CMD_DO_SET_MODE].param1.label, .mavCmdInfo[MAV_CMD_DO_SET_HOME].param1.label, .mavCmdInfo[MAV_CMD_DO_SET_ROI].param1.label, .mavCmdInfo[MAV_CMD_DO_DIGICAM_CONFIGURE].param1.label, .mavCmdInfo[MAV_CMD_DO_MOUNT_CONFIGURE].param1.label, .mavCmdInfo[MAV_CMD_DO_MOUNT_CONTROL].param7.label, .mavCmdInfo[MAV_CMD_SET_CAMERA_MODE].param2.label, .mavCmdInfo[MAV_CMD_DO_VTOL_TRANSITION].param1.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Mode</source>
<translation>模式</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_CONTINUE_AND_CHANGE_ALT].param1.enumStrings, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Climb,Neutral,Descend</source>
<translation>爬升、空档、下降</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_LOITER_TO_ALT].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Loiter (altitude)</source>
<translation>盘旋(高度)</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_LOITER_TO_ALT].description, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Loiter at specified position until altitude reached.</source>
<translation>在指定位置盘旋,直到达到高度为止。</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_FOLLOW].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Follow Me</source>
<translation>跟随模式</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_FOLLOW_REPOSITION].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Vehicle reposition</source>
<translation>无人机重置位置</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_PATHPLANNING].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Path planning</source>
<translation>路线规划</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_PATHPLANNING].description, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Control autonomous path planning.</source>
<translation>控制自主规划路径。</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_PATHPLANNING].category, .mavCmdInfo[MAV_CMD_DO_SET_MODE].category, .mavCmdInfo[MAV_CMD_DO_JUMP].category, .mavCmdInfo[MAV_CMD_DO_SET_HOME].category, .mavCmdInfo[MAV_CMD_DO_SET_REVERSE].category, .mavCmdInfo[MAV_CMD_DO_MOUNT_CONFIGURE].category, .mavCmdInfo[MAV_CMD_DO_MOUNT_CONTROL].category, .mavCmdInfo[MAV_CMD_DO_GRIPPER].category, .mavCmdInfo[MAV_CMD_DO_AUTOTUNE_ENABLE].category, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Advanced</source>
<translation>高级</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_PATHPLANNING].param1.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Local planning</source>
<translation>本地规划</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_PATHPLANNING].param1.enumStrings, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Disable,Enable,Enable+reset</source>
<translation>禁用,启用,启用+重置</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_PATHPLANNING].param2.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Full planning</source>
<translation>本地规划</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_PATHPLANNING].param2.enumStrings, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Disable,Enable,Enable+reset,Enable+reset route only</source>
<translation>禁用,启用,启用+重置,仅启用+重置路由</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_PATHPLANNING].param4.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Heading goal</source>
<translation>标题目标</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_SPLINE_WAYPOINT].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Spline waypoint</source>
<translation>样条航路点</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_SPLINE_WAYPOINT].description, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Travel to a position in 3D space using spline path.</source>
<translation>使用样条曲线路径移动到三维空间中的某个位置。</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_ALTITUDE_WAIT].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Altitude wait</source>
<translation>高度差</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_VTOL_TAKEOFF].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>VTOL takeoff</source>
<translation>垂直起降</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_VTOL_TAKEOFF].description, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Hover straight up to specified altitude, transition to fixed-wing and fly to the specified takeoff location.</source>
<translation>悬停在指定的高度上,过渡到固定翼并飞到指定的起飞位置。</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_VTOL_TAKEOFF].param2.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Transition Heading</source>
<translation 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>垂起着陆</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_VTOL_LAND].description, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Fly to specified location at current altitude, transition to multi-rotor and land.</source>
<translation>飞行到当前高度的指定位置,过渡到多旋翼并着陆。</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_VTOL_LAND].param3.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Approach Alt</source>
<translation 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>启用引用</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_GUIDED_ENABLE].description, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Enable/Disabled guided mode.</source>
<translation>启用/禁用引导模式。</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_GUIDED_ENABLE].param1.label, .mavCmdInfo[MAV_CMD_DO_FENCE_ENABLE].param1.label, .mavCmdInfo[MAV_CMD_DO_AUTOTUNE_ENABLE].param2.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Enable</source>
<translation>启用</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_GUIDED_ENABLE].param1.enumStrings, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>On,Off</source>
<translation>开启,关闭</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_DELAY].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Delay until</source>
<translation>延迟至</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_DELAY].description, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Delay unti the specified time is reached.</source>
<translation>延迟到达指定时间。</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_DELAY].param2.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Hour (utc)</source>
<translation>小时(utc)</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_DELAY].param3.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Min (utc)</source>
<translation>分(utc)</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_NAV_DELAY].param4.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Sec (utc)</source>
<translation>秒(utc)</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_CONDITION_DELAY].friendlyName, .mavCmdInfo[MAV_CMD_CONDITION_DELAY].param1.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Delay</source>
<translation>延时</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_CONDITION_DELAY].description, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Delay the mission for the number of seconds.</source>
<translation>延迟任务秒数。</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_CONDITION_CHANGE_ALT].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Wait for altitude</source>
<translation>等待高度</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_CONDITION_CHANGE_ALT].description, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Delay the mission until the specified altitide is reached.</source>
<translation>将任务推迟到达到指定的高度为止。</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_CONDITION_CHANGE_ALT].category, .mavCmdInfo[MAV_CMD_CONDITION_DISTANCE].category, .mavCmdInfo[MAV_CMD_CONDITION_YAW].category, .mavCmdInfo[MAV_CMD_CONDITION_GATE].category, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Conditionals</source>
<translation>条件</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_CONDITION_CHANGE_ALT].param1.label, .mavCmdInfo[MAV_CMD_CONDITION_YAW].param2.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Rate</source>
<translation>速率</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_CONDITION_DISTANCE].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Wait for distance</source>
<translation>等待距离</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_CONDITION_DISTANCE].description, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Delay the mission until within the specified distance of the next waypoint.</source>
<translation>将任务推迟到下一个航点的指定距离以内。</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_CONDITION_DISTANCE].param1.label, .mavCmdInfo[MAV_CMD_DO_SET_CAM_TRIGG_DIST].param1.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Distance</source>
<translation>距离</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_CONDITION_YAW].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Wait for Yaw</source>
<translation>等待偏航</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_CONDITION_YAW].description, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Delay the mission until the specified heading is reached.</source>
<translation 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>方向</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_CONDITION_YAW].param3.enumStrings, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Clockwise,Counter-Clockwise</source>
<translation>顺时针,逆时针</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_CONDITION_YAW].param4.label, .mavCmdInfo[MAV_CMD_DO_CHANGE_SPEED].param4.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Offset</source>
<translation>偏移量</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_CONDITION_YAW].param4.enumStrings, .mavCmdInfo[MAV_CMD_DO_CHANGE_SPEED].param4.enumStrings, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Relative,Absolute</source>
<translation>相对,绝对</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_MODE].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Set mode</source>
<translation>设置模式</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_MODE].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Set flight mode</source>
<translation>设置飞行模式</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_MODE].description, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Set flight mode.</source>
<translation>设置飞行模式。</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_MODE].param2.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Custom Mode</source>
<translation>自定义模式</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_MODE].param3.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Sub Mode</source>
<translation>子模式</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_JUMP].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Jump to item</source>
<translation>跳转到项目</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_JUMP].description, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Mission will continue at the specified item.</source>
<translation>任务将在指定的项目继续。</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_JUMP].param1.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Item #</source>
<translation>项目 #</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_JUMP].param2.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Repeat</source>
<translation>重复</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_CHANGE_SPEED].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Change speed</source>
<translation>更改速度</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_CHANGE_SPEED].description, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Change speed and/or throttle set points.</source>
<translation>更改速度和/或节点设定。</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_CHANGE_SPEED].param1.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Type</source>
<translation>类型</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_CHANGE_SPEED].param1.enumStrings, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Airspeed,Ground Speed</source>
<translation>飞行速度,地面速度</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_CHANGE_SPEED].param2.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Speed</source>
<translation>速度</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_CHANGE_SPEED].param3.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Throttle</source>
<translation>油门</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_HOME].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Set launch location</source>
<translation>设置启动位置</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_HOME].description, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Changes the launch location either to the current location or a specified location.</source>
<translation>更改起飞位置到当前位置或指定位置。</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_HOME].param1.enumStrings, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Vehicle position,Specified position</source>
<translation>无人机位置,指定位置</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_PARAMETER].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Set Parameter</source>
<translation>设置参数</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_RELAY].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Set relay</source>
<translation>设置继电器</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_RELAY].description, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Set relay to a condition.</source>
<translation>将继电器设置为条件。</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_RELAY].param1.label, .mavCmdInfo[MAV_CMD_DO_REPEAT_RELAY].param1.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Relay #</source>
<translation>继电器 #</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_RELAY].param2.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Value</source>
<translation>值</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_REPEAT_RELAY].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Cycle relay</source>
<translation>循环继电器</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_REPEAT_RELAY].description, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Cycle relay on/off for desired cycles/time.</source>
<translation>循环继电器开/关以达到预期的周期/时间。</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_REPEAT_RELAY].param2.label, .mavCmdInfo[MAV_CMD_DO_REPEAT_SERVO].param3.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Cycles</source>
<translation>循环</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_REPEAT_RELAY].param3.label, .mavCmdInfo[MAV_CMD_DO_REPEAT_SERVO].param4.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Time</source>
<translation>时间</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_SERVO].friendlyName, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Set servo</source>
<translation>设置舵机</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_SERVO].description, .mavCmdInfo[MAV_CMD_DO_REPEAT_SERVO].description, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Set servo to specified PWM value.</source>
<translation>设置舵机为指定的 PWM 值。</translation>
</message>
<message>
<extracomment>.mavCmdInfo[MAV_CMD_DO_SET_SERVO].param1.label, .mavCmdInfo[MAV_CMD_DO_REPEAT_SERVO].param1.label, </extracomment>
<location filename="../src/MissionManager/MavCmdInfoCommon.json"/>
<source>Servo</source>
<translation>舵机</translation>