-
Notifications
You must be signed in to change notification settings - Fork 0
/
dictionary.cfg
12040 lines (12040 loc) · 926 KB
/
dictionary.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
{
en-us
{
#autoLOC_18284 = Stability Assist
#autoLOC_18285 = Prograde/Retrograde Hold
#autoLOC_18286 = Radial, Normal Attitude Hold
#autoLOC_18287 = Maneuver Hold\nTarget Tracking
#autoLOC_18401 = Increase Resource Converter Efficiency
#autoLOC_18426 = Increase Drill Efficiency
#autoLOC_18451 = Engine power <<1>>%
#autoLOC_18491 = Run Experiments from EVA
#autoLOC_18516 = Fuel usage <<1>>%
#autoLOC_18556 = Full Vessel Control Without CommNet Access
#autoLOC_18586 = G-Force Tolerance Increase: <<1>>x
#autoLOC_18624 = Heat production <<1>>%
#autoLOC_18706 = Part Science Return: <<1>>%
#autoLOC_18738 = Repack Parachutes
#autoLOC_18739 = Repair Landing Legs
#autoLOC_18740 = Repair Wheels
#autoLOC_18766 = Provides repair skills:
#autoLOC_18818 = Reset Experiments
#autoLOC_18908 = Vessel Science Return: <<1>>%
#autoLOC_20803 = Джебедай Керман
#autoLOC_20811 = Білл Керман
#autoLOC_20819 = Боб Керман
#autoLOC_20827 = Валентина Керман
#autoLOC_21131 = <color=<<1>>>[Auto Crew Assignment]: <<2>> just became an intrepid astronaut. (Recruiting Cost: <<3>>)</color>
#autoLOC_21144 = <color=orange><b>Cannot hire any more Kerbals. Not Enough Funds!</b></color>
#autoLOC_21150 = <color=orange><b>Cannot hire any more Kerbals. Astronaut Complex Capacity Reached!</b></color>
#autoLOC_21195 = <color=orange><b><<1>>/<<2>> Kerbals assigned to <<3>>. All Kerbals are assigned.</b></color>
#autoLOC_111558 = <color=orange>This part is full.</color>
#autoLOC_111636 = <color=#b4d455><<1>> moved to <<2>></color>
#autoLOC_111934 = Can't exit. Module has no hatch.
#autoLOC_111971 = All hatches are obstructed, can't exit.
#autoLOC_111978 = Hatch is obstructed, can't exit.
#autoLOC_112387 = ПКД Паливо
#autoLOC_112486 = Безіменний Кербал
#autoLOC_114130 = [<<1>>]: Grab
#autoLOC_114293 = [<<1>>]: Climb Out
#autoLOC_114297 = [<<1>>]: Climb
#autoLOC_114358 = [<<1>>]: Board
#autoLOC_115662 = [<<1>>]: Let go
#autoLOC_115694 = [<<1>>]: Let go
#autoLOC_115948 = Cannot board a modules in this scenario.
#autoLOC_115954 = Cannot board a full module.
#autoLOC_116006 = Experiments you have collected cannot be stored on this <<1>>. Are you sure you want to continue?
#autoLOC_116007 = Cannot store Experiments
#autoLOC_116008 = Board Anyway\n(Dump Experiments)
#autoLOC_116009 = Cancel
#autoLOC_116092 = Cannot board a seat while not standing still
#autoLOC_117012 = CommNet Options
#autoLOC_117018 = Require Signal for Control
#autoLOC_117021 = Plasma Blackout
#autoLOC_117024 = Range Modifier
#autoLOC_117025 = Multiplier applied to antenna strengths.
#autoLOC_117028 = DSN Modifier
#autoLOC_117029 = Multiplier applied to the strength of the DSN.
#autoLOC_117032 = Occlusion Modifier, Vac
#autoLOC_117033 = Multiplier applied to the effective size of objects that can occlude antennas. Used for atmosphereless objects.
#autoLOC_117036 = Occlusion Modifier, Atm
#autoLOC_117037 = Multiplier applied to the effective size of objects that can occlude antennas. Used for objects with atmospheres.
#autoLOC_117040 = Enable Extra Groundstations
#autoLOC_118264 = CommNet Visualization set to <<1>>
#autoLOC_118530 = CommNet Visualization set to <<1>>
#autoLOC_118554 = CommNet Visualization set to <<1>>
#autoLOC_118898 = Min. Pilots on Vessel: <<1>>
#autoLOC_118899 = \nMultihop Capable
#autoLOC_118968 = Relay enabled for all antennas.\n<<1>>
#autoLOC_121427 = No Signal
#autoLOC_121428 = No Signal (in plasma)
#autoLOC_121429 = No Signal (no control)
#autoLOC_121438 = Signal Strength: <<1>>
#autoLOC_121442 = \nSituational Modifier: <<1>>
#autoLOC_121470 = Not Connected
#autoLOC_123938 = Auto-Saved Ship
#autoLOC_124050 = Cannot be the first part on a vessel
#autoLOC_125058 = Select a set of two or more parts to Re-root
#autoLOC_125079 = Select a part as the new root
#autoLOC_125488 = Select an attached part to Offset
#autoLOC_125583 = Select a part to Rotate
#autoLOC_125724 = <color=orange>Cannot use the Root tool on a single part.</color>
#autoLOC_125784 = <color=orange>No other valid parts to attach by in the current selection</color>
#autoLOC_125798 = Select a part to Place
#autoLOC_127810 = New Craft
#autoLOC_127865 = <<1>> already exists. Do you want to overwrite it?
#autoLOC_127866 = Confirm File Overwrite
#autoLOC_127867 = <color=orange>Overwrite</color>
#autoLOC_127918 = Покинути <<1>>?
#autoLOC_127973 = Load Craft
#autoLOC_127975 = Зберегти та Продовжити
#autoLOC_127984 = Назад
#autoLOC_127985 = <color=orange>Не зберігати</color>
#autoLOC_129949 = Do you wish to overwrite this subassembly?
#autoLOC_129950 = Видалити
#autoLOC_129951 = Cancel
#autoLOC_129960 = Confirm Delete
#autoLOC_133305 = <b><color=orange>Data transfer blocked by other dialogs.</color></b>
#autoLOC_133393 = Vessel is destroyed. Cannot Autosave at this point.
#autoLOC_133397 = Autosaving...
#autoLOC_133776 = Camera: <<1>>
#autoLOC_135142 = Mission Aborted
#autoLOC_135143 = Catastrophic Failure!
#autoLOC_135144 = Success!!
#autoLOC_135145 = Successful Failure
#autoLOC_135218 = Flight Status: <<1>>
#autoLOC_135285 = Total Mission Time: \n\t<<1>>.\n
#autoLOC_135287 = Highest Altitude Achieved:\n\t<<1>>m\n
#autoLOC_135288 = Highest Speed Achieved:\n\t<<1>>m/s\n
#autoLOC_135289 = Highest Speed Over Land:\n\t<<1>>m/s\n
#autoLOC_135291 = Ground Distance Covered:\n\t<<1>>m\n
#autoLOC_135292 = Total Distance Traveled:\n\t<<1>>m\n
#autoLOC_135294 = Most Gee Force Endured:\n\t<<1>>G\n
#autoLOC_135304 = Structural failure on linkage between <<1>> and <<2>>.
#autoLOC_135311 = <<1>> crashed into <<2>>.
#autoLOC_135318 = <<1>> splashed down hard and was destroyed.
#autoLOC_135325 = <<1>> collided into <<2>>.
#autoLOC_135332 = <<1>> exploded due to overheating: <<2>>
#autoLOC_135339 = <<1>> crushed due to overpressure: <<2>>
#autoLOC_135346 = <<1>> broke apart due to g forces: <<2>>
#autoLOC_135351 = Separation of stage <<1>> confirmed
#autoLOC_135358 = <<1>> from <<2>> went on EVA.
#autoLOC_135363 = <<1>> went on EVA from out of nowhere.
#autoLOC_135371 = <<1>> was killed.
#autoLOC_135376 = <<1>> boarded <<2>> on <<3>>.
#autoLOC_135384 = Liftoff!!
#autoLOC_135389 = <<1>> has undocked from <<2>>.
#autoLOC_135394 = <<1>> was heated by engine exhaust from <<2>>.
#autoLOC_135586 = Outcome: <<1>>
#autoLOC_135635 = an unidentified object
#autoLOC_135636 = an unidentified object
#autoLOC_135685 = Temperature Gauges:
#autoLOC_135690 = All Disabled
#autoLOC_135693 = Gauges Enabled, Highlight Disabled
#autoLOC_135696 = Gauges Disabled, Highlight Enabled
#autoLOC_135699 = All Enabled
#autoLOC_135706 = <color=<<1>>>Temperature Gauges Unavailable</color>
#autoLOC_135736 = This part is of the right type but does not meet all requirements
#autoLOC_135800 = <color=<<1>>>Select a part to transfer <<2>> to\n[Esc]: Cancel</color>
#autoLOC_135812 = <color=orange><<1>> Transfer Interrupted</color>
#autoLOC_135824 = <color=orange>Another transfer is already running. Aborted <<1>> Transfer.</color>
#autoLOC_135891 = <color=orange>This is the source part.</color>
#autoLOC_137008 = <color=orange><b><<1>> has no operational SAS Modules and no pilots aboard. Cannot engage SAS.</b></color>
#autoLOC_137027 = <color=orange><b>SAS Disengaged.</b></color>
#autoLOC_137031 = <color=orange><b>[<<1>>]: SAS Disengaged.</b></color>
#autoLOC_137562 = Cannot Switch Vessels on this scenario
#autoLOC_137597 = No nearby objects to focus. Use the Map View to select distant ones.
#autoLOC_140938 = Advanced Options
#autoLOC_140944 = Allow Negative Funds/Science
#autoLOC_140947 = Part Pressure Limits
#autoLOC_140950 = Part G-Force Limits
#autoLOC_140953 = Kerbal G-Force Limits
#autoLOC_140956 = Kerbal G-Force Tolerance
#autoLOC_140957 = Multiplier to how much G-force Kerbals tolerate before going unconscious
#autoLOC_140960 = Resource Transfer Obeys Crossfeed Rules
#autoLOC_140963 = Always Allow ActionGroups
#autoLOC_140966 = Building Impact Damage Multiplier
#autoLOC_140967 = Multiplier to the amount of damage applied to buildings on collision.
#autoLOC_140970 = Enable Kerbal Experience
#autoLOC_140984 = Kerbals Level Up Immediately
#autoLOC_140992 = All Part Upgrades Applied in Sandbox
#autoLOC_140995 = Part Upgrades
#autoLOC_143389 = <color=red><<1>>: lost consciousness!</color>
#autoLOC_143403 = <color=orange><<1>>: reaching G limit!</color>
#autoLOC_143415 = <<1>>: regained consciousness.
#autoLOC_145488 = Vessel Loading Error
#autoLOC_145489 = Vessel <<1>> was not loaded because\nit had the following parts missing:\n<<2>>
#autoLOC_145785 = Standing by to launch
#autoLOC_145786 = In flight
#autoLOC_145788 = Orbiting <<1>>
#autoLOC_145789 = Splashed down
#autoLOC_145790 = On sub-orbital trajectory
#autoLOC_145791 = On escape trajectory out of <<1>>
#autoLOC_145792 = Docked to <something>
#autoLOC_145793 = No situation report available
#autoLOC_145800 = Standing by to launch
#autoLOC_145801 = In flight
#autoLOC_145803 = Orbiting
#autoLOC_145804 = Splashed down
#autoLOC_145805 = On sub-orbital trajectory
#autoLOC_145806 = On escape trajectory
#autoLOC_145807 = Docked to <something>
#autoLOC_145808 = No situation report available
#autoLOC_145929 = VOLUME
#autoLOC_145935 = Spacecraft:
#autoLOC_145952 = Ambience:
#autoLOC_145969 = UI:
#autoLOC_145986 = Music:
#autoLOC_146003 = Voices:
#autoLOC_146068 = SOUND NORMALIZER
#autoLOC_146075 = Normalizer
#autoLOC_146087 = Threshold
#autoLOC_146114 = Responsiveness
#autoLOC_146152 = Audio Volume
#autoLOC_146154 = Master:
#autoLOC_146161 = Spacecraft:
#autoLOC_146168 = Ambience:
#autoLOC_146175 = UI:
#autoLOC_146182 = Music:
#autoLOC_146189 = Voices:
#autoLOC_146223 = Audio
#autoLOC_146476 = Gameplay
#autoLOC_146478 = Temperature Gauges:
#autoLOC_146483 = Thermal Highlights:
#autoLOC_146488 = Double Click Mouse Look:
#autoLOC_146493 = Camera Wobble (External Views): <<1>>
#autoLOC_146498 = Camera Wobble (Internal Views): <<1>>
#autoLOC_146503 = Advanced Tweakables:
#autoLOC_146507 = UI
#autoLOC_146519 = UI Scale: <<1>>%
#autoLOC_146522 = <color=#FDD901FF><b>Warning:</b> Restarting KSP is required to apply all the effects of the above UI Scale setting.</color>
#autoLOC_146525 = Apps Scale: <<1>>%
#autoLOC_146532 = FlightUI Elements
#autoLOC_146534 = Time Controls Scale: <<1>>%
#autoLOC_146538 = Altimeter Scale: <<1>>%
#autoLOC_146542 = Map Filter Scale: <<1>>%
#autoLOC_146548 = Staging Stack Scale: <<1>>%
#autoLOC_146552 = Mode Control Scale: <<1>>%
#autoLOC_146557 = Crew Portaits Scale: <<1>>%
#autoLOC_146562 = NavBall Scale: <<1>>%
#autoLOC_146566 = NavBall Pos (Left<->Right):
#autoLOC_146573 = Reset FlightUI Scaling
#autoLOC_146574 = Reset NavBall Position
#autoLOC_147901 = Joystick Names:
#autoLOC_147910 = Joystick <<1>>
#autoLOC_147936 = CONTROL MAPPING
#autoLOC_147939 = Flight
#autoLOC_147945 = Vessel
#autoLOC_147951 = Kerbals
#autoLOC_147957 = Game
#autoLOC_147963 = Other
#autoLOC_148040 = Key/Button Bindings
#autoLOC_148050 = Rotation
#autoLOC_148051 = Pitch Down
#autoLOC_148052 = Pitch Up
#autoLOC_148053 = Yaw Left
#autoLOC_148054 = Yaw Right
#autoLOC_148055 = Roll Left
#autoLOC_148056 = Roll Right
#autoLOC_148058 = Translation
#autoLOC_148059 = Translate Up
#autoLOC_148060 = Translate Down
#autoLOC_148061 = Translate Left
#autoLOC_148062 = Translate Right
#autoLOC_148063 = Translate Forward
#autoLOC_148064 = Translate Backward
#autoLOC_148066 = Throttle
#autoLOC_148067 = Throttle Up
#autoLOC_148068 = Throttle Down
#autoLOC_148070 = Other
#autoLOC_148071 = Launch/Staging
#autoLOC_148072 = Switch Translation/Rotation
#autoLOC_148077 = Systems
#autoLOC_148079 = Landing Gear
#autoLOC_148080 = Brakes
#autoLOC_148081 = SAS Hold
#autoLOC_148082 = SAS Toggle
#autoLOC_148083 = RCS Toggle
#autoLOC_148084 = Throttle Cut-off
#autoLOC_148085 = Full Throttle
#autoLOC_148086 = Precision Controls Toggle
#autoLOC_148087 = Lights
#autoLOC_148089 = Emergency abort
#autoLOC_148090 = Custom action 1
#autoLOC_148091 = Custom action 2
#autoLOC_148092 = Custom action 3
#autoLOC_148093 = Custom action 4
#autoLOC_148094 = Custom action 5
#autoLOC_148095 = Custom action 6
#autoLOC_148096 = Custom action 7
#autoLOC_148097 = Custom action 8
#autoLOC_148098 = Custom action 9
#autoLOC_148099 = Custom action 10
#autoLOC_148102 = Wheels
#autoLOC_148104 = Steer Left
#autoLOC_148105 = Steer Right
#autoLOC_148106 = Drive Forward
#autoLOC_148107 = Drive Back
#autoLOC_148111 = Character Controls
#autoLOC_148113 = Move Forward
#autoLOC_148114 = Move Back
#autoLOC_148115 = Move Left
#autoLOC_148116 = Move Right
#autoLOC_148117 = Turn Left
#autoLOC_148118 = Turn Right
#autoLOC_148120 = EVAPack Forward
#autoLOC_148121 = EVAPack Back
#autoLOC_148122 = EVAPack Left
#autoLOC_148123 = EVAPack Right
#autoLOC_148124 = EVAPack Up
#autoLOC_148125 = EVAPack Down
#autoLOC_148127 = Jump
#autoLOC_148128 = Run
#autoLOC_148129 = Use/Grab
#autoLOC_148130 = Board
#autoLOC_148131 = Toggle EVAPack
#autoLOC_148132 = Toggle Movement Mode
#autoLOC_148133 = Orient to View
#autoLOC_148134 = Toggle Lights
#autoLOC_148139 = General
#autoLOC_148141 = Orbital Map View
#autoLOC_148142 = Increase Time Warp
#autoLOC_148143 = Decrease Time Warp
#autoLOC_148145 = Focus Next Vessel
#autoLOC_148146 = Focus Prev Vessel
#autoLOC_148147 = Take Screenshot
#autoLOC_148149 = Pause
#autoLOC_148150 = Quicksave
#autoLOC_148151 = Quickload
#autoLOC_148154 = Camera
#autoLOC_148156 = Camera Mode
#autoLOC_148157 = Camera Next
#autoLOC_148158 = Camera Reset
#autoLOC_148159 = Zoom In
#autoLOC_148160 = Zoom Out
#autoLOC_148161 = View Up
#autoLOC_148162 = View Down
#autoLOC_148163 = View Left
#autoLOC_148164 = View Right
#autoLOC_148167 = Editor
#autoLOC_148169 = Scroll View Up
#autoLOC_148170 = Scroll View Down
#autoLOC_148172 = Pitch Part Down
#autoLOC_148173 = Pitch Part Up
#autoLOC_148174 = Yaw Part Left
#autoLOC_148175 = Yaw Part Right
#autoLOC_148176 = Roll Part Left
#autoLOC_148177 = Roll Part Right
#autoLOC_148179 = Reset Part Rotation
#autoLOC_148181 = Place Mode
#autoLOC_148182 = Offset Mode
#autoLOC_148183 = Rotate Mode
#autoLOC_148184 = Root Mode
#autoLOC_148186 = Toggle Local/Absolute
#autoLOC_148187 = Toggle Angle Snap
#autoLOC_148188 = Toggle Symmetry Method
#autoLOC_148189 = Cycle Symmetry Count
#autoLOC_148190 = Search All Parts
#autoLOC_148193 = UI
#autoLOC_148195 = Show/Hide Flight UI
#autoLOC_148196 = Scroll Icons Up
#autoLOC_148197 = Scroll Icons Down
#autoLOC_148198 = Show/Hide Vessel Labels
#autoLOC_148199 = Show/Hide Flight Log
#autoLOC_148201 = Show/Hide Flight Forces
#autoLOC_148202 = Show/Hide Temp. Gauges
#autoLOC_148203 = Show/Hide Temp. Overlay
#autoLOC_148214 = Axis Bindings
#autoLOC_148219 = Rotation
#autoLOC_148220 = Pitch Axis
#autoLOC_148221 = Roll Axis
#autoLOC_148222 = Yaw Axis
#autoLOC_148224 = Translation
#autoLOC_148225 = Translate Left/Right
#autoLOC_148226 = Translate Up/Down
#autoLOC_148227 = Translate Forward/Back
#autoLOC_148229 = Throttle
#autoLOC_148230 = Throttle Axis
#autoLOC_148231 = Throttle (Incremental)
#autoLOC_148235 = Wheels
#autoLOC_148236 = Steering Axis
#autoLOC_148237 = Throttle Axis
#autoLOC_148242 = Character
#autoLOC_148243 = Translate Forward/Back
#autoLOC_148244 = Translate Left/Right
#autoLOC_148245 = Translate Up/Down
#autoLOC_148246 = Pitch (Analogue)
#autoLOC_148247 = Yaw (Analogue)
#autoLOC_148248 = Roll (Analogue)
#autoLOC_148252 = Camera
#autoLOC_148254 = Camera Horizontal
#autoLOC_148255 = Camera Vertical
#autoLOC_148268 = Active in:
#autoLOC_148269 = Flight External
#autoLOC_148270 = Flight Internal
#autoLOC_148271 = Flight EVA
#autoLOC_148272 = Flight Map View
#autoLOC_148273 = Космічний Центр
#autoLOC_148274 = Станція Стеження
#autoLOC_148275 = Editors
#autoLOC_148285 = Other Control Settings and Device Options
#autoLOC_148291 = Other Settings
#autoLOC_148292 = EVAs Auto-Rotate to Camera
#autoLOC_148295 = Mouse Wheel Sensitivity: <<1>>
#autoLOC_148305 = Track IR
#autoLOC_148325 = 6-DOF Device
#autoLOC_148328 = A 6-DOF Input Device is a hardware controller that allows manipulating objects and views in 3D applications.\n\nCurrently, this is only supported on the Windows version of KSP.
#autoLOC_148331 = Toggle Camera/Flight Control
#autoLOC_148332 = Lock/Unlock Roll Axis
#autoLOC_148334 = 6-DOF Camera Control
#autoLOC_148336 = <b>Pitch, Yaw and Roll</b>
#autoLOC_148338 = Sensitivity: <<1>>
#autoLOC_148339 = Slow
#autoLOC_148341 = Fast
#autoLOC_148345 = Sharpness: <<1>>
#autoLOC_148346 = Smooth
#autoLOC_148348 = Precise
#autoLOC_148353 = <b>XYZ Translation</b>
#autoLOC_148355 = Sensitivity: <<1>>
#autoLOC_148356 = Slow
#autoLOC_148358 = Fast
#autoLOC_148363 = Sharpness: <<1>>
#autoLOC_148364 = Smooth
#autoLOC_148366 = Precise
#autoLOC_148372 = 6-DOF Flight Control
#autoLOC_148374 = <b>Pitch, Yaw and Roll</b>
#autoLOC_148376 = Sensitivity: <<1>>
#autoLOC_148377 = Slow
#autoLOC_148379 = Fast
#autoLOC_148384 = <b>XYZ Translation</b>
#autoLOC_148386 = Sensitivity: <<1>>
#autoLOC_148387 = Slow
#autoLOC_148389 = Fast
#autoLOC_148408 = (Primary)
#autoLOC_148412 = (Secondary)
#autoLOC_148431 = Press the key or joystick button to use for <b><<1>></b>
#autoLOC_148446 = Move the joystick axis to use for <b><<1>></b>
#autoLOC_148462 = Staging
#autoLOC_148465 = Docking (Translation)
#autoLOC_148468 = Docking (Rotation)
#autoLOC_148473 = Use in Modes:
#autoLOC_148500 = Clear Assignment
#autoLOC_148516 = Cancel
#autoLOC_148524 = Accept
#autoLOC_148570 = Primary:
#autoLOC_148576 = Invert
#autoLOC_148580 = Sensitivity
#autoLOC_148589 = Dead Zone
#autoLOC_148593 = Secondary:
#autoLOC_148599 = Invert
#autoLOC_148603 = Sensitivity
#autoLOC_148612 = Dead Zone
#autoLOC_148783 = Systems/UI
#autoLOC_148786 = Throttle up:
#autoLOC_148792 = Throttle down:
#autoLOC_148798 = Throttle max:
#autoLOC_148804 = Throttle cutoff:
#autoLOC_148810 = Toggle IVA view:
#autoLOC_148816 = Cycle camera view:
#autoLOC_148823 = Pitch up:
#autoLOC_148830 = Pitch down:
#autoLOC_148837 = Roll left:
#autoLOC_148844 = Roll right:
#autoLOC_148851 = Yaw left:
#autoLOC_148858 = Yaw right:
#autoLOC_148865 = SAS Hold:
#autoLOC_148872 = SAS Toggle:
#autoLOC_148879 = Launch/Activate next stage:
#autoLOC_148886 = Lock current stage:
#autoLOC_148888 = <<1>> + L
#autoLOC_148893 = Toggle RCS:
#autoLOC_148900 = Translate forward:
#autoLOC_148907 = Translate backward:
#autoLOC_148914 = Translate down:
#autoLOC_148921 = Translate left:
#autoLOC_148928 = Translate up:
#autoLOC_148935 = Translate right:
#autoLOC_148942 = Show/Hide NavBall
#autoLOC_148944 = KeypadPeriod
#autoLOC_148949 = Screenshot:
#autoLOC_148956 = Show/Hide UI:
#autoLOC_148963 = Show/Hide flight log:
#autoLOC_148970 = Show/Hide vessel labels:
#autoLOC_148977 = Quicksave:
#autoLOC_148984 = Load Quicksave:
#autoLOC_148986 = Hold down <<1>>
#autoLOC_148995 = Map View
#autoLOC_148998 = Toggle map view:
#autoLOC_149005 = Cycle focus in map view:
#autoLOC_149007 = Tab
#autoLOC_149012 = Cycle backwards in map view:
#autoLOC_149014 = LeftShift + Tab
#autoLOC_149019 = Reset focus in map view:
#autoLOC_149026 = Increase Time Warp:
#autoLOC_149033 = Decrease Time Warp:
#autoLOC_149040 = Show/Hide NavBall:
#autoLOC_149042 = KeypadPeriod
#autoLOC_149047 = Screenshot:
#autoLOC_149054 = Show/Hide UI:
#autoLOC_149061 = Show/Hide flight log:
#autoLOC_149068 = Show/Hide vessel labels:
#autoLOC_149075 = Quicksave:
#autoLOC_149082 = Load Quicksave:
#autoLOC_149084 = Hold down <<1>>
#autoLOC_149093 = ПКД
#autoLOC_149096 = Grab/use:
#autoLOC_149103 = Translate forward:
#autoLOC_149110 = Translate backward:
#autoLOC_149117 = Translate left:
#autoLOC_149124 = Translate right:
#autoLOC_149131 = Sprint:
#autoLOC_149138 = Jump/Jetpack boost:
#autoLOC_149145 = Toggle Jetpack:
#autoLOC_149152 = Jet rotate left:
#autoLOC_149159 = Jet rotate right:
#autoLOC_149166 = Jet up:
#autoLOC_149173 = Jet down:
#autoLOC_149180 = Toggle lamps:
#autoLOC_149187 = Toggle movement:
#autoLOC_149391 = Key Bindings
#autoLOC_149410 = Close
#autoLOC_149458 = Settings
#autoLOC_149478 = Difficulty Options: <b><color=<<1>>><<2>></color></b>
#autoLOC_149512 = Apply
#autoLOC_149513 = Accept
#autoLOC_149514 = Close
#autoLOC_149722 = SCENERY
#autoLOC_149726 = Terrain Detail:
#autoLOC_149753 = Medium
#autoLOC_149762 = SM3 Terrain Shaders:
#autoLOC_149780 = Terrain Scatters:
#autoLOC_149788 = Scatter Density:
#autoLOC_149800 = Scenery settings may require a game restart to take effect.
#autoLOC_149804 = RENDERING
#autoLOC_149808 = Render Quality Level:
#autoLOC_149820 = Texture Quality:
#autoLOC_149847 = Aerodynamic FX Quality:
#autoLOC_149862 = No Hardware Support
#autoLOC_149870 = Surface FX:
#autoLOC_149878 = Underwater FX:
#autoLOC_149889 = VIDEO
#autoLOC_149894 = Screen Resolution:
#autoLOC_149901 = Full Screen:
#autoLOC_149908 = Anti-Aliasing:
#autoLOC_149915 = V Sync:
#autoLOC_149922 = Frame Limit:
#autoLOC_149929 = Pixel Light Count:
#autoLOC_149936 = Shadow Cascades:
#autoLOC_149958 = * Game requires restart for changes to take effect *
#autoLOC_150065 = Video & Graphics
#autoLOC_150068 = Anti-Aliasing:
#autoLOC_150074 = Texture Quality:
#autoLOC_150081 = Pixel Light Count:
#autoLOC_150087 = Shadow Cascades:
#autoLOC_150093 = Aerodynamic FX Quality:
#autoLOC_150105 = No Hardware Support
#autoLOC_150109 = Highlight FX:
#autoLOC_150121 = Conic Patch Draw Mode:
#autoLOC_150127 = Conic Patch Limit:
#autoLOC_150133 = CommNet Line Brightness Factor :
#autoLOC_150140 = Part Highlighter Brightness Factor :
#autoLOC_150146 = Part Highlighter Enabled in Flight:
#autoLOC_150176 = <<1>>x<<2>>
#autoLOC_150245 = Graphics
#autoLOC_158078 = Loading Resources
#autoLOC_158082 = Loading Experience System
#autoLOC_158089 = Loading Part Upgrades
#autoLOC_158268 = \nEnvironment Info\n
#autoLOC_158315 = \nFolders and files in GameData:\n
#autoLOC_158628 = Loading Asset Bundle Definitions
#autoLOC_158641 = Loading <<1>> Asset Bundle Objects
#autoLOC_158700 = GameDatabase\n\n
#autoLOC_165067 = Завантаження...
#autoLOC_166269 = К-сть: <<1>>
#autoLOC_166270 = \nМасса: <<1>>
#autoLOC_166271 = \nЦіна: <<1>>
#autoLOC_168872 = Unknown
#autoLOC_168874 = Unknown Mystery Component
#autoLOC_168875 = Found lying by the side of the road
#autoLOC_168876 = Nothing is really known about this thing. Use it at your own risk.
#autoLOC_174575 = Cannot quickload in this scenario.
#autoLOC_174589 = Hold <<1>> to load last quicksave...
#autoLOC_174610 = Cannot quickload in this scenario.
#autoLOC_174631 = Cannot quicksave in this scenario.
#autoLOC_174654 = Quicksave
#autoLOC_174659 = Vessel is destroyed. Cannot Quicksave at this point.
#autoLOC_174669 = Quicksaving...
#autoLOC_174686 = <<1>> Does Not Exist
#autoLOC_174772 = Quicksave As...
#autoLOC_174778 = Зберегти
#autoLOC_174783 = Cancel
#autoLOC_174798 = Yes (overwrite)
#autoLOC_174804 = No (cancel)
#autoLOC_174814 = Ok
#autoLOC_175414 = Space Navigator Mode: Camera
#autoLOC_175419 = Space Navigator Mode: Flight Control
#autoLOC_176849 = No Input Locks in effect right now
#autoLOC_176851 = Current Input Locks:\n
#autoLOC_180095 = м/с
#autoLOC_180098 = Мм/с
#autoLOC_180103 = км/с
#autoLOC_184746 = Very Weak
#autoLOC_184750 = Weak
#autoLOC_184754 = Average
#autoLOC_184758 = Good
#autoLOC_184762 = Strong
#autoLOC_184772 = Class A Objects are the smallest objects we are able to spot. They usually measure no more than a few meters across.
#autoLOC_184774 = Class B Objects are relatively small, usually ranging from 4m to 7m in radius, approximately.
#autoLOC_184776 = Class C Objects are about average-sized. Around the 7-10 meter range in radius, these are certainly not the largest objects out there. They are fairly massive nonetheless.
#autoLOC_184778 = Class D Objects are quite large. Expect them to be no smaller than 12m in radius, and up to 18m. These are very heavy objects to move around.
#autoLOC_184780 = Class E Objects are proper behemoths. No less than 18m in radius, they don't just look heavy, they are in fact far more massive than it would seem.
#autoLOC_184782 = This seems to be a non-standard size class. Who knows what it'll look like?
#autoLOC_184791 = A (Tiny)
#autoLOC_184793 = B (Small)
#autoLOC_184795 = C (Medium)
#autoLOC_184797 = D (Large)
#autoLOC_184799 = E (Huge)
#autoLOC_189637 = Crew respawn timer: <<1>> hours
#autoLOC_189646 = Number of hours before crew marked as missing will respawn.
#autoLOC_189651 = Auto-Hire Crewmembers before Flight
#autoLOC_189658 = Auto-hires crew immediately before launch if no astronauts are available.
#autoLOC_189661 = General Options
#autoLOC_189662 = Allow Reverting Flights
#autoLOC_189670 = Allow Quickloading
#autoLOC_189677 = Missing Crews Respawn
#autoLOC_189690 = No Entry Purchase Required on Research
#autoLOC_189697 = Whether new parts need to be unlocked (with Funds) when tech nodes are unlocked.
#autoLOC_189700 = Indestructible Facilities
#autoLOC_189707 = Include Stock Vessels
#autoLOC_189717 = Career Options
#autoLOC_189725 = Starting Funds: <<1>>
#autoLOC_189736 = Starting Science: <<1>>
#autoLOC_189747 = Starting Reputation: <<1>>
#autoLOC_189762 = Science Rewards: <<1>>%
#autoLOC_189776 = Funds Rewards: <<1>>%
#autoLOC_189786 = Reputation Rewards:<<1>>%
#autoLOC_189796 = Funds Penalties: <<1>>%
#autoLOC_189806 = Reputation Penalties: <<1>>%
#autoLOC_189816 = Decline Penalty: <<1>>
#autoLOC_189828 = Game Systems
#autoLOC_189833 = Re-Entry Heating: <<1>>%
#autoLOC_189847 = Resource Abundance: <<1>>%
#autoLOC_189857 = Enable Comm Network
#autoLOC_190231 = Basic
#autoLOC_190323 = Відмінити
#autoLOC_190328 = Прийняти
#autoLOC_190335 = Складність Гри
#autoLOC_190662 = Почати Нову Гру
#autoLOC_190689 = Ім'я Гри:
#autoLOC_190702 = Режим Гри:
#autoLOC_190706 = Пісочниця
#autoLOC_190714 = Наука
#autoLOC_190722 = Кар'єра
#autoLOC_190734 = Прапор:
#autoLOC_190742 = В Режимі Пісочниці, всі деталі та покращення доступні з самого початку.
#autoLOC_190743 = В даному режимі ви можете грати без обмежень, однак Д&Р та Місії будуть недоступні.
#autoLOC_190750 = В Режимі Науки, вам потрібно збирати наукові звіти задля досліджень нових технологій.
#autoLOC_190751 = В даному режимі Репутація, Кредити та Місії не доступні.
#autoLOC_190758 = В Режимі Кар'єри, вам потрібно керувати усією космічною програмою.
#autoLOC_190759 = В даному режимі Кредити, Репутація, Наука та Місії доступні.
#autoLOC_190762 = Складість: <b><color=<<1>>><<2>></color></b>
#autoLOC_190768 = Скасувати
#autoLOC_190772 = Почати гру!
#autoLOC_190801 = That name is unavailable. Please choose a name other than \"scenarios\" or \"training\".
#autoLOC_190802 = Unavailable
#autoLOC_190809 = Do you want to overwrite it?
#autoLOC_190810 = A game with that name already exists
#autoLOC_190811 = Overwrite
#autoLOC_190812 = Скасувати
#autoLOC_190847 = No description available.
#autoLOC_190901 = Could not delete directory <<1>>
#autoLOC_190902 = An error occured trying to delete the save directory <<1>: <<2>>
#autoLOC_190905 = Okay
#autoLOC_191152 = Вийти з гри?
#autoLOC_191154 = Ні
#autoLOC_191158 = Так
#autoLOC_192167 = the <<1>>
#autoLOC_193182 = Orbiting <<1>>
#autoLOC_193189 = Сонце
#autoLOC_193194 = Планета
#autoLOC_193198 = Місяць
#autoLOC_193630 = <color=orange>Cannot Delete Maneuver Node (Control Locked)</color>
#autoLOC_196698 = <<1>>'s Descending Node
#autoLOC_196699 = <<1>>'s Ascending Node
#autoLOC_196700 = <<1>>'s Apoapsis
#autoLOC_196701 = <<1>>'s Periapsis
#autoLOC_196762 = Cannot Switch Vessels on this scenario
#autoLOC_196868 = Last Seen <<1>> ago.
#autoLOC_196878 = Ready to Launch
#autoLOC_196884 = Set on <<1>>
#autoLOC_196888 = Landed
#autoLOC_196893 = Splashed Down
#autoLOC_196899 = Швд: <<1>>м/с
#autoLOC_196900 = Вис: <<1>>м
#autoLOC_196906 = Distance: <<1>>m
#autoLOC_196914 = Швд: <<1>>м/с
#autoLOC_196915 = Вис: <<1>>м
#autoLOC_196919 = Швд: <<1>>м/с
#autoLOC_196920 = Вис: <<1>>м
#autoLOC_197832 = Target Position at Intersect <<1>>
#autoLOC_197834 = Intersect <<1>>
#autoLOC_197835 = Separation: <<1>>km
#autoLOC_197860 = Vector Intersect <<1>> Node
#autoLOC_197886 = Separation: <<1>>km
#autoLOC_197927 = Швд: <<1>>м/с
#autoLOC_197928 = Вис: <<1>>м
#autoLOC_198614 = Maneuver
#autoLOC_198615 = Delta V: <<1>>m/s
#autoLOC_198616 = T <<1>>
#autoLOC_200007 = <<1>> Encounter
#autoLOC_200010 = <<1>> Escape
#autoLOC_200013 = <<1>> Impact
#autoLOC_200022 = <<1>> Apoapsis: <<2>>m
#autoLOC_200028 = <<1>> Periapsis: <<2>>m
#autoLOC_200035 = At <<1>>
#autoLOC_201093 = Фокус: <<1>>
#autoLOC_204427 = the surface
#autoLOC_204715 = Core Overheating - shutting down
#autoLOC_205093 = Optimum Temp: <<1>>K\n
#autoLOC_205094 = Shutdown Temp: <<1>>K\n
#autoLOC_205095 = Insulation: <<1>>%\n
#autoLOC_205100 = Req'd cooling: <<1>>kW\n
#autoLOC_205103 = Max Cooling: <<1>>kW
#autoLOC_207654 = Pressure: <<1>> kPa
#autoLOC_211097 = No crew on part!
#autoLOC_211269 = No Upgraded Stats
#autoLOC_211272 = Current Stats
#autoLOC_211274 = OK
#autoLOC_211423 = Autostrut Locked: Heaviest Part
#autoLOC_211426 = Autostrut Locked: Root Part
#autoLOC_211429 = Autostrut Locked: Grandparent Part
#autoLOC_213511 = Relative Wing Area: <<1>>
#autoLOC_213512 = \nControl Surface Portion: <<1>>%
#autoLOC_213513 = \nMax Deflection: <<1>> degrees
#autoLOC_213514 = \nActuator Speed: <<1>> deg/sec
#autoLOC_213516 = \nExtended skin max temp: <<1>>K\nRetracted skin max temp: <<2>>K
#autoLOC_214578 = <color=orange>[<<1>>]: Cannot deploy while stowed!</color>
#autoLOC_214609 = Crew member has insufficient Engineer skill level\nLevel <<1>> is required
#autoLOC_214897 = <b>Semi-Depl. Effective Diam: </b><<1>>\n
#autoLOC_214898 = <b>Fully-Depl. Effective Diam: </b><<1>>\n
#autoLOC_214899 = <b>Max Safe Deploy Speed at Home: </b> Approx <<1>> m/s\n
#autoLOC_214903 = <b>Stowed Drag: </b><<1>>\n
#autoLOC_214904 = <b>Semi-Deployed Drag: </b><<1>>\n
#autoLOC_214905 = <b>Fully-Deployed Drag: </b><<1>>\n
#autoLOC_214907 = <b>Full Deployment Altitude: </b><<1>> m\n
#autoLOC_214908 = <b>Semi Deploy Min Pressure: </b><<1>> atm
#autoLOC_215326 = <color=orange>[<<1>>]: Chute destroyed by aero forces and heat.</color>
#autoLOC_215327 = <<1>>: chute destroyed by aero forces and heat.
#autoLOC_215362 = Locked
#autoLOC_215506 = Moving...
#autoLOC_215639 = Clamped
#autoLOC_215705 = Moving...
#autoLOC_215714 = Fixed
#autoLOC_215719 = Locked
#autoLOC_215760 = Clamped
#autoLOC_215802 = <color=orange>[<<1>>]: Cannot deploy while stowed.</color>
#autoLOC_215817 = Fixed
#autoLOC_215823 = Locked
#autoLOC_215832 = Locked
#autoLOC_215840 = Moving
#autoLOC_216749 = Max Length: <<1>>m\n
#autoLOC_216750 = <b>Flow Direction: </b>Towards 2nd Point
#autoLOC_216757 = Fuel Line
#autoLOC_216999 = Strength: <<1>>\nShear Strength: <<2>>
#autoLOC_217004 = Strut Connector
#autoLOC_217146 = NA
#autoLOC_217149 = NA
#autoLOC_217152 = NA
#autoLOC_217380 = Tourists Need Crew
#autoLOC_217388 = Not Enough Crew
#autoLOC_217408 = No Pilot
#autoLOC_217417 = No Pilot
#autoLOC_217429 = No Telemetry
#autoLOC_217437 = Partial Control
#autoLOC_217448 = Hibernating
#autoLOC_217464 = Operational
#autoLOC_217505 = Minimum Crew to Operate: <<1>>\n
#autoLOC_217509 = Unmanned\n
#autoLOC_217513 = Crew must include a pilot\n
#autoLOC_217517 = Remote Pilot Assist available\n
#autoLOC_217522 = Hibernation mode: Resource rates <<1>>x\n
#autoLOC_217936 = <b>Thruster Power: </b><<1>>\n
#autoLOC_217937 = <b>Thruster Isp: </b><<1>> (ASL) - <<2>> (Vac)\n
#autoLOC_217939 = \n<color=#99ff00ff><b>Requires:</b></color>\n
#autoLOC_217946 = - <b><<1>></b>: <<2>>/sec. Max.\n
#autoLOC_217950 = <b><i>Disabled by default</b></i>\n
#autoLOC_218287 = RCS: Enable Staging
#autoLOC_218288 = RCS: Disable Staging
#autoLOC_218513 = Active
#autoLOC_218709 = <b>Pitch Torque: </b><<1>>\n
#autoLOC_218710 = <b>Yaw Torque: </b><<1>>\n
#autoLOC_218711 = <b>Roll Torque: </b><<1>>\n
#autoLOC_218716 = <b><i>Disabled by default</b></i>\n
#autoLOC_218888 = <b><i>Disabled by default</b></i>\n
#autoLOC_219016 = Flame-Out!
#autoLOC_219034 = Nominal
#autoLOC_219085 = <<1>> закінчилось
#autoLOC_219412 = Nominal
#autoLOC_219636 = <color=orange>[<<1>>]: Cannot activate while stowed!</color>
#autoLOC_220370 = Air combustion failed
#autoLOC_220377 = Під водою!
#autoLOC_220473 = Occluded
#autoLOC_220477 = Off
#autoLOC_220657 = Engine
#autoLOC_220691 = <b>Макс. Тяга: </b><<1>> кН @Mach <<2>>\n
#autoLOC_220695 = <b>Стаціонарна Тяга: </b><<1>> кН\n
#autoLOC_220700 = <b>Макс. Тяга: </b><<1>> кН (ASL)\n
#autoLOC_220708 = Тяга
#autoLOC_220713 = Макс. Тяга
#autoLOC_220728 = НРМ
#autoLOC_220729 = Вак.
#autoLOC_220733 = <b>Min. Thrust: </b><<1>> kN\n
#autoLOC_220745 = <b>Engine Isp: </b><<1>> (ASL) - <<2>> (Vac.)\n
#autoLOC_220748 = \n<b><color=#99ff00ff>Propellants:</color></b>\n
#autoLOC_220756 = - <b><<1>></b>: <<2>>/sec. Max.\n
#autoLOC_220759 = <b>Engine stops under: </b><<1>>%\n
#autoLOC_220761 = \n<b><color=orange>Двигун неможливо відімкнути після загорання!</color></b>
#autoLOC_220762 = \n<b><color=orange>If shutdown, engine cannot restart.</color></b>
#autoLOC_221082 = Air combustion failed
#autoLOC_221352 = Hide Actuation Toggles
#autoLOC_221408 = <b>Vectoring Range: </b><<1>>°
#autoLOC_221410 = <b>Vectoring Range: </b><<1>>° X, <<2>>° Y
#autoLOC_221413 = <b>Vectoring Range: </b><<1>>° X, +<<2>>/-<<3>>°
#autoLOC_221418 = <b>Vectoring Range: </b> +<<1>>/-<<2>>° X, <<3>>° Y
#autoLOC_221420 = <b>Vectoring Range: </b> +<<1>>/-<<2>>° X, +<<3>>/-<<4>>°
#autoLOC_221424 = <b><i>Disabled by default</b></i>\n
#autoLOC_221982 = Supplies
#autoLOC_221988 = Take Resources
#autoLOC_221991 = Store Resources
#autoLOC_221994 = Stop
#autoLOC_222053 = <color=#ff9900ff>[<<1>>]: No <<2>> Container on <<3>>.</color>
#autoLOC_222102 = <<1>> Taken from <<2>></color>
#autoLOC_222214 = Seat is obstructed. Cannot board.
#autoLOC_223620 = ЛКМ
#autoLOC_223621 = ПКМ
#autoLOC_223622 = Cost
#autoLOC_225016 = Custom-Built Fairing
#autoLOC_226963 = Site Name:
#autoLOC_226969 = Plaque Text:
#autoLOC_226975 = OK
#autoLOC_226976 = Cancel
#autoLOC_227557 = Nominal
#autoLOC_227562 = Off
#autoLOC_227770 = Nominal
#autoLOC_230121 = </i> already stored in this module.</color>
#autoLOC_230133 = <<1>> can't be done right now.
#autoLOC_230159 = Asteroid Name
#autoLOC_230186 = OK
#autoLOC_230196 = Cancel
#autoLOC_230278 = On-board testing facilities (a piece of paper with a pencil) to certify astronauts for more advanced tasks. Can be used to increase Kerbal levels without returning to KSC.
#autoLOC_230288 = No connection available to send reports back home!
#autoLOC_230323 = Insufficient funds to level up all crew!
#autoLOC_230331 = No astronauts on board are ready to gain experience.
#autoLOC_230490 = KerbNet Access
#autoLOC_230499 = <b>Minimum FoV: </b>
#autoLOC_230500 = <b>Maximum FoV: </b>
#autoLOC_230501 = <b>Anomaly Detection: </b>
#autoLOC_230505 = \n<color=#99ff00ff><b>Scan Modes:</b></color>
#autoLOC_230517 = \n<color=#99ff00ff><b>Required Crew:</b></color>
#autoLOC_230521 = or
#autoLOC_230533 = \n<color=#99ff00ff><b>Scans Enhanced While:</b></color>
#autoLOC_230585 = Please verify that the crew aboard this part are properly trained to access KerbNet.
#autoLOC_230588 = Please verify that this scanner is properly activated before accessing KerbNet.
#autoLOC_230641 = Enhanced sensor ranges enabled for KerbNet on <<1>>.
#autoLOC_230651 = Enhanced sensor ranges disabled for KerbNet on <<1>>.
#autoLOC_231004 = To perform the test, activate the part through the staging sequence when all test conditions are met.
#autoLOC_231008 = To perform the test, use the [Run Test] option in the part's context menu when all test conditions are met.
#autoLOC_232021 = Not Deployed
#autoLOC_232036 = Radiator Specs:
#autoLOC_232038 = Core Heat xFer: <<1>>kW\n
#autoLOC_232057 = Max Cooling: <<1>>kW\n
#autoLOC_232060 = Transfer Rate: <<1>>%\n
#autoLOC_232065 = Cools up to <<1>>x part temp.\n
#autoLOC_232067 = Active cooling for all parts\n
#autoLOC_232071 = <color=#ff9900ff>- Cools only nearby parts.</color>
#autoLOC_232117 = Radiator
#autoLOC_232338 = Enable Staging
#autoLOC_232342 = Disable Staging
#autoLOC_232729 = Upgrades available at
#autoLOC_234049 = <b>Part:</b>\n<<1>>
#autoLOC_234052 = \nCost change: <<1>>
#autoLOC_234057 = Upgrades base part stats when upgrades available.
#autoLOC_234123 = Alternator Output
#autoLOC_234126 = EC/s
#autoLOC_234166 = Output at Full Power:
#autoLOC_234170 = <b><i>Disabled by default</b></i>\n
#autoLOC_234195 = Parts
#autoLOC_234196 = Antenna
#autoLOC_234215 = <color=orange><b>[<<1>>]:</b> Deployment would destroy part.</color>
#autoLOC_234369 = Panels
#autoLOC_234370 = Solar Panel
#autoLOC_234422 = <color=orange><b>[<<1>>]:</b> Cannot deploy while stowed.</color>
#autoLOC_234569 = <b>Tracking Speed: </b><<1>>
#autoLOC_234572 = \n<b>Rated for: </b><<1>> kPa dyn. pressure
#autoLOC_234576 = \n<b><color=orange><<1>> cannot be retracted</color></b>
#autoLOC_234828 = Extended
#autoLOC_234841 = Extending..
#autoLOC_234856 = Retracting..
#autoLOC_234861 = Retracted
#autoLOC_234868 = Broken!
#autoLOC_234880 = <<1>> broken by aero forces.
#autoLOC_234885 = <<1>> snapped from g-forces.
#autoLOC_234951 = aero shielding
#autoLOC_234989 = Aligned to <<1>>
#autoLOC_234994 = Blocked by <<1>>
#autoLOC_235328 = Panels
#autoLOC_235329 = Solar Panel
#autoLOC_235418 = Direct Sunlight
#autoLOC_235468 = , Underwater
#autoLOC_235499 = Efficiency
#autoLOC_235502 = Activate Generator
#autoLOC_235505 = Shutdown Generator
#autoLOC_235508 = Toggle Generator
#autoLOC_235532 = Generator
#autoLOC_235616 = \nGenerator is always active.
#autoLOC_235617 = \nGenerator must be started.
#autoLOC_235622 = <b><i>Disabled by default</b></i>\n
#autoLOC_235842 = <b>Intake Resource: </b><<1>>\n
#autoLOC_235843 = <b>Intake Area: </b><<1>>sq m
#autoLOC_235845 = \n<b>Effective Base Speed: </b><<1>>m/s
#autoLOC_235851 = <b><i>Disabled by default</b></i>\n
#autoLOC_235899 = Occluded
#autoLOC_235936 = Nominal
#autoLOC_235946 = No Resource Available
#autoLOC_235952 = Closed
#autoLOC_236028 = Enable Crossfeed
#autoLOC_236030 = Disable Crossfeed
#autoLOC_236032 = Toggle Crossfeed
#autoLOC_236147 = Idle
#autoLOC_236248 = (Combinable)
#autoLOC_236367 = <b><color=orange>[<<1>>]: Unable to deploy!</color></b>
#autoLOC_236374 = <b><color=orange>[<<1>>]: Unable to transmit!</color></b>
#autoLOC_236387 = <b><color=orange>[<<1>>]: Antenna not in range!</color></b>
#autoLOC_236415 = Experiment Modules will become inoperable if their data is removed.
#autoLOC_236416 = Warning!
#autoLOC_236417 = Transmit All
#autoLOC_236418 = Transmit Re-usable Ones Only
#autoLOC_236419 = Cancel
#autoLOC_236426 = Transmit Anyway
#autoLOC_236427 = Cancel
#autoLOC_236475 = <b><color=orange>[<<1>>]: Unable to deploy!</color></b>
#autoLOC_236534 = Uploading Data...
#autoLOC_236540 = [<<1>>]: Uploading Data...
#autoLOC_236559 = <b><color=orange>[<<1>>]: Warning! <<2>>!</color></b>
#autoLOC_236562 = Charge: <<1>>/<<2>>
#autoLOC_236564 = Returning Data...Aborting Transmission...
#autoLOC_236592 = Done!
#autoLOC_236594 = [<<1>>]: Done!
#autoLOC_236732 = <b><color=orange>[<<1>>]: Warning! Transmission interruptions may compromise data integrity.</color></b>
#autoLOC_236748 = Aborting Transmission...
#autoLOC_236755 = Aborting Transmission...
#autoLOC_236834 = vs L1 DSN:
#autoLOC_236835 = \nvs L2 DSN:
#autoLOC_236836 = \nvs L3 DSN:
#autoLOC_236840 = \n<b>Packet size: </b><<1>> Mits\n
#autoLOC_236841 = <b>Bandwidth: </b><<1>> Mits/sec\n
#autoLOC_236842 = \n\nWhen Transmitting:
#autoLOC_236846 = \n<i>Cannot transmit science</i>\n
#autoLOC_236849 = <b><i>Disabled by default</b></i>\n
#autoLOC_237023 = Display
#autoLOC_237024 = Off
#autoLOC_237120 = <<1>>m/s^2
#autoLOC_237124 = TOO FAR FROM OBJECT!
#autoLOC_237141 = MINIMAL
#autoLOC_237143 = IN VACUUM!
#autoLOC_237152 = Off
#autoLOC_237153 = Off
#autoLOC_237286 = <<1>> / <<2>> experiments
#autoLOC_237288 = <<1>> experiments
#autoLOC_237370 = <color=#99ff00ff>[<<1>>]: All Items Stored.</color>
#autoLOC_237374 = <color=orange>[<<1>>]: Not all items could be stored.</color>
#autoLOC_237379 = <color=#99ff00ff>[<<1>>]: Nothing to Store.</color>
#autoLOC_237418 = <color=#99ff00ff>[<<1>>]: All Items Collected.</color>
#autoLOC_237422 = <color=orange>[<<1>>]: Not all items could be collected.</color>
#autoLOC_237427 = <color=#99ff00ff>[<<1>>]: Nothing to Collect.</color>
#autoLOC_237432 = <color=#ff6600ff>[<<1>>]: <<2>> has no data container.</color>
#autoLOC_237449 = <b><color=orange>A transfer is already in progress.</color></b>
#autoLOC_237485 = <color=#99ff00ff>[<<1>>]: All Items Stored.</color>
#autoLOC_237489 = <color=orange>[<<1>>]: Not all items could be stored.</color>
#autoLOC_237494 = <color=#99ff00ff>[<<1>>]: Nothing to Store.</color>
#autoLOC_237607 = <color=#99ff00ff>[<<1>>]: <i><<2>></i> Added (<<3>>/<<4>>).</color>
#autoLOC_237611 = <color=#99ff00ff>[<<1>>]: <i><<2>></i> Added.</color>
#autoLOC_237617 = <b><color=orange>[<<1>>]: Cannot Add <i><<2>></i>. Storage capacity exceeded. (<<3>>/<<4>>)</b></color>
#autoLOC_237662 = <color=#ff9900ff>[<<1>>]: <<2>> Removed.</color>
#autoLOC_237738 = No usable, in-range Comms Devices on this vessel. Cannot Transmit Data.
#autoLOC_237740 = No usable Comms Devices on this vessel. Cannot Transmit Data.
#autoLOC_237902 = <color=orange>[<<1>>]: Research stopped, no scientists present!</color>
#autoLOC_237911 = No Power
#autoLOC_237928 = Science Full
#autoLOC_237931 = Researching
#autoLOC_237998 = Transmitting this experiment will render this module inoperable.\n\n
#autoLOC_238002 = Removing the experiment data will render this module inoperable.\n\n
#autoLOC_238018 = Take Data
#autoLOC_238176 = Ready
#autoLOC_238290 = <b><color=orange>Cannot perform experiment when part is shielded.</color></b>
#autoLOC_238298 = <b><color=orange>Cannot perform experiment, must wait <<1>></color></b>
#autoLOC_238318 = <b><color=orange>Cannot perform experiment when part is shielded.</color></b>
#autoLOC_238370 = Overwrite existing <<1>>?
#autoLOC_238371 = Overwrite <<1>>
#autoLOC_238373 = Cancel
#autoLOC_238379 = <color=orange>[<<1>>]: Cannot run experiment while stowed.</color>
#autoLOC_238419 = <color=#99ff00ff>[<<1>>]: <<2>> data collected on <i><<3>></i></color>
#autoLOC_238424 = <<1>> can't be done right now.
#autoLOC_238505 = No usable, in-range Comms Devices on this vessel. Cannot Transmit Data.
#autoLOC_238507 = No usable Comms Devices on this vessel. Cannot Transmit Data.
#autoLOC_238556 = <<1>> Warning!
#autoLOC_238567 = <color=#99ff00ff>[<<1>>]: Nothing to transfer.</color>
#autoLOC_238572 = <color=#ff6600ff>[<<1>>]: <<2>> has no data container.</color>
#autoLOC_238582 = <color=#99ff00ff>[<<1>>]: All Items Stored.</color>
#autoLOC_238589 = <color=orange>[<<1>>]: Not all items could be stored.</color>
#autoLOC_238595 = <color=orange>[<<1>>]: Something pretty bad happened just now apparently.</color>
#autoLOC_238643 = <b><color=orange>Cannot perform experiment when part is shielded.</color></b>
#autoLOC_238754 = <color=orange>[<<1>>]: Experiment Media removed. Module inoperable.</color>
#autoLOC_238770 = <b><color=#99ff00ff>[<<1>>]: Media Restored. Module is operational again.</color></b>
#autoLOC_238776 = <b><color=orange>Only Scientists can restore inoperable modules</color></b>
#autoLOC_238797 = Collectable data: <<1>>\n
#autoLOC_238798 = Rerunnable: <<1>>\n
#autoLOC_238799 = Resettable: <<1>>
#autoLOC_238802 = \nCleanup requires: <<1>>\n
#autoLOC_238803 = Cleanup cost: <<1>>