-
Notifications
You must be signed in to change notification settings - Fork 387
Expand file tree
/
Copy pathLangHandler.java
More file actions
2148 lines (2053 loc) · 155 KB
/
Copy pathLangHandler.java
File metadata and controls
2148 lines (2053 loc) · 155 KB
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
package com.gregtechceu.gtceu.data.lang;
import com.gregtechceu.gtceu.common.data.GTBlocks;
import net.minecraft.locale.Language;
import net.minecraft.network.chat.Component;
import net.minecraft.network.chat.MutableComponent;
import net.minecraftforge.common.data.LanguageProvider;
import com.tterrag.registrate.providers.RegistrateLangProvider;
import org.jetbrains.annotations.NotNull;
import java.lang.reflect.Field;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import java.util.stream.Collectors;
public class LangHandler {
public static void init(RegistrateLangProvider provider) {
AdvancementLang.init(provider);
BlockLang.init(provider);
IntegrationLang.init(provider);
ItemLang.init(provider);
MachineLang.init(provider);
ToolLang.init(provider);
ConfigurationLang.init(provider);
RecipeLogicLang.init(provider);
provider.add("gtceu.gui.editor.tips.citation", "Number of citations");
provider.add("gtceu.gui.editor.group.recipe_type", "cap");
provider.add("ldlib.gui.editor.register.editor.gtceu.rtui", "RecipeType UI Project");
provider.add("ldlib.gui.editor.register.editor.gtceu.mui", "Machine UI Project");
provider.add("ldlib.gui.editor.register.editor.gtceu.template_tab", "templates");
provider.add("ldlib.gui.editor.group.widget.gtm_container", "GTM Container Widgets");
provider.add("ldlib.gui.editor.register.widget.container.gtm_item_slot", "GTM Item Slot");
provider.add("ldlib.gui.editor.register.widget.container.gtm_fluid_slot", "GTM Fluid Slot");
provider.add("ldlib.gui.editor.register.widget.container.gtm_phantom_item_slot", "GTM Phantom Item Slot");
provider.add("ldlib.gui.editor.register.widget.container.gtm_phantom_fluid_slot", "GTM Phantom Fluid Slot");
provider.add("curios.identifier.gtceu_magnet", "GTCEu Magnet");
// capabilities
provider.add("recipe.capability.eu.name", "GTCEu Energy");
provider.add("recipe.capability.fluid.name", "Fluid");
provider.add("recipe.capability.item.name", "Item");
multiLang(provider, "gtceu.oc.tooltip", "Min: %s", "Left click to increase the OC",
"Right click to decrease the OC", "Middle click to reset the OC",
"Hold Shift to change by Perfect OC");
provider.add("recipe.condition.thunder.tooltip", "Thunder Level: %d");
provider.add("recipe.condition.rain.tooltip", "Rain Level: %d");
provider.add("recipe.condition.dimension.tooltip", "Dimension: %s");
provider.add("recipe.condition.dimension_marker.tooltip", "Dimension:");
provider.add("recipe.condition.biome.tooltip", "Biome: %s");
provider.add("recipe.condition.pos_y.tooltip", "Y Level: %d <= Y <= %d");
provider.add("recipe.condition.steam_vent.tooltip", "Clean steam vent");
provider.add("recipe.condition.adjacent_fluid.tooltip", "Fluid blocks around");
provider.add("recipe.condition.adjacent_block.tooltip", "Blocks around");
provider.add("recipe.condition.eu_to_start.tooltip", "EU to Start: %d%s");
provider.add("recipe.condition.daytime.day.tooltip", "Requires day time to work");
provider.add("recipe.condition.daytime.night.tooltip", "Requires night time to work");
provider.add("recipe.condition.gamestage.unlocked_stage", "Unlocked at stage: %s");
provider.add("recipe.condition.gamestage.locked_stage", "Locked at stage: %s");
provider.add("recipe.condition.quest.completed.tooltip", "Requires %s completed");
provider.add("recipe.condition.quest.not_completed.tooltip", "Requires %s not completed");
provider.add("gtceu.io.title", "IO Mode");
provider.add("gtceu.io.import", "Import");
provider.add("gtceu.io.export", "Export");
provider.add("gtceu.io.both", "Both");
provider.add("gtceu.io.none", "None");
provider.add("gtceu.multiblock.page_switcher.io.import", "§2Inputs");
provider.add("gtceu.multiblock.page_switcher.io.export", "§4Outputs");
provider.add("gtceu.multiblock.page_switcher.io.both", "§5Combined Inputs + Outputs");
provider.add("enchantment.disjunction", "Disjunction");
provider.add("item.invalid.name", "Invalid item");
provider.add("fluid.empty", "Empty");
provider.add("gtceu.tooltip.hold_shift", "§7Hold SHIFT for more info");
provider.add("gtceu.tooltip.hold_ctrl", "§7Hold CTRL for more info");
provider.add("gtceu.tooltip.fluid_pipe_hold_shift", "§7Hold SHIFT to show Fluid Containment Info");
provider.add("gtceu.tooltip.tool_fluid_hold_shift",
"§7Hold SHIFT to show Fluid Containment and Tool Info");
provider.add("metaitem.generic.fluid_container.tooltip", "%d/%dL %s");
provider.add("metaitem.generic.electric_item.tooltip", "%d/%d EU - Tier %s");
provider.add("metaitem.generic.electric_item.stored", "%d/%d EU (%s)");
provider.add("metaitem.electric.discharge_mode.enabled", "§eDischarge Mode Enabled");
provider.add("metaitem.electric.discharge_mode.disabled", "§eDischarge Mode Disabled");
provider.add("metaitem.electric.discharge_mode.tooltip", "Use while sneaking to toggle discharge mode");
provider.add("metaitem.dust.tooltip.purify", "Right click a Cauldron to get clean Dust");
provider.add("metaitem.crushed.tooltip.purify", "Right click a Cauldron to get Purified Ore");
provider.add("metaitem.int_circuit.configuration", "Configuration: %d");
provider.add("metaitem.machine_configuration.mode", "§aConfiguration Mode:§r %s");
provider.add("gtceu.mode.fluid", "§9Fluid§r");
provider.add("gtceu.mode.item", "§6Item§r");
provider.add("gtceu.mode.both", "§dBoth (Fluid And Item)§r");
provider.add("gtceu.tool.class.sword", "Sword");
provider.add("gtceu.tool.class.pickaxe", "Pickaxe");
provider.add("gtceu.tool.class.shovel", "Shovel");
provider.add("gtceu.tool.class.axe", "Axe");
provider.add("gtceu.tool.class.hoe", "Hoe");
provider.add("gtceu.tool.class.mining_hammer", "Mining Hammer");
provider.add("gtceu.tool.class.spade", "Spade");
provider.add("gtceu.tool.class.saw", "Saw");
provider.add("gtceu.tool.class.hammer", "Hammer");
provider.add("gtceu.tool.class.mallet", "Soft Mallet");
provider.add("gtceu.tool.class.wrench", "Wrench");
provider.add("gtceu.tool.class.file", "File");
provider.add("gtceu.tool.class.crowbar", "Crowbar");
provider.add("gtceu.tool.class.screwdriver", "Screwdriver");
provider.add("gtceu.tool.class.mortar", "Mortar");
provider.add("gtceu.tool.class.wire_cutter", "Wire Cutter");
provider.add("gtceu.tool.class.knife", "Knife");
provider.add("gtceu.tool.class.butchery_knife", "Butchery Knife");
provider.add("gtceu.tool.class.scythe", "Scythe");
provider.add("gtceu.tool.class.rolling_pin", "Rolling Pin");
provider.add("gtceu.tool.class.plunger", "Plunger");
provider.add("gtceu.tool.class.shears", "Shears");
provider.add("gtceu.tool.class.drill", "Drill");
provider.add("command.gtceu.medical_condition.clear.everything.failed", "Target has no conditions to remove");
provider.add("command.gtceu.medical_condition.clear.everything.success.multiple",
"Removed all conditions from %s targets");
provider.add("command.gtceu.medical_condition.clear.everything.success.single",
"Removed all conditions from %s");
provider.add("command.gtceu.medical_condition.clear.specific.failed",
"Target doesn't have the requested condition");
provider.add("command.gtceu.medical_condition.clear.specific.success.multiple", "Removed %s from %s targets");
provider.add("command.gtceu.medical_condition.clear.specific.success.single", "Removed %s from %s");
provider.add("command.gtceu.medical_condition.give.failed", "Unable to apply this condition (invalid target)");
provider.add("command.gtceu.medical_condition.give.success.multiple", "Applied %s to %s targets");
provider.add("command.gtceu.medical_condition.give.success.single", "Applied %s to %s");
provider.add("command.gtceu.medical_condition.get", "%s has");
provider.add("command.gtceu.medical_condition.get.empty", "%s is perfectly healthy.");
provider.add("command.gtceu.medical_condition.get.element", "- %s for %s minutes %s seconds");
provider.add("command.gtceu.medical_condition.get.element.permanent",
"- %s for %s minutes %s seconds (permanent)");
provider.add("command.gtceu.medical_condition.get.symptoms.empty", "%s has no symptoms.");
provider.add("command.gtceu.medical_condition.get.symptoms", "Currently %s has these symptoms:");
provider.add("command.gtceu.medical_condition.get.symptoms.element", "- %s");
provider.add("command.gtceu.dump_data.success", "Dumped %s resources from registry %s to %s");
provider.add("command.gtceu.place_vein.failure", "Failed to place vein %s at position %s");
provider.add("command.gtceu.place_vein.success", "Placed vein %s at position %s");
provider.add("command.gtceu.share_prospection_data.notification", "%s is sharing prospecting data with you!");
provider.add("command.gtceu.cape.failure.does_not_exist", "Cape %s does not exist");
provider.add("command.gtceu.cape.give.failed", "No new capes were unlocked");
provider.add("command.gtceu.cape.give.success.multiple", "Unlocked %s capes for %s players");
provider.add("command.gtceu.cape.give.success.single", "Unlocked %s capes for %s");
provider.add("command.gtceu.cape.take.failed", "No capes could be removed");
provider.add("command.gtceu.cape.take.success.multiple", "Took %s capes from %s players");
provider.add("command.gtceu.cape.take.success.single", "Took %s capes from %s");
provider.add("command.gtceu.cape.use.failed",
"%s can't use cape %s because they don't have it (or it doesn't exist)!");
provider.add("command.gtceu.cape.use.success", "%s is now using cape %s");
provider.add("command.gtceu.cape.use.success.none", "%s is no longer using a cape");
provider.add("tooltip.gtceu.medical_condition.description", "§l§cHAZARDOUS §7Hold Shift to show details");
provider.add("tooltip.gtceu.medical_condition.description_shift", "§l§cHAZARDOUS:");
provider.add("medical_condition.gtceu.chemical_burns", "§5Chemical burns");
provider.add("medical_condition.gtceu.poison", "§2Poisonous");
provider.add("medical_condition.gtceu.poison.affected", "§2Poisoning");
provider.add("medical_condition.gtceu.weak_poison", "§aWeakly poisonous");
provider.add("medical_condition.gtceu.weak_poison.affected", "§aMinor poisoning");
provider.add("medical_condition.gtceu.irritant", "§6Irritant");
provider.add("medical_condition.gtceu.irritant.affected", "§6Irritation");
provider.add("medical_condition.gtceu.nausea", "§3Nauseating");
provider.add("medical_condition.gtceu.nausea.affected", "§3Nausea");
provider.add("medical_condition.gtceu.carcinogen", "§eCarcinogenic");
provider.add("medical_condition.gtceu.carcinogen.affected", "§eCancer");
provider.add("medical_condition.gtceu.asbestosis", "§dAsbestosis");
provider.add("medical_condition.gtceu.arsenicosis", "§bArsenicosis");
provider.add("medical_condition.gtceu.methanol_poisoning", "§6Methanol Poisoning");
provider.add("medical_condition.gtceu.carbon_monoxide_poisoning", "§7Carbon Monoxide Poisoning");
provider.add("medical_condition.gtceu.none", "§2Not Dangerous");
provider.add("medical_condition.gtceu.none.affected", "§2Nothing?");
provider.add("symptom.gtceu.death", "Death");
provider.add("symptom.gtceu.random_damage", "Occasional damage");
provider.add("symptom.gtceu.health_debuff", "Lowered maximum health");
provider.add("symptom.gtceu.air_supply_debuff", "Lowered lung capacity");
provider.add("symptom.gtceu.mining_fatigue", "Fatigue");
provider.add("symptom.gtceu.weakness", "Weakness");
provider.add("symptom.gtceu.slowness", "Slowness");
provider.add("symptom.gtceu.blindness", "Blindness");
provider.add("symptom.gtceu.darkness", "Darkness");
provider.add("symptom.gtceu.nausea", "Nausea");
provider.add("symptom.gtceu.wither", "Necrosis");
provider.add("symptom.gtceu.weak_poisoning", "Weak poisoning");
provider.add("symptom.gtceu.poisoning", "Poisoning");
provider.add("symptom.gtceu.hunger", "Increased appetite");
provider.add("tooltip.gtceu.hazard_trigger", "Caused by:");
provider.add("tooltip.gtceu.hazard_trigger.protection", "Protects from:");
provider.add("tooltip.gtceu.hazard_trigger.inhalation", "Inhalation");
provider.add("tooltip.gtceu.hazard_trigger.any", "Any contact");
provider.add("tooltip.gtceu.hazard_trigger.skin_contact", "Skin contact");
provider.add("tooltip.gtceu.hazard_trigger.none", "Nothing");
provider.add("tooltip.gtceu.antidote.description", "§aAntidote §7Hold Shift to show details");
provider.add("tooltip.gtceu.antidote.description_shift", "§aCures these conditions:");
provider.add("tooltip.gtceu.antidote.description.effect_removed",
"Removes %s%% of current conditions' effects");
provider.add("tooltip.gtceu.antidote.description.effect_removed.all",
"Removes all of current conditions' effects");
provider.add("gtceu.multiblock.dimension", "§eDimensions: §r%sx%sx%s");
provider.add("item.gtceu.tool.replace_tool_head", "Craft with a new Tool Head to replace it");
provider.add("item.gtceu.tool.usable_as", "§8Usable as: §f%s");
provider.add("item.gtceu.tool.behavior.silk_ice", "§bIce Cutter: §fSilk Harvests Ice");
provider.add("item.gtceu.tool.behavior.torch_place", "§eSpelunker: §fPlaces Torches on Right-Click");
provider.add("item.gtceu.tool.behavior.tree_felling", "§4Lumberjack: §fTree Felling");
provider.add("item.gtceu.tool.behavior.strip_log", "§5Artisan: §fStrips Logs");
provider.add("item.gtceu.tool.behavior.scrape", "§bPolisher: §fRemoves Oxidation");
provider.add("item.gtceu.tool.behavior.remove_wax", "§6Cleaner: §fRemoves Wax");
provider.add("item.gtceu.tool.behavior.shield_disable", "§cBrute: §fDisables Shields");
provider.add("item.gtceu.tool.behavior.relocate_mining", "§2Magnetic: §fRelocates Mined Blocks and Mob Drops");
provider.add("item.gtceu.tool.behavior.aoe_mining", "§5Area-of-Effect: §f%sx%sx%s");
provider.add("item.gtceu.tool.behavior.ground_tilling", "§eFarmer: §fTills Ground");
provider.add("item.gtceu.tool.behavior.grass_path", "§eLandscaper: §fCreates Grass Paths");
provider.add("item.gtceu.tool.behavior.rail_rotation", "§eRailroad Engineer: §fRotates Rails");
provider.add("item.gtceu.tool.behavior.crop_harvesting", "§aHarvester: §fHarvests Crops");
provider.add("item.gtceu.tool.behavior.plunger", "§9Plumber: §fDrains Fluids");
provider.add("item.gtceu.tool.behavior.block_rotation", "§2Mechanic: §fRotates Blocks");
provider.add("item.gtceu.tool.behavior.dowse_campfire", "§6Firefighter: §fDowses Campfires");
provider.add("item.gtceu.tool.behavior.damage_boost", "§4Damage Boost: §fExtra damage against %s");
provider.add("item.gtceu.tool.behavior.prospecting.ore", "Found ore: %s");
provider.add("item.gtceu.tool.behavior.prospecting.air", "Found an air pocket");
provider.add("item.gtceu.tool.behavior.prospecting.water", "Found water");
provider.add("item.gtceu.tool.behavior.prospecting.lava", "Found lava");
provider.add("item.gtceu.tool.behavior.prospecting.changing", "Detected material change");
replace(provider, "item.gtceu.tool.sword", "%s Sword");
replace(provider, "item.gtceu.tool.pickaxe", "%s Pickaxe");
replace(provider, "item.gtceu.tool.shovel", "%s Shovel");
replace(provider, "item.gtceu.tool.axe", "%s Axe");
replace(provider, "item.gtceu.tool.hoe", "%s Hoe");
replace(provider, "item.gtceu.tool.saw", "%s Saw");
replace(provider, "item.gtceu.tool.hammer", "%s Hammer");
provider.add("item.gtceu.tool.hammer.tooltip", "§8Crushes Blocks when harvesting them");
replace(provider, "item.gtceu.tool.mallet", "%s Soft Mallet");
multilineLang(provider, "item.gtceu.tool.mallet.tooltip",
"§8Sneak to Pause Machine After Current Recipe.\n§8Stops/Starts Machines");
replace(provider, "item.gtceu.tool.wrench", "%s Wrench");
provider.add("item.gtceu.tool.wrench.tooltip", "§8Hold left click to dismantle Machines");
replace(provider, "item.gtceu.tool.file", "%s File");
replace(provider, "item.gtceu.tool.crowbar", "%s Crowbar");
provider.add("item.gtceu.tool.crowbar.tooltip", "§8Dismounts Covers");
replace(provider, "item.gtceu.tool.screwdriver", "%s Screwdriver");
provider.add("item.gtceu.tool.screwdriver.tooltip", "§8Adjusts Covers and Machines");
replace(provider, "item.gtceu.tool.mortar", "%s Mortar");
replace(provider, "item.gtceu.tool.wire_cutter", "%s Wire Cutter");
replace(provider, "item.gtceu.tool.knife", "%s Knife");
replace(provider, "item.gtceu.tool.butchery_knife", "%s Butchery Knife");
provider.add("item.gtceu.tool.butchery_knife.tooltip", "§8Has a slow Attack Rate");
replace(provider, "item.gtceu.tool.scythe", "%s Scythe");
provider.add("item.gtceu.tool.scythe.tooltip", "§8Because a Scythe doesn't make Sense");
replace(provider, "item.gtceu.tool.rolling_pin", "%s Rolling Pin");
replace(provider, "item.gtceu.tool.lv_drill", "%s Drill (LV)");
replace(provider, "item.gtceu.tool.mv_drill", "%s Drill (MV)");
replace(provider, "item.gtceu.tool.hv_drill", "%s Drill (HV)");
replace(provider, "item.gtceu.tool.ev_drill", "%s Drill (EV)");
replace(provider, "item.gtceu.tool.iv_drill", "%s Drill (IV)");
replace(provider, "item.gtceu.tool.lv_wirecutter", "%s Wire Cutter (LV)");
replace(provider, "item.gtceu.tool.hv_wirecutter", "%s Wire Cutter (HV)");
replace(provider, "item.gtceu.tool.iv_wirecutter", "%s Wire Cutter (IV)");
replace(provider, "item.gtceu.tool.mining_hammer", "%s Mining Hammer");
provider.add("item.gtceu.tool.mining_hammer.tooltip",
"§8Mines a large area at once (unless you're crouching)");
replace(provider, "item.gtceu.tool.spade", "%s Spade");
provider.add("item.gtceu.tool.spade.tooltip", "§8Mines a large area at once (unless you're crouching)");
replace(provider, "item.gtceu.tool.lv_chainsaw", "%s Chainsaw (LV)");
replace(provider, "item.gtceu.tool.mv_chainsaw", "%s Chainsaw (MV)");
replace(provider, "item.gtceu.tool.hv_chainsaw", "%s Chainsaw (HV)");
replace(provider, "item.gtceu.tool.iv_chainsaw", "%s Chainsaw (IV)");
replace(provider, "item.gtceu.tool.lv_wrench", "%s Wrench (LV)");
provider.add("item.gtceu.tool.lv_wrench.tooltip", "§8Hold left click to dismantle Machines");
replace(provider, "item.gtceu.tool.hv_wrench", "%s Wrench (HV)");
provider.add("item.gtceu.tool.hv_wrench.tooltip", "§8Hold left click to dismantle Machines");
replace(provider, "item.gtceu.tool.iv_wrench", "%s Wrench (IV)");
provider.add("item.gtceu.tool.iv_wrench.tooltip", "§8Hold left click to dismantle Machines");
replace(provider, "item.gtceu.tool.buzzsaw", "%s Buzzsaw (LV)");
provider.add("item.gtceu.tool.buzzsaw.tooltip", "§8Not suitable for harvesting Blocks");
replace(provider, "item.gtceu.tool.lv_screwdriver", "%s Screwdriver (LV)");
provider.add("item.gtceu.tool.lv_screwdriver.tooltip", "§8Adjusts Covers and Machines");
replace(provider, "item.gtceu.tool.hv_screwdriver", "%s Screwdriver (HV)");
provider.add("item.gtceu.tool.hv_screwdriver.tooltip", "§8Adjusts Covers and Machines");
replace(provider, "item.gtceu.tool.iv_screwdriver", "%s Screwdriver (IV)");
provider.add("item.gtceu.tool.iv_screwdriver.tooltip", "§8Adjusts Covers and Machines");
replace(provider, "item.gtceu.tool.plunger", "%s Plunger");
provider.add("item.gtceu.tool.plunger.tooltip", "§8Removes Fluids from Machines");
replace(provider, "item.gtceu.tool.shears", "%s Shears");
provider.add("item.gtceu.tool.tooltip.crafting_uses", "%s §aCrafting Uses");
provider.add("item.gtceu.tool.tooltip.max_uses", "%s §eTotal Durability");
provider.add("item.gtceu.tool.tooltip.general_uses", "%s §bDurability");
provider.add("item.gtceu.tool.tooltip.attack_damage", "%s §cAttack Damage");
provider.add("item.gtceu.tool.tooltip.attack_speed", "%s §9Attack Speed");
provider.add("item.gtceu.tool.tooltip.mining_speed", "%s §dMining Speed");
provider.add("item.gtceu.tool.tooltip.harvest_level", "§eHarvest Level %s");
provider.add("item.gtceu.tool.tooltip.harvest_level_extra", "§eHarvest Level %s §f(%s§f)");
multiLang(provider, "item.gtceu.tool.harvest_level", "§8Wood", "§7Stone", "§aIron", "§bDiamond",
"§dNetherite",
"§9Duranium", "§cNeutronium");
provider.add("item.gtceu.tool.tooltip.repair_info", "§8Hold SHIFT to show Repair Info");
provider.add("item.gtceu.tool.tooltip.repair_material", "§8Repair with: §f§a%s");
provider.add("item.gtceu.tool.tooltip.default_enchantments", "§5Default Enchantments:");
provider.add("item.gtceu.tool.aoe.rows", "Rows");
provider.add("item.gtceu.tool.aoe.columns", "Columns");
provider.add("item.gtceu.tool.aoe.layers", "Layers");
provider.add("item.gtceu.armor.helmet", "%s Helmet");
provider.add("item.gtceu.armor.chestplate", "%s Chestplate");
provider.add("item.gtceu.armor.leggings", "%s Leggings");
provider.add("item.gtceu.armor.boots", "%s Boots");
provider.add("item.gtceu.turbine_rotor.tooltip", "Turbine Rotors for your power station");
provider.add("metaitem.clipboard.tooltip",
"Can be written on (without any writing Instrument). Right-click on Wall to place, and Shift-Right-Click to remove");
provider.add("metaitem.behavior.mode_switch.tooltip", "Use while sneaking to switch mode");
provider.add("metaitem.behavior.mode_switch.mode_switched", "§eMode Set to: %s");
provider.add("metaitem.behavior.mode_switch.current_mode", "Mode: %s");
provider.add("metaitem.tool.tooltip.primary_material", "§fMaterial: §e%s");
provider.add("metaitem.tool.tooltip.durability", "§fDurability: §a%d / %d");
provider.add("metaitem.tool.tooltip.rotor.efficiency", "Turbine Efficiency: §9%d%%");
provider.add("metaitem.tool.tooltip.rotor.power", "Turbine Power: §9%d%%");
provider.add("item.gtceu.ulv_voltage_coil.tooltip", "Primitive Coil");
provider.add("item.gtceu.lv_voltage_coil.tooltip", "Basic Coil");
provider.add("item.gtceu.mv_voltage_coil.tooltip", "Good Coil");
provider.add("item.gtceu.hv_voltage_coil.tooltip", "Advanced Coil");
provider.add("item.gtceu.ev_voltage_coil.tooltip", "Extreme Coil");
provider.add("item.gtceu.iv_voltage_coil.tooltip", "Elite Coil");
provider.add("item.gtceu.luv_voltage_coil.tooltip", "Master Coil");
provider.add("item.gtceu.zpm_voltage_coil.tooltip", "Super Coil");
provider.add("item.gtceu.uv_voltage_coil.tooltip", "Ultimate Coil");
provider.add("item.gtceu.uhv_voltage_coil.tooltip", "Ultra Coil");
provider.add("item.gtceu.uev_voltage_coil.tooltip", "Unreal Coil");
provider.add("item.gtceu.uiv_voltage_coil.tooltip", "Insane Coil");
provider.add("item.gtceu.uxv_voltage_coil.tooltip", "Epic Coil");
provider.add("item.gtceu.opv_voltage_coil.tooltip", "Legendary Coil");
provider.add("item.gtceu.max_voltage_coil.tooltip", "Maximum Coil");
provider.add("metaitem.liquid_fuel_jetpack.tooltip", "Uses Combustion Generator Fuels for Thrust");
provider.add("metaarmor.nms.nightvision.enabled", "NanoMuscle™ Suite: NightVision Enabled");
provider.add("metaarmor.nms.nightvision.disabled", "NanoMuscle™ Suite: NightVision Disabled");
provider.add("metaarmor.nms.nightvision.error", "NanoMuscle™ Suite: §cNot enough power!");
provider.add("metaarmor.qts.nightvision.enabled", "QuarkTech™ Suite: NightVision Enabled");
provider.add("metaarmor.qts.nightvision.disabled", "QuarkTech™ Suite: NightVision Disabled");
provider.add("metaarmor.qts.nightvision.error", "QuarkTech™ Suite: §cNot enough power!");
provider.add("metaarmor.nms.step_assist.disabled", "NanoMuscle™ Suite: StepAssist Disabled");
provider.add("metaarmor.nms.step_assist.enabled", "NanoMuscle™ Suite: StepAssist Enabled");
provider.add("metaarmor.qts.step_assist.disabled", "QuarkTech™ Suite: StepAssist Disabled");
provider.add("metaarmor.qts.step_assist.enabled", "QuarkTech™ Suite: StepAssist Enabled");
provider.add("metaarmor.qts.boosted_jump.enabled", "QuarkTech™ Suite: Jump Boost Enabled");
provider.add("metaarmor.qts.boosted_jump.disabled", "QuarkTech™ Suite: Jump Boost Disabled");
provider.add("metaarmor.jetpack.flight.enable", "Jetpack: Flight Enabled");
provider.add("metaarmor.jetpack.flight.disable", "Jetpack: Flight Disabled");
provider.add("metaarmor.jetpack.hover.enable", "Jetpack: Hover Mode Enabled");
provider.add("metaarmor.jetpack.hover.disable", "Jetpack: Hover Mode Disabled");
provider.add("metaarmor.jetpack.emergency_hover_mode", "Emergency Hover Mode Enabled!");
provider.add("metaarmor.nms.share.enable", "NanoMuscle™ Suite: Charging Enabled");
provider.add("metaarmor.nms.share.disable", "NanoMuscle™ Suite: Charging Disabled");
provider.add("metaarmor.nms.share.error", "NanoMuscle™ Suite: §cNot enough power for charging!");
provider.add("metaarmor.qts.share.enable", "QuarkTech™ Suite: Charging Enabled");
provider.add("metaarmor.qts.share.disable", "QuarkTech™ Suite: Charging Disabled");
provider.add("metaarmor.qts.share.error", "QuarkTech™ Suite: §cNot enough power for charging!");
provider.add("metaarmor.message.nightvision.enabled", "§bNightVision: §aOn");
provider.add("metaarmor.message.nightvision.disabled", "§bNightVision: §cOff");
provider.add("metaarmor.message.nightvision.error", "§cNot enough power!");
provider.add("metaarmor.message.step_assist.enabled", "§bStep-Assist: §aOn");
provider.add("metaarmor.message.step_assist.disabled", "§bStep-Assist: §cOff");
provider.add("metaarmor.tooltip.stepassist", "Provides Step-Assist");
provider.add("metaarmor.tooltip.speed", "Increases Running Speed");
provider.add("metaarmor.tooltip.jump", "Increases Jump Height and Distance");
provider.add("metaarmor.tooltip.falldamage", "Nullifies Fall Damage");
provider.add("metaarmor.tooltip.potions", "Nullifies Harmful Effects");
provider.add("metaarmor.tooltip.burning", "Nullifies Burning");
provider.add("metaarmor.tooltip.freezing", "Prevents Freezing");
provider.add("metaarmor.tooltip.breath", "Replenishes Underwater Breath Bar");
provider.add("metaarmor.tooltip.autoeat", "Replenishes Food Bar by Using Food from Inventory");
provider.add("metaarmor.hud.status.enabled", "§aON");
provider.add("metaarmor.hud.status.disabled", "§cOFF");
provider.add("metaarmor.hud.energy_lvl", "Energy Level: %s");
provider.add("metaarmor.hud.engine_enabled", "Engine Enabled: %s");
provider.add("metaarmor.hud.fuel_lvl", "Fuel Level: %s");
provider.add("metaarmor.hud.hover_mode", "Hover Mode: %s");
provider.add("mataarmor.hud.supply_mode", "Supply Mode: %s");
provider.add("metaarmor.hud.gravi_engine", "GraviEngine: %s");
provider.add("metaarmor.energy_share.error", "Energy Supply: §cNot enough power for gadgets charging!");
provider.add("metaarmor.energy_share.enable", "Energy Supply: Gadgets charging enabled");
provider.add("metaarmor.energy_share.disable", "Energy Supply: Gadgets charging disabled");
provider.add("metaarmor.energy_share.tooltip", "Supply mode: %s");
provider.add("metaarmor.energy_share.tooltip.guide",
"To change mode shift-right click when holding item");
provider.add("metaitem.record.sus.tooltip", "§7Leonz - Among Us Drip");
provider.add("item.gtceu.nan_certificate.tooltip", "Challenge Accepted!");
provider.add("item.gtceu.blacklight.tooltip", "Long-Wave §dUltraviolet§7 light source");
provider.add("gui.widget.incrementButton.default_tooltip",
"Hold Shift, Ctrl or both to change the amount");
provider.add("gtceu.recipe_type.show_recipes", "Show Recipes");
multilineLang(provider, "gtceu.recipe_memory_widget.tooltip",
"§7Left click to automatically input this recipe into the crafting grid\n§7Shift click to lock/unlock this recipe");
provider.add("cover.filter.blacklist.disabled", "Whitelist");
provider.add("cover.filter.blacklist.enabled", "Blacklist");
provider.add("cover.tag_filter.title", "Tag Filter");
multilineLang(provider, "cover.tag_filter.info",
"""
§bAccepts complex expressions
§6a & b§r = AND
§6a | b§r = OR
§6a ^ b§r = XOR
§6!a§r = NOT
§6(a)§r for grouping
§6*§r for wildcard
§6$§r for untagged
§bTags come in the form 'namespace:tag/subtype'.
The 'forge:' namespace is assumed if one isn't provided.
§bExample: §6*dusts/gold | (gtceu:circuits & !*lv)
This matches all gold dusts or all circuits except LV ones""");
provider.add("cover.tag_filter.test_slot.info",
"Insert a item to test if it matches the filter expression");
provider.add("cover.tag_filter.matches", "Item matches");
provider.add("cover.tag_filter.matches_not", "Item does not match");
provider.add("cover.fluid_filter.title", "Fluid Filter");
multilineLang(provider, "cover.fluid_filter.config_amount",
"Scroll wheel up increases amount, down decreases.\nShift[§6x10§r],Ctrl[§ex100§r],Shift+Ctrl[§ax1000§r]\nRight click increases amount, left click decreases.\nHold shift to double/halve.\nMiddle click to clear");
provider.add("cover.fluid_filter.mode.filter_fill", "Filter Fill");
provider.add("cover.fluid_filter.mode.filter_drain", "Filter Drain");
provider.add("cover.fluid_filter.mode.filter_both", "Filter Fill & Drain");
provider.add("cover.item_filter.title", "Item Filter");
provider.add("cover.storage.title", "Storage Cover");
provider.add("cover.filter.mode.title", "Filter Mode");
provider.add("cover.filter.mode.filter_insert", "Filter Insert");
provider.add("cover.filter.mode.filter_extract", "Filter Extract");
provider.add("cover.filter.mode.filter_both", "Filter Insert/Extract");
provider.add("cover.manual.mode.title", "Manual I/O");
provider.add("cover.manual.mode.disabled", "§bDisabled§r");
provider.add("cover.manual.mode.filtered", "§bFiltered§r");
provider.add("cover.manual.mode.unfiltered", "§bUnfiltered§r");
provider.add("cover.item_filter.ignore_damage.enabled", "Ignore Damage");
provider.add("cover.item_filter.ignore_damage.disabled", "Respect Damage");
provider.add("cover.item_filter.ignore_nbt.enabled", "Ignore NBT");
provider.add("cover.item_filter.ignore_nbt.disabled", "Respect NBT");
provider.add("cover.voiding.voiding_mode.void_any", "Void Matching");
provider.add("cover.voiding.voiding_mode.void_overflow", "Void Overflow");
multilineLang(provider, "cover.voiding.voiding_mode.description",
"§eVoid Matching§r will void anything matching the filter. \n§eVoid Overflow§r will void anything matching the filter, up to the specified amount.");
provider.add("cover.fluid.voiding.title", "Fluid Voiding Settings");
provider.add("cover.fluid.voiding.advanced.title", "Advanced Fluid Voiding Settings");
provider.add("cover.item.voiding.title", "Item Voiding Settings");
provider.add("cover.item.voiding.advanced.title", "Advanced Item Voiding Settings");
provider.add("cover.voiding.label.disabled", "Disabled");
provider.add("cover.voiding.label.enabled", "Enabled");
provider.add("cover.voiding.tooltip",
"§cWARNING!§7 Setting this to \"Enabled\" means that fluids or items WILL be voided.");
provider.add("cover.voiding.message.disabled", "Voiding Cover Disabled");
provider.add("cover.voiding.message.enabled", "Voiding Cover Enabled");
provider.add("cover.item_smart_filter.title", "Smart Item Filter");
provider.add("cover.item_smart_filter.filtering_mode.electrolyzer", "Electrolyzer");
provider.add("cover.item_smart_filter.filtering_mode.centrifuge", "Centrifuge");
provider.add("cover.item_smart_filter.filtering_mode.sifter", "Sifter");
multilineLang(provider, "cover.item_smart_filter.filtering_mode.description",
"Select Machine this Smart Filter will use for filtering.\nIt will automatically pick right portions of items for robotic arm.");
provider.add("cover.conveyor.title", "Conveyor Cover Settings (%s)");
provider.add("cover.conveyor.transfer_rate", "§7items/sec");
provider.add("cover.conveyor.mode", "Mode: %s");
provider.add("cover.conveyor.mode.export", "Mode: Export");
provider.add("cover.conveyor.mode.import", "Mode: Import");
provider.add("cover.distribution.mode.title", "Distribution Mode");
provider.add("cover.distribution.mode.round_robin_global", "Round Robin");
provider.add("cover.distribution.mode.round_robin_prio", "Round Robin with Restriction");
provider.add("cover.distribution.mode.insert_first", "Priority");
multilineLang(provider, "cover.conveyor.distribution.round_robin_global",
"Distribution Mode: §bRound Robin\n§7Splits items equally across connected inventories");
multilineLang(provider, "cover.conveyor.distribution.round_robin_prio",
"Distribution Mode: §bRound Robin with Restriction\n§7Tries to split items equally across connected inventories.\n§7Will not send items down Restrictive item pipes unless no other paths are available.");
multilineLang(provider, "cover.conveyor.distribution.insert_first",
"Distribution Mode: §bPriority\n§7Will insert into the first inventory with the highest priority it can find.\n§7Restrictive item pipes lower the priority of a path.");
multilineLang(provider, "cover.conveyor.blocks_input.enabled",
"If enabled, items will not be inserted when cover is set to pull items from the inventory into pipe.\n§aEnabled");
multilineLang(provider, "cover.conveyor.blocks_input.disabled",
"If enabled, items will not be inserted when cover is set to pull items from the inventory into pipe.\n§cDisabled");
// TODO edit to be descriptions
provider.add("cover.universal.manual_import_export.mode.disabled",
"Manual I/O: §bDisabled\n§7Items / Fluids will only move as specified by the cover and its filter.");
provider.add("cover.universal.manual_import_export.mode.filtered",
"Manual I/O: §bFiltered\n§7Items / Fluids can be extracted and inserted independently of the cover mode, as long as its filter matches (if any)");
provider.add("cover.universal.manual_import_export.mode.unfiltered",
"Manual I/O: §bUnfiltered\n§7Items / Fluids can be moved independently of the cover mode. The filter only applies to what is inserted or extracted by this cover itself.");
multilineLang(provider, "cover.universal.manual_import_export.mode.description",
"§eDisabled§r - Items/fluids will only move as specified by the cover and its filter. \n§eAllow Filtered§r - Items/fluids can be extracted and inserted independently of the cover mode, as long as its filter matches (if any). \n§eAllow Unfiltered§r - Items/fluids can be moved independently of the cover mode. Filter applies to the items inserted or extracted by this cover");
provider.add("cover.conveyor.item_filter.title", "Item Filter");
multiLang(provider, "cover.conveyor.tag.title", "Tag Name",
"(use * for wildcard)");
provider.add("cover.robotic_arm.transfer_mode.title", "Transfer Mode");
provider.add("cover.robotic_arm.transfer_mode.transfer_any",
"§eTransfer Any§r - in this mode, cover will transfer as many items matching its filter as possible.");
provider.add("cover.robotic_arm.transfer_mode.transfer_exact",
"§eSupply Exact§r - in this mode, cover will supply items in portions specified in item filter slots (or variable under this button for tag filter). If amount of items is less than portion size, items won't be moved.");
provider.add("cover.robotic_arm.transfer_mode.keep_exact",
"§eKeep Exact§r - in this mode, cover will keep specified amount of items in the destination inventory, supplying additional amount of items if required.");
provider.add("cover.robotic_arm.transfer_mode.transfer_multiple",
"§eTransfer Multiple§r - like supply exact, but can transfer a multiple of the specified amount in 1 operation (i.e. if the amount is 5, and there are 32 items in the input, 30 will be transferred).");
provider.add("cover.robotic_arm.transfer_mode.keep_multiple",
"§eKeep Multiple§r - in this mode, the cover will transfer as many items as possible, such that the output will have a multiple of the specified amount of items.");
multilineLang(provider, "cover.robotic_arm.transfer_mode.description",
"§7Tip: left/right click on filter slots to change item amount, use shift clicking to change amount faster.");
provider.add("cover.pump.title", "Pump Cover Settings (%s)");
provider.add("cover.pump.transfer_rate", "%s");
provider.add("cover.pump.mode.export", "Mode: Export");
provider.add("cover.pump.mode.import", "Mode: Import");
provider.add("cover.pump.fluid_filter.title", "Fluid Filter");
provider.add("cover.bucket.mode.bucket", "B");
provider.add("cover.bucket.mode.milli_bucket", "mB");
provider.add("cover.fluid_regulator.title", "Fluid Regulator Settings (%s)");
multilineLang(provider, "cover.fluid_regulator.transfer_mode.description",
"§eTransfer Any§r - in this mode, cover will transfer as many fluids matching its filter as possible.\n§eSupply Exact§r - in this mode, cover will supply fluids in portions specified in the window underneath this button. If amount of fluids is less than portion size, fluids won't be moved.\n§eKeep Exact§r - in this mode, cover will keep specified amount of fluids in the destination inventory, supplying additional amount of fluids if required.\n§7Tip: shift click will multiply increase/decrease amounts by 10 and ctrl click will multiply by 100.");
provider.add("cover.fluid_regulator.supply_exact", "Supply Exact: %s");
provider.add("cover.fluid_regulator.keep_exact", "Keep Exact: %s");
provider.add("cover.machine_controller.title", "Machine Controller Settings");
provider.add("cover.machine_controller.normal", "Normal");
provider.add("cover.machine_controller.inverted", "Inverted");
multilineLang(provider, "cover.machine_controller.invert.enabled",
"§eInverted§r - in this mode, the cover will require a signal stronger than the set redstone level to run");
multilineLang(provider, "cover.machine_controller.invert.disabled",
"§eNormal§r - in this mode, the cover will require a signal weaker than the set redstone level to run");
provider.add("cover.machine_controller.control", "Controller Target");
provider.add("cover.machine_controller.redstone", "Min Redstone Strength: %d");
provider.add("cover.machine_controller.suspend_powerfail", "Prevent Power Failing:");
provider.add("cover.machine_controller.mode.machine", "Control Machine");
provider.add("cover.machine_controller.mode.cover_up", "Control Cover (Top)");
provider.add("cover.machine_controller.mode.cover_down", "Control Cover (Bottom)");
provider.add("cover.machine_controller.mode.cover_south", "Control Cover (South)");
provider.add("cover.machine_controller.mode.cover_north", "Control Cover (North)");
provider.add("cover.machine_controller.mode.cover_east", "Control Cover (East)");
provider.add("cover.machine_controller.mode.cover_west", "Control Cover (West)");
provider.add("cover.machine_controller.cover_not_controllable", "Cover not controllable");
provider.add("cover.machine_controller.this_cover", "This cover");
provider.add("cover.enable_with_redstone", "Enable with Redstone");
provider.add("cover.disable_with_redstone", "Disable with Redstone");
provider.add("cover.machine_controller.mode.null", "Control Nothing");
provider.add("cover.ender_link.tooltip.channel_description", "Channel description");
provider.add("cover.ender_link.tooltip.channel_name", "Channel ID (32-bit hexadecimal value)");
provider.add("cover.ender_link.description_empty", "Empty Description");
provider.add("cover.ender_link.tooltip.list_button", "Show channel list");
provider.add("cover.ender_link.tooltip.clear_button", "Clear channel description");
provider.add("cover.ender_link.public.tooltip", "Public mode: Accessible to all players");
provider.add("cover.ender_link.protected.tooltip", "Protected Mode: Accessible to players on the same team.");
provider.add("cover.ender_link.private.tooltip",
"Private mode: Only accessible to the player who placed this cover");
provider.add("cover.ender_fluid_link.title", "Ender Fluid Link");
provider.add("cover.ender_item_link.title", "Ender Item Link");
provider.add("cover.ender_redstone_link.title", "Ender Redstone Link");
provider.add("cover.ender_fluid_link.iomode.enabled", "I/O Enabled");
provider.add("cover.ender_fluid_link.iomode.disabled", "I/O Disabled");
provider.add("cover.detector_base.message_normal_state", "Monitoring Status: Normal");
provider.add("cover.detector_base.message_inverted_state", "Monitoring Status: Inverted");
var detectorLatchDescription = """
Change the redstone behavior of this Cover.
§eContinuous§7 - Default; values less than the minimum output 0; values higher than the maximum output 15; values between min and max output between 0 and 15
§eLatched§7 - output 15 until above max, then output 0 until below min""";
multilineLang(provider, "cover.advanced_detector.latch.enabled",
"Behavior: Latched\n\n" + detectorLatchDescription);
multilineLang(provider, "cover.advanced_detector.latch.disabled",
"Behavior: Continuous\n\n" + detectorLatchDescription);
provider.add("cover.advanced_energy_detector.label", "Advanced Energy Detector");
provider.add("cover.advanced_energy_detector.min", "Min");
provider.add("cover.advanced_energy_detector.max", "Max");
var advancedEnergyDetectorInvertDescription = "Toggle to invert the redstone logic\nBy default, redstone is emitted when less than the minimum EU, and stops emitting when greater than the max EU";
multilineLang(provider, "cover.advanced_energy_detector.invert.enabled",
"Output: Inverted\n\n" + advancedEnergyDetectorInvertDescription);
multilineLang(provider, "cover.advanced_energy_detector.invert.disabled",
"Output: Normal\n\n" + advancedEnergyDetectorInvertDescription);
var advancedEnergyDetectorModeDescription = "Change between using discrete EU values or percentages for comparing min/max against an attached energy storage.";
multilineLang(provider, "cover.advanced_energy_detector.use_percent.enabled",
"Mode: Percentage\n\n" + advancedEnergyDetectorModeDescription);
multilineLang(provider, "cover.advanced_energy_detector.use_percent.disabled",
"Mode: Discrete EU\n\n" + advancedEnergyDetectorModeDescription);
provider.add("cover.advanced_fluid_detector.label", "Advanced Fluid Detector");
var advancedFluidDetectorInvertDescription = "Toggle to invert the redstone logic\nBy default, redstone stops emitting when less than the minimum mB of fluid, and starts emitting when greater than the min mB of fluid up to the set maximum";
multilineLang(provider, "cover.advanced_fluid_detector.invert.enabled",
"Output: Inverted\n\n" + advancedFluidDetectorInvertDescription);
multilineLang(provider, "cover.advanced_fluid_detector.invert.disabled",
"Output: Normal\n\n" + advancedFluidDetectorInvertDescription);
provider.add("cover.advanced_fluid_detector.max", "Max Fluid (mB)");
provider.add("cover.advanced_fluid_detector.min", "Min Fluid (mB)");
provider.add("cover.advanced_item_detector.label", "Advanced Item Detector");
var advancedItemDetectorInvertDescription = "Toggle to invert the redstone logic\nBy default, redstone stops emitting when less than the minimum amount of items, and starts emitting when greater than the min amount of items up to the set maximum";
multilineLang(provider, "cover.advanced_item_detector.invert.enabled",
"Output: Inverted\n\n" + advancedItemDetectorInvertDescription);
multilineLang(provider, "cover.advanced_item_detector.invert.disabled",
"Output: Normal\n\n" + advancedItemDetectorInvertDescription);
provider.add("cover.advanced_item_detector.max", "Max Items");
provider.add("cover.advanced_item_detector.min", "Min Items");
provider.add("cover.shutter.message.enabled", "Closed shutter");
provider.add("cover.shutter.message.disabled", "Opened shutter");
replace(provider, "item.gtceu.bucket", "%s Bucket");
replace(provider, "block.gtceu.oil_heavy", "Heavy Oil");
replace(provider, "block.gtceu.oil_light", "Light Oil");
replace(provider, "block.gtceu.oil_medium", "Raw Oil");
replace(provider, "block.gtceu.oil", "Oil");
replace(provider, "block.gtceu.creosote", "Creosote");
replace(provider, GTBlocks.BATTERY_EMPTY_TIER_I.get().getDescriptionId(), "Empty Tier I Capacitor");
replace(provider, GTBlocks.BATTERY_LAPOTRONIC_EV.get().getDescriptionId(), "EV Lapotronic Capacitor");
replace(provider, GTBlocks.BATTERY_LAPOTRONIC_IV.get().getDescriptionId(), "IV Lapotronic Capacitor");
replace(provider, GTBlocks.BATTERY_EMPTY_TIER_II.get().getDescriptionId(), "Empty Tier II Capacitor");
replace(provider, GTBlocks.BATTERY_LAPOTRONIC_LuV.get().getDescriptionId(), "LuV Lapotronic Capacitor");
replace(provider, GTBlocks.BATTERY_LAPOTRONIC_ZPM.get().getDescriptionId(), "ZPM Lapotronic Capacitor");
replace(provider, GTBlocks.BATTERY_EMPTY_TIER_III.get().getDescriptionId(), "Empty Tier III Capacitor");
replace(provider, GTBlocks.BATTERY_LAPOTRONIC_UV.get().getDescriptionId(), "UV Lapotronic Capacitor");
replace(provider, GTBlocks.BATTERY_ULTIMATE_UHV.get().getDescriptionId(), "UHV Ultimate Capacitor");
provider.add("item.netherrack_nether_quartz", "Nether Quartz Ore");
provider.add("block.surface_rock", "%s Surface Rock");
provider.add("item.gtceu.tiny_gunpowder_dust", "Tiny Pile of Gunpowder");
provider.add("item.gtceu.small_gunpowder_dust", "Small Pile of Gunpowder");
provider.add("item.gtceu.tiny_paper_dust", "Tiny Pile of Chad");
provider.add("item.gtceu.small_paper_dust", "Small Pile of Chad");
provider.add("item.gtceu.paper_dust", "Chad");
provider.add("item.gtceu.tiny_rare_earth_dust", "Tiny Pile of Rare Earth");
provider.add("item.gtceu.small_rare_earth_dust", "Small Pile of Rare Earth");
provider.add("item.gtceu.rare_earth_dust", "Rare Earth");
provider.add("item.gtceu.tiny_ash_dust", "Tiny Pile of Ashes");
provider.add("item.gtceu.small_ash_dust", "Small Pile of Ashes");
provider.add("item.gtceu.ash_dust", "Ashes");
provider.add("item.gtceu.tiny_bone_dust", "Tiny Pile of Bone Meal");
provider.add("item.gtceu.small_bone_dust", "Small Pile of Bone Meal");
provider.add("item.gtceu.bone_dust", "Bone Meal");
provider.add("item.gtceu.refined_cassiterite_sand_ore", "Refined Cassiterite Sand");
provider.add("item.gtceu.purified_cassiterite_sand_ore", "Purified Cassiterite Sand");
provider.add("item.gtceu.crushed_cassiterite_sand_ore", "Ground Cassiterite Sand");
provider.add("item.gtceu.tiny_cassiterite_sand_dust", "Tiny Pile of Cassiterite Sand");
provider.add("item.gtceu.small_cassiterite_sand_dust", "Small Pile of Cassiterite Sand");
provider.add("item.gtceu.impure_cassiterite_sand_dust", "Impure Pile of Cassiterite Sand");
provider.add("item.gtceu.pure_cassiterite_sand_dust", "Purified Pile of Cassiterite Sand");
provider.add("item.gtceu.cassiterite_sand_dust", "Cassiterite Sand");
provider.add("item.gtceu.tiny_dark_ash_dust", "Tiny Pile of Dark Ashes");
provider.add("item.gtceu.small_dark_ash_dust", "Small Pile of Dark Ashes");
provider.add("item.gtceu.dark_ash_dust", "Dark Ashes");
provider.add("item.gtceu.tiny_ice_dust", "Tiny Pile of Crushed Ice");
provider.add("item.gtceu.small_ice_dust", "Small Pile of Crushed Ice");
provider.add("item.gtceu.ice_dust", "Crushed Ice");
provider.add("item.gtceu.sugar_gem", "Sugar Cube");
provider.add("item.gtceu.chipped_sugar_gem", "Small Sugar Cubes");
provider.add("item.gtceu.flawed_sugar_gem", "Tiny Sugar Cube");
provider.add("item.gtceu.tiny_rock_salt_dust", "Tiny Pile of Rock Salt");
provider.add("item.gtceu.small_rock_salt_dust", "Small Pile of Rock Salt");
provider.add("item.gtceu.impure_rock_salt_dust", "Impure Pile of Rock Salt");
provider.add("item.gtceu.pure_rock_salt_dust", "Purified Pile of Rock Salt");
provider.add("item.gtceu.rock_salt_dust", "Rock Salt");
provider.add("item.gtceu.tiny_salt_dust", "Tiny Pile of Salt");
provider.add("item.gtceu.small_salt_dust", "Small Pile of Salt");
provider.add("item.gtceu.impure_salt_dust", "Impure Pile of Salt");
provider.add("item.gtceu.pure_salt_dust", "Purified Pile of Salt");
provider.add("item.gtceu.salt_dust", "Salt");
provider.add("item.gtceu.tiny_wood_dust", "Tiny Pile of Wood Pulp");
provider.add("item.gtceu.small_wood_dust", "Small Pile of Wood Pulp");
provider.add("item.gtceu.wood_dust", "Wood Pulp");
provider.add("item.gtceu.wood_plate", "Wood Plank");
provider.add("item.gtceu.long_wood_rod", "Long Wood Stick");
provider.add("item.gtceu.wood_bolt", "Short Wood Stick");
provider.add("item.gtceu.tiny_treated_wood_dust", "Tiny Pile of Treated Wood Pulp");
provider.add("item.gtceu.small_treated_wood_dust", "Small Pile of Treated Wood Pulp");
provider.add("item.gtceu.treated_wood_dust", "Treated Wood Pulp");
provider.add("item.gtceu.treated_wood_plate", "Treated Wood Plank");
provider.add("item.gtceu.treated_wood_rod", "Treated Wood Stick");
provider.add("item.gtceu.long_treated_wood_rod", "Long Treated Wood Stick");
provider.add("item.gtceu.treated_wood_bolt", "Short Treated Wood Stick");
provider.add("item.gtceu.glass_gem", "Glass Crystal");
provider.add("item.gtceu.chipped_glass_gem", "Chipped Glass Crystal");
provider.add("item.gtceu.flawed_glass_gem", "Flawed Glass Crystal");
provider.add("item.gtceu.flawless_glass_gem", "Flawless Glass Crystal");
provider.add("item.gtceu.exquisite_glass_gem", "Exquisite Glass Crystal");
provider.add("item.gtceu.glass_plate", "Glass Pane");
provider.add("item.gtceu.tiny_blaze_dust", "Tiny Pile of Blaze Powder");
provider.add("item.gtceu.small_blaze_dust", "Small Pile of Blaze Powder");
provider.add("item.gtceu.tiny_sugar_dust", "Tiny Pile of Sugar");
provider.add("item.gtceu.small_sugar_dust", "Small Pile of Sugar");
provider.add("item.gtceu.tiny_basaltic_mineral_sand_dust", "Tiny Pile of Basaltic Mineral Sand");
provider.add("item.gtceu.small_basaltic_mineral_sand_dust", "Small Pile of Basaltic Mineral Sand");
provider.add("item.gtceu.basaltic_mineral_sand_dust", "Basaltic Mineral Sand");
provider.add("item.gtceu.tiny_granitic_mineral_sand_dust", "Tiny Pile of Granitic Mineral Sand");
provider.add("item.gtceu.small_granitic_mineral_sand_dust", "Small Pile of Granitic Mineral Sand");
provider.add("item.gtceu.granitic_mineral_sand_dust", "Granitic Mineral Sand");
provider.add("item.gtceu.tiny_garnet_sand_dust", "Tiny Pile of Garnet Sand");
provider.add("item.gtceu.small_garnet_sand_dust", "Small Pile of Garnet Sand");
provider.add("item.gtceu.garnet_sand_dust", "Garnet Sand");
provider.add("item.gtceu.tiny_quartz_sand_dust", "Tiny Pile of Quartz Sand");
provider.add("item.gtceu.small_quartz_sand_dust", "Small Pile of Quartz Sand");
provider.add("item.gtceu.quartz_sand_dust", "Quartz Sand");
provider.add("item.gtceu.tiny_glauconite_sand_dust", "Tiny Pile of Glauconite Sand");
provider.add("item.gtceu.small_glauconite_sand_dust", "Small Pile of Glauconite Sand");
provider.add("item.gtceu.glauconite_sand_dust", "Glauconite Sand");
provider.add("item.gtceu.refined_bentonite_ore", "Refined Bentonite");
provider.add("item.gtceu.purified_bentonite_ore", "Purified Bentonite");
provider.add("item.gtceu.crushed_bentonite_ore", "Ground Bentonite");
provider.add("item.gtceu.tiny_bentonite_dust", "Tiny Pile of Bentonite");
provider.add("item.gtceu.small_bentonite_dust", "Small Pile of Bentonite");
provider.add("item.gtceu.impure_bentonite_dust", "Impure Pile of Bentonite");
provider.add("item.gtceu.pure_bentonite_dust", "Purified Pile of Bentonite");
provider.add("item.gtceu.bentonite_dust", "Bentonite");
provider.add("item.gtceu.tiny_fullers_earth_dust", "Tiny Pile of Fullers Earth");
provider.add("item.gtceu.small_fullers_earth_dust", "Small Pile of Fullers Earth");
provider.add("item.gtceu.fullers_earth_dust", "Fullers Earth");
provider.add("item.gtceu.refined_pitchblende_ore", "Refined Pitchblende");
provider.add("item.gtceu.purified_pitchblende_ore", "Purified Pitchblende");
provider.add("item.gtceu.crushed_pitchblende_ore", "Ground Pitchblende");
provider.add("item.gtceu.tiny_pitchblende_dust", "Tiny Pile of Pitchblende");
provider.add("item.gtceu.small_pitchblende_dust", "Small Pile of Pitchblende");
provider.add("item.gtceu.impure_pitchblende_dust", "Impure Pile of Pitchblende");
provider.add("item.gtceu.pure_pitchblende_dust", "Purified Pile of Pitchblende");
provider.add("item.gtceu.pitchblende_dust", "Pitchblende");
provider.add("item.gtceu.refined_talc_ore", "Refined Talc");
provider.add("item.gtceu.purified_talc_ore", "Purified Talc");
provider.add("item.gtceu.crushed_talc_ore_ore", "Ground Talc");
provider.add("item.gtceu.tiny_talc_dust", "Tiny Pile of Talc");
provider.add("item.gtceu.small_talc_dust", "Small Pile of Talc");
provider.add("item.gtceu.impure_talc_dust", "Impure Pile of Talc");
provider.add("item.gtceu.pure_talc_dust", "Purified Pile of Talc");
provider.add("item.gtceu.talc_dust", "Talc");
provider.add("item.gtceu.tiny_wheat_dust", "Tiny Pile of Flour");
provider.add("item.gtceu.small_wheat_dust", "Small Pile of Flour");
provider.add("item.gtceu.wheat_dust", "Flour");
provider.add("item.gtceu.tiny_meat_dust", "Tiny Pile of Mince Meat");
provider.add("item.gtceu.small_meat_dust", "Small Pile of Mince Meat");
provider.add("item.gtceu.meat_dust", "Mince Meat");
provider.add("item.gtceu.borosilicate_glass_ingot", "Borosilicate Glass Bar");
provider.add("item.gtceu.fine_borosilicate_glass_wire", "Borosilicate Glass Fibers");
provider.add("item.gtceu.tiny_platinum_group_sludge_dust", "Tiny Clump of Platinum Group Sludge");
provider.add("item.gtceu.small_platinum_group_sludge_dust", "Small Clump of Platinum Group Sludge");
provider.add("item.gtceu.platinum_group_sludge_dust", "Platinum Group Sludge");
provider.add("item.gtceu.tiny_platinum_raw_dust", "Tiny Pile of Raw Platinum Powder");
provider.add("item.gtceu.small_platinum_raw_dust", "Small Pile of Raw Platinum Powder");
provider.add("item.gtceu.platinum_raw_dust", "Raw Platinum Powder");
provider.add("item.gtceu.tiny_palladium_raw_dust", "Tiny Pile of Raw Palladium Powder");
provider.add("item.gtceu.small_palladium_raw_dust", "Small Pile of Raw Palladium Powder");
provider.add("item.gtceu.palladium_raw_dust", "Raw Palladium Powder");
provider.add("item.gtceu.tiny_inert_metal_mixture_dust", "Tiny Pile of Inert Metal Mixture");
provider.add("item.gtceu.small_inert_metal_mixture_dust", "Small Pile of Inert Metal Mixture");
provider.add("item.gtceu.inert_metal_mixture_dust", "Inert Metal Mixture");
provider.add("item.gtceu.tiny_rarest_metal_mixture_dust", "Tiny Pile of Rarest Metal Mixture");
provider.add("item.gtceu.small_rarest_metal_mixture_dust", "Small Pile of Rarest Metal Mixture");
provider.add("item.gtceu.rarest_metal_mixture_dust", "Rarest Metal Mixture");
provider.add("item.gtceu.tiny_platinum_sludge_residue_dust", "Tiny Pile of Platinum Sludge Residue");
provider.add("item.gtceu.small_platinum_sludge_residue_dust", "Small Pile of Platinum Sludge Residue");
provider.add("item.gtceu.platinum_sludge_residue_dust", "Platinum Sludge Residue");
provider.add("item.gtceu.tiny_iridium_metal_residue_dust", "Tiny Pile of Iridium Metal Residue");
provider.add("item.gtceu.small_iridium_metal_residue_dust", "Small Pile of Iridium Metal Residue");
provider.add("item.gtceu.iridium_metal_residue_dust", "Iridium Metal Residue");
provider.add("behaviour.hoe", "Can till dirt");
provider.add("behaviour.soft_hammer", "Activates and Deactivates Machines");
provider.add("behaviour.soft_hammer.enabled", "Working Enabled");
provider.add("behaviour.soft_hammer.disabled", "Working Disabled");
provider.add("behaviour.soft_hammer.disabled_cycle", "Working Disabled after current cycle");
provider.add("behaviour.lighter.tooltip.description", "Can light things on fire");
provider.add("behaviour.lighter.tooltip.usage", "Shift-right click to open/close");
provider.add("behaviour.lighter.fluid.tooltip", "Can light things on fire with Butane or Propane");
provider.add("behaviour.lighter.uses", "Remaining uses: %d");
provider.add("behavior.toggle_energy_consumer.tooltip", "Use to toggle mode");
provider.add("behaviour.hammer", "Turns on and off Muffling for Machines (by hitting them)");
provider.add("behaviour.wrench", "Rotates Blocks on Rightclick");
provider.add("behaviour.boor.by", "by %s");
provider.add("behaviour.paintspray.solvent.tooltip", "Can remove color from things");
provider.add("behaviour.paintspray.white.tooltip", "Can paint things in White");
provider.add("behaviour.paintspray.orange.tooltip", "Can paint things in Orange");
provider.add("behaviour.paintspray.magenta.tooltip", "Can paint things in Magenta");
provider.add("behaviour.paintspray.light_blue.tooltip", "Can paint things in Light Blue");
provider.add("behaviour.paintspray.yellow.tooltip", "Can paint things in Yellow");
provider.add("behaviour.paintspray.lime.tooltip", "Can paint things in Lime");
provider.add("behaviour.paintspray.pink.tooltip", "Can paint things in Pink");
provider.add("behaviour.paintspray.gray.tooltip", "Can paint things in Gray");
provider.add("behaviour.paintspray.light_gray.tooltip", "Can paint things in Light Gray");
provider.add("behaviour.paintspray.cyan.tooltip", "Can paint things in Cyan");
provider.add("behaviour.paintspray.purple.tooltip", "Can paint things in Purple");
provider.add("behaviour.paintspray.blue.tooltip", "Can paint things in Blue");
provider.add("behaviour.paintspray.brown.tooltip", "Can paint things in Brown");
provider.add("behaviour.paintspray.green.tooltip", "Can paint things in Green");
provider.add("behaviour.paintspray.red.tooltip", "Can paint things in Red");
provider.add("behaviour.paintspray.black.tooltip", "Can paint things in Black");
provider.add("behaviour.paintspray.uses", "Remaining Uses: %d");
provider.add("behaviour.prospecting", "Usable for Prospecting");
provider.add("behaviour.memory_card.tooltip.copy",
"§7Sneak + R-Click to copy configuration, or clear stored data if a block other than a machine or pipe is targeted.");
provider.add("behaviour.memory_card.tooltip.paste", "§7R-Click to paste machine configuration");
provider.add("behaviour.memory_card.tooltip.view_stored", "§8<Sneak to view stored configuration>");
provider.add("behaviour.memory_card.client_msg.cleared", "Stored configuration cleared");
provider.add("behaviour.memory_card.client_msg.copied", "Copied machine configuration");
provider.add("behaviour.memory_card.client_msg.pasted", "Applied machine configuration");
provider.add("behaviour.memory_card.client_msg.missing_items", "Missing items required to paste configuration");
provider.add("behaviour.memory_card.tooltip.items_to_paste",
"The following items are needed to paste this configuration:");
provider.add("behaviour.memory_card.enabled", "§aEnabled§r");
provider.add("behaviour.memory_card.disabled", "§cDisabled§r");
provider.add("behaviour.memory_card.copy_target", "Copying: %s");
provider.add("behaviour.setting.tooltip.item_io", "Item Output: %s (%s)");
provider.add("behaviour.setting.tooltip.fluid_io", "Fluid Output: %s (%s)");
provider.add("behaviour.setting.tooltip.auto_output", "§2Auto Output§r");
provider.add("behaviour.setting.tooltip.allow_input", "§2Allow Input§r");
provider.add("behaviour.setting.tooltip.auto_output_allow_input", "§2Auto Output/Allow Input§r");
provider.add("behaviour.setting.tooltip.pipe_connections", "Pipe connections: %s");
provider.add("behaviour.setting.tooltip.pipe_blocked_connections", "Pipe shuttered sides: %s");
provider.add("behaviour.setting.tooltip.muffled", "Muffling %s");
provider.add("behaviour.setting.tooltip.circuit_config", "Programmed Circuit: ");
provider.add("enchantment.damage.disjunction", "Disjunction");
provider.add("enchantment.gtceu.disjunction.description",
"Applies Weakness and Slowness to Ender-related mobs.");
provider.add("enchantment.hard_hammer", "Hammering");
provider.add("enchantment.gtceu.hard_hammer.description",
"Breaks blocks as if they were mined with a GregTech Hammer.");
provider.add("behavior.prospector.mode.ores", "§aOre Prospection Mode");
provider.add("behavior.prospector.mode.fluid", "§bFluid Prospection Mode");
provider.add("behavior.prospector.mode.bedrock_ore", "§bBedrock Ore Prospection Mode");
provider.add("behavior.prospector.tooltip.radius", "Scans resources in a %s Chunk Radius");
provider.add("behavior.prospector.tooltip.modes", "Available Modes:");
provider.add("behavior.prospector.not_enough_energy", "Not Enough Energy!");
provider.add("behavior.prospector.added_waypoint", "Created waypoint named %s!");
provider.add("metaitem.tricorder_scanner.tooltip", "Tricorder");
provider.add("metaitem.debug_scanner.tooltip", "Tricorder");
provider.add("behavior.prospector.display_all", "All resources");
provider.add("behavior.portable_scanner.bedrock_fluid.amount", "Fluid In Deposit: %s %s - %s%%");
provider.add("behavior.portable_scanner.bedrock_fluid.amount_unknown", "Fluid In Deposit: %s%%");
provider.add("behavior.portable_scanner.bedrock_fluid.nothing", "Fluid In Deposit: §6Nothing§r");
provider.add("behavior.portable_scanner.environmental_hazard", "Environmental Hazard In Chunk: %s§r - %s ppm");
provider.add("behavior.portable_scanner.environmental_hazard.nothing",
"Environmental Hazard In Chunk: §6Nothing§r");
provider.add("behavior.portable_scanner.local_hazard", "Local Hazard In Area: %s§r - %s ppm");
provider.add("behavior.portable_scanner.local_hazard.nothing", "Local Hazard In Area: §6Nothing§r");
provider.add("behavior.portable_scanner.block_hardness", "Hardness: %s Blast Resistance: %s");
provider.add("behavior.portable_scanner.block_name", "Name: %s MetaData: %s");
provider.add("behavior.portable_scanner.debug_cpu_load",
"Average CPU load of ~%sns over %s ticks with worst time of %sns.");
provider.add("behavior.portable_scanner.debug_cpu_load_seconds", "This is %s seconds.");
provider.add("behavior.portable_scanner.debug_lag_count",
"Caused %s Lag Spike Warnings (anything taking longer than %sms) on the Server.");
provider.add("behavior.portable_scanner.debug_machine", "Meta-ID: %s");
provider.add("behavior.portable_scanner.debug_machine_invalid", " invalid!");
provider.add("behavior.portable_scanner.debug_machine_valid", " valid");
provider.add("behavior.portable_scanner.divider", "=========================");
provider.add("behavior.portable_scanner.energy_container_in", "Max IN: %s (%s) EU at %s A");
provider.add("behavior.portable_scanner.energy_container_out", "Max OUT: %s (%s) EU at %s A");
provider.add("behavior.portable_scanner.energy_container_storage", "Energy: %s EU / %s EU");
provider.add("behavior.portable_scanner.eu_per_sec", "Average (last second): %s EU/t");
provider.add("behavior.portable_scanner.amp_per_sec", "Average (last second): %s A");
provider.add("behavior.portable_scanner.machine_disabled", "Disabled.");
provider.add("behavior.portable_scanner.machine_front_facing", "Front Facing: %s");
provider.add("behavior.portable_scanner.machine_ownership", "§2Machine Owner Type: %s§r");
provider.add("behavior.portable_scanner.guild_name", "§2Guild Name: %s§r");
provider.add("behavior.portable_scanner.team_name", "§2Team Name: %s§r");
provider.add("behavior.portable_scanner.player_name", "§2Player Name: %s§r, §7Player Online: %s§r");
provider.add("behavior.portable_scanner.machine_power_loss", "Shut down due to power loss.");
provider.add("behavior.portable_scanner.machine_progress", "Progress/Load: %s / %s");
provider.add("behavior.portable_scanner.machine_upwards_facing", "Upwards Facing: %s");
provider.add("behavior.portable_scanner.muffled", "Muffled.");
provider.add("behavior.portable_scanner.multiblock_energy_input",
"Max Energy Income: %s EU/t Tier: %s");
provider.add("behavior.portable_scanner.multiblock_energy_output",
"Max Energy Output: %s EU/t Tier: %s");
provider.add("behavior.portable_scanner.multiblock_maintenance", "Problems: %s");
provider.add("behavior.portable_scanner.multiblock_parallel", "Multi Processing: %s");
provider.add("behavior.portable_scanner.position", "----- X: %s Y: %s Z: %s D: %s -----");
provider.add("behavior.portable_scanner.state", "%s: %s");
provider.add("behavior.portable_scanner.tank", "Tank %s: %s mB / %s mB %s");
provider.add("behavior.portable_scanner.tanks_empty", "All Tanks Empty");
provider.add("behavior.portable_scanner.workable_consumption", "Probably Uses: %s EU/t at %s A");
provider.add("behavior.portable_scanner.workable_production", "Probably Produces: %s EU/t at %s A");
provider.add("behavior.portable_scanner.workable_progress", "Progress: %s s / %s s");
provider.add("behavior.portable_scanner.workable_stored_energy", "Stored Energy: %s EU / %s EU");
provider.add("behavior.portable_scanner.mode.caption", "Display mode: %s");
provider.add("behavior.portable_scanner.mode.show_all_info", "Show all info (excluding internal info)");
provider.add("behavior.portable_scanner.mode.show_block_info", "Show block info");
provider.add("behavior.portable_scanner.mode.show_machine_info", "Show machine info");
provider.add("behavior.portable_scanner.mode.show_electrical_info", "Show electrical info");
provider.add("behavior.portable_scanner.mode.show_recipe_info", "Show recipe info");
provider.add("behavior.portable_scanner.mode.show_environmental_info", "Show environmental info");
provider.add("behavior.portable_scanner.mode.show_internal_info", "Show internal debugging info");
provider.add("behavior.item_magnet.enabled", "§aMagnetic Field Enabled");
provider.add("behavior.item_magnet.disabled", "§cMagnetic Field Disabled");
provider.add("behavior.data_item.title", "§n%s Construction Data:");
provider.add("behavior.data_item.data", "- §a%s");
provider.add("metaitem.terminal.tooltip", "Sharp tools make good work");
provider.add("metaitem.terminal.tooltip.creative", "§bCreative Mode");
provider.add("metaitem.terminal.tooltip.hardware", "§aHardware: %d");
provider.add("metaitem.plugin.tooltips.1",
"Plugins can be added to the screen for more functionality.");
provider.add("metaitem.plugin.proxy.tooltips.1", "(Please adjust to proxy mode in the screen)");
provider.add("metaitem.cover.digital.tooltip",
"Connects machines over §fPower Cables§7 to the §fCentral Monitor§7 as §fCover§7.");
provider.add("gtceu.machine.drum.enable_output", "Will drain Fluid to downward adjacent Tanks");
provider.add("gtceu.machine.drum.disable_output", "Will not drain Fluid");
provider.add("gtceu.machine.locked_safe.malfunctioning", "§cMalfunctioning!");
provider.add("gtceu.machine.locked_safe.requirements", "§7Replacements required:");
multilineLang(provider, "gtceu.machine.workbench.tooltip",
"Better than Forestry\nHas Item Storage, Tool Storage, pulls from adjacent Inventories, and saves Recipes.");
provider.add("gtceu.machine.workbench.tab.workbench", "Crafting");
provider.add("gtceu.machine.workbench.tab.item_list", "Storage");
multilineLang(provider, "gtceu.machine.workbench.storage_note",
"(Available items from connected\ninventories usable for crafting)");
provider.add("gtceu.item_list.item_stored", "§7Stored: %d");
provider.add("gtceu.machine.workbench.tab.crafting", "Crafting");
provider.add("gtceu.machine.workbench.tab.container", "Container");
provider.add("gtceu.machine.parallel_hatch.display", "Adjust the maximum parallel of the multiblock");
provider.add("gtceu.machine.parallel_hatch.parallel_ui", "Parallels");
provider.add("gtceu.machine.basic.input_from_output_side.allow", "Allow Input from Output Side: ");
provider.add("gtceu.machine.basic.input_from_output_side.disallow",
"Disallow Input from Output Side: ");
provider.add("gtceu.machine.muffle.on", "Sound Muffling: Enabled");
provider.add("gtceu.machine.muffle.off", "Sound Muffling: Disabled");
provider.add("gtceu.machine.perfect_oc", "Does not lose energy efficiency when overclocked.");
provider.add("gtceu.machine.parallel_limit", "Can run up to §b%d§r§7 Recipes at once.");
provider.add("gtceu.machine.multiblock.tank.tooltip",
"Fill and drain through the controller or tank valves.");
provider.add("gtceu.machine.tank_valve.tooltip",
"Use to fill and drain multiblock tanks. Auto outputs when facing down.");
provider.add("metaitem.cover.digital.mode.proxy.disabled", "Click to enable Proxy Mode");
provider.add("metaitem.cover.digital.mode.proxy.enabled", "Proxy Mode enabled");
provider.add("metaitem.cover.digital.mode.machine.disabled", "Click to enable Machine Mode");
provider.add("metaitem.cover.digital.mode.machine.enabled", "Machine Mode enabled");
provider.add("metaitem.cover.digital.mode.energy.disabled", "Click to enable Energy Mode");
provider.add("metaitem.cover.digital.mode.energy.enabled", "Energy Mode enabled");
provider.add("metaitem.cover.digital.mode.item.disabled", "Click to enable Item Mode");
provider.add("metaitem.cover.digital.mode.item.enabled", "Item Mode enabled");
provider.add("metaitem.cover.digital.mode.fluid.disabled", "Click to enable Fluid Mode");
provider.add("metaitem.cover.digital.mode.fluid.enabled", "Fluid Mode enabled");
provider.add("gtceu.part_sharing.disabled", "Multiblock Sharing §4Disabled");
provider.add("gtceu.part_sharing.enabled", "Multiblock Sharing §aEnabled");
provider.add("gtceu.universal.liters", "%s mB");
provider.add("gtceu.universal.kiloliters", "%s B");
provider.add("gtceu.universal.parentheses", "(%s)");
provider.add("gtceu.universal.spaced_parentheses", "( %s )");
provider.add("gtceu.universal.padded_parentheses", " (%s) ");
provider.add("gtceu.universal.padded_spaced_parentheses", " ( %s ) ");
provider.add("gtceu.universal.tooltip.voltage_in", "§aVoltage IN: §f%d EU/t (%s§f)");
provider.add("gtceu.universal.tooltip.max_voltage_in", "§aMax Voltage IN: §f%d (%s§f)");
provider.add("gtceu.universal.tooltip.voltage_out", "§aVoltage OUT: §f%d EU/t (%s§f)");
provider.add("gtceu.universal.tooltip.max_voltage_out", "§aMax Voltage OUT: §f%d (%s§f)");
provider.add("gtceu.universal.tooltip.voltage_in_out", "§aVoltage IN/OUT: §f%d EU/t (%s§f)");
provider.add("gtceu.universal.tooltip.max_voltage_in_out", "§aMax Voltage IN/OUT: §f%d EU/t (%s§f)");
provider.add("gtceu.universal.tooltip.amperage_in", "§eAmperage IN: §f%dA");
provider.add("gtceu.universal.tooltip.amperage_in_till", "§eAmperage IN up to: §f%dA");
provider.add("gtceu.universal.tooltip.amperage_out", "§eAmperage OUT: §f%dA");
provider.add("gtceu.universal.tooltip.amperage_out_till", "§eAmperage OUT up to: §f%dA");
provider.add("gtceu.universal.tooltip.amperage_in_out", "§eAmperage IN/OUT: §f%dA");
provider.add("gtceu.universal.tooltip.amperage_in_out_till", "§eAmperage IN/OUT up to: §f%dA");
provider.add("gtceu.universal.tooltip.energy_storage_capacity", "§cEnergy Capacity: §r%d EU");
provider.add("gtceu.universal.tooltip.energy_tier_range", "§aAllowed Voltage Tiers: §f%s §f- %s");
provider.add("gtceu.universal.tooltip.item_storage_capacity", "§6Item Slots: §f%d");
provider.add("gtceu.universal.tooltip.item_storage_total", "§6Item Capacity: §f%d items");
provider.add("gtceu.universal.tooltip.item_stored", "§dItem Stored: §f%s, %d items");
provider.add("gtceu.universal.tooltip.item_transfer_rate", "§bTransfer Rate: §f%d items/s");
provider.add("gtceu.universal.tooltip.item_transfer_rate_stacks", "§bTransfer Rate: §f%d stacks/s");
provider.add("gtceu.universal.tooltip.fluid_storage_capacity", "§9Fluid Capacity: §f%d mB");
provider.add("gtceu.universal.tooltip.fluid_storage_capacity_mult",
"§9Fluid Capacity: §f%d §7Tanks, §f%d mB §7each");
provider.add("gtceu.universal.tooltip.fluid_stored", "§2Fluid Stored: §f%s, %d mB");
provider.add("gtceu.universal.tooltip.fluid_transfer_rate", "§bTransfer Rate: §f%d mB/t");
provider.add("gtceu.universal.tooltip.parallel", "§dMax Parallel: §f%d");
provider.add("gtceu.universal.tooltip.working_area", "§bWorking Area: §f%dx%d");
provider.add("gtceu.universal.tooltip.chunk_mode", "Chunk Mode: ");
provider.add("gtceu.universal.tooltip.silk_touch", "Silk Touch: ");
provider.add("gtceu.universal.tooltip.working_area_chunks", "§bWorking Area: §f%dx%d Chunks");
provider.add("gtceu.universal.tooltip.working_area_max", "§bMax Working Area: §f%dx%d");
provider.add("gtceu.universal.tooltip.working_area_chunks_max", "§bMax Working Area: §f%dx%d Chunks");
provider.add("gtceu.universal.tooltip.uses_per_tick", "Uses §f%d EU/t §7while working");
provider.add("gtceu.universal.tooltip.uses_per_tick_steam", "Uses §f%d mB/t §7of §fSteam §7while working");
provider.add("gtceu.universal.tooltip.uses_per_hour_lubricant",
"Uses §f%d mB/hr §7of §6Lubricant §7while working");
provider.add("gtceu.universal.tooltip.uses_per_second", "Uses §f%d EU/s §7while working");