forked from Wugand/FuturePack-Language
-
Notifications
You must be signed in to change notification settings - Fork 0
/
en_US.lang.old
1005 lines (897 loc) · 38.1 KB
/
en_US.lang.old
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
tile.colorIron_white.name=White Colored Metal
tile.colorIron_orange.name=Orange Colored Metal
tile.colorIron_magenta.name=Magenta Colored Metal
tile.colorIron_lightBlue.name=Light Blue Colored Iron
tile.colorIron_yellow.name=Yellow Colored Metal
tile.colorIron_lime.name=Lime Colored Metal
tile.colorIron_pink.name= Pink Colored Metal
tile.colorIron_gray.name=Gray Colored Metal
tile.colorIron_silver.name=Light Gray Colored Metal
tile.colorIron_cyan.name=Cyan Colored Metal
tile.colorIron_purple.name=Purple Colored Metal
tile.colorIron_blue.name=Blue Colored Metal
tile.colorIron_brown.name=Brown Colored Metal
tile.colorIron_green.name=Green Colored Metal
tile.colorIron_red.name=Red Colored Metal
tile.colorIron_black.name=Black Colored Metal
tile.colorLuftung_white.name=White Colored Ventilation
tile.colorLuftung_orange.name=Orange Colored Ventilation
tile.colorLuftung_magenta.name=Magenta Colored Ventilation
tile.colorLuftung_lightBlue.name=Light Blue Colored Ventilation
tile.colorLuftung_yellow.name=Yellow Colored Ventilation
tile.colorLuftung_lime.name=Lime Colored Ventilation
tile.colorLuftung_pink.name=Pink Colored Ventilation
tile.colorLuftung_gray.name=Gray Colored Ventilation
tile.colorLuftung_silver.name=Light Gray Colored Ventilation
tile.colorLuftung_cyan.name=Cyan Colored Ventilation
tile.colorLuftung_purple.name=Purple Colored Ventilation
tile.colorLuftung_blue.name=Blue Colored Ventilation
tile.colorLuftung_brown.name=Brown Colored Ventilation
tile.colorLuftung_green.name=Green Colored Ventilation
tile.colorLuftung_red.name=Red Colored Ventilation
tile.colorLuftung_black.name=Black Colored Ventilation
tile.colorGitter_white.name=White Colored Grid Block
tile.colorGitter_orange.name=Orange Colored Grid Block
tile.colorGitter_magenta.name=Magenta Colored Grid Block
tile.colorGitter_lightBlue.name=Light Blue Colored Grid Block
tile.colorGitter_yellow.name=Yellow Colored Grid Block
tile.colorGitter_lime.name=Lime Colored Grid Block
tile.colorGitter_pink.name=Pink Colored Grid Block
tile.colorGitter_gray.name=Gray Colored Grid Block
tile.colorGitter_silver.name=Light Gray Colored Grid Block
tile.colorGitter_cyan.name=Cyan Colored Grid Block
tile.colorGitter_purple.name=Purple Colored Grid Block
tile.colorGitter_blue.name=Blue Colored Grid Block
tile.colorGitter_brown.name=Brown Colored Grid Block
tile.colorGitter_green.name=Green Colored Grid Block
tile.colorGitter_red.name=Red Colored Grid Block
tile.colorGitter_black.name=Black Colored Grid Block
tile.colorGlas_white.name=White Colored Bulletproof Glass
tile.colorGlas_orange.name=Orange Colored Bulletproof Glass
tile.colorGlas_magenta.name=Magenta Colored Bulletproof Glass
tile.colorGlas_lightBlue.name=Light Blue Colored Bulletproof Glass
tile.colorGlas_yellow.name=Yellow Colored Bulletproof Glass
tile.colorGlas_lime.name=Lime Colored Bulletproof Glass
tile.colorGlas_pink.name=Pink Colored Bulletproof Glass
tile.colorGlas_gray.name=Gray Colored Bulletproof Glass
tile.colorGlas_silver.name=Light Gray Colored Bulletproof Glass
tile.colorGlas_cyan.name=Cyan Colored Bulletproof Glass
tile.colorGlas_purple.name=Purple Colored Bulletproof Glass
tile.colorGlas_blue.name=Blue Colored Bulletproof Glass
tile.colorGlas_brown.name=Brown Colored Bulletproof Glass
tile.colorGlas_green.name=Green Colored Bulletproof Glass
tile.colorGlas_red.name=Red Colored Bulletproof Glass
tile.colorGlas_black.name=Black Colored Bulletproof Glass
tile.colorIronTreppe_white.name=White Colored Metal Stairs
tile.colorIronTreppe_orange.name=Orange Colored Metal Stairs
tile.colorIronTreppe_magenta.name=Magenta Colored Metal Stairs
tile.colorIronTreppe_lightBlue.name=Light Blue Colored Metal Stairs
tile.colorIronTreppe_yellow.name=Yellow Colored Metal Stairs
tile.colorIronTreppe_lime.name=Lime Colored Metal Stairs
tile.colorIronTreppe_pink.name=Pink Colored Metal Stairs
tile.colorIronTreppe_gray.name=Gray Colored Metal Stairs
tile.colorIronTreppe_silver.name=Light Gray Colored Metal Stairs
tile.colorIronTreppe_cyan.name=Cyan Colored Metal Stairs
tile.colorIronTreppe_purple.name=Purple Colored Metal Stairs
tile.colorIronTreppe_blue.name=Blue Colored Metal Stairs
tile.colorIronTreppe_brown.name=Brown Colored Metal Stairs
tile.colorIronTreppe_green.name=Green Colored Metal Stairs
tile.colorIronTreppe_red.name=Red Colored Metal Stairs
tile.colorIronTreppe_black.name=Black Colored Metal Stairs
tile.colorGitterTreppe_white.name=White Colored Grid Stairs
tile.colorGitterTreppe_orange.name=Orange Colored Grid Stairs
tile.colorGitterTreppe_magenta.name=Magenta Colored Grid Stairs
tile.colorGitterTreppe_lightBlue.name=Light Blue Colored Grid Stairs
tile.colorGitterTreppe_yellow.name=Yellow Colored Grid Stairs
tile.colorGitterTreppe_lime.name=Lime Colored Grid Stairs
tile.colorGitterTreppe_pink.name=Pink Colored Grid Stairs
tile.colorGitterTreppe_gray.name=Gray Colored Grid Stairs
tile.colorGitterTreppe_silver.name=Light Gray Colored Grid Stairs
tile.colorGitterTreppe_cyan.name=Cyan Colored Grid Stairs
tile.colorGitterTreppe_purple.name=Purple Colored Grid Stairs
tile.colorGitterTreppe_blue.name=Blue Colored Grid Stairs
tile.colorGitterTreppe_brown.name=Brown Colored Grid Stairs
tile.colorGitterTreppe_green.name=Green Colored Grid Stairs
tile.colorGitterTreppe_red.name=Red Colored Grid Stairs
tile.colorGitterTreppe_black.name=Black Colored Grid Stairs
tile.colorIronStep_white.name=White Colored Metal Slab
tile.colorIronStep_orange.name=Orange Colored Metal Slab
tile.colorIronStep_magenta.name=Magenta Colored Metal Slab
tile.colorIronStep_lightBlue.name=Light Blue Colored Metal Slab
tile.colorIronStep_yellow.name=Yellow Colored Metal Slab
tile.colorIronStep_lime.name=Lime Colored Metal Slab
tile.colorIronStep_pink.name=Pink Colored Metal Slab
tile.colorIronStep_gray.name=Gray Colored Metal Slab
tile.colorIronStep_silver.name=Light Gray Colored Metal Slab
tile.colorIronStep_cyan.name=Cyan Colored Metal Slab
tile.colorIronStep_purple.name=Purple Colored Metal Slab
tile.colorIronStep_blue.name=Blue Colored Metal Slab
tile.colorIronStep_brown.name=Brown Colored Metal Slab
tile.colorIronStep_green.name=Green Colored Metal Slab
tile.colorIronStep_red.name=Red Colored Metal Slab
tile.colorIronStep_black.name=Black Colored Metal Slab
tile.colorGitterStep_white.name=White Colored Grid Slab
tile.colorGitterStep_orange.name=Orange Colored Grid Slab
tile.colorGitterStep_magenta.name=Magenta Colored Grid Slab
tile.colorGitterStep_lightBlue.name=Light Blue Colored Grid Slab
tile.colorGitterStep_yellow.name=Yellow Colored Grid Slab
tile.colorGitterStep_lime.name=Lime Colored Grid Slab
tile.colorGitterStep_pink.name=Pink Colored Grid Slab
tile.colorGitterStep_gray.name=Gray Colored Grid Slab
tile.colorGitterStep_silver.name=Light Gray Colored Grid Slab
tile.colorGitterStep_cyan.name=Cyan Colored Grid Slab
tile.colorGitterStep_purple.name=Purple Colored Grid Slab
tile.colorGitterStep_blue.name=Blue Colored Grid Slab
tile.colorGitterStep_brown.name=Brown Colored Grid Slab
tile.colorGitterStep_green.name=Green Colored Grid Slab
tile.colorGitterStep_red.name=Red Colored Grid Slab
tile.colorGitterStep_black.name=Black Colored Grid Slab
tile.colorLuftungStep_white.name=White Colored Ventilation Slab
tile.colorLuftungStep_orange.name=Orange Colored Ventilation Slab
tile.colorLuftungStep_magenta.name=Magenta Colored Ventilation Slab
tile.colorLuftungStep_lightBlue.name=Light Blue Colored Ventilation Slab
tile.colorLuftungStep_yellow.name=Yellow Colored Ventilation Slab
tile.colorLuftungStep_lime.name=Lime Colored Ventilation Slab
tile.colorLuftungStep_pink.name=Pink Colored Ventilation Slab
tile.colorLuftungStep_gray.name=Gray Colored Ventilation Slab
tile.colorLuftungStep_silver.name=Light Gray Colored Ventilation Slab
tile.colorLuftungStep_cyan.name=Cyan Colored Ventilation Slab
tile.colorLuftungStep_purple.name=Purple Colored Ventilation Slab
tile.colorLuftungStep_blue.name=Blue Colored Ventilation Slab
tile.colorLuftungStep_brown.name=Brown Colored Ventilation Slab
tile.colorLuftungStep_green.name=Green Colored Ventilation Slab
tile.colorLuftungStep_red.name=Red Colored Ventilation Slab
tile.colorLuftungStep_black.name=Black Colored Ventilation Slab
tile.eisenleiter.name=Iron Ladder
tile.antenne.name=Antenna Base
tile.colorFence_white.name=White Colored Fence
tile.colorFence_orange.name=Orange Colored Fence
tile.colorFence_magenta.name=Magenta Colored Fence
tile.colorFence_lightBlue.name=Light Blue Colored Fence
tile.colorFence_yellow.name=Yellow Colored Fence
tile.colorFence_lime.name=Lime Colored Fence
tile.colorFence_pink.name=Pink Colored Fence
tile.colorFence_gray.name=Gray Colored Fence
tile.colorFence_silver.name=Light Gray Colored Fence
tile.colorFence_cyan.name=Cyan Colored Fence
tile.colorFence_purple.name=Purple Colored Fence
tile.colorFence_blue.name=Blue Colored Fence
tile.colorFence_brown.name=Brown Colored Fence
tile.colorFence_green.name=Green Colored Fence
tile.colorFence_red.name=Red Colored Fence
tile.colorFence_black.name=Black Colored Fence
tile.color_gate_0.name=White Colored Fence Gate
tile.color_gate_1.name=Orange Colored Fence Gate
tile.color_gate_2.name=Magenta Colored Fence Gate
tile.color_gate_3.name=Light Blue Colored Fence Gate
tile.color_gate_4.name=Yellow Colored Fence Gate
tile.color_gate_5.name=Lime Colored Fence Gate
tile.color_gate_6.name=Pink Colored Fence Gate
tile.color_gate_7.name=Gray Colored Fence Gate
tile.color_gate_8.name=Light Gray Colored Fence Gate
tile.color_gate_9.name=Cyan Colored Fence Gate
tile.color_gate_10.name=Purple Colored Fence Gate
tile.color_gate_11.name=Blue Colored Fence Gate
tile.color_gate_12.name=Brown Colored Fence Gate
tile.color_gate_13.name=Green Colored Fence Gate
tile.color_gate_14.name=Red Colored Fence Gate
tile.color_gate_15.name=Black Colored Fence Gate
tile.metalFenceGate.name=Metal Fence Gate
tile.colorPane_white.name=White Colored Grid
tile.colorPane_orange.name=Orange Colored Grid
tile.colorPane_magenta.name=Magenta Colored Grid
tile.colorPane_lightBlue.name=Light Blue Colored Grid
tile.colorPane_yellow.name=Yellow Colored Grid
tile.colorPane_lime.name=Lime Colored Grid
tile.colorPane_pink.name=Pink Colored Grid
tile.colorPane_gray.name=Gray Colored Grid
tile.colorPane_silver.name=Light Gray Colored Grid
tile.colorPane_cyan.name=Cyan Colored Grid
tile.colorPane_purple.name=Purple Colored Grid
tile.colorPane_blue.name=Blue Colored Grid
tile.colorPane_brown.name=Brown Colored Grid
tile.colorPane_green.name=Green Colored Grid
tile.colorPane_red.name=Red Colored Grid
tile.colorPane_black.name=Black Colored Grid
tile.funkcomputer.name=Wireless Computer
tile.colorNeonLamp_white.name=White Neon Lamp
tile.colorNeonLamp_orange.name=Orange Neon Lamp
tile.colorNeonLamp_magenta.name=Magenta Neon Lamp
tile.colorNeonLamp_lightBlue.name=Light Blue Neon Lamp
tile.colorNeonLamp_yellow.name=Yellow Neon Lamp
tile.colorNeonLamp_lime.name=Lime Neon Lamp
tile.colorNeonLamp_pink.name=Pink Neon Lamp
tile.colorNeonLamp_gray.name=Gray Neon Lamp
tile.colorNeonLamp_silver.name=Light Gray Neon Lamp
tile.colorNeonLamp_cyan.name=Cyan Neon Lamp
tile.colorNeonLamp_purple.name=Purple Neon Lamp
tile.colorNeonLamp_blue.name=Blue Neon Lamp
tile.colorNeonLamp_brown.name=Brown Neon Lamp
tile.colorNeonLamp_green.name=Green Neon Lamp
tile.colorNeonLamp_red.name=Red Neon Lamp
tile.colorNeonLamp_black.name=Black Neon Lamp
tile.colorPlasmaLamp_white.name=White Plasma Lamp
tile.colorPlasmaLamp_orange.name=Orange Plasma Lamp
tile.colorPlasmaLamp_magenta.name=Magenta Plasma Lamp
tile.colorPlasmaLamp_lightBlue.name=Light Blue Plasma Lamp
tile.colorPlasmaLamp_yellow.name=Yellow Plasma Lamp
tile.colorPlasmaLamp_lime.name=Lime Plasma Lamp
tile.colorPlasmaLamp_pink.name=Pink Plasma Lamp
tile.colorPlasmaLamp_gray.name=Gray Plasma Lamp
tile.colorPlasmaLamp_silver.name=Light Gray Plasma Lamp
tile.colorPlasmaLamp_cyan.name=Cyan Plasma Lamp
tile.colorPlasmaLamp_purple.name=Purple Plasma Lamp
tile.colorPlasmaLamp_blue.name=Blue Plasma Lamp
tile.colorPlasmaLamp_brown.name=Brown Plasma Lamp
tile.colorPlasmaLamp_green.name=Green Plasma Lamp
tile.colorPlasmaLamp_red.name=Red Plasma Lamp
tile.colorPlasmaLamp_black.name=Black Plasma Lamp
tile.microbox.name=Micro Box
tile.ionCollector.name=Ion Collector
tile.wire_0.name=Cable
tile.wire_1.name=Redstone Cable
tile.wire_2.name=Super Cable
tile.wire_3.name=Support Cable
tile.wire_4.name=Network Cable
tile.spacedoor.name=Airlock
tile.spaceship.name=Hologram Box
tile.erze_zinn.name=Tin Ore
tile.erze_zink.name=Zinc Ore
tile.erze_kupfer.name=Copper Ore
tile.erze_bauxit.name=Bauxite
tile.erze_magnetit.name=Magnetite Ore
tile.erze_kupfer_m.name=Menelaus Copper Ore
tile.erze_quartz_m.name=Menelaus Quartz Ore
tile.erze_coal_m.name=Menelaus Coal Ore
tile.erzBlocke_zinn_block.name=Tin Block
tile.erzBlocke_zink_block.name=Zinc Block
tile.erzBlocke_kupfer_block.name=Copper Block
tile.erzBlocke_kristall_block.name=Neon Crystal Block
tile.erzBlocke_metal_block.name=Metal Block
tile.Magnet.name=Magnetite Block
tile.metalTreppe_yellow.name=Metal Stair
tile.metalSlap_metal.name=Metal slab
tile.metalSlap_gitter.name=Grid Slab
tile.metalSlap_luftung.name=Vent slab
tile.metalTreppe_white.name=Metal Stairs
tile.wandrobe.name=Wardrobe
tile.neonsand.name=Neonsand
tile.cristall_0.name=Neon crystal
tile.cristall_1.name=Retium crystal
tile.cristall_2.name=Glowtite crystal
tile.cristall_3.name=Bioterium crystal
tile.cristall_4.name=Alutine crystal
tile.optiBench.name=Opti bench
tile.elektroMagnet.name=Electro magnet
tile.pulsit.name=Gravity pulser
tile.monorail.name=Monorail
tile.monorail_station.name=Monorail Station
tile.monorail_waypoint.name=Monorail Waypoint
tile.monorail_booster.name=Monorail Booster
tile.monorail_charger.name=Monorail Charger
tile.monorail_detector.name=Monorail Detector
tile.pucher.name=Pusher
tile.blockFish.name=Fish Block
tile.industrieFurnace.name=Industrial Furnace
tile.blockBreaker.name=Block Breaker
tile.partpress.name=Part Press
tile.efurnace.name=Neon Furnace
tile.solarpanel.name=Solar Panel
tile.assemblytable.name=Assembly Table
tile.crusher.name=Super Crusher
tile.entityeater_eater.name=Absorption Laser
tile.entityeater_killer.name=Laser Turret
tile.entityeater_healer.name=Regeneration Laser
tile.brennstoff_generator.name=Generator
tile.bateriebox.name=Battery Box
tile.DroneStation.name=Drone Station
tile.externCooler.name=External Cooler
tile.pipe_0.name=Normal Pipe
tile.pipe_1.name=Redstone Pipe
tile.pipe_2.name=Neon Pipe
tile.pipe_3.name=Support Pipe
tile.sorter.name=Sorter
tile.erzBlocke_kristall_block_retium.name=Retium Crystal Block
tile.erzBlocke_kristall_block_glowtit.name=Glowtite Crystal Block
tile.erzBlocke_kristall_block_bioterium.name=Bioterium Crystal Block
tile.erzBlocke_kristall_block_alutin.name=Alutine Crystal Block
tile.erzBlocke_metal_block_luftschacht.name=Ventilation
tile.uncolorPane.name=Grid
tile.uncolorGitter.name=Grid Block
tile.claime.name=Zone Transmitter
tile.neonengine.name=Neon Engine
tile.plasmaGenerator.name=Infusion Generator
tile.neonbricks_Neonbrick.name=Neon Bricks
tile.neonbricks_Retiumbrick.name=Retium Brick
tile.neonbricks_Glowtitbrick.name=Glowtite Brick
tile.neonbricks_Bioteriumbrick.name=Bioterium Brick
tile.triebwerk.name=Thruster
tile.block_placer.name=Block Placer
tile.wasserTurbine.name=Water Turbine
tile.waterCooler.name=Water Cooler
tile.externalCore.name=Quantum Core
tile.techtable.name=Techtable
tile.modul.1.name=Research Module - Energy
tile.modul.2.name=Research Module - Support
tile.modul.3.name=Research Module - Experience
tile.scanner.name=Scanner
tile.forscher.name=Researcher
tile.laser_transmitter.name=Laser Transmitter
tile.industrial_neon_furnace.name=Industrial Neon Furnace
tile.neonsand_neon.name=Neon Sand
tile.neonsand_retium.name=Retium Sand
tile.neonsand_glowtit.name=Glowtite Sand
tile.neonsand_bioterium.name=Bioterium Sand
tile.neonsand_alutin.name=Alutine Sand
tile.metalFence_metal.name=Metal Fence
tile.stone_stoneM.name=Menelaus Stone
tile.stone_cobbleM.name=Menelaus Cobblestone
tile.stone_brickM.name=Menelaus Stone Bricks
tile.stone_crackedM.name=Menelaus Cracked Stone Bricks
tile.stone_sandM.name=Menelaus Sandstone
tile.stone_smoothsandM.name=Menelaus Smooth Sandstone
tile.stone_chiseledsandM.name=Menelaus Chiseled Sandstone
tile.sand_M.name=Menelaus Sand
tile.gravel_M.name=Menelaus Gravel
tile.glowmelo.name=Glowmelo
tile.wood_tyros.name=Tyros Wood
tile.wood_menelaus.name=Menelaus Wood
tile.boardcomputer.name=Board Computer
tile.beam_button.name=Teleporter (Up/Down)
tile.beam_up.name=Teleporter (Up)
tile.beam_down.name=Teleporter (Down)
tile.beam_.name=Teleport Block
tile.erse.name=Plant Erse
tile.sapling_menelaus.name=Menelaus Sapling
tile.sapling_tyros.name=Tyros Sapling
tile.flashserver.name=Flash Server
tile.zentrifuge.name=Centrifuge
tile.fuelcell.name=Fueltank
tile.dirt_M.name=Menelaus Dirt
tile.ftl_drive.name=FTL Block
tile.advanced_boardcomputer.name=Advanced Boardcomputer
tile.modular_door.name=Modular Gate
tile.composite_door.name=Composite Door
tile.sapling_holder.name=Planting Marker
tile.mendel_berry.name=Mendelberry Bush
tile.planks_menelaus_mushroom.name=Menelaus Planks
tile.planks_tyros.name=Tyros Planks
tile.fluid_tube.name=Fluid Tube
tile.fluid_pump.name=Pump
tile.wr_receiver.name=Receiver - Powderless Redstone
tile.wr_transmitter.name=Transmitter - Powderless Redstone
tile.wr_transmitter_i.name=Inverted Transmitter - Powderless Redstone
fluid.liquid.neon=Neon Liquid
item.scrench.name=Scrench
item.NeonBattery_full.name=Neon Battery
item.Battery_N_full.name=Normal Battery
item.Battery_L_full.name=Large Battery
item.Objektscenner.name=Construction Replicator
item.Kristall_Blueprint.name=Blueprint
item.Kristall_Blueprint_empty.name=Empty Blueprint
item.escenner.name=E-Scanner
item.logistic_editor.ENERGIE.name=Logistics Editor (Energy)
item.logistic_editor.SUPPORT.name=Logistics Editor (Support)
item.logistic_editor.NETWORK.name=Logistics Editor (Network)
item.logistic_editor.ITEMS.name=Logistics Editor (Items)
item.logistic_editor.FLUIDS.name=Logistics Editor (Liquids)
item.LogicChip.name=Logic Chipset
item.KIChip.name=AI Chipset
item.LogistcChip.name=Transport Chipset
item.NavigationChip.name=Navigation Chipset
item.NetworkChip.name=Network Chipset
item.ProduktionChip.name=Industrial Chipset
item.RedstoneChip.name=Redstone Control Chipset
item.SuportChip.name=Support Chipset
item.TacticChip.name=Tactic Control Chipset
item.UltimateChip.name=Ultimate Chipset
item.DamageControlChip.name=Damage Control Chipset
item.Standart-ram.name=Standard RAM
item.A-ram.name=Alon RAM
item.P-ram.name=Penton RAM
item.TCT-ram.name=TCT RAM
item.Master-ram.name=Master RAM
item.Non-ram.name=NoN RAM
item.Dungon-ram.name=Dungeon RAM
item.Univ-ram.name=Torus RAM
item.Standart-Core.name=Standard Core
item.A1-Core.name=Alon I Core
item.P2-Core.name=Penton II Core
item.TCT-Core.name=TCT Core
item.Master-Core.name=Master Mind Core
item.Non-Core.name=NoN Core
item.Dungon-Core.name=Dungeon Heart Core
item.Univ-Core.name=Torus Core
item.toasted_chip.name=Toasted Chip
item.toasted_ram.name=Toasted RAM
item.toasted_core.name=Toasted Core
item.erse.name=Erse
item.item_glowmelo.name=Glowmelo
item.CopperCoil.name=Copper Coil
item.IronCoil.name=Iron Coil
item.NeonCoil.name=Neon Coil
item.GoldCoil.name=Gold Coil
item.Eisenteile.name=Ironparts
item.Diamandteile.name=Diamondparts
item.Quarzteile.name=Quartzparts
item.Neonteile.name=Neonparts
item.Kupferteile.name=Copperparts
item.Iron_Stick.name=Iron Stick
item.Aluminiumplatten.name=Aluminum Plates
item.Verbuntmetall.name=Composite Metal
item.Silizium.name=Silicon Wafer
item.Tank.name=Tank
item.itemErze_zinnbarren.name=Tin Ingot
item.itemErze_zinkbarren.name=Zinc Ingot
item.itemErze_kupferbarren.name=Copper Ingot
item.itemErze_magnet.name=Magnet Ingot
item.itemErze_neon_ingot.name=Neon Ingot
item.itemErze_retium_ingot.name=Retium Ingot
item.itemErze_glowtit_ingot.name=Glowtite Ingot
item.itemErze_bioterium_ingot.name=Bioterium Ingot
item.itemErze_ingot_wakurum.name=Wakurium Ingot
item.itemErze_ingot_quantanium.name=Quantium Ingot
item.itemErze_ingot_seltenerde.name=Rare Earth
item.itemErze_ingot_gadolinium.name=Gadolinium Ingot
item.itemErze_ingot_lithium.name=Lithium Ingot
item.itemErze_ingot_neodymium.name=Neodymium Ingot
item.recipe.name=Recipe
item.MaschinBord.name=Machine Board
item.LackTank0.name=White Colored Tank
item.LackTank1.name=Orange Colored Tank
item.LackTank2.name=Magenta Colored Tank
item.LackTank3.name=Light Blue Colored Tank
item.LackTank4.name=Yellow Colored Tank
item.LackTank5.name=Lime Colored Tank
item.LackTank6.name=Pink Colored Tank
item.LackTank7.name=Gray Colored Tank
item.LackTank8.name=Light Gray Colored Tank
item.LackTank9.name=Cyan Colored Tank
item.LackTank10.name=Purple Colored Tank
item.LackTank11.name=Blue Colored Tank
item.LackTank12.name=Brown Colored Tank
item.LackTank13.name=Green Colored Tank
item.LackTank14.name=Red Colored Tank
item.LackTank15.name=Black Colored Tank
item.AirBrush.name=Air Brush
item.dust.name=Dust
item.aiflash0.name=Simple Redstone Flashdrive
item.aiflash1.name=Improved Redstone Flashdrive
item.aiflash2.name=Glowstone Flashsdrive
item.aiflash3.name=Crystal Flashdrive
item.aiflash4.name=Isotope Flashdrive
item.aiflash5.name=Qubit Flashdrive
item.drone_engine.name=Drone Engine
item.entityegger.name=Entity-Egger
item.spawnerchest.name=Spawner Chest
item.spawnerchest_full.name=Filled Spawner Chest
item.minerbox.name=Construction Box - Miner
item.forstmasterbox.name=Construction Box - Forstmaster
item.monocartbox.name=Construction Box - Monocart
item.creeperWurfel.name=Slime Cube
item.sauerstofftank.name=Oxygen Tank
item.laserBow.name=Laser Bow
item.helmetMagnetit.name=Magnetite Helmet
item.chestplateMagnetit.name=Magnetite Chestplate
item.leggingsMagnetit.name=Magnetite Leggings
item.bootsMagnetit.name=Magnetite Boots
item.helmet_composite.name=Composite Helmet
item.chestplate_composite.name=Composite Chestplate
item.leggings_composite.name=Composite Leggings
item.boots_composite.name=Composite Boots
item.itemMonitor.name=Monitor
item.grablingHook.name=Grappling Slime
item.plasmaschneider.name=Plasma Cutter
item.hologramcontroler.name=Hologram Controller
item.research_blueprint.name=Research Blueprint
item.goldteile.name=Gold Parts
item.laserdiode.name=Laser Diode
item.linse_l.name=Purple Focus Lens
item.linse_g.name=Green Focus Lens
item.linse_r.name=Red Focus Lens
item.linse_w.name=White Focus Lens
item.fragment_core.name=Core Fragment
item.fragment_ram.name=RAM Fragment
item.fuel_cell.name=Rocket Fuel
item.keramik.name=Heat Protection Plate
item.itemErze_ingot_bitripentium.name=Bitripentium Ingot
item.composite_pickaxe.name=Composite Pickaxe
item.composite_axe.name=Composite Axe
item.composite_hoe.name=Composite Hoe
item.composite_spade.name=Composite Spade
item.gleiter.name=Paraglider
item.dust_obsidian.name=Obsidian Dust
item.spawnnote.name=Mysterious Document
item.coordinats.name=Coordinates
item.fasern.name=Fibre
item.hack_schnitzel.name=Woodchips
item.kompost.name=Compost
item.telescope.name=Telescope
item.laser_riffle.name=Laser Rifle
item.sword_neon.name=Neon Sword
item.sword_retium.name=Retium Sword
item.sword_glowtite.name=Glowtite Sword
item.sword_bioterium.name=Bioterium Sword
item.grenade_launcher.name=Grenade Launcher
item.blazegranate.name=Blaze Grenade
item.granate.name=Grenade
item.plasmagranate.name=Plasma Grenade
item.schleimgranate.name=Slime Grenade
item.granate_leer.name=Empty Grenade
item.kompostgranate.name=Compost Grenade
item.futtergranate.name=Feeding Grenade
item.saatgranate.name=Seed Grenade
item.record_futurepack.name=Music Disc
item.record.futurepack.desc=Mantes - Futurepack Soundtrack
item.record_fp_menelaus.name=Music Disc
item.record.fp_menelaus.desc=Mantes - Voice of Menelaus
item.record_fp_tyros.name=Music Disc
item.record.fp_tyros.desc=Mantes - Voice of Tyros
item.record_fp_entros.name=Music Disc
item.record.fp_entros.desc=Mantes - Voice of Entros
item.record_fp_unknown.name=Unknown Disc
item.record.fp_unknown.desc=Martin 1
item.mendel_berry.name=Mendelberry
item.mendel_seed.name=Mendelberry Seed
item.mendel_flower.name=Mendelberry Flower
item.sword_handle.name=Sword Handle
item.EnergyCell_full.name=Energy Cell
item.CompactEnergyCell_full.name=Compact Energy Cell
item.CrystalEnergyCell_full.name=Crystalline Energy Cell
item.fibers.name=Plantfibers
item.chemicals.name=Chemicals
item.polymer.name=Biopolymer
item.quantanium_coil.name=Quantanium Coil
item.modul_battery.name=Energy Module
itemGroup.fpTab.deco=Future Pack Materials
itemGroup.fpTab.maschiens=Future Pack Machinery
itemGroup.fpTab.items=Future Pack Items
container.opticrafting=Opti Bench
container.collector=Ion Collector
entity.FP-Gehuf.name=Gehuf
entity.FP-Crawler.name=Crawler
entity.FP-EvilRobot.name=Technocratic unit
entity.FP-Forstmaster.name=Forstmaster
entity.miner.name=Miner
entity.monocart.name=Monocart
potion.paralyze=Paralyze
gui.fp.wandrope=Wardrobe
aspect.geologie.name=Geology
aspect.chemie.name=Chemistry
aspect.tierhaltung.name=Stockbreeding
aspect.logistik.name=Logistics
aspect.biologie.name=Biology
aspect.morphologie.name=Morphology
aspect.metallurgie.name=Metallurgy
aspect.maschinenbau.name=Engineering
aspect.thermodynamik.name=Thermodynamics
aspect.termodynamic.name=Thermodynamics
aspect.energieverbindung.name=Power Connection
aspect.neonenergie.name=Neon Energy
aspect.hydraulic.name=Hydraulics
death.attack.neonDamage=%s was killed by Neon Energy
material.metall=Metal Block: Suitable for SSpaceships
chat.beam.noBlockAbove=There is no teleporter above this block.
chat.beam.noBlockBelow=There is no teleporter below this block.
chat.beam.lowEnergie=Not enough neon energy!
chat.spaceship.open=Your spaceship is open.
chat.spaceship.missingEngine=Your spaceship needs something to produce neon energy.
chat.spaceship.missingThruster=Your spaceship has %1$s block(s) but only %2$s thruster(s); you need %3$s more thruster(s).
chat.spaceship.lowEnergie=Not enough neon energy.
chat.spaceship.missingBeam=Your spaceship has no teleporter.
chat.spaceship.missingFuel=The thrusters don't have enough fuel. You still have %s thrusters that need to be powered.
chat.research.add=Your research(%s) finished.
research.useblock.missing=You don't know how to use this object!
hologram.error.set.notsupported=You can't set an hologram for this block!
hologram.error.set.notileentity=You can't set an hologram for this block!
hologram.error.select.tileentity=You can't use this block for an hologram!
achievement.installFP=I like the Stars
achievement.installFP.desc=Install the Futurepack
achievement.sushi=I like Sushi
achievement.sushi.desc=Fish Blocks?!
achievement.erse=Erse for the world!
achievement.erse.desc=Find a Erse
achievement.theImpalpable=Technology of the Unreachable
achievement.theImpalpable.desc=Get an E-Scanner
achievement.labor=Research Laboratory
achievement.labor.desc=Craft a Scanner and a Researcher
achievement.mainboard=My first computer
achievement.mainboard.desc=Craft a Mainboard
achievement.neonEnergie=Electricity
achievement.neonEnergie.desc=Generate Neon-Energy
achievement.isntDiamond=It's not a Diamond
achievement.isntDiamond.desc=Mining Zinc
achievement.needBukkit=I need more Buckets
achievement.needBukkit.desc=Craft an Industrial Furnace
achievement.composite=Composite Metal
achievement.composite.desc=Just a little bit of everything
achievement.menelaus=Menelaus
achievement.menelaus.desc=Travel to Menelaus
achievement.metalhaltig=It contains metals
achievement.metalhaltig.desc=Get Menelaus Gravel od Dirt
achievement.tyros=Tyros
achievement.tyros.desc=Travel to Tyros
achievement.glowmelo=Glowmelo
achievement.glowmelo.desc=Harvest a Glowmelo
achievement.crys_neon=Neon Crystal
achievement.crys_neon.desc=Find a Neon Crystal
achievement.crys_alutin=Alutine Crystal
achievement.crys_alutin.desc=Find an Alutine Crystal
achievement.crys_glowtit=Glowtite Crystal
achievement.crys_glowtit.desc=Find a Glowtite Crystal
achievement.crys_retium=Retium Crystal
achievement.crys_retium.desc=Find a Retium Crystal
achievement.crys_bioterium=Bioterium Crystal
achievement.crys_bioterium.desc=Find a Bioterium Crystal
command.fp.usage=/fp <research> ...
command.fp.research.usage=/fp research <player> <reset:unlock> [...]
command.fp.research.unlock.usage=/fp research <player> unlock <all:basics:Research> [path:single]
command.fp.research.reset.feedback=Your Researches have been reset!
command.fp.research.reset.success=The Researches from %s have been reset!
command.fp.research.unlock.success=The Researches [%s] have been unlocked for %s!
command.fp.research.copy.success=%s's research was successfully copied to %s!
harvest.tool.shovel.0=Mining: Shovel
harvest.tool.pickaxe.0=Mining: Pickaxe
harvest.tool.pickaxe.1=Mining: Stone Pickaxe
harvest.tool.pickaxe.2=Mining: Iron Pickaxe
harvest.tool.pickaxe.3=Mining: Diamond Pickaxe
harvest.tool.axe.0=Mining: Axe
harvest.tool.scoop.0=Mining: Scoop
scanner.button.0.name=Tech Tree
scanner.button.1.name=Scan Result
scanner.button.2.name=Tech Info
scanner.button.3.name=Calculator
gui.scanner.start.name=Scan
info.note.read=Right click to view!
key.categories.futurepack=Futurepack
key.fp.gleiter=Paraglider open/close
research.need.achievement=Need %s
research.page.base.name=Basics
research.page.story.name=Story
research.page.chips.name=Circuits
research.page.deco.name=Decoration
research.page.logistic.name=Logistics
research.page.energy.name=Energy Generation
research.page.production.name=Production
research.page.space.name=Space Travel
research.page.tools.name=Tools
research.get_started=The Future Pack
research.forschung=The Research System
research.techtabel=Tech Table
research.util=Miscellaneous
research.scanner=Scanner
research.forscher=Researcher
research.production=Production 1
research.itemlogistik=Item Logistics
research.werkzeug=Tools
research.decoration=Decoration
research.energieerzeugung=Energy Generation 1
research.energielogistik=Energy Logistics
research.upgradeT1=Research Module - Energy
research.assembly=Chip Assembly
research.optik=Optics
research.energiespeicher=Energy Storage
research.energieerzeugung2=Energy Generation 2
research.production2=Production 2
research.magnetismus=Magnetism
research.thermodynamik=Thermodynamics
research.ai=Artificial Intelligence
research.upgradeT2=Research Module (AI)
research.erneuerbare=Renewable Energy
research.aispeicher=Upgraded AI-Memory
research.energietools=Energy Tools
research.lasertechnik=Laser Tech 1
research.bergbau=Mining
research.waffentechnik=Weaponry
research.production3=Production 3
research.netzwerke=Networks
research.hologrammtechnik=Hologram Tech
research.raumfahrt=Space Travel
research.menelaus=Menelaus
research.upgradeT3=Research Module - Experience
research.tyros=Tyros
research.quantentechnik=Quantum Tech
research.ionentechnik=Ion Tech
research.lasertechnik2=Laser Tech 2
research.astronomie1=Astronomy 1
research.drones=Drone Technology
research.itempipe=Normal Pipe
research.story.tec_dungeon=Step into the unknown
research.hs.geologie=Geology
research.hs.chemie=Chemistry
research.hs.tierhaltung=Stockbreeding
research.hs.logistik=Logistics
research.hs.biologie=Biology
research.hs.morphologie=Morphology
research.hs.metallurgie=Metallurgy
research.hs.maschinenbau=Engineering
research.hs.thermodynamik=Thermodynamics
research.hs.energieverbindungen=Power Connection
research.hs.neonenergie=Neon Energy
research.hs.hydraulic=Hydraulics
research.story.labor=Scientific Curiosity
research.story.labor2=Laboratory
research.story.erse=Erse
research.story.neonenergie=Electricity
research.story.mainboard=My first Computer
research.story.metalhaltig=It contains metals
research.story.glowmelo=Glowmelo
research.story.crystal_n=Neon Crystal
research.story.crystal_a=Alutine Crystal
research.story.crystal_g=Glowtite Crystal
research.story.crystal_r=Retium Crystal
research.story.crystal_b=Bioterium Crystal
research.story.crystal_sa=Bitripentium
research.unreachable_tec=Technology of the Unreachable
research.unreach.laserbow=Laserbow
research.production.blockbreaker=Block Breaker
research.production.blockplacer=Block Placer
research.production.partpress=Part Press
research.production.industrieofen=Industrial Furnace
research.production.ind.compositemetal=Composite Metal
research.production.ind.aluminium=Aluminum
research.production.ind.reduktion=Reduction
research.production.decoration=Decoration
research.production.optibench=Opti Bench
research.production.supercrusher=Super Crusher
research.production.neonfurnace=Neon Furnace
research.production.neonind=Neon Industrial Furnace
research.production.zentrifuge=Centrifuge
research.production.nind.reduktion=Advanced Reduction
research.production.nind.reloaded=Optimization
research.production.nind.magnet=Magnets
research.production.nind.wakurum=Wakurium
research.production.nind.quantanium=Quantanium
research.production.nind.keramik=Heat Protection Plate
research.production.nind.special=Material Improvement
research.production.nind.linse.r=Red Focus Lens
research.production.nind.linse.l=Purple Focus Lens
research.production.nind.linse.g=Green Focus Lens
research.production.zent.extraction1=Rock Extraction
research.production.zent.extraction2=Ore Extraction
research.production.zent.neon=Crystal Processing
research.production.zent.bio=Plant Extraction
research.production.zent.color=Color Production
research.production.nind.polymer=Biopolymer
research.production.zent.rare=Rare Earth Metal
research.energy.generator=Generator
research.energy.neonmotor=Neon Engine
research.energy.infusion=Infusion Generator
research.energy.solar=Solar Panel
research.energy.wasser_turbine=Water Turbine
research.energy.ionen=Ion Collector
research.log.itempipe=Normal Pipe
research.log.cable=Cable
research.log.neonpipe=Neon Pipe
research.log.redstonepipe=Redstone Pipe
research.log.supportpipe=Support Pipe
research.log.pusher=Item Pusher
research.log.sorter=Sorter
research.log.redstonecable=Redstone Cable
research.log.supportcable=Support Cable
research.log.batbox=Battery Box
research.log.networkcable=Network Cable
research.log.network=Networks
research.log.antenne=Antenna
research.log.laser=Laser Transmitter
research.log.flashserver=Flash Server
research.log.battery.normal=Battery
research.log.battery.large=Large Battery
research.log.battery.neon=Neon Battery
research.log.battery.cell=Energy Cell
research.log.battery.compact=Compact Energy Cell
research.log.battery.crystal=Crystalline Energy Cell
research.log.flash.1=Simple Redstone Flashdrive
research.log.flash.2=Improved Redstone Flashdrive
research.log.flash.3=Glowstone Flashdrive
research.log.flash.4=Crystal Flashdrive
research.log.flash.5=Isotope Flashdrive
research.log.flash.6=Qubit Flashdrive
research.assembly_chip=Assembly Table
research.motherboard=Mainboard
research.tuning=Overdrive
research.ram.standart=Standard Memory
research.ram.alon=Alon Memory
research.ram.penton=Penton Memory
research.ram.tct=TCT Memory
research.ram.mm=Master Memory
research.ram.non=Non Memory
research.ram.dungeon=Dungeon RAM
research.ram.univers=Torus RAM
research.core.standart=Standard Core
research.core.alon=Alon I Core
research.core.penton=Penton II Core
research.core.tct=TCT Core
research.core.mm=Master Mind Core
research.core.non=NoN Core
research.core.dungeon=Dungeon Core
research.core.univers=Torus Core
research.chip.logic=Logic Chipset
research.chip.industrial=Industrial Chipset
research.chip.tactic=Tactic Control Chipset
research.chip.transport=Transport Chipset
research.chip.navigation=Navigation Chipset
research.chip.damage=Damage Control Chipset
research.chip.ai=AI Chipset
research.chip.redstone=Redstone Control Chipset
research.chip.network=Network Chipset
research.chip.support=Support Chipset
research.chip.ultimate=Ultimate Chipset
research.chips.cooler=Cooler
research.chips.watercooler=Water Cooler
research.deco.metall=Metal Block
research.deco.metallslab=Metal Slab
research.deco.metalltreppe=Metal Stairs
research.deco.metallzaun=Metal Fence
research.deco.gitter=Grid Block
research.deco.gitterslab=Grid Slab
research.deco.gittertreppe=Grid Stairs
research.deco.gitterpane=Grid
research.deco.eisenleiter=Iron Ladder
research.deco.vent=Vent
research.deco.ventslab=Vent Slab
research.deco.glass=Lacquered Glass
research.deco.plasmalamp=Plasma Lamp
research.deco.neonlamp=Neon Lamp
research.deco.monitor=Monitor
research.deco.wardrobe=Wardrobe
research.deco.cdoor=Composite Door
research.deco.metallgate=Metall Fence Gate
research.space.magnetblock=Magnet Block
research.space.emagnet=Electro Magnet
research.space.gravity=Gravity-Pulser
research.space.airlock=Airlock
research.space.fuel=Rocket Fuel
research.space.thruster=Thruster
research.space.tank=Fueltank
research.space.teleport=Teleporter
research.space.computer=Boardcomputer
research.space.spaceship=Navigation and Control
research.space.navcord.menelaus=Menelaus Coordinates
research.space.drive.ftl=FTL-Drive
research.space.navcord.tyros=Tyros Coordinates
research.space.dronestation=Drone Station
research.space.claime=Zone Transmitter
research.space.miner=Mining Drone
research.space.turret.killer=Laser Turret
research.space.turret.heal=Regeneration Laser
research.space.turret.absorb=Absorption Laser
research.space.modular_door=Modular Door
research.tools.scrench=Scrench
research.tools.airbrush=Airbrush
research.tools.sauerstofftank=Oxygen Tank
research.tools.logistik_editor=Logistics Editor
research.tools.composite_pickaxe=Composite Pickaxe
research.tools.composite_axe=Composite Axe
research.tools.composite_hoe=Composite Hoe
research.tools.composite_spade=Composite Spade
research.tools.gleiter=Paraglider
research.tools.egger=Entity Egger
research.tools.spawnerchest=Spawner Chest
research.tools.plasma=Plasma Cutter
research.tools.escanner=E-Scanner
research.tools.laserbow=Laser Bow
research.tools.grabling=Grappling Slime
research.tools.hologramm=Hologram Controller
research.tools.grenadelauncher=Grenade Launcher
research.tools.grenade.he=Grenade
research.tools.grenade.plasma=Plasma Grenade
research.tools.grenade.slime=Slime Grenade
research.tools.grenade.blaze=Blaze Grenade
research.tools.grenade.saat=Seed Grenade
research.tools.grenade.food=Feeding Grenade
research.tools.grenade.compost=Compost Grenade
research.tools.sword.neon=Neon Sword
research.tools.sword.retium=Retium Sword
research.tools.sword.glowtite=Glowtite Sword
research.tools.sword.bioterium=Bioterium Sword
research.tools.laserrifle=Laser Rifle
futurepack.zentrifuge.name=Centrifuge Recipes
futurepack.jei.neededsupport= %s SP
futurepack.crafting.name=Research Crafting
futurepack.jei.notresearched=You have not researched this yet!
futurepack.assembly.name=Assembly Recipes
futurepack.furnace.industrial.name=Industrial Furnace Recipes
futurepack.furnace.industrial.neon.name=Industrial Neon Recipes
futurepack.crusher.name=Super Crusher Rezepte
tile.blockWithHole.name=Work in progress -- Feature is currently locked!