-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathlang-en.json
1856 lines (1784 loc) · 79.4 KB
/
lang-en.json
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
{
"language-cs": "Czech",
"language-de": "German",
"language-en": "English",
"language-es": "Spanish",
"language-fr": "French",
"language-hu": "Hungarian",
"language-it": "Italian",
"language-ja": "Japanese",
"language-nl": "Dutch",
"language-pt": "Portuguese, Brazilian",
"language-ru": "Russian",
"language-zh": "Chinese, Simplified",
"ui-shipyard": "Shipyard",
"ui-outfitting": "Outfitting",
"ui-analysis": "Analysis",
"ui-help": "Help",
"ui-stored": "Stored",
"ui-retrofit": "Retrofit",
"ui-compare": "Compare",
"ui-query-desc": "Drag this icon over abbreviated page elements to see more details",
"ui-shipyard-build-label": "Build",
"ui-shipyard-build-desc": "Stored build label",
"ui-shipyard-ship-label": "Ship",
"ui-shipyard-ship-desc": "Ship hull name",
"ui-shipyard-cost-label": "Price",
"ui-shipyard-size-label": "Sz",
"ui-shipyard-size-desc": "Landing pad size",
"ui-shipyard-crew-label": "Crw",
"ui-shipyard-masslock-label": "MLF",
"ui-shipyard-mass-label": "Mass",
"ui-shipyard-mass-hull-label": "Hull",
"ui-shipyard-mass-hull-desc": "Hull mass",
"ui-shipyard-mass-unladen-label": "Unl",
"ui-shipyard-mass-unladen-desc": "Unladen mass",
"ui-shipyard-mass-laden-label": "Ldn",
"ui-shipyard-mass-laden-desc": "Laden mass",
"ui-shipyard-jump-label": "Jump",
"ui-shipyard-jump-unladen-label": "Unl",
"ui-shipyard-jump-unladen-desc": "Unladen jump range",
"ui-shipyard-jump-laden-label": "Ldn",
"ui-shipyard-jump-laden-desc": "Laden jump range",
"ui-shipyard-range-label": "Range",
"ui-shipyard-range-unladen-label": "Unl",
"ui-shipyard-range-unladen-desc": "Unladen fuel tank range",
"ui-shipyard-range-laden-label": "Ldn",
"ui-shipyard-range-laden-desc": "Laden fuel tank range",
"ui-shipyard-speed-label": "Spd",
"ui-shipyard-speed-desc": "Thruster speed",
"ui-shipyard-boost-label": "Bst",
"ui-shipyard-boost-desc": "Boost speed",
"ui-shipyard-shield-label": "Shd",
"ui-shipyard-shield-desc": "Shield strength",
"ui-shipyard-armour-label": "Arm",
"ui-shipyard-armour-desc": "Armour strength",
"ui-shipyard-hardness-label": "Hrd",
"ui-shipyard-fuel-label": "Fuel",
"ui-shipyard-cargo-label": "Crgo",
"ui-shipyard-passenger-label": "Psgr",
"ui-shipyard-slots-label": "Module Slots",
"ui-shipyard-hardpoint-label": "Hardpoints",
"ui-shipyard-hardpoint-desc": "Hardpoint mount sizes",
"ui-shipyard-utility-label": "Utl",
"ui-shipyard-utility-desc": "Number of utility mounts",
"ui-shipyard-core-bh-label": "BH",
"ui-shipyard-core-bh-desc": "Bulkhead slot size",
"ui-shipyard-core-pp-label": "PP",
"ui-shipyard-core-pp-desc": "Power Plant slot size",
"ui-shipyard-core-th-label": "TH",
"ui-shipyard-core-th-desc": "Thruster slot size",
"ui-shipyard-core-fd-label": "FD",
"ui-shipyard-core-fd-desc": "Frame Shift Drive slot size",
"ui-shipyard-core-ls-label": "LS",
"ui-shipyard-core-ls-desc": "Life Support slot size",
"ui-shipyard-core-pd-label": "PD",
"ui-shipyard-core-pd-desc": "Power Distributor slot size",
"ui-shipyard-core-ss-label": "SS",
"ui-shipyard-core-ss-desc": "Sensors slot size",
"ui-shipyard-core-ft-label": "FT",
"ui-shipyard-core-ft-desc": "Fuel Tank slot size",
"ui-shipyard-military-label": "Mil",
"ui-shipyard-military-desc": "Military internal slot sizes",
"ui-shipyard-internal-label": "Opt Internal",
"ui-shipyard-internal-desc": "Optional inernal slot sizes",
"ui-shipyard-weapons-label": "Weapons",
"ui-shipyard-dps-label": "DPS",
"ui-shipyard-dps-desc": "Total damage per second",
"ui-shipyard-dps-absolute-label": "Abs",
"ui-shipyard-dps-absolute-desc": "Absolute DPS portion",
"ui-shipyard-dps-kinetic-label": "Kin",
"ui-shipyard-dps-kinetic-desc": "Kinetic DPS portion",
"ui-shipyard-dps-thermal-label": "Thm",
"ui-shipyard-dps-thermal-desc": "Thermal DPS portion",
"ui-shipyard-dps-explosive-label": "Exp",
"ui-shipyard-dps-explosive-desc": "Explosive DPS portion",
"ui-shipyard-dps-antixeno-label": "A-X",
"ui-shipyard-dps-antixeno-desc": "Anti-Xeno DPS portion",
"ui-shipyard-dps-caustic-label": "Cau",
"ui-shipyard-dps-caustic-desc": "Caustic DPS portion",
"ui-shipyard-copy-live": "Copy from Live Site",
"ui-shipyard-copy-live-confirm": "Copy builds from live site storage?\nAny matching beta or dev site builds will be overwritten.",
"ui-slotgroup-hardpoint": "Hardpoints",
"ui-slotgroup-utility": "Utility Mounts",
"ui-slotgroup-component": "Core Internal",
"ui-slotgroup-military": "Military",
"ui-slotgroup-internal": "Optional Internal",
"ui-slot-size-0-abbr": "U",
"ui-slot-size-1-abbr": "S",
"ui-slot-size-2-abbr": "M",
"ui-slot-size-3-abbr": "L",
"ui-slot-size-4-abbr": "H",
"ui-slot-component-0-abbr": "BH",
"ui-slot-component-1-abbr": "PP",
"ui-slot-component-2-abbr": "TH",
"ui-slot-component-3-abbr": "FD",
"ui-slot-component-4-abbr": "LS",
"ui-slot-component-5-abbr": "PD",
"ui-slot-component-6-abbr": "SS",
"ui-slot-component-7-abbr": "FT",
"ui-slot-military-abbr": "MC",
"ui-modules-all": "ALL",
"ui-modules-stored": "STR",
"ui-modules-hardpoint": "HPT",
"ui-modules-utility": "UTL",
"ui-modules-core": "COR",
"ui-modules-military": "MIL",
"ui-modules-optional": "OPT",
"ui-modules-slot": "SLOT",
"ui-slots-show": "SHOW",
"ui-slots-show-mass": "Mass",
"ui-slots-show-power": "Power",
"ui-slots-show-attributes": "Attrs",
"ui-slots-show-price": "Price",
"ui-slots-operations": "OPS",
"ui-slots-operations-import": "Import...",
"ui-slots-operations-export": "Export...",
"ui-slots-operations-clone": "Clone Discounts",
"ui-slots-name": "Name:",
"ui-slots-id": "ID:",
"ui-slots-export": "Export:",
"ui-slots-class-abbr": "CL",
"ui-slots-class-desc": "Slot size class",
"ui-slots-module-abbr": "Module",
"ui-slots-mass-abbr": "Mass",
"ui-slots-mass-desc": "Hull or module mass (in tons)",
"ui-slots-power-abbr": "Pwr",
"ui-slots-power-desc": "Module power output or draw (in megawatts), powered status, and power priority group",
"ui-slots-attributes-abbr": "Attributes",
"ui-slots-attributes-desc": "Important attributes of each module type",
"ui-slots-price-abbr": "Price",
"ui-slots-price-desc": "Hull or module price (in credits); for hulls, this excludes all stock modules",
"ui-slots-restricted": "This slot is restricted to specific module types.",
"ui-details-discount-actual": "Actual",
"ui-details-discount-free": "FREE",
"ui-details-blueprint-preeng": "Pre",
"ui-details-blueprint-grade": "Grade",
"ui-button-back": "Back",
"ui-button-cancel": "Cancel",
"ui-button-details": "Details",
"ui-button-generate": "Generate",
"ui-button-import": "Import",
"ui-button-install": "Install",
"ui-button-okay": "Okay",
"ui-button-remove": "Remove",
"ui-button-replace": "Replace",
"ui-stats-show": "SHOW STATS",
"ui-stats-hide": "HIDE STATS",
"ui-stats-totals-abbr": "TTL",
"ui-stats-totals-desc": "Totals and capacities",
"ui-stats-totals-mass-abbr": "MASS",
"ui-stats-totals-mass-desc": "Current mass and maximum laden mass (in tons)",
"ui-stats-totals-fuel-abbr": "FUEL",
"ui-stats-totals-fuel-desc": "Current fuel and total capacity (in tons)",
"ui-stats-totals-cargo-abbr": "CRGO",
"ui-stats-totals-cargo-desc": "Current cargo and total capacity (in tons)",
"ui-stats-totals-passenger-abbr": "PSGR",
"ui-stats-totals-passenger-desc": "Total passenger capacity",
"ui-stats-totals-current-abbr": "CUR",
"ui-stats-totals-current-desc": "Current values used to calculate other statistics",
"ui-stats-totals-maximum-abbr": "MAX",
"ui-stats-totals-maximum-desc": "Maximum value or capacity",
"ui-stats-totals-crew-abbr": "CRW",
"ui-stats-totals-crew-desc": "Crew power assignments",
"ui-stats-totals-crew-available-abbr": "AVL",
"ui-stats-totals-distributor-abbr": "DST",
"ui-stats-totals-distributor-desc": "Power distributor settings",
"ui-stats-totals-distributor-reset-abbr": "RST",
"ui-stats-totals-distributor-systems-abbr": "SYS",
"ui-stats-totals-distributor-engines-abbr": "ENG",
"ui-stats-totals-distributor-weapons-abbr": "WEP",
"ui-stats-totals-retracted-abbr": "RET",
"ui-stats-totals-retracted-desc": "Power draw (in megawatts) with hardpoints retracted",
"ui-stats-totals-deployed-abbr": "DEP",
"ui-stats-totals-deployed-desc": "Power draw (in megawatts) with hardpoints deployed",
"ui-stats-nav-abbr": "NAV",
"ui-stats-nav-desc": "Navigational (FSD and Thruster) statistics",
"ui-stats-nav-jump-abbr": "JMP",
"ui-stats-nav-jump-desc": "Single jump range (in light-years) and fuel scoop time to refuel per max-range jump",
"ui-stats-nav-range-abbr": "RNG",
"ui-stats-nav-range-desc": "Total jump range (in light-years) of max-range jumps on a full fuel tank, and fuel scoop time to refuel per tank",
"ui-stats-nav-speed-abbr": "SPD",
"ui-stats-nav-speed-desc": "Thruster speed (in meters per second) and fuel scoop rate (in tons per second)",
"ui-stats-nav-boost-abbr": "BST",
"ui-stats-nav-boost-desc": "Boost speed (in meters per second)",
"ui-stats-nav-boost-often": "Can boost as often as possible",
"ui-stats-nav-frequency-abbr": "FRQ",
"ui-stats-nav-frequency-desc": "Time for ENG capacitor to recharge for one boost",
"ui-stats-nav-current-abbr": "CUR",
"ui-stats-nav-current-desc": "Current values using configured ENG pips, fuel and cargo settings",
"ui-stats-nav-laden-abbr": "LDN",
"ui-stats-nav-laden-desc": "Values with 4 ENG pips, full fuel, and full cargo",
"ui-stats-nav-unladen-abbr": "UNL",
"ui-stats-nav-unladen-desc": "Values with 4 ENG pips, full fuel, and no cargo",
"ui-stats-nav-maximum-abbr": "MAX",
"ui-stats-nav-maximum-desc": "Maximum values with 4 ENG pips, minimal or no fuel, and no cargo",
"ui-stats-nav-scoop-abbr": "SCP",
"ui-stats-nav-scoop-desc": "Fuel scooping time per jump, time per tank, and rate",
"ui-stats-nav-error-abbr": "ERR",
"ui-stats-nav-error-thruster": "Thruster has insufficient maximum mass",
"ui-stats-nav-error-distributor": "Power distributor has insufficient ENG capacitor to boost",
"ui-stats-handling-abbr": "HND",
"ui-stats-handling-desc": "Handling statistics",
"ui-stats-handling-pitch-abbr": "PIT",
"ui-stats-handling-pitch-desc": "Pitch (nose up/down) speed (in degrees per second) and 180-degree flip time",
"ui-stats-handling-roll-abbr": "ROL",
"ui-stats-handling-roll-desc": "Roll (tilt left/right) speed (in degrees per second) and 180-degree flip time",
"ui-stats-handling-yaw-abbr": "YAW",
"ui-stats-handling-yaw-desc": "Yaw (nose left/right) speed (in degrees per second) and 180-degree flip time",
"ui-stats-handling-current-abbr": "CUR",
"ui-stats-handling-current-desc": "Current values using configured ENG pips, fuel and cargo settings",
"ui-stats-handling-maximum-abbr": "MAX",
"ui-stats-handling-maximum-desc": "Maximum values with 4 ENG pips, minimal or no fuel, and no cargo",
"ui-stats-handling-boost": "BST",
"ui-stats-handling-boost-desc": "Values during engine boost",
"ui-stats-thermal-abbr": "THM",
"ui-stats-thermal-desc": "Thermal statistics",
"ui-stats-thermal-level-abbr": "LVL",
"ui-stats-thermal-level-desc": "Heat level at equilibrium, or time from 66% to 100% heat if overheating",
"ui-stats-thermal-idle-abbr": "IDL",
"ui-stats-thermal-idle-desc": "Values at idle, with thermal load only from power draw and power plant efficiency",
"ui-stats-thermal-thrust-abbr": "THR",
"ui-stats-thermal-thrust-desc": "Values under maximum thrust",
"ui-stats-thermal-fsd-abbr": "FSD",
"ui-stats-thermal-fsd-desc": "Values under maximum thrust with FSD charging",
"ui-stats-thermal-weapons-abbr": "WEP",
"ui-stats-thermal-weapons-desc": "Values under maximum thrust with all weapons firing, with a full and a nearly empty WEP capacitor",
"ui-stats-thermal-scb-abbr": "SCB",
"ui-stats-thermal-scb-desc": "Values under maximum thrust with SCBs firing",
"ui-stats-shield-abbr": "SHD",
"ui-stats-shield-desc": "Shield statistics",
"ui-stats-shield-resist-abbr": "RES",
"ui-stats-shield-resist-desc": "Damage resistance (in %)",
"ui-stats-shield-strength-abbr": "STR",
"ui-stats-shield-strength-desc": "Raw and effective maximum strength (in megajoules)",
"ui-stats-shield-regen-abbr": "RGN",
"ui-stats-shield-regen-desc": "Raw and effective regeneration rate (in megajoules per second)",
"ui-stats-shield-reinforce-abbr": "RNF",
"ui-stats-shield-reinforce-desc": "Raw and effective Shield Cell Bank reinforcement total (in megajoules)",
"ui-stats-shield-raw-abbr": "RAW",
"ui-stats-shield-raw-desc": "Raw values",
"ui-stats-shield-sys-abbr": "SYS",
"ui-stats-shield-sys-desc": "Base resistance from SYS pips, and effective values vs. absolute and non-weapon damage",
"ui-stats-shield-kinetic-abbr": "KIN",
"ui-stats-shield-kinetic-desc": "Kinetic resistance, and effective values vs. kinetic damage (including both KIN and SYS resistance)",
"ui-stats-shield-thermal-abbr": "THM",
"ui-stats-shield-thermal-desc": "Thermal resistance, and effective values vs. thermal damage (including both THM and SYS resistance)",
"ui-stats-shield-explosive-abbr": "EXP",
"ui-stats-shield-explosive-desc": "Explosive resistance, and effective values vs. explosive damage (including both EXP and SYS resistance)",
"ui-stats-shield-rebuild-abbr": "BLD",
"ui-stats-shield-rebuild-desc": "Time to rebuild from 0% to 50%, including SYS pips and 16s delay, from a full SYS capacitor",
"ui-stats-shield-rebuildgen-abbr": "RGN",
"ui-stats-shield-rebuildgen-desc": "Time to regenerate from 50% to 100%, including SYS pips, from an empty SYS capacitor",
"ui-stats-shield-error-abbr": "ERR",
"ui-stats-shield-error-generator": "Shield Generator has insufficient maximum mass",
"ui-stats-armour-abbr": "ARM",
"ui-stats-armour-desc": "Armour statistics",
"ui-stats-armour-resist-abbr": "RES",
"ui-stats-armour-resist-desc": "Hull hardness, and damage resistance (in %)",
"ui-stats-armour-integrity-abbr": "INT",
"ui-stats-armour-integrity-desc": "Raw and effective integrity",
"ui-stats-armour-repair-abbr": "REP",
"ui-stats-armour-repair-desc": "Raw and effective Repair Limpet repair total, assuming full cargo of limpets",
"ui-stats-armour-raw-abbr": "RAW",
"ui-stats-armour-raw-desc": "Raw values",
"ui-stats-armour-mrp-abbr": "MRP",
"ui-stats-armour-mrp-desc": "Module Reinforcement Packages total protection value (in %) and integrity",
"ui-stats-armour-kinetic-abbr": "KIN",
"ui-stats-armour-kinetic-desc": "Kinetic resistance, and effective values vs. kinetic damage (including resistance)",
"ui-stats-armour-thermal-abbr": "THM",
"ui-stats-armour-thermal-desc": "Thermal resistance, and effective values vs. thermal damage (including resistance)",
"ui-stats-armour-explosive-abbr": "EXP",
"ui-stats-armour-explosive-desc": "Explosive resistance, and effective values vs. explosive damage (including resistance)",
"ui-stats-armour-caustic-abbr": "CAU",
"ui-stats-armour-caustic-desc": "Caustic resistance, and effective values vs. caustic damage (including resistance)",
"ui-stats-weapon-abbr": "WPN",
"ui-stats-weapon-desc": "Weapon statistics",
"ui-stats-weapon-burst-abbr": "BST",
"ui-stats-weapon-burst-desc": "Burst damage per second from all weapons, while WEP capacitor and ammo last",
"ui-stats-weapon-raw-abbr": "RAW",
"ui-stats-weapon-raw-desc": "Raw damage per second",
"ui-stats-weapon-absolute-abbr": "ABS",
"ui-stats-weapon-absolute-desc": "Absolute damage proportion",
"ui-stats-weapon-kinetic-abbr": "KIN",
"ui-stats-weapon-kinetic-desc": "Kinetic damage proportion",
"ui-stats-weapon-thermal-abbr": "THM",
"ui-stats-weapon-thermal-desc": "Thermal damage proportion",
"ui-stats-weapon-explosive-abbr": "EXP",
"ui-stats-weapon-explosive-desc": "Explosive damage proportion",
"ui-stats-weapon-antixeno-abbr": "A-X",
"ui-stats-weapon-antixeno-desc": "Anti-xeno damage proportion",
"ui-stats-weapon-duration-abbr": "DUR",
"ui-stats-weapon-duration-desc": "Burst damage duration until WEP capacitor or ammo are exhausted",
"ui-stats-weapon-duration-current-abbr": "CUR",
"ui-stats-weapon-duration-current-desc": "Current capacitor duration using configured power distributor settings",
"ui-stats-weapon-duration-maximum-abbr": "MAX",
"ui-stats-weapon-duration-maximum-desc": "Maximum capacitor duration with 4 WEP pips",
"ui-stats-weapon-duration-ammo-abbr": "AMM",
"ui-stats-weapon-duration-ammo-desc": "Ammo duration with 4 WEP pips",
"ui-stats-weapon-sustained-abbr": "SUS",
"ui-stats-weapon-sustained-desc": "Sustainable damage proportion once WEP capacitor is drained",
"ui-stats-weapon-sustained-current-abbr": "CUR",
"ui-stats-weapon-sustained-current-desc": "Current value using configured power distributor settings",
"ui-stats-weapon-sustained-maximum-abbr": "MAX",
"ui-stats-weapon-sustained-maximum-desc": "Maximum value with 4 WEP pips",
"ui-stats-price-abbr": "PRC",
"ui-stats-price-desc": "Prices",
"ui-stats-price-credits-abbr": "CR",
"ui-stats-price-credits-desc": "Price (in credits)",
"ui-stats-price-refuel-abbr": "RFL",
"ui-stats-price-refuel-desc": "Refuel price for all tanks",
"ui-stats-price-replace-abbr": "RPL",
"ui-stats-price-replace-desc": "Replacement price for all vehicles",
"ui-stats-price-restock-abbr": "RSK",
"ui-stats-price-restock-desc": "Restock price for all AFMUs, SCBs and utility mounts",
"ui-stats-price-rearm-abbr": "RAR",
"ui-stats-price-rearm-desc": "Rearm price for all hardpoint weapons",
"ui-stats-price-rebuy-abbr": "RBY",
"ui-stats-price-rebuy-desc": "Insurance rebuy price",
"ui-stats-price-buy-abbr": "BUY",
"ui-stats-price-buy-desc": "Total buy price",
"ui-retrofit-builds": "Builds",
"ui-retrofit-target-build": "Target Build",
"ui-retrofit-base-build": "Base Build",
"ui-retrofit-settings": "Settings",
"ui-retrofit-settings-rebuy-discounted": "Re-buy if discounted less than",
"ui-retrofit-settings-rebuy-discounted-never": "0% (never)",
"ui-retrofit-settings-rebuy-discounted-always": "100% (always)",
"ui-retrofit-settings-rebuy-engineered": "Re-buy if engineered up to",
"ui-retrofit-settings-rebuy-engineered-0": "grade 0 (unengineered)",
"ui-retrofit-settings-rebuy-engineered-1": "grade 1",
"ui-retrofit-settings-rebuy-engineered-2": "grade 2",
"ui-retrofit-settings-rebuy-engineered-3": "grade 3",
"ui-retrofit-settings-rebuy-engineered-4": "grade 4",
"ui-retrofit-settings-rebuy-engineered-5": "grade 5 (always)",
"ui-retrofit-settings-blueprint": "Apply blueprints up to",
"ui-retrofit-settings-blueprint-grade0": "grade 0 (ignore)",
"ui-retrofit-settings-blueprint-grade1": "grade 1",
"ui-retrofit-settings-blueprint-grade2": "grade 2",
"ui-retrofit-settings-blueprint-grade3": "grade 3",
"ui-retrofit-settings-blueprint-grade4": "grade 4",
"ui-retrofit-settings-blueprint-grade5": "grade 5",
"ui-retrofit-settings-rolls": "Rolls to complete each grade",
"ui-retrofit-settings-expeffects": "Apply experimental effects",
"ui-retrofit-settings-expeffects-never": "never",
"ui-retrofit-settings-expeffects-wpn": "to weapons only",
"ui-retrofit-settings-expeffects-wpn-pp": "to weapons and PPs",
"ui-retrofit-settings-expeffects-wpn-pp-fsd": "to weapons, PPs, and FSDs",
"ui-retrofit-settings-expeffects-always": "always",
"ui-retrofit-generate": "Generate Retrofit Report",
"ui-retrofit-export": "Export Retrofit Report ...",
"ui-retrofit-export-checklist": "Checklist",
"ui-retrofit-export-materials": "Materials",
"ui-retrofit-export-json": "JSON",
"ui-retrofit-export-external": "External",
"ui-retrofit-checklist": "Checklist",
"ui-retrofit-checklist-build": "Build",
"ui-retrofit-checklist-module": "Module",
"ui-retrofit-checklist-action": "Act",
"ui-retrofit-checklist-details": "Details",
"ui-retrofit-materials": "Materials",
"ui-retrofit-materials-item": "Item",
"ui-retrofit-materials-type": "Type",
"ui-retrofit-materials-level": "Lvl",
"ui-retrofit-materials-quantity": "Qty",
"ui-retrofit-materials-credits": "Credits",
"ui-retrofit-action-sell-abbr": "Sell",
"ui-retrofit-action-buy-abbr": "Buy",
"ui-retrofit-action-conv-abbr": "Conv",
"ui-retrofit-action-eng-abbr": "Eng",
"ui-retrofit-action-exp-abbr": "Exp",
"ui-options": "Options",
"ui-options-insurance": "Insurance Level",
"ui-options-insurance-desc": "Select your insurance coverage level to calculate rebuy costs.",
"ui-options-insurance-standard": "95.0% (Standard)",
"ui-options-insurance-beta": "96.3% (Beta backer)",
"ui-options-insurance-alpha": "97.5% (Alpha backer)",
"ui-options-discounts": "Default Discounts",
"ui-options-discounts-desc": "Select the default discounts to apply to new builds and modules.",
"ui-options-discounts-free": "FREE",
"ui-options-builtins": "Builtin Stored Modules",
"ui-options-builtins-desc": "Select which pre-engineered (or otherwise limited availability) modules to display as built-in stored modules.",
"ui-options-builtins-none": "None",
"ui-options-builtins-some": "Some (all Tech Broker, selected CG rewards)",
"ui-options-builtins-all": "All",
"ui-options-hide-small": "Hide Small Modules",
"ui-options-hide-small-desc": "Display only the largest size class of each available module type in the SLOT view of the module browser.",
"ui-options-hide-small-none": "None",
"ui-options-hide-small-some": "Most (except for Power Plants, Thrusters, Power Distributors, and Fuel Tanks)",
"ui-options-hide-small-all": "All",
"ui-options-revsize": "Reverse Module Size Order",
"ui-options-revsize-desc": "Sort modules by size class in descending order in the module browser, rather than ascending order.",
"ui-options-revrating": "Reverse Module Rating Order",
"ui-options-revrating-desc": "Sort modules by rating letter in descending order in the module browser, rather than ascending order.",
"ui-options-experimental-mode": "Experimental Mode",
"ui-options-experimental-mode-desc": "Allow fitting modules that are too large for the slot, of a type not allowed by the ship or the slot, or over the limit for modules of that type, and allow engineering modifiers and experimental effects without applying any blueprint. This allows for theoretical \"what-if\" builds, but disallowed modules will be shown in red to signify that it will not be possible to actually fit them in-game.",
"ui-options-dynamic-layout": "Dynamic Outfitting Modes",
"ui-options-dynamic-layout-desc": "Some of the three outfitting display panels are usually hidden at narrower browser widths; you can override that behavior by disabling specific modes, but this may force the display to scroll horizontally.",
"ui-options-dynamic-stats": "Dynamic Statistics Panels",
"ui-options-dynamic-stats-desc": "Some of the least recently enabled statistics panels are usually hidden at narrower browser widths; you can disable that behavior, but this may force the display to scroll horizontally.",
"ui-options-appearance": "Appearance",
"ui-options-appearance-desc": "Customize EDSY's fonts and colors.",
"ui-options-appearance-text": "Text Font",
"ui-options-appearance-caps": "Caps Font",
"ui-options-appearance-fixed": "Fixed Font",
"ui-options-appearance-colormatrix": "Apply GUI Color Matrix",
"ui-options-appearance-colormatrix-prompt": "Paste your <GUIColour><Default> color matrix here:",
"ui-options-appearance-colormatrix-error": "Error: Invalid color matrix",
"ui-options-appearance-invert": "Invert greys (black-on-white)",
"ui-options-appearance-oranges": "Oranges",
"ui-options-appearance-reds": "Reds",
"ui-options-appearance-blues": "Blues",
"ui-options-appearance-greens": "Greens",
"ui-options-appearance-yellows": "Yellows",
"ui-options-language": "Language",
"ui-options-language-desc": "Select your language/locale. Many languages have very incomplete translations;",
"ui-options-language-help": "you can help!",
"ui-options-language-default": "(Browser Default)",
"ui-options-backup": "Backup All Data",
"ui-options-backup-desc": "Export all stored builds, modules, and other preferences in a structured format suitable for backup or transfer to another device or browser.",
"ui-options-backup-prompt": "Below is a JSON object encoding all stored builds, modules, and other preferences, suitable for backup or transfer to another device or browser.",
"ui-options-restore": "Restore Data",
"ui-options-restore-desc": "Import stored builds, modules, and other preferences that were previously exported from another device or browser.",
"ui-help-contact": "Contact Me",
"ui-help-contact-discord": "discord",
"ui-help-contact-forum": "forum",
"ui-help-contact-reddit": "reddit",
"ui-help-contact-email": "email",
"ui-export-build": "Build",
"ui-export-url": "URL",
"ui-export-short": "Short",
"ui-export-text": "Text",
"ui-export-slef": "SLEF",
"ui-export-external": "External",
"ui-export-search-inara": "Search Inara",
"ui-export-update-inara": "Update Inara",
"ui-export-edomh": "EDOMH",
"ui-export-generating": "Generating ...",
"ui-import-header1-desc": "You can import your current ship (and any others used today) directly from the Frontier API.",
"ui-import-header2-desc": "You must log in with Frontier to grant access, but EDSY will never see your password.",
"ui-import-cmdr": "CMDR",
"ui-import-authorize": "Authorize Account",
"ui-import-authorize-another": "Authorize Another Account",
"ui-import-footer-desc": "You can also import loadout(s) by pasting them below or dropping a file onto the page.",
"ui-import-textbox-notes": "Supported import formats include:\n\n* EDSY URL(s)\n* EDSY backup export\n* SLEF JSON data (from Inara, etc)\n* Journal JSONL data with \"Loadout\" event(s)\n* Frontier API Profile JSON data (via EDAPI, EDCE, EDMC, etc)\n",
"ui-import-error-connector": "EDSY-FDAPI connector error",
"ui-import-error-redirect": "EDSY's API access for this account has expired or been reset.",
"ui-import-reauthorize": "Re-Authorize Account",
"ui-import-retry": "Frontier API returned incomplete data.\n\nThis is common after long sessions; re-try?",
"ui-import-no-data": "Frontier API returned no builds.\n\nThis may happen if you haven't played lately,\nor it may be a temporary error.",
"ui-import-error-api": "Frontier API error",
"ui-import-error-desc": "You can try re-authorizing EDSY's API access, but if the error persists then there may be a temporary API outage.",
"ui-import-querying": "Querying Frontier API ...",
"ui-import-ship-label": "Ship",
"ui-import-ship-desc": "Ship type",
"ui-import-number-label": "#",
"ui-import-number-desc": "Ship purchase number",
"ui-import-name-label": "Name",
"ui-import-name-desc": "Ship name",
"ui-import-id-label": "ID",
"ui-import-id-desc": "Ship ID tag",
"ui-import-errors-label": "Err",
"ui-import-errors-desc": "Import errors",
"ui-import-stored-label": "Label",
"ui-import-stored-desc": "Stored build label",
"ui-import-ignore": "Not saved",
"ui-import-warning-inara": "Inara builds may have small inaccuracies in engineered module attributes",
"ui-import-warning-fdapi": "These FDAPI builds may erroneously show legacy blueprints on all engineered modules",
"ui-import-error-text": "Plain text import is not yet implemented",
"ui-import-error-coriolis": "Coriolis' internal format is not supported; SLEF format is designed for interchange between applications",
"ui-import-error-unrecognized-json": "Unrecognized JSON format",
"ui-import-error-invalid-json": "Invalid JSON encoding",
"ui-import-error-truncated": "URL likely truncated by Windows and/or Internet Explorer",
"ui-import-error-unrecognized": "Unrecognized format",
"ui-import-no-builds": "No builds found",
"ui-import-failed": "Import failed:",
"ui-import-warning-invalid": "Some choices were invalid; hover over the warning icon(s) for details.",
"ui-import-error-duplicate": "Cannot import multiple builds with the same label.",
"message-version": "A new version is available!",
"message-version-desc": "Click Okay to update, or force-refresh in your browser (ctrl+F5, Apple+r, Command+r, etc)",
"message-hash-errors": "Build hash loaded with errors",
"message-hash-invalid": "Invalid build hash",
"message-build-save": "Choose a label for the stored build",
"message-build-rename": "Choose a new label for the stored build",
"message-build-overwrite": "The specified stored build label already exists; it will be overwritten",
"message-module-save": "Choose a label for the stored module",
"message-module-rename": "Choose a new label for the stored module",
"message-module-overwrite-builtin": "Cannot overwrite a builtin module",
"api-error": "remote API error",
"available": "available",
"boost": "boost",
"deployed": "deployed",
"divider": "/",
"empty": "empty",
"full": "full",
"insurance": "insurance",
"laden": "laden",
"n-a": "N/A",
"none": "none",
"note-empty": "(empty)",
"note-empty-slot": "(Empty Slot)",
"note-legacy": "(legacy)",
"option-current-build": "(Current Build)",
"option-no-blueprint": "(No Blueprint)",
"option-no-expeffect": "(No Experimental Effect)",
"option-no-module": "(No Module)",
"option-stock": "(Stock)",
"option-stock-ship": "(Stock Ship)",
"pre-eng": "Pre-engineered",
"retracted": "retracted",
"unknown": "Unknown!",
"unladen": "unladen",
"unit-credits-abbr": "Cr",
"unit-credits-per-ton-abbr": "Cr/T",
"unit-degrees-abbr": "°",
"unit-degrees-per-second-abbr": "°/s",
"unit-hours-abbr": "h",
"unit-kilometers-abbr": "KM",
"unit-lightseconds-abbr": "LS",
"unit-lightyears-abbr": "LY",
"unit-megajoules-per-second": "MJ/s",
"unit-megawatts-abbr": "MW",
"unit-megawatts-per-second-abbr": "MW/s",
"unit-meters-abbr": "M",
"unit-meters-per-second-abbr": "M/s",
"unit-minutes-abbr": "m",
"unit-multiplier-abbr": "x",
"unit-per-megawatt-abbr": "/MW",
"unit-per-second-abbr": "/s",
"unit-percent-abbr": "%",
"unit-seconds-abbr": "s",
"unit-tons-abbr": "T",
"unit-tons-per-second-abbr": "T/s",
"interp-number": "{number}",
"interp-grade-abbr-number": "G{number}",
"interp-index-abbr-number": "#{number}",
"interp-multiplier-abbr-number": "x{number}",
"interp-number-credits-abbr": "{number} Cr",
"interp-number-discount": "{number} discount",
"interp-number-suffix": "{number} {suffix}",
"interp-found-number-builds": "Found {number} build(s). Choose which to save to your stored builds, and/or which to load now, if any.",
"interp-import-number-modules-overwrite": "Also store imported preferences and {number} imported modules (overwriting {overwrite}).",
"interp-estimated-percent-discount": "Module values not specified; applying estimated {percent} discount",
"interp-build-name-overwrite": "A build labeled\n\n {name}\n\nalready exists. Overwrite?",
"interp-build-name-delete": "The stored build labeled\n\n {name}\n\nwill be deleted. Are you sure?",
"interp-module-name-overwrite": "A module labeled\n\n {name}\n\nalready exists. Overwrite?",
"interp-module-name-delete": "The stored module labeled\n\n {name}\n\nwill be deleted. Are you sure?",
"interp-faction-rank-title": "{faction} rank {rank} ({title})",
"interp-rank-number": "rank {number}",
"interp-pwrdraw-pwrcap-megawatts-percent": "{pwrdraw} / {pwrcap} MW ({percent})",
"interp-peak-heat-number-overheat-seconds": "Peak heat level {number}; over 100% for {seconds}s",
"interp-number-added-a-b": "{number} ({a} + {b})",
"interp-version-abcd": "v{a}.{b}.{c}{rc}{d}",
"interp-updated-date": "updated {date}",
"ship-1": "Sidewinder",
"ship-2": "Cobra Mk III",
"ship-3": "Imperial Clipper",
"ship-4": "Federal Dropship",
"ship-5": "Python",
"ship-6": "Anaconda",
"ship-7": "Imperial Courier",
"ship-8": "Cobra Mk IV",
"ship-9": "Alliance Chieftain",
"ship-10": "Alliance Crusader",
"ship-11": "Krait Phantom",
"ship-12": "Mamba",
"ship-13": "Alliance Challenger",
"ship-14": "Krait Mk II",
"ship-15": "Python Mk II",
"ship-16": "Cobra Mk V",
"ship-21": "Eagle",
"ship-22": "Viper Mk III",
"ship-23": "Vulture",
"ship-24": "Fer-de-Lance",
"ship-25": "Imperial Eagle",
"ship-26": "Federal Assault Ship",
"ship-27": "Federal Gunship",
"ship-28": "Viper Mk IV",
"ship-31": "Hauler",
"ship-32": "Type-6 Transporter",
"ship-33": "Type-7 Transporter",
"ship-34": "Type-9 Heavy",
"ship-35": "Keelback",
"ship-36": "Type-10 Defender",
"ship-37": "Type-8 Transporter",
"ship-41": "Adder",
"ship-42": "Asp Explorer",
"ship-43": "Diamondback Scout",
"ship-44": "Diamondback Explorer",
"ship-45": "Asp Scout",
"ship-46": "Mandalay",
"ship-51": "Orca",
"ship-52": "Beluga Liner",
"ship-53": "Dolphin",
"ship-61": "Federal Corvette",
"ship-62": "Imperial Cutter",
"mtype-cbh": "Bulkheads",
"mtype-cch": "Cargo Hatches",
"mtype-cfsd": "Frame Shift Drives",
"mtype-cfsdo": "Frame Shift Drives (SCO)",
"mtype-cft": "Fuel Tanks",
"mtype-cls": "Life Supports",
"mtype-cpd": "Power Distributors",
"mtype-cpp": "Power Plants",
"mtype-cs": "Sensors",
"mtype-ct": "Thrusters",
"mtype-hc": "Cannons",
"mtype-hel": "Beam Lasers",
"mtype-hex": "Experimental",
"mtype-hexgg": "Exp - Guardian Gauss",
"mtype-hexgp": "Exp - Guardian Plasma",
"mtype-hexgs": "Exp - Guardian Shard",
"mtype-hexsc": "Exp - Shock Cannons",
"mtype-hexxc": "Exp - Anti-Xeno Multi-Cannons",
"mtype-hexxm": "Exp - Anti-Xeno Missile Racks",
"mtype-hextp": "Exp - Nanite Torpedoes",
"mtype-hfc": "Fragment Cannons",
"mtype-hm": "Mines",
"mtype-hmc": "Multi-Cannons",
"mtype-hmr": "Missiles",
"mtype-hmtl": "Mining Tools - Lasers",
"mtype-hmtm": "Mining Tools - Launchers",
"mtype-hpa": "Plasma Accelerators",
"mtype-hpl": "Pulse Lasers",
"mtype-hrg": "Rail Guns",
"mtype-htp": "Torpedoes",
"mtype-hul": "Burst Lasers",
"mtype-iafmu": "Auto Field-Maintenance Units",
"mtype-iclc": "Collection Limpets",
"mtype-icr": "Cargo Racks",
"mtype-idlc": "Decontamination Limpets",
"mtype-iex": "Experimental",
"mtype-ifa": "Flight Assists",
"mtype-ifh": "Fighter Hangars",
"mtype-ifs": "Fuel Scoops",
"mtype-ifsdb": "FSD Boosters",
"mtype-ifsdi": "FSD Interdictors",
"mtype-iftlc": "Fuel Transfer Limpets",
"mtype-ihblc": "Hatch Breaker Limpets",
"mtype-ihrp": "Hull Reinforcements",
"mtype-imahrp": "Meta Alloy Hull Reinforcements",
"mtype-imlc": "Multi Limpets",
"mtype-imrp": "Module Reinforcements",
"mtype-inlc": "Recon Limpets",
"mtype-ipc": "Passenger Cabins",
"mtype-iplc": "Prospecting Limpets",
"mtype-ipvh": "Planetary Vehicle Hangars",
"mtype-ir": "Refineries",
"mtype-irlc": "Repair Limpets",
"mtype-iscb": "Shield Cell Banks",
"mtype-isg": "Shield Generators",
"mtype-islc": "Research Limpets",
"mtype-isrp": "Shield Reinforcements",
"mtype-iss": "Surface Scanners",
"mtype-ucl": "Chaff Launchers",
"mtype-ucs": "Manifest Scanners",
"mtype-uec": "ECMs",
"mtype-uex": "Experimental",
"mtype-ufsws": "Wake Scanners",
"mtype-uhsl": "Heat Sink Launchers",
"mtype-ukws": "Kill Warrant Scanners",
"mtype-upd": "Point Defence",
"mtype-upwa": "Pulse Wave Analyser",
"mtype-usb": "Shield Boosters",
"module-150": "Cargo Rack (Cap: 2)",
"module-250": "Cargo Rack (Cap: 4)",
"module-350": "Cargo Rack (Cap: 8)",
"module-450": "Cargo Rack (Cap: 16)",
"module-550": "Cargo Rack (Cap: 32)",
"module-650": "Cargo Rack (Cap: 64)",
"module-750": "Cargo Rack (Cap: 128)",
"module-850": "Cargo Rack (Cap: 256)",
"module-151": "Anti-Corrosion Cargo Rack (Cap: 1)",
"module-161": "Anti-Corrosion Cargo Rack (Cap: 2)",
"module-251": "Anti-Corrosion Cargo Rack (Cap: 4)",
"module-451": "Anti-Corrosion Cargo Rack (Cap: 16)",
"module-551": "Anti-Corrosion Cargo Rack (Cap: 32)",
"module-651": "Anti-Corrosion Cargo Rack (Cap: 64)",
"module-1110": "Auto Field-Maintenance Unit",
"module-2110": "Refinery",
"module-3150": "Standard Docking Computer",
"module-3151": "Advanced Docking Computer",
"module-3152": "Supercruise Assist",
"module-4140": "Hull Reinforcement Package",
"module-4141": "Guardian Hull Reinforcement Package",
"module-5270": "Planetary Vehicle Hangar",
"module-6250": "Economy Class Passenger Cabin",
"module-6251": "Prisoner Cells",
"module-6340": "Business Class Passenger Cabin",
"module-6430": "First Class Passenger Cabin",
"module-6520": "Luxury Class Passenger Cabin",
"module-7540": "Fighter Hangar",
"module-8140": "Module Reinforcement Package",
"module-8141": "Guardian Module Reinforcement Package",
"module-9141": "Meta Alloy Hull Reinforcement Package",
"module-11130": "Detailed Surface Scanner",
"module-12180": "Guardian Frame Shift Drive Booster",
"module-12180-abbr": "Guardian FSD Booster",
"module-13360": "Experimental Weapon Stabiliser",
"module-19322": "Operations Limpet Controller",
"module-19322-abbr": "Operations",
"module-19324": "Xeno Limpet Controller",
"module-19324-abbr": "Xeno",
"module-19331": "Mining Multi Limpet Controller",
"module-19331-abbr": "Mining",
"module-19333": "Rescue Limpet Controller",
"module-19333-abbr": "Rescue",
"module-19710": "Universal Multi Limpet Controller",
"module-19710-abbr": "Universal",
"module-20110": "Fuel Scoop",
"module-21150": "Recon Limpet Controller",
"module-22110": "Collector Limpet Controller",
"module-23110": "Fuel Transfer Limpet Controller",
"module-24110": "Prospector Limpet Controller",
"module-25110": "Frame Shift Drive Interdictor",
"module-26110": "Hatch Breaker Limpet Controller",
"module-26191": "Limpet Control",
"module-27110": "Repair Limpet Controller",
"module-28150": "Research Limpet Controller",
"module-29150": "Decontamination Limpet Controller",
"module-30110": "Shield Generator",
"module-30111": "Prismatic Shield Generator",
"module-30111-abbr": "Prismatic",
"module-30132": "Bi-Weave Shield Generator",
"module-30132-abbr": "Bi-Weave",
"module-31110": "Shield Cell Bank",
"module-32141": "Guardian Shield Reinforcement Package",
"module-40113": "Military Grade Composite",
"module-40114": "Mirrored Surface Composite",
"module-40115": "Reactive Surface Composite",
"module-40122": "Reinforced Alloy",
"module-40131": "Lightweight Alloy",
"module-41210": "Power Plant",
"module-41211": "Guardian Hybrid Power Plant",
"module-42210": "Thrusters",
"module-42211": "Enhanced Performance Thrusters",
"module-42211-abbr": "Enhanced Performance",
"module-43210": "Frame Shift Drive",
"module-43231": "Frame Shift Drive (SCO)",
"module-43231-abbr": "SCO",
"module-44110": "Life Support",
"module-45110": "Power Distributor",
"module-45111": "Guardian Hybrid Power Distributor",
"module-46110": "Sensors",
"module-47130": "Fuel Tank (Cap: 2)",
"module-47230": "Fuel Tank (Cap: 4)",
"module-47330": "Fuel Tank (Cap: 8)",
"module-47430": "Fuel Tank (Cap: 16)",
"module-47530": "Fuel Tank (Cap: 32)",
"module-47630": "Fuel Tank (Cap: 64)",
"module-47730": "Fuel Tank (Cap: 128)",
"module-47830": "Fuel Tank (Cap: 256)",
"module-49180": "Cargo Hatch",
"module-50090": "Chaff Launcher",
"module-51060": "Electronic Countermeasure",
"module-52090": "Heat Sink Launcher",
"module-52091": "Caustic Sink Launcher",
"module-53090": "Point Defence",
"module-54010": "Shield Booster",
"module-55010": "Manifest Scanner",
"module-56010": "Frame Shift Wake Scanner",
"module-57010": "Kill Warrant Scanner",
"module-58030": "Enhanced Xeno Scanner",
"module-58031": "Pulse Wave Xeno Scanner",
"module-58050": "Xeno Scanner",
"module-58052": "Thargoid Pulse Neutraliser",
"module-58061": "Shutdown Field Neutraliser",
"module-59010": "Pulse Wave Analyser",
"module-60150": "Beam Laser",
"module-60154": "Retributor Beam Laser",
"module-61160": "Burst Laser",
"module-61164": "Cytoscrambler Burst Laser",
"module-62160": "Pulse Laser",
"module-62254": "Pulse Disruptor Laser",
"module-70140": "Cannon",
"module-70244": "Concord Cannon",
"module-71150": "Fragment Cannon",
"module-71334": "Pacifier Frag-Cannon",
"module-72144": "Enforcer Cannon",
"module-72160": "Multi-cannon",
"module-72163": "Advanced Multi-cannon",
"module-80190": "Mine Launcher",
"module-80191": "Shock Mine Launcher",
"module-81127": "Sub-surface Displacement Missile",
"module-81229": "Sub-surface Extraction Missile",
"module-81140": "Mining Laser",
"module-81141": "Abrasion Blaster",
"module-81141-abbr": "Abrasion",
"module-81144": "Mining Lance Beam Laser",
"module-81225": "Seismic Charge Launcher",
"module-81225-abbr": "Seismic",
"module-82120": "Missile Rack",
"module-82123": "Seeker Missile Rack",
"module-82126": "Advanced Missile Rack",
"module-82224": "Pack-Hound Missile Rack",
"module-82225": "Rocket Propelled FSD Disrupter",
"module-83230": "Plasma Accelerator",
"module-83324": "Advanced Plasma Accelerator",
"module-84140": "Rail Gun",
"module-84224": "Imperial Hammer Rail Gun",
"module-85193": "Torpedo Pylon",
"module-86226": "Remote Release Flak Launcher",
"module-86226-abbr": "Flak",
"module-86241": "Enhanced AX Missile Rack",
"module-86241-abbr": "Enh",
"module-86246": "Enhanced AX Multi-Cannon",
"module-86246-abbr": "Enh",
"module-86250": "AX Missile Rack",
"module-86253": "AX Multi-Cannon",
"module-87144": "Shock Cannon",
"module-87220": "Enzyme Missile Rack",
"module-87222": "Remote Release Flechette Launcher",
"module-87222-abbr": "Flechette",
"module-88140": "Guardian Gauss Cannon",
"module-88143": "Guardian Plasma Charger",
"module-88146": "Guardian Shard Cannon",
"module-88299": "Guardian Nanite Torpedo Pylon",
"module-88299-abbr": "Nanite Torpedo Pylon",
"blueprint-cbh_br": "Blast Resistant",
"blueprint-cbh_hd": "Heavy Duty",
"blueprint-cbh_kr": "Kinetic Resistant",
"blueprint-cbh_lw": "Light Weight",
"blueprint-cbh_tr": "Thermal Resistant",
"blueprint-cfsd_fb": "Faster Boot",
"blueprint-cfsd_ir": "Increased Range",
"blueprint-cfsd_sh": "Shielded",
"blueprint-cpd_ce": "Charge Enhanced",
"blueprint-cpd_ef": "Engine Focused",
"blueprint-cpd_hc": "High Charge Capacity",
"blueprint-cpd_sf": "System Focused",
"blueprint-cpd_sh": "Shielded",
"blueprint-cpd_wf": "Weapon Focused",
"blueprint-cpp_arm": "Armoured",
"blueprint-cpp_le": "Low Emissions",
"blueprint-cpp_oc": "Overcharged",
"blueprint-cs_lr": "Long Range",
"blueprint-cs_lw": "Light Weight",
"blueprint-cs_wa": "Wide Angle",
"blueprint-ct_ct": "Clean Tuning",
"blueprint-ct_dt": "Dirty Tuning",
"blueprint-ct_str": "Strengthening",
"blueprint-dec_g": "Decorative Green",
"blueprint-dec_p": "Decorative Pink",
"blueprint-dec_r": "Decorative Red",
"blueprint-dec_y": "Decorative Yellow",
"blueprint-ifsdi_eca": "Expanded Capture Arc",
"blueprint-ifsdi_lr": "Longer Range",
"blueprint-ihrp_br": "Blast Resistant",
"blueprint-ihrp_hd": "Heavy Duty",
"blueprint-ihrp_kr": "Kinetic Resistant",
"blueprint-ihrp_lw": "Light Weight",
"blueprint-ihrp_tr": "Thermal Resistant",
"blueprint-iscb_rc": "Rapid Charge",
"blueprint-iscb_sp": "Specialised",
"blueprint-isg_elp": "Enhanced, Low Power",
"blueprint-isg_kr": "Kinetic Resistant",
"blueprint-isg_rf": "Reinforced",
"blueprint-isg_tr": "Thermal Resistant",
"blueprint-iss_er": "Expanded Radius",
"blueprint-misc_lw": "Lightweight",
"blueprint-misc_rf": "Reinforced",
"blueprint-misc_sh": "Shielded",
"blueprint-misc_agzr": "Anti-Guardian Zone Resistance",
"blueprint-scan_fs": "Fast Scan",
"blueprint-scan_lr": "Long Range",
"blueprint-scan_wa": "Wide Angle",
"blueprint-ucl_ammo": "Ammo Capacity",
"blueprint-uhsl_ammo": "Ammo Capacity",
"blueprint-upd_ammo": "Ammo Capacity",
"blueprint-usb_br": "Blast Resistant",
"blueprint-usb_hd": "Heavy Duty",
"blueprint-usb_kr": "Kinetic Resistant",
"blueprint-usb_ra": "Resistance Augmented",
"blueprint-usb_tr": "Thermal Resistant",
"blueprint-wpn_ds": "Double Shot",
"blueprint-wpn_eff": "Efficient",
"blueprint-wpn_foc": "Focused",
"blueprint-wpn_hc": "High Capacity",
"blueprint-wpn_lr": "Long Range",
"blueprint-wpn_lw": "Light Weight",
"blueprint-wpn_oc": "Overcharged",
"blueprint-wpn_rf": "Rapid Fire",
"blueprint-wpn_sr": "Short Range",
"blueprint-wpn_stu": "Sturdy",
"blueprint-wpn_aagf": "Anti-Guardian Zone Resistance",
"expeffect-cbhx_ap": "Angled Plating",
"expeffect-cbhx_dp": "Deep Plating",
"expeffect-cbhx_lp": "Layered Plating",
"expeffect-cbhx_rp": "Reflective Plating",
"expeffect-cfsdx_db": "Double Braced",
"expeffect-cfsdx_dc": "Deep Charge",
"expeffect-cfsdx_mm": "Mass Manager",
"expeffect-cfsdx_sd": "Stripped Down",
"expeffect-cfsdx_ts": "Thermal Spread",
"expeffect-cpdx_cc": "Cluster Capacitors",
"expeffect-cpdx_db": "Double Braced",
"expeffect-cpdx_fc": "Flow Control",
"expeffect-cpdx_sc": "Super Conduits",
"expeffect-cpdx_sd": "Stripped Down",
"expeffect-cppx_db": "Double Braced",
"expeffect-cppx_mon": "Monstered",
"expeffect-cppx_sd": "Stripped Down",
"expeffect-cppx_ts": "Thermal Spread",
"expeffect-ctx_db": "Double Braced",
"expeffect-ctx_ddi": "Drive Distributors",
"expeffect-ctx_ddr": "Drag Drives",
"expeffect-ctx_sd": "Stripped Down",
"expeffect-ctx_ts": "Thermal Spread",
"expeffect-hrgx_feca": "Feedback Cascade",
"expeffect-hrgx_feca-special": "Target shield cell disrupted",
"expeffect-hrgx_plsl": "Plasma Slug",
"expeffect-hrgx_plsl-special": "Reload from ship fuel",
"expeffect-hrgx_supe": "Super Penetrator",
"expeffect-hrgx_supe-special": "Target module damage",
"expeffect-ihrpx_ap": "Angled Plating",
"expeffect-ihrpx_dp": "Deep Plating",
"expeffect-ihrpx_lp": "Layered Plating",
"expeffect-ihrpx_rp": "Reflective Plating",
"expeffect-iscbx_bc": "Boss Cells",
"expeffect-iscbx_db": "Double Braced",
"expeffect-iscbx_fc": "Flow Control",
"expeffect-iscbx_rc": "Recycling Cell",
"expeffect-iscbx_sd": "Stripped Down",
"expeffect-isgx_db": "Double Braced",
"expeffect-isgx_fb": "Force Block",
"expeffect-isgx_fc": "Fast Charge",
"expeffect-isgx_hc": "Hi-Cap",
"expeffect-isgx_ld": "Lo-Draw",
"expeffect-isgx_mw": "Multi-Weave",
"expeffect-isgx_sd": "Stripped Down",
"expeffect-isgx_tb": "Thermo Block",
"expeffect-usbx_bb": "Blast Block",