forked from MuMech/MechJeb2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzh-cn.cfg
1424 lines (1224 loc) · 67.9 KB
/
zh-cn.cfg
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
Localization
{
zh-cn
{
#MechJeb_ModuleAreLocked = 部分模块功能关闭直到你解锁科技树的关键性节点和升级追踪站.
#MechJeb_OnlineManualbutton = 在线手册
#MechJeb_InstallCheckA_title = 错误的Mechjeb2安装方式
#MechJeb_InstallCheckA_msg = MechJeb2安装不正确,无法正常工作.\nMechJeb2的所有文件都应该放在如下路径中 \n<KSP>\n\tGameData\n\t\tMechJeb2\n\t\t\tParts\n\t\t\tPlugins\n\n不要从MechJeb2文件夹中移动任何文件.\n\n不正确的路径:\n
#MechJeb_InstallCheckB_title = MechJebMenuToolbar的安装是多余的
#MechJeb_InstallCheckB_msg = 检测到安装MechJebMenuToolbar, 但此版本的MechJeb2已包含对Blizzy78工具栏插件的支持.\n请把这些dll文件删除:\n
#MechJeb_MechJebInfo_VABSPH = MechJeb™姿态控制
//ManeuverPlaner
#MechJeb_Maneuver_Planner_title = 机动节点规划
#MechJeb_Maneu_Autowarp = 自动加速
#MechJeb_Maneu_Tolerance = 误差:
#MechJeb_Maneu_Lead_time = 预留时间:
#MechJeb_of = of
#MechJeb_Maneu_STB = 计算燃烧值
#MechJeb_Maneu_TimeSelect1 = 在合适的时间
#MechJeb_Maneu_TimeSelect2 = 在下个远拱点
#MechJeb_Maneu_TimeSelect3 = 在离目标最近的距离
#MechJeb_Maneu_TimeSelect4 = 在AN处
#MechJeb_Maneu_TimeSelect5 = 在DN处
#MechJeb_Maneu_TimeSelect6 = 在下个近拱点
#MechJeb_Maneu_TimeSelect7 = 在与目标的下一个升交点
#MechJeb_Maneu_TimeSelect8 = 在与目标的下一个降交点
#MechJeb_Maneu_TimeSelect9 = 在固定时间后
#MechJeb_Maneu_TimeSelect10 = 在这个海拔高度
#MechJeb_Maneu_TimeSelect11 = 在最近的AN/DN点
#MechJeb_Maneu_TimeSelect12 = 在最省燃料的AN/DN点
#MechJeb_Maneu_TimeSelect13 = 在最近的目标AN/DN点
#MechJeb_Maneu_TimeSelect14 = 在最节能的目标AN/DN点
#MechJeb_Maneu_errorMessage = 创建变轨节点发生错误
#MechJeb_Maneu_Exception1 = 警告:轨道为双曲线,不存在远拱点。
#MechJeb_Maneu_Exception2 = 警告:未选择目标。
#MechJeb_Maneu_Exception3 = 警告:不能在此高度进行圆轨,当前轨道无法到达此高度。
#MechJeb_Maneu_Exception4 = 警告:赤道升交点不存在。
#MechJeb_Maneu_Exception5 = 警告:赤道降交点不存在。
#MechJeb_Maneu_Exception6 = 警告:既不存在上升节点也不存在下降节点
#MechJeb_Maneu_Exception7 = 警告:既不存在上升节点也不存在下降节点。
//AdvancedTransfer
#MechJeb_AdvancedTransfer_title = 高级轨道转移
#MechJeb_adv_modeName1 = 限定时间
#MechJeb_adv_modeName2 = 自动选择
#MechJeb_adv_Preconditions1 = 轨道不得为双曲线
#MechJeb_adv_Preconditions2 = 初始轨道不能逃脱 <<1>> 的引力范围.
#MechJeb_adv_Preconditions3 = 必须为星际转移选择一个目标.
#MechJeb_adv_Preconditions4 = 从环绕<<1>>的轨道上绘制星际转移图是没有意义的
#MechJeb_adv_Preconditions5 = 使用经典霍曼转移功能来到达另一个绕<<1>>轨道运行的物体
#MechJeb_adv_Preconditions6 = 从<<1>>引力范围内发出的星际间转移必须以<<2>>环绕的母星——<<3>>为目标.
#MechJeb_adv_Preconditions7 = 使用经典霍曼转移功能来到达另一个绕太阳运行的天体
#MechJeb_adv_Preconditions8 = 你已经在 <<1>> 轨道上.
#MechJeb_adv_computing = 计算中:
#MechJeb_adv_reset_button = 重置
#MechJeb_adv_captureburn = 计算捕获燃烧值
#MechJeb_adv_periapsis = 近拱点
#MechJeb_adv_label1 = 现在任意时间
#MechJeb_adv_label2 = 选择:
#MechJeb_adv_label3 = 出发日期\u0020
#MechJeb_adv_label4 = 转移时间\u0020
#MechJeb_adv_label5 = 最长到达时间
#MechJeb_adv_button1 = 最少ΔV使用
#MechJeb_adv_button2 = 尽可能快
#MechJeb_adv_Exception1 = 计算未完成
#MechJeb_adv_Exception2 = 开始计算
#MechJeb_adv_Exception3 = 计算失败
#MechJeb_adv_Exception4 = 无效的选择点.
//Hohmann transfer
#MechJeb_Hohm_title = 双脉冲 (霍曼)转移到目标
#MechJeb_Hohm_intercept_only = 仅拦截, 不计算捕获 (撞击/飞掠)
#MechJeb_Hohm_simpleTransfer = 简单共面霍曼转移
#MechJeb_Hohm_Label1 = 微调目标周期偏移
#MechJeb_Hohm_Exception1 = 必须为霍曼转移选择目标。
#MechJeb_Hohm_Exception2 = 进行霍曼转移的目标必须在同一引力范围内
#MechJeb_Hohm_Exception3 = 与目标的升交点不存在.
#MechJeb_Hohm_Exception4 = 与目标的降交点不存在.
#MechJeb_Hohm_Exception5 = 与目标的降交点与升交点都不存在.
//Change Apoapsis
#MechJeb_Ap_title = 变更远拱点
#MechJeb_Ap_label1 = 新远拱点:
#MechJeb_Ap_Exception = 新远拱点不能低于执行高度(<<1>>)//(m)
//Change both Pe and Ap
#MechJeb_both_title = 修改远拱点与近拱点
#MechJeb_both_label1 = 新近拱点:
#MechJeb_both_label2 = 新远拱点:
#MechJeb_both_Exception1 = 新近拱点不能低于执行高度(<<1>>)//(m)
#MechJeb_both_Exception2 = 新远拱点不能低于执行高度
#MechJeb_both_Exception3 = 新近拱点不能低于<<1>>的半径
//Change inclination
#MechJeb_inclination_title = 修改轨道倾角
#MechJeb_inclination_label = 新轨道倾角:
//change longitude of ascending node
#MechJeb_AN_title = 修改升交点经度
#MechJeb_AN_label = 新升交点经度:
#MechJeb_AN_error = 警告:轨道平面的倾角低于<<1>>º (建议 > 10º) 机动节点执行结果可能不够精确
//Change Periapsis
#MechJeb_Pe_title = 变更近拱点
#MechJeb_Pe_label = 新近拱点:
#MechJeb_Pe_Exception1 = 新的近点不能高于执行高度
#MechJeb_Pe_Exception2 = 新的近点不能低于<<1>>的半径
//Change Semi-major axis
#MechJeb_Sa_title = 变更半长轴
#MechJeb_Sa_label = 新半长轴:
#MechJeb_Sa_errormsg = 警告:新的半长轴非常大,可能会导致轨道为双曲线
#MechJeb_Sa_Exception = 半长轴不能小于两倍执行高度加上<<1>>的半径的值
//change surface longitude of apsis
#MechJeb_la_title = 变更远点地面投影经度
#MechJeb_la_label = 后一个轨道的新地面投影经度:
//fine tune closest approach to target
#MechJeb_approach_title = 微调捕获轨道
#MechJeb_approach_label1 = 最终近拱点大致高度
#MechJeb_approach_label2 = 最接近点距离
#MechJeb_approach_label3 = 计划变轨所需的最少ΔV
#MechJeb_approach_Exception1 = 必须选择一个目标进行轨道修正.
#MechJeb_approach_Exception2 = 进行轨道修正的目标必须在同一引力范围内
#MechJeb_Approach_errormsg = 警告:修正之前的轨道似乎离目标有一定距离,轨道修正方案可能比较极端.建议先设定一条比较接近的交会轨道,然后再进行轨道修正.
//intercept target at chosen time
#MechJeb_intercept_title = 在选定时间拦截目标
#MechJeb_intercept_label = 变轨动作后接近所需时间
#MechJeb_intercept_Exception1 = 必须选定要拦截的目标.
#MechJeb_intercept_Exception2 = 目标必须在同一引力范围内.
//match planes with target
#MechJeb_match_planes_title = 匹配目标轨道
#MechJeb_match_planes_Exception1 = 必须选择一个目标来进行轨道匹配.
#MechJeb_match_planes_Exception2 = 只能匹配在同一引力范围内的目标.
#MechJeb_match_planes_Exception3 = 与目标的升交点不存在.
#MechJeb_match_planes_Exception4 = 与目标的降交点不存在.
#MechJeb_match_planes_Exception5 = 与目标的降交点与升交点不存在..
#MechJeb_match_planes_Exception6 = 错误的时间引用.
//match velocities with target
#MechJeb_match_v_title = 匹配目标速度
#MechJeb_match_v_Exception1 = 必须选择一个目标来进行速度匹配.
#MechJeb_match_v_Exception2 = 目标必须在同一引力范围内.
//resonant orbit
#MechJeb_resonant_title = 共振轨道
#MechJeb_resonant_label1 = 把你的轨道周期变更当前轨道周期的<<1>>
#MechJeb_resonant_label2 = 新的轨道周期 :
//return from a moon
#MechJeb_return_title = 从卫星上返回
#MechJeb_return_label1 = 最终近拱点大致高度:
#MechJeb_return_label2 = 在下一个窗口期返回.
#MechJeb_return_errormsg = 警告:建议从接近圆形的轨道(离心率<0.2)开始执行.返回计划是从离心率<<1>>的轨道开始的,可能不准确.
#MechJeb_return_Exception = <<1>>并不在你可以返回的天体的轨道上.
//transfer to another planet
#MechJeb_transfer_title = 转移到另一个星球
#MechJeb_transfer_Label1 = 计划变轨:
#MechJeb_transfer_Label2 = 在下一个转移窗口.
#MechJeb_transfer_Label3 = 尽可能快
#MechJeb_transfer_Label4 = 使用此模式将使您的保修无效
#MechJeb_transfer_Exception1 = 必须为星际转移选择一个目标
#MechJeb_transfer_Exception2 = 在<<1>>的轨道上绘制星际间转移是没有意义的.
#MechJeb_transfer_Exception3 = 使用经典霍曼转移来与环绕在<<1>>上的物体交会.
#MechJeb_transfer_Exception4 = 从<<1>>引力范围内发出的星际间转移必须以<<2>>环绕的母星——<<3>>为目标.
#MechJeb_transfer_errormsg1 = 警告:目标的轨道平面与<<2>>º的轨道平面成<<1>>º角(建议最多30度角).计划中的星际间转移可能无法正确到达目标
#MechJeb_transfer_errormsg2 = 警告: 建议从与<<2>>围绕<<3>>的轨道在同一平面的轨道上的<<1>>开始进行星际间转移. 起始环绕<<4>>的轨道是倾角为 <<5>>º对<<6>>的环绕<<7>>的轨道(建议< 10º). 计划中的星际间转移可能无法正确到达目标.
#MechJeb_transfer_errormsg3 = 警告:建议从接近圆形的轨道(离心率< 0.2)开始进行星际间转移.转移计划是从离心率为<<1>>的轨道开始的,因此可能无法正确与目标回合.
//Circularize
#MechJeb_Maneu_circularize_title = 圆化轨道
#MechJeb_Maneu_createNodeBtn01 = 新建节点
#MechJeb_Maneu_createNodeBtn02 = 更改最后一个
#MechJeb_Maneu_createlab1 = 机动节点:
#MechJeb_Maneu_createlab2 = 创建新的机动节点:
#MechJeb_Maneu_createlab3 = 上个变轨节点之后.
#MechJeb_Maneu_button1 = 创建节点
#MechJeb_Maneu_button2 = 创建并执行
#MechJeb_Maneu_button3 = 移除所有节点
#MechJeb_Maneu_button4 = 执行下一个节点
#MechJeb_Maneu_button5 = 执行所有节点
#MechJeb_Maneu_button6 = 中止节点执行
//Aircraft Approach & Autoland
#MechJeb_ApproAndLand_title = 飞机进场 & 着陆
#MechJeb_ApproAndLand_label1 = 着陆
#MechJeb_ApproAndLand_label2 = 跑道距离:
#MechJeb_ApproAndLand_label3 = 导航球显示降落导航点
#MechJeb_ApproAndLand_label4 = 进场速度:
#MechJeb_ApproAndLand_label5 = 接地速度:
#MechJeb_ApproAndLand_label6 = 接地时的将推力反向
#MechJeb_ApproAndLand_label7 = 一落地就刹车
#MechJeb_ApproAndLand_label8 = 状态:
#MechJeb_ApproAndLand_label9 = 导航点距离: <<1>> m
#MechJeb_ApproAndLand_label10 = 设定速度: <<1>> m/s
#MechJeb_ApproAndLand_label11 = 设定高度: <<1>> m
#MechJeb_ApproAndLand_label12 = 设定垂直速度: <<1>> m/s
#MechJeb_ApproAndLand_label13 = 设定航向: <<1>>º
#MechJeb_ApproAndLand_approachState1 = 向 起始进近点 进发
#MechJeb_ApproAndLand_approachState2 = 向 最后进近点 进发
#MechJeb_ApproAndLand_approachState3 = 截获下滑道中
#MechJeb_ApproAndLand_approachState4 = 向 接地点 进发
#MechJeb_ApproAndLand_approachState5 = 等待抬头
#MechJeb_ApproAndLand_approachState6 = 抬头中
#MechJeb_ApproAndLand_approachState7 = 滑行
#MechJeb_ApproAndLan_button1 = 自动着陆
#MechJeb_ApproAndLan_button2 = 终止
//Aircraft Autopilot
#MechJeb_Aircraftauto_title = 飞机自动驾驶仪
#MechJeb_Aircraftauto_button1 = 关闭自动驾驶
#MechJeb_Aircraftauto_button2 = 启用自动驾驶
#MechJeb_Aircraftauto_button3 = PID
#MechJeb_Aircraftauto_button4 = 隐藏PID
#MechJeb_Aircraftauto_Label1 = 高度保持
#MechJeb_Aircraftauto_btnset1 = 设置
#MechJeb_Aircraftauto_Label2 = 垂直速度保持
#MechJeb_Aircraftauto_btnset2 = 设置
#MechJeb_Aircraftauto_VS = V/S ±
#MechJeb_Aircraftauto_Label3 = 垂直速度限制
#MechJeb_Aircraftauto_btnset3 = 设置
#MechJeb_Aircraftauto_Label4 = 航向保持
#MechJeb_Aircraftauto_btnset4 = 设置
#MechJeb_Aircraftauto_Label5 = 角度保持
#MechJeb_Aircraftauto_btnset5 = 设置
#MechJeb_Aircraftauto_Label6 = 角度限制 ±
#MechJeb_Aircraftauto_btnset6 = 设置
#MechJeb_Aircraftauto_Label7 = 速度保持
#MechJeb_Aircraftauto_btnset7 = 设置
#MechJeb_Aircraftauto_Label8 = 加速度
#MecgJeb_Aircraftauto_error1 = 错误:<<1>> 目标:<<2>> 当前:<<3>>
#MecgJeb_Aircraftauto_error2 = 错误:<<1>> 目标:<<2>> 当前:<<3>> PID: <<4>>
#MechJeb_Aircraftauto_Label10 = 滚转角
#MechJeb_Aircraftauto_Pitch = Pitch
#MechJeb_Aircraftauto_Limits = Limits:
#MechJeb_Aircraftauto_RollLimit = Roll
#MechJeb_Aircraftauto_YawLimit = Yaw
#MechJeb_Aircraftauto_PitchUpLimit = Pitch up
#MechJeb_Aircraftauto_PitchDownLimit = Pitch down
//Ascent Guidance
#MechJeb_Ascent_title = 自动发射
#MechJeb_Ascent_ascentPathList1 = 经典的上升配置
#MechJeb_Ascent_ascentPathList2 = Stock-style GravityTurn™
#MechJeb_Ascent_ascentPathList3 = Primer Vector Guidance (RSS/RO)
#MechJeb_Ascent_status1 = 准备发射
#MechJeb_Ascent_status2 = 关闭
#MechJeb_Ascent_status3 = 准备发射
#MechJeb_Ascent_status4 = 飞船没有着陆,跳过准备发射
#MechJeb_Ascent_status5 = 缩回太阳能电池板
#MechJeb_Ascent_status6 = 等待点火
#MechJeb_Ascent_status7 = 圆化轨道
#MechJeb_Ascent_status8 = 滑行到圆化轨道执行点
#MechJeb_Ascent_status18 = 垂直上升
#MechJeb_Ascent_status19 = 微调中间高度
#MechJeb_Ascent_status20 = 启用重力转向
#MechJeb_Ascent_status21 = 微调远拱点
#MechJeb_Ascent_status22 = 重力转向
#MechJeb_Ascent_status23 = 滑行到大气层边缘
#MechJeb_Ascent_status24 = 保持远点
#MechJeb_NavBallGuidance_btn1 = 隐藏发射路径
#MechJeb_NavBallGuidance_btn2 = 显示发射路径
#MechJeb_Ascent_button1 = 脱离自动驾驶
#MechJeb_Ascent_button2 = 自动驾驶
#MechJeb_Ascent_button3 = 重置导航(千万不要按)
#MechJeb_Ascent_button4 = 目标
#MechJeb_Ascent_button5 = 导航
#MechJeb_Ascent_button6 = 选项
#MechJeb_Ascent_button7 = 状态
#MechJeb_Ascent_button8 = 目标
#MechJeb_Ascent_button9 = 导航
#MechJeb_Ascent_button10 = 选项
#MechJeb_Ascent_button11 = 目标
#MechJeb_Ascent_button12 = 选项
#MechJeb_Ascent_button13 = 当前
#MechJeb_Ascent_button14 = 发射至目标:
#MechJeb_Ascent_button15 = 发射至目标轨道面
#MechJeb_Ascent_button16 = 在窗口期发射
#MechJeb_Ascent_button17 = 终止
#MechJeb_Ascent_label1 = 目标近拱点:
#MechJeb_Ascent_label2 = 目标远拱点:
#MechJeb_Ascent_label3 = Ap < Pe: 圆化轨道
#MechJeb_Ascent_label4 = 双曲线目标轨道 (无远点)
#MechJeb_Ascent_label5 = 轨道高度
#MechJeb_Ascent_label6 = 轨道倾角
#MechJeb_Ascent_label7 = 倾角 <<1>>º 低于当前纬度
#MechJeb_Ascent_label8 = 转向开始高度:
#MechJeb_Ascent_label9 = 转向开始速度:
#MechJeb_Ascent_label10 = 转向开始俯仰角:
#MechJeb_Ascent_label11 = 中等海拔高度:
#MechJeb_Ascent_label12 = 保持远拱点时间:
#MechJeb_Ascent_label13 = 助推器开始俯仰角:
#MechJeb_Ascent_label14 = 助推器俯仰率:
#MechJeb_Ascent_label15 = 制导间隔:
#MechJeb_Ascent_label16 = 制导间隔被限制在1到30秒之间
#MechJeb_Ascent_label17 = Qα 限制
#MechJeb_Ascent_label18 = Qα 限制不能低于100 Pa-rad
#MechJeb_Ascent_label19 = Qα 限制不能高于10000 Pa-rad
#MechJeb_Ascent_label20 = Qα 限制建议设置为 1000到4000 Pa-rad
#MechJeb_Ascent_label21 = FIXME: g-limiter正在进行维护
#MechJeb_Ascent_label22 = 爬升
#MechJeb_Ascent_label23 = 转向
#MechJeb_Ascent_label24 = 动压衰减
#MechJeb_Ascent_label25 = Gain
#MechJeb_Ascent_label26 = 发射状态:
#MechJeb_Ascent_label27 = 收敛:\u0020
#MechJeb_Ascent_label28 = 状态:\u0020
#MechJeb_Ascent_label29 = 延迟:
#MechJeb_Ascent_label30 = 上次失败:
#MechJeb_Ascent_label31 = 质量下降了
#MechJeb_Ascent_label32 = 推力下降了
#MechJeb_Ascent_label33 = 发射倒计时:
#MechJeb_Ascent_label34 = 选择目标进行定时发射.
#MechJeb_Ascent_label35 = 自动驾驶状态:
#MechJeb_Ascent_label36 = 控制停用(航空电子设备)
#MechJeb_Ascent_label37 = 警告:跟踪站没有升级,MechJeb无法进行圆轨操作.
#MechJeb_Ascent_attachAlt = Attach Altitude:
#MechJeb_Ascent_warnAttachAltLow = Attach < Pe: periapsis insertion
#MechJeb_Ascent_warnAttachAltHigh = Attach > Ap: apoapsis insertion
#MechJeb_Ascent_checkbox1 = 忽略滑行
#MechJeb_Ascent_checkbox2 = 角度调整
#MechJeb_Ascent_checkbox3 = 迎角限制
#MechJeb_Ascent_checkbox4 = 自动纠正航线
#MechJeb_Ascent_checkbox5 = 自动分级
#MechJeb_Ascent_checkbox6 = 自动展开太阳能电池板
#MechJeb_Ascent_checkbox7 = 自动展开天线
#MechJeb_Ascent_checkbox8 = 自动加速
#MechJeb_Ascent_checkbox9 = 跳过圆轨
#MechJeb_Ascent_checkbox10 = 编辑发射轨迹
#MechJeb_Ascent_msg1 = 在星际间转移窗口期发射
#MechJeb_Ascent_msg2 = 发射到目标轨道平面
#MechJeb_Ascent_msg3 = 发射到目标
//Attitude Adjustment
///CoM->Center of Mass CoL->Center of lift CoT->Center of thrust
#MechJeb_AttitudeAdjust_title = 姿态调整
#MechJeb_AttitudeAdjust_checkbox1 = RCS自动模式
#MechJeb_AttitudeAdjust_checkbox2 = MJ姿态控制器
#MechJeb_AttitudeAdjust_checkbox3 = Kos姿态控制器
#MechJeb_AttitudeAdjust_checkbox4 = 混合控制器
#MechJeb_AttitudeAdjust_checkbox5 = 显示数值
#MechJeb_AttitudeAdjust_checkbox6 = 箭头可穿过物体
#MechJeb_AttitudeAdjust_checkbox7 = 显示重心
#MechJeb_AttitudeAdjust_checkbox8 = 显示升力中心
#MechJeb_AttitudeAdjust_checkbox9 = 显示推力中心
#MechJeb_AttitudeAdjust_checkbox10 = 箭头始点过重心
#MechJeb_AttitudeAdjust_checkbox11 = 地面速度方向 (绿色)
#MechJeb_AttitudeAdjust_checkbox12 = 轨道速度方向 (红色)
#MechJeb_AttitudeAdjust_checkbox13 = 推力方向 (紫粉色)
#MechJeb_AttitudeAdjust_checkbox14 = 前进方向 (铁蓝色)
#MechJeb_AttitudeAdjust_checkbox15 = 姿态(灰色)
#MechJeb_AttitudeAdjust_checkbox16 = Debug (品红色)
#MechJeb_AttitudeAdjust_checkbox17 = Debug2 (浅蓝色)
#MechJeb_AttitudeAdjust_Label1 = 轴控制\u0020
#MechJeb_AttitudeAdjust_Label2 = 扭矩
#MechJeb_AttitudeAdjust_Label3 = 扭矩速度
#MechJeb_AttitudeAdjust_Label4 = 转动惯量 / 扭矩
#MechJeb_AttitudeAdjust_Label5 = 转动惯量
#MechJeb_AttitudeAdjust_Label6 = 角速度
#MechJeb_AttitudeAdjust_Label7 = 角动量
#MechJeb_AttitudeAdjust_Label8 = 修正Delta时间
#MechJeb_AttitudeAdjust_Label9 = 箭头长度
#MechJeb_AttitudeAdjust_Label10 = 球半径
//Custom Window Editor
#MechJeb_WindowEd_title = 自定义窗口编辑器
#MechJeb_WindowEd_Edtitle = 标题:
#MechJeb_WindowEd_Presetname1 = 轨道信息
#MechJeb_WindowEd_Presetname2 = 地面信息
#MechJeb_WindowEd_Presetname3 = 载具信息
#MechJeb_WindowEd_Presetname4 = Delta-V 状态
#MechJeb_WindowEd_Presetname5 = 发射状态
#MechJeb_WindowEd_Presetname6 = 交会信息
#MechJeb_WindowEd_Presetname7 = 着陆信息
#MechJeb_WindowEd_Presetname8 = 目标轨道信息
#MechJeb_WindowEd_Presetname9 = 秒表
#MechJeb_WindowEd_Presetname10 = 地表导航
#MechJeb_WindowEd_Presetname11 = 大气信息
#MechJeb_WindowEd_Presetname12 = 机动节点信息
#MechJeb_WindowEd_button1 = 新建窗口
#MechJeb_WindowEd_button2 = 删除窗口
#MechJeb_WindowEd_button3 = 移除
#MechJeb_WindowEd_button4 = 向上移动
#MechJeb_WindowEd_button5 = 向下移动
#MechJeb_WindowEd_label1 = 显示在:
#MechJeb_WindowEd_label2 = 颜色:
#MechJeb_WindowEd_label3 = 窗口内容(点击编辑):
#MechJeb_WindowEd_label4 = 点击项目以添加至信息窗口:
#MechJeb_WindowEd_label5 = 预置窗口:
#MechJeb_WindowEd_checkbox1 = 飞行界面
#MechJeb_WindowEd_checkbox2 = 建造大楼
#MechJeb_WindowEd_checkbox3 = 叠加
#MechJeb_WindowEd_checkbox4 = 锁定
#MechJeb_WindowEd_checkbox5 = 精简
#MechJeb_WindowEd_checkbox6 = 文本
#MechJeb_WindowEd_checkbox7 = 背景
#MechJeb_WindowEd_CustomInfoWindow_title = 自定义信息窗口
#MechJeb_WindowEd_CustomInfoWindow_Label1 = 使用自定义窗口编辑器将项添加到此窗口.
#MechJeb_WindowEd_CustomInfoWindow_Scrmsg = 将 <<1>> 窗口的配置复制到剪贴板
#MechJeb_WindowEd_CustomInfoWindow_Scrmsg2 = 粘贴文本格式错误.
//Docking Autopilot
#MechJeb_Docking_title = 自动对接
#MechJeb_Docking_status1 = 在向目标方向移动前以<<1>>m/s的速度后退(lat: <<2>> m/s)
#MechJeb_Docking_status2 = 以<<1>> m/s的速度离开对接轴,以避免后退时击中目标
#MechJeb_Docking_status3 = 以小于<<1>> m/s的速度移动到目标的正确一侧.(lat: <<2>> m/s)
#MechJeb_Docking_status4 = 以<<1>> m/s后退
#MechJeb_Docking_status5 = 以<<1>> m/s的速度向起始点移动.
#MechJeb_Docking_status6 = 以<<1>> / <<2>> m/s前进到对接口。
#MechJeb_Docking_label1 = 选择一个目标来进行对接
#MechJeb_Docking_label2 = 警告:你需要以对接口来控制船. 右键单击一个对接口并选择"基于此处控制"
#MechJeb_Docking_label3 = 警告: 所选目标不是对接口. 右键单击此目标的对接口然后选择"设置为目标"
#MechJeb_Docking_label4 = 警告:该船只不受对接节点的控制. 右键单击一个对接节点并选择"基于此处控制"
#MechJeb_Docking_label5 = 速度限制
#MechJeb_Docking_label6 = 起始距离
#MechJeb_Docking_label7 = 安全距离 <<1>>
#MechJeb_Docking_label8 = 目标大小 <<1>>
#MechJeb_Docking_label9 = 状态: <<1>>
#MechJeb_Docking_label10 = 误差X: <<1>>
#MechJeb_Docking_label11 = 误差Y: <<1>>
#MechJeb_Docking_label12 = 误差Z: <<1>>
#MechJeb_Docking_label13 = 距离对接口: <<1>>
#MechJeb_Docking_label14 = 距离对接轴: <<1>>
#MechJeb_Docking_button = 转储飞船边界框信息
#MechJeb_Docking_checkbox1 = 启动自动驾驶
#MechJeb_Docking_checkbox2 = 覆盖安全距离
#MechJeb_Docking_checkbox3 = 安全距离
#MechJeb_Docking_checkbox4 = 覆盖起始距离
#MechJeb_Docking_checkbox5 = 绘制飞船边界框
#MechJeb_Docking_checkbox6 = 角度调整:
//Flight Recorder
#MechJeb_Flightrecord_title = 飞行记录仪
#MechJeb_Flightrecord_Button1_1 = 恢复
#MechJeb_Flightrecord_Button1_2 = 暂停
#MechJeb_Flightrecord_Button2_1 = 下行距离
#MechJeb_Flightrecord_Button2_2 = 时间
#MechJeb_Flightrecord_Button3 = Mark
#MechJeb_Flightrecord_Button4 = 重置比例
#MechJeb_Flightrecord_Button5 = CSV
#MechJeb_Flightrecord_checkbox1 = 自动调整
#MechJeb_Flightrecord_checkbox2 = 真实动力
#MechJeb_Flightrecord_checkbox3 = 分级
#MechJeb_Flightrecord_checkbox4 = 高度
#MechJeb_Flightrecord_checkbox5 = 实际高度
#MechJeb_Flightrecord_checkbox6 = 加速度
#MechJeb_Flightrecord_checkbox7 = 地表速度
#MechJeb_Flightrecord_checkbox8 = 轨道速度
#MechJeb_Flightrecord_checkbox9 = 质量
#MechJeb_Flightrecord_checkbox10 = 动压
#MechJeb_Flightrecord_checkbox11 = 攻角
#MechJeb_Flightrecord_checkbox12 = 侧滑角
#MechJeb_Flightrecord_checkbox13 = 俯角
#MechJeb_Flightrecord_checkbox14 = 俯仰角
#MechJeb_Flightrecord_checkbox15 = 重力损耗
#MechJeb_Flightrecord_checkbox16 = 阻力损耗
#MechJeb_Flightrecord_checkbox17 = 转向损耗
#MechJeb_Flightrecord_checkbox18 = 海平面高度
#MechJeb_Flightrecord_checkbox19 = 地平面高度
#MechJeb_Flightrecord_checkbox20 = Acc
#MechJeb_Flightrecord_checkbox21 = 地面速度
#MechJeb_Flightrecord_checkbox22 = 轨道速度
#MechJeb_Flightrecord_checkbox23 = 质量
#MechJeb_Flightrecord_checkbox24 = 动压
#MechJeb_Flightrecord_checkbox25 = 攻角
#MechJeb_Flightrecord_checkbox26 = 侧滑角
#MechJeb_Flightrecord_checkbox27 = 俯角
#MechJeb_Flightrecord_checkbox28 = 俯仰角
#MechJeb_Flightrecord_checkbox29 = 重力损耗
#MechJeb_Flightrecord_checkbox30 = 阻力损耗
#MechJeb_Flightrecord_checkbox31 = 转向损耗
#MechJeb_Flightrecord_Label1 = 时间 <<1>>
#MechJeb_Flightrecord_Label2 = 下行距离 <<1>>
#MechJeb_Flightrecord_Label3 = 存储: <<1>> %
//Maneuver Node Editor
#MechJeb_NodeEd_title = 机动节点编辑
#MechJeb_NodeEd_Snap1 = 近拱点
#MechJeb_NodeEd_Snap2 = 远拱点
#MechJeb_NodeEd_Snap3 = 与目标的升交点
#MechJeb_NodeEd_Snap4 = 与目标的降交点
#MechJeb_NodeEd_Snap5 = 赤道升交点
#MechJeb_NodeEd_Snap6 = 赤道降交点
#MechJeb_NodeEd_Label1 = 没有可编辑的机动节点
#MechJeb_NodeEd_Label2 = 顺向:
#MechJeb_NodeEd_Label3 = 径向+:
#MechJeb_NodeEd_Label4 = 法向+:
#MechJeb_NodeEd_Label5 = 设置增量为:
#MechJeb_NodeEd_Label6 = 位移时间
#MechJeb_NodeEd_Label7 = 容差:
#MechJeb_NodeEd_Label8 = 二次曲线模式:
#MechJeb_NodeEd_Label9 = 当前模式: <<1>>
#MechJeb_NodeEd_button1 = 合并下一个节点
#MechJeb_NodeEd_button2 = 更新
#MechJeb_NodeEd_button3 = 对齐节点到
#MechJeb_NodeEd_button4 = 执行下一个节点
#MechJeb_NodeEd_button5 = 执行全部节点
#MechJeb_NodeEd_button6 = 中止节点执行
#MechJeb_NodeEd_button7 = 执行下一个Principia节点
#MechJeb_NodeEd_checkbox1 = 自动加速
//RCS Balancer
#MechJeb_RCSBalancer_title = RCS平衡器
#MechJeb_RCSBalancer_label1 = 超频
#MechJeb_RCSBalancer_label2 = 超频可以增加RCS推力,但是更耗费燃料.
#MechJeb_RCSBalancer_label3 = 超频比例
#MechJeb_RCSBalancer_label4 = 扭矩系数
#MechJeb_RCSBalancer_label5 = 平动系数
#MechJeb_RCSBalancer_label6 = Waste factor
#MechJeb_RCSBalancer_checkbox1 = 智能算法
#MechJeb_RCSBalancer_checkbox2 = 高级选项
//Rendezvous Autopilot
#MechJeb_RZauto_title = 自动交会
#MechJeb_RZauto_label1 = 选择要与之交会的目标
#MechJeb_RZauto_label2 = 交会目标必须处在同一引力范围内.
#MechJeb_RZauto_label3 = 交会目标
#MechJeb_RZauto_label4 = 交会距离:
#MechJeb_RZauto_label5 = 相位轨道最大个数:
#MechJeb_RZauto_label6 = 相位轨道的最大值必须至少为5个.
#MechJeb_RZauto_label7 = 状态: <<1>>
#MechJeb_RZauto_checkbox1 = 自动加速
#MechJeb_RZauto_button1 = 自动驾驶
#MechJeb_RZauto_button2 = 取消自动
#MechJeb_RZauto_statu1 = 成功对接
#MechJeb_RZauto_statu2 = <<1>>m内: 匹配速度中.
#MechJeb_RZauto_statu3 = 准备在最接近目标时匹配速度.
#MechJeb_RZauto_statu4 = 接近目标:绘制交会轨道
#MechJeb_RZauto_statu5 = 交会作业.计划在最接近目标时匹配速度.
#MechJeb_RZauto_statu6 = 计划<<1>>个相位轨道后进行霍曼转移交会.
#MechJeb_RZauto_statu7 = 下一个交会窗口将在 <<1>>个轨道外,超过了<<2>>个相位轨道的最大值. 通过在<<3>>m建立新的相位轨道来增加相位率
#MechJeb_RZauto_statu8 = 圆轨中.
#MechJeb_RZauto_statu9 = 匹配轨道中.
//Rendezvous Planner
#MechJeb_RZplan_title = 交会规划
#MechJeb_RZplan_button1 = 对齐轨道
#MechJeb_RZplan_button2 = 建立新的轨道在
#MechJeb_RZplan_button3 = 使用霍曼转移至目标
#MechJeb_RZplan_button4 = 在最接近点匹配速度
#MechJeb_RZplan_button5 = 再靠近一点
#MechJeb_RZplan_button6 = 执行下一个节点
#MechJeb_RZplan_button7 = 执行所有节点
#MechJeb_RZplan_button8 = 中止节点执行
#MechJeb_RZplan_button9 = 移除所有节点
#MechJeb_RZplan_checkbox = 自动加速
#MechJeb_RZplan_label1 = 选择一个目标来交会.
#MechJeb_RZplan_label2 = 选定的交会目标必须在同一引力范围内.
#MechJeb_RZplan_label3 = 交会目标
#MechJeb_RZplan_label4 = 目标轨道
#MechJeb_RZplan_label5 = 当前轨道
#MechJeb_RZplan_label6 = 相对轨道倾角
#MechJeb_RZplan_label7 = 到达最接近点剩余时间
#MechJeb_RZplan_label8 = 最接近点的距离
#MechJeb_RZplan_label9 = 容差:
//Rover Autopilot
#MechJeb_Rover_title = 车辆自动驾驶
#MechJeb_Rover_label1 = 目标速度
#MechJeb_Rover_label2 = 导航点
#MechJeb_Rover_button1 = 驶向目标
#MechJeb_Rover_button2 = 添加目标
#MechJeb_Rover_button3 = 行驶
#MechJeb_Rover_button4 = 停止
#MechJeb_Rover_button5 = 导航点
//Waypoint Help
#MechJeb_Waypointhelper_title = 导航点帮助
//Scripting Module
#MechJeb_ScriptMod_title = 脚本模块
#MechJeb_ScriptMod_label1 = 热身准备中. 请等待... <<1>> s
#MechJeb_ScriptMod_label2 = 当前飞船
#MechJeb_ScriptMod_label3 = 全局脚本
#MechJeb_ScriptMod_label4 = 添加操作
#MechJeb_ScriptMod_label5 = 程序深度限制为4
#MechJeb_ScriptMod_button1 = ▶ 开始
#MechJeb_ScriptMod_button2 = ☇ 重置
#MechJeb_ScriptMod_button3 = ■ 停止
#MechJeb_ScriptMod_button4 = ▼ 完整模式
#MechJeb_ScriptMod_button5 = △ 精简模式
#MechJeb_ScriptMod_button6 = 清楚所有
#MechJeb_ScriptMod_button7 = 保存
#MechJeb_ScriptMod_button8 = 载入
#MechJeb_ScriptMod_checkbox1 = 隐藏添加动作
#MechJeb_ScriptMod_actions1 = Time
#MechJeb_ScriptMod_actions1_1 = 计时器
#MechJeb_ScriptMod_actions1_2 = 暂停
#MechJeb_ScriptMod_actions1_3 = 等待至
#MechJeb_ScriptMod_actions1_4 = 时间加速
#MechJeb_ScriptMod_actions2 = 对接
#MechJeb_ScriptMod_actions2_1 = 分离
#MechJeb_ScriptMod_actions2_2 = 对接保护
#MechJeb_ScriptMod_actions2_3 = 目标对接口
#MechJeb_ScriptMod_actions3 = 目标
#MechJeb_ScriptMod_actions3_1 = 目标对接口
#MechJeb_ScriptMod_actions3_2 = 目标天体
#MechJeb_ScriptMod_actions4 = 控制
#MechJeb_ScriptMod_actions4_1 = 控制从
#MechJeb_ScriptMod_actions4_2 = RCS
#MechJeb_ScriptMod_actions4_3 = SAS
#MechJeb_ScriptMod_actions4_4 = 切换载具
#MechJeb_ScriptMod_actions5 = 乘员
#MechJeb_ScriptMod_actions5_1 = 乘员转移
#MechJeb_ScriptMod_actions6 = 轨迹
#MechJeb_ScriptMod_actions6_1 = 节点
#MechJeb_ScriptMod_actions6_2 = 执行节点
#MechJeb_ScriptMod_actions7 = 进级/引擎
#MechJeb_ScriptMod_actions7_1 = 分级
#MechJeb_ScriptMod_actions7_2 = 启动引擎
#MechJeb_ScriptMod_actions8 = 设置
#MechJeb_ScriptMod_actions8_1 = 动作误差
#MechJeb_ScriptMod_actions9 = 模块
#MechJeb_ScriptMod_actions9_1 = 模块 智能A.S.S.
#MechJeb_ScriptMod_actions9_2 = 模块 自动发射
#MechJeb_ScriptMod_actions9_3 = 模块 自动对接
#MechJeb_ScriptMod_actions9_4 = 模块 自动着陆
#MechJeb_ScriptMod_actions9_5 = 模块 交会
#MechJeb_ScriptMod_actions9_6 = 模块 自动交会
#MechJeb_ScriptMod_actions10 = 保存/载入/执行
#MechJeb_ScriptMod_actions10_1 = 快速保存
#MechJeb_ScriptMod_actions10_2 = 载入脚本
#MechJeb_ScriptMod_actions10_3 = 动作组
#MechJeb_ScriptMod_actions11 = PROGRAM逻辑
#MechJeb_ScriptMod_actions11_1 = PROGRAM - 重复
#MechJeb_ScriptMod_actions11_2 = PROGRAM - 如果
#MechJeb_ScriptMod_actions11_3 = PROGRAM - 当
#MechJeb_ScriptMod_actions11_4 = PROGRAM - 并行
#MechJeb_ScriptMod_actions11_5 = 待机
#MechJeb_ScriptMod_actions12 = 插件
//Settings
#MechJeb_Settings_title = 设置
#MechJeb_Settings_label1 = 当前皮肤: <<1>>
#MechJeb_Settings_label2 = UI比例:
#MechJeb_Settings_checkbox1 = 用箭头替换下拉菜单
#MechJeb_Settings_checkbox2 = 加速时激活SAS
#MechJeb_Settings_button1 = \n恢复出厂默认设置\n
#MechJeb_Settings_button2 = 使用MechJeb界面皮肤1
#MechJeb_Settings_button3 = 使用MechJeb界面皮肤2
#MechJeb_Settings_button4 = 使用MJ2紧凑型界面皮肤
//Smart A.S.S. or Smart A.C.S.
#MechJeb_SmartASS_title = 智能姿态控制
#MechJeb_SmartACS_title = 智能姿态控制
#MechJeb_SmartASS_button1 = 轨道
#MechJeb_SmartASS_button2 = 地面
#MechJeb_SmartASS_button3 = 目标
#MechJeb_SmartASS_button4 = 高级
#MechJeb_SmartASS_button5 = 自动
#MechJeb_SmartASS_button6 = 轨道
#MechJeb_SmartASS_button7 = 地面
#MechJeb_SmartASS_button8 = 目标
#MechJeb_SmartASS_button9 = 高级
#MechJeb_SmartASS_button10 = 自动
#MechJeb_SmartASS_button11 = 关闭
#MechJeb_SmartASS_button12 = 姿态\n稳定
#MechJeb_SmartASS_button13 = 节点
#MechJeb_SmartASS_button14 = 地面
#MechJeb_SmartASS_button15 = 顺向
#MechJeb_SmartASS_button16 = 逆向
#MechJeb_SmartASS_button17 = 法向\n上
#MechJeb_SmartASS_button18 = 法向\n下
#MechJeb_SmartASS_button19 = 径向\n外
#MechJeb_SmartASS_button20 = 径向\n内
#MechJeb_SmartASS_button21 = 相对\n正速
#MechJeb_SmartASS_button22 = 相对\n反速
#MechJeb_SmartASS_button23 = 目标\n正向
#MechJeb_SmartASS_button24 = 目标\n反向
#MechJeb_SmartASS_button25 = 正向\n轨道
#MechJeb_SmartASS_button26 = 反向\n轨道
#MechJeb_SmartASS_button27 = 高级
#MechJeb_SmartASS_button28 = 自动
#MechJeb_SmartASS_button29 = 地速\n顺向
#MechJeb_SmartASS_button30 = 地速\n反向
#MechJeb_SmartASS_button31 = 水平速度\n顺向
#MechJeb_SmartASS_button32 = 水平速度\n反向
#MechJeb_SmartASS_button33 = 上
#MechJeb_SmartASS_button34 = 关
#MechJeb_SmartASS_button35 = 姿态稳定
#MechJeb_SmartASS_button36 = 接地那
#MechJeb_SmartASS_button37 = 地面
#MechJeb_SmartASS_button38 = 顺向
#MechJeb_SmartASS_button39 = 逆向
#MechJeb_SmartASS_button40 = 正法向
#MechJeb_SmartASS_button41 = 反法向
#MechJeb_SmartASS_button42 = 径向向外
#MechJeb_SmartASS_button43 = 径向向内
#MechJeb_SmartASS_button44 = 相对速度+
#MechJeb_SmartASS_button45 = 相对速度-
#MechJeb_SmartASS_button46 = 目标+
#MechJeb_SmartASS_button47 = 目标-
#MechJeb_SmartASS_button48 = 正轨道平面
#MechJeb_SmartASS_button49 = 反轨道平面
#MechJeb_SmartASS_button50 = 高级
#MechJeb_SmartASS_button51 = 自动
#MechJeb_SmartASS_button52 = 地面速度+
#MechJeb_SmartASS_button53 = 地面速度-
#MechJeb_SmartASS_button54 = 水平速度+
#MechJeb_SmartASS_button55 = 水平速度-
#MechJeb_SmartASS_button56 = 上
#MechJeb_SmartASS_button57 = 自动
#MechJeb_SmartASS_button58 = 执行
#MechJeb_SmartASS_label1 = 模式:
#MechJeb_SmartASS_label2 = 请选择一个目标
#MechJeb_SmartASS_label3 = 参考:
#MechJeb_SmartASS_label4 = 方向:
#MechJeb_SmartASS_checkbox1 = 自动关闭智能姿态控制
#MechJeb_SmartASS_checkbox2 = 自动关闭智能姿态控制
#MechJeb_SmartASS_checkbox3 = 角度调整 :
//SmartRcs
#MechJeb_SmartRcs_title = 智能RCS
#MechJeb_SmartRcs_button1 = 关
#MechJeb_SmartRcs_button2 = 消除相对速度
#MechJeb_SmartRcs_button3 = 自动
#MechJeb_SmartRcs_label1 = 选择一个目标
#MechJeb_SmartRcs_checkbox1 = 自动关闭智能RCS
#MechJeb_SmartRcs_checkbox2 = 引擎关闭时使用RCS
#MechJeb_SmartRcs_checkbox3 = 使用RCS进行旋转
//Landing Guidance
#MechJeb_LandingGuidance_title = 自动着陆
#MechJeb_LandingGuidance_label1 = 目标点坐标
#MechJeb_LandingGuidance_label2 = 自动驾驶:
#MechJeb_LandingGuidance_label3 = 着陆速度:
#MechJeb_LandingGuidance_label4 = 分级限制:
#MechJeb_LandingGuidance_label5 = 分级限制:
#MechJeb_LandingGuidance_label6 = 当前状态:
#MechJeb_LandingGuidance_label7 = 步骤:
#MechJeb_LandingGuidance_label8 = 模式
#MechJeb_LandingGuidance_label9 = 着陆点预测:
#MechJeb_LandingGuidance_Label10 = 目标点距离 =
#MechJeb_LandingGuidance_Label11 = \n最大阻力:
#MechJeb_LandingGuidance_Label12 = \n需要的Delta-v:
#MechJeb_LandingGuidance_Label13 = \n着陆时间:
#MechJeb_LandingGuidance_Label14 = 大气刹车后的预计轨道:
#MechJeb_LandingGuidance_Label15 = 双曲率,离心率 =
#MechJeb_LandingGuidance_Label16 = 最大阻力:<<1>> g
#MechJeb_LandingGuidance_Label17 = \n脱离大气:<<1>>
#MechJeb_LandingGuidance_Label18_1 = 轨道没有再入阶段:\n
#MechJeb_LandingGuidance_Label18_2 = m 大气高度
#MechJeb_LandingGuidance_Label18_3 = m 地面高度
#MechJeb_LandingGuidance_Label19 = 模拟再入超时.
#MechJeb_LandingGuidance_checkbox1 = 自动加速
#MechJeb_LandingGuidance_checkbox2 = 展开着陆架
#MechJeb_LandingGuidance_checkbox3 = 展开降落伞
#MechJeb_LandingGuidance_checkbox4 = 使用RCS微调
#MechJeb_LandingGuidance_checkbox5 = 显示预测着陆点
#MechJeb_LandingGuidance_checkbox6 = 显示大气刹车点
#MechJeb_LandingGuidance_checkbox7 = 显示轨迹
#MechJeb_LandingGuidance_checkbox8 = 全球轨迹
#MechJeb_LandingGuidance_checkbox9 = 相机轨迹(在做了)
#MechJeb_LandingGuidance_button1 = 输入坐标点:
#MechJeb_LandingGuidance_button2 = 在地面上选择坐标
#MechJeb_LandingGuidance_button3 = 终止自动着陆
#MechJeb_LandingGuidance_button4 = 降落在目标点
#MechJeb_LandingGuidance_button5 = 降落在任意点
#MechJeb_LandingGuidance_Status1 = 正在滑行至减速点
#MechJeb_LandingGuidance_Status2 = 航向修正 DV: <<1>> m/s
#MechJeb_LandingGuidance_Status3 = 正在进行约为 <<1>> m/s 的轨迹修正
#MechJeb_LandingGuidance_Status4 = Warping to start of braking burn.
#MechJeb_LandingGuidance_Status5 = 正在减速
#MechJeb_LandingGuidance_Status6 = 正在减速: 目标速度 = <<1>> m/s
#MechJeb_LandingGuidance_Status7 = Doing high deorbit burn
#MechJeb_LandingGuidance_Status8 = Moving to high deorbit burn point
#MechJeb_LandingGuidance_Status9 = 最终下降: 距离地面 <<1>>m
#MechJeb_LandingGuidance_Status10 = 在最终下降前消除水平速度
#MechJeb_LandingGuidance_Status11 = Executing low deorbit burn
#MechJeb_LandingGuidance_Status12 = Moving to low deorbit burn point
#MechJeb_LandingGuidance_Status13 = 离轨燃烧完成: 正在等待正确的时机减速
#MechJeb_LandingGuidance_Status14 = 正在改变轨道倾角,DV: <<1>> m/s
#MechJeb_LandingGuidance_Status15 = 正在移动至改变倾角点
#MechJeb_LandingGuidance_Status16 = 正在进行离轨燃烧.
//Translatron
#MechJeb_Translatron_title = 平动控制
#MechJeb_Translatron_off = 关闭
#MechJeb_Translatron_KEEP_OBT = 轨道\n保持
#MechJeb_Translatron_KEEP_SURF = 地面\n保持
#MechJeb_Translatron_KEEP_VERT = 速度\n保持
#MechJeb_Trans_kill_h = 消除水平速度
#MechJeb_Trans_spd = 速度
#MechJeb_Trans_auto = 自动
#MechJeb_Trans_spd_act = 执行
#MechJeb_Trans_current_spd = 当前速度
#MechJeb_Trans_NOPANIC = 不要慌!
#MechJeb_Trans_PANIC = 恐慌!!!
//Utilities
#MechJeb_Utilities_title = 实用工具
#MechJeb_Utilities_label1 = 自动分级 <<1>> 启动
#MechJeb_Utilities_label1_1 = 一次
#MechJeb_Utilities_label2 = 飞机安全裕度
#MechJeb_Utilities_label3 = 差速节流阀失灵\n需要安装更多的引擎
#MechJeb_Utilities_label4 = 差速节流阀失效\n没有激活的引擎
#MechJeb_Utilities_label5 = 差速节流阀失效\n没有解决方案
#MechJeb_Utilities_checkbox1 = 自动分级
#MechJeb_Utilities_checkbox2 = 平滑节流阀
#MechJeb_Utilities_checkbox3 = 设置进气道
#MechJeb_Utilities_button1 = 自动分级一次
//Warp helper
#MechJeb_WarpHelper_title = 加速助手
#MechJeb_WarpHelper_Combobox_text1 = 近拱点
#MechJeb_WarpHelper_Combobox_text2 = 远拱点
#MechJeb_WarpHelper_Combobox_text3 = 机动节点
#MechJeb_WarpHelper_Combobox_text4 = 引力范围过渡
#MechJeb_WarpHelper_Combobox_text5 = 时间
#MechJeb_WarpHelper_Combobox_text6 = 相位角
#MechJeb_WarpHelper_Combobox_text7 = 最佳点火时机
#MechJeb_WarpHelper_Combobox_text8 = 大气再入
#MechJeb_WarpHelper_label1 = 加速至:\u0020
#MechJeb_WarpHelper_label2 = 加速于:\u0020
#MechJeb_WarpHelper_label3 = 你需要选定一个目标
#MechJeb_WarpHelper_label4 = 相位角:
#MechJeb_WarpHelper_label5 = 预留时间:\u0020
#MechJeb_WarpHelper_label6 = 加速至\u0020
#MechJeb_WarpHelper_checkbox1 = 快速加速
#MechJeb_WarpHelper_scrmsg = MJ : 加速暂停-在加速助手菜单中恢复
#MechJeb_WarpHelper_button1 = 终止
#MechJeb_WarpHelper_button2 = 加速
#MechJeb_WarpHelper_button3 = 恢复MJ加速
#MechJeb_WarpHelper_button4 = 暂停MJ加速
//InfoItems
#MechJeb_InfoItems_label1 = 分级状态
#MechJeb_InfoItems_label2 = 目标相对角速度: (N/A)
#MechJeb_InfoItems_label3 = 目标相对角速度:
#MechJeb_InfoItems_label4 = 从目标分离: (N/A)
#MechJeb_InfoItems_label5 = 从目标分离:
#MechJeb_InfoItems_label6 = 行星相位角
#MechJeb_InfoItems_label7 = 卫星相位角
#MechJeb_InfoItems_button1 = 短统计
#MechJeb_InfoItems_button2 = 长统计
#MechJeb_InfoItems_button3 = 完整统计
#MechJeb_InfoItems_button4 = 自定义
#MechJeb_InfoItems_button5 = 实时海平面推重比
#MechJeb_InfoItems_button6 = 0海拔推力
#MechJeb_InfoItems_showEmpty = 显示所有分级
#MechJeb_InfoItems_hideEmpty = 隐藏空分级
#MechJeb_InfoItems_UnlimitedText = 无限制
#MechJeb_InfoItems_velocityNA = 目标相对速度: (N/A)
#MechJeb_InfoItems_velocity = 目标相对速度:
#MechJeb_InfoItems_CopytoClipboard = 复制 纬度/经度/海拔 至剪贴板
#MechJeb_InfoItems_VesselSituation1 = 飞越<<1>>
#MechJeb_InfoItems_VesselSituation2 = <<1>>的高层大气
#MechJeb_InfoItems_VesselSituation3 = <<1>>的近地太空
#MechJeb_InfoItems_VesselSituation4 = <<1>>的远地太空
#MechJeb_InfoItems_VesselSituation5 = 的地面上