switch to standard of snake_case in ids and resource files

This commit is contained in:
Raoul Van den Berge
2015-12-27 21:23:35 +01:00
parent 995600bd16
commit 0c16a1e2d6
19 changed files with 67 additions and 164 deletions

View File

@@ -14,7 +14,7 @@ public class BlockExternalStorage extends BlockMachine
{ {
public BlockExternalStorage() public BlockExternalStorage()
{ {
super("externalStorage"); super("external_storage");
} }
@Override @Override

View File

@@ -4,6 +4,6 @@ public class BlockMachineCasing extends BlockBase
{ {
public BlockMachineCasing() public BlockMachineCasing()
{ {
super("machineCasing"); super("machine_casing");
} }
} }

View File

@@ -15,7 +15,7 @@ public class BlockWirelessTransmitter extends BlockMachine
{ {
public BlockWirelessTransmitter() public BlockWirelessTransmitter()
{ {
super("wirelessTransmitter"); super("wireless_transmitter");
} }
@Override @Override

4
src/main/java/storagecraft/gui/GuiController.java Normal file → Executable file
View File

@@ -49,11 +49,11 @@ public class GuiController extends GuiBase
drawString(7, 7, t("gui.storagecraft:controller")); drawString(7, 7, t("gui.storagecraft:controller"));
drawString(7, 87, t("container.inventory")); drawString(7, 87, t("container.inventory"));
drawString(31, 20, t("misc.storagecraft:energyUsage", controller.getEnergyUsage())); drawString(31, 20, t("misc.storagecraft:energy_usage", controller.getEnergyUsage()));
if (inBounds(barX, barY, barWidth, barHeight, mouseX, mouseY)) if (inBounds(barX, barY, barWidth, barHeight, mouseX, mouseY))
{ {
drawTooltip(mouseX, mouseY, t("misc.storagecraft:energyStored", controller.getEnergyStored(null), controller.getMaxEnergyStored(null))); drawTooltip(mouseX, mouseY, t("misc.storagecraft:energy_stored", controller.getEnergyStored(null), controller.getMaxEnergyStored(null)));
} }
} }
} }

4
src/main/java/storagecraft/gui/GuiExternalStorage.java Normal file → Executable file
View File

@@ -29,7 +29,7 @@ public class GuiExternalStorage extends GuiBase
@Override @Override
public void drawBackground(int x, int y, int mouseX, int mouseY) public void drawBackground(int x, int y, int mouseX, int mouseY)
{ {
bindTexture("gui/externalStorage.png"); bindTexture("gui/external_storage.png");
drawTexturedModalRect(x, y, 0, 0, xSize, ySize); drawTexturedModalRect(x, y, 0, 0, xSize, ySize);
} }
@@ -37,7 +37,7 @@ public class GuiExternalStorage extends GuiBase
@Override @Override
public void drawForeground(int mouseX, int mouseY) public void drawForeground(int mouseX, int mouseY)
{ {
drawString(7, 7, t("gui.storagecraft:externalStorage")); drawString(7, 7, t("gui.storagecraft:external_storage"));
drawString(7, 39, t("container.inventory")); drawString(7, 39, t("container.inventory"));
} }
} }

2
src/main/java/storagecraft/gui/GuiGrid.java Normal file → Executable file
View File

@@ -131,7 +131,7 @@ public class GuiGrid extends GuiBase
{ {
if (grid.getType() == EnumGridType.CRAFTING) if (grid.getType() == EnumGridType.CRAFTING)
{ {
bindTexture("gui/craftingGrid.png"); bindTexture("gui/crafting_grid.png");
} }
else else
{ {

View File

@@ -29,7 +29,7 @@ public class GuiWirelessTransmitter extends GuiBase
@Override @Override
public void drawBackground(int x, int y, int mouseX, int mouseY) public void drawBackground(int x, int y, int mouseX, int mouseY)
{ {
bindTexture("gui/wirelessTransmitter.png"); bindTexture("gui/wireless_transmitter.png");
drawTexturedModalRect(x, y, 0, 0, xSize, ySize); drawTexturedModalRect(x, y, 0, 0, xSize, ySize);
@@ -44,7 +44,7 @@ public class GuiWirelessTransmitter extends GuiBase
@Override @Override
public void drawForeground(int mouseX, int mouseY) public void drawForeground(int mouseX, int mouseY)
{ {
drawString(7, 7, t("gui.storagecraft:wirelessTransmitter")); drawString(7, 7, t("gui.storagecraft:wireless_transmitter"));
drawString(7, 43, t("container.inventory")); drawString(7, 43, t("container.inventory"));
} }
} }

View File

@@ -22,9 +22,9 @@ public class SideButtonRedstoneMode extends SideButton
{ {
StringBuilder builder = new StringBuilder(); StringBuilder builder = new StringBuilder();
builder.append(EnumChatFormatting.RED).append(gui.t("sidebutton.storagecraft:redstoneMode")).append(EnumChatFormatting.RESET).append("\n"); builder.append(EnumChatFormatting.RED).append(gui.t("sidebutton.storagecraft:redstone_mode")).append(EnumChatFormatting.RESET).append("\n");
builder.append(gui.t("sidebutton.storagecraft:redstoneMode." + setting.getRedstoneMode().id)); builder.append(gui.t("sidebutton.storagecraft:redstone_mode." + setting.getRedstoneMode().id));
return builder.toString(); return builder.toString();
} }

View File

@@ -4,6 +4,6 @@ public class ItemQuartzEnrichedIron extends ItemBase
{ {
public ItemQuartzEnrichedIron() public ItemQuartzEnrichedIron()
{ {
super("quartzEnrichedIron"); super("quartz_enriched_iron");
} }
} }

6
src/main/java/storagecraft/item/ItemStorageCell.java Normal file → Executable file
View File

@@ -21,7 +21,7 @@ public class ItemStorageCell extends ItemBase
public ItemStorageCell() public ItemStorageCell()
{ {
super("storageCell"); super("storage_cell");
setMaxStackSize(1); setMaxStackSize(1);
setHasSubtypes(true); setHasSubtypes(true);
@@ -42,11 +42,11 @@ public class ItemStorageCell extends ItemBase
{ {
if (getCapacity(cell) == -1) if (getCapacity(cell) == -1)
{ {
list.add(String.format(StatCollector.translateToLocal("misc.storagecraft:storageCellStored"), getStored(cell))); list.add(String.format(StatCollector.translateToLocal("misc.storagecraft:storage_cell_stored"), getStored(cell)));
} }
else else
{ {
list.add(String.format(StatCollector.translateToLocal("misc.storagecraft:storageCellStoredWithCapacity"), getStored(cell), getCapacity(cell))); list.add(String.format(StatCollector.translateToLocal("misc.storagecraft:storage_cell_stored_capacity"), getStored(cell), getCapacity(cell)));
} }
} }

View File

@@ -14,7 +14,7 @@ public class ItemStoragePart extends ItemBase
public ItemStoragePart() public ItemStoragePart()
{ {
super("storagePart"); super("storage_part");
setHasSubtypes(true); setHasSubtypes(true);
setMaxDamage(0); setMaxDamage(0);

View File

@@ -24,7 +24,7 @@ public class ItemWirelessGrid extends ItemBase
public ItemWirelessGrid() public ItemWirelessGrid()
{ {
super("wirelessGrid"); super("wireless_grid");
setMaxStackSize(1); setMaxStackSize(1);
setHasSubtypes(true); setHasSubtypes(true);
@@ -45,7 +45,7 @@ public class ItemWirelessGrid extends ItemBase
{ {
if (isValid(stack)) if (isValid(stack))
{ {
list.add(StatCollector.translateToLocalFormatted("misc.storagecraft:wirelessGrid.tooltip", getX(stack), getY(stack), getZ(stack))); list.add(StatCollector.translateToLocalFormatted("misc.storagecraft:wireless_grid.tooltip", getX(stack), getY(stack), getZ(stack)));
} }
} }
@@ -74,7 +74,7 @@ public class ItemWirelessGrid extends ItemBase
if (grid == null) if (grid == null)
{ {
player.addChatComponentMessage(new ChatComponentText(StatCollector.translateToLocal("misc.storagecraft:wirelessGrid.noGrid." + stack.getItemDamage()))); player.addChatComponentMessage(new ChatComponentText(StatCollector.translateToLocal("misc.storagecraft:wireless_grid.no_grid." + stack.getItemDamage())));
} }
else else
{ {
@@ -83,22 +83,22 @@ public class ItemWirelessGrid extends ItemBase
} }
else else
{ {
player.addChatComponentMessage(new ChatComponentText(StatCollector.translateToLocal("misc.storagecraft:wirelessGrid.notWorking"))); player.addChatComponentMessage(new ChatComponentText(StatCollector.translateToLocal("misc.storagecraft:wireless_grid.not_working")));
} }
} }
else else
{ {
player.addChatComponentMessage(new ChatComponentText(StatCollector.translateToLocal("misc.storagecraft:wirelessGrid.notFound"))); player.addChatComponentMessage(new ChatComponentText(StatCollector.translateToLocal("misc.storagecraft:wireless_grid.not_found")));
} }
} }
else else
{ {
player.addChatComponentMessage(new ChatComponentText(StatCollector.translateToLocal("misc.storagecraft:wirelessGrid.outOfRange"))); player.addChatComponentMessage(new ChatComponentText(StatCollector.translateToLocal("misc.storagecraft:wireless_grid.out_of_range")));
} }
} }
else else
{ {
player.addChatComponentMessage(new ChatComponentText(StatCollector.translateToLocal("misc.storagecraft:wirelessGrid.notSet." + stack.getItemDamage()))); player.addChatComponentMessage(new ChatComponentText(StatCollector.translateToLocal("misc.storagecraft:wireless_grid.not_set." + stack.getItemDamage())));
} }
} }

View File

@@ -4,7 +4,7 @@ public class ItemWirelessGridPlate extends ItemBase
{ {
public ItemWirelessGridPlate() public ItemWirelessGridPlate()
{ {
super("wirelessGridPlate"); super("wireless_grid_plate");
setMaxStackSize(1); setMaxStackSize(1);
} }

View File

@@ -69,12 +69,12 @@ public class CommonProxy
GameRegistry.registerTileEntity(TileCable.class, "cable"); GameRegistry.registerTileEntity(TileCable.class, "cable");
GameRegistry.registerTileEntity(TileGrid.class, "grid"); GameRegistry.registerTileEntity(TileGrid.class, "grid");
GameRegistry.registerTileEntity(TileDrive.class, "drive"); GameRegistry.registerTileEntity(TileDrive.class, "drive");
GameRegistry.registerTileEntity(TileExternalStorage.class, "externalStorage"); GameRegistry.registerTileEntity(TileExternalStorage.class, "external_storage");
GameRegistry.registerTileEntity(TileImporter.class, "importer"); GameRegistry.registerTileEntity(TileImporter.class, "importer");
GameRegistry.registerTileEntity(TileExporter.class, "exporter"); GameRegistry.registerTileEntity(TileExporter.class, "exporter");
GameRegistry.registerTileEntity(TileDetector.class, "detector"); GameRegistry.registerTileEntity(TileDetector.class, "detector");
GameRegistry.registerTileEntity(TileSolderer.class, "solderer"); GameRegistry.registerTileEntity(TileSolderer.class, "solderer");
GameRegistry.registerTileEntity(TileWirelessTransmitter.class, "wirelessTransmitter"); GameRegistry.registerTileEntity(TileWirelessTransmitter.class, "wireless_transmitter");
GameRegistry.registerTileEntity(TileDestructor.class, "destructor"); GameRegistry.registerTileEntity(TileDestructor.class, "destructor");
GameRegistry.registerTileEntity(TileConstructor.class, "constructor"); GameRegistry.registerTileEntity(TileConstructor.class, "constructor");
@@ -82,24 +82,24 @@ public class CommonProxy
GameRegistry.registerBlock(StorageCraftBlocks.CABLE, ItemBlockCable.class, "cable"); GameRegistry.registerBlock(StorageCraftBlocks.CABLE, ItemBlockCable.class, "cable");
GameRegistry.registerBlock(StorageCraftBlocks.GRID, ItemBlockGrid.class, "grid"); GameRegistry.registerBlock(StorageCraftBlocks.GRID, ItemBlockGrid.class, "grid");
GameRegistry.registerBlock(StorageCraftBlocks.DRIVE, "drive"); GameRegistry.registerBlock(StorageCraftBlocks.DRIVE, "drive");
GameRegistry.registerBlock(StorageCraftBlocks.EXTERNAL_STORAGE, "externalStorage"); GameRegistry.registerBlock(StorageCraftBlocks.EXTERNAL_STORAGE, "external_storage");
GameRegistry.registerBlock(StorageCraftBlocks.IMPORTER, "importer"); GameRegistry.registerBlock(StorageCraftBlocks.IMPORTER, "importer");
GameRegistry.registerBlock(StorageCraftBlocks.EXPORTER, "exporter"); GameRegistry.registerBlock(StorageCraftBlocks.EXPORTER, "exporter");
GameRegistry.registerBlock(StorageCraftBlocks.DETECTOR, "detector"); GameRegistry.registerBlock(StorageCraftBlocks.DETECTOR, "detector");
GameRegistry.registerBlock(StorageCraftBlocks.MACHINE_CASING, "machineCasing"); GameRegistry.registerBlock(StorageCraftBlocks.MACHINE_CASING, "machine_casing");
GameRegistry.registerBlock(StorageCraftBlocks.SOLDERER, "solderer"); GameRegistry.registerBlock(StorageCraftBlocks.SOLDERER, "solderer");
GameRegistry.registerBlock(StorageCraftBlocks.WIRELESS_TRANSMITTER, "wirelessTransmitter"); GameRegistry.registerBlock(StorageCraftBlocks.WIRELESS_TRANSMITTER, "wireless_transmitter");
GameRegistry.registerBlock(StorageCraftBlocks.DESTRUCTOR, "destructor"); GameRegistry.registerBlock(StorageCraftBlocks.DESTRUCTOR, "destructor");
GameRegistry.registerBlock(StorageCraftBlocks.CONSTRUCTOR, "constructor"); GameRegistry.registerBlock(StorageCraftBlocks.CONSTRUCTOR, "constructor");
GameRegistry.registerItem(StorageCraftItems.STORAGE_CELL, "storageCell"); GameRegistry.registerItem(StorageCraftItems.STORAGE_CELL, "storageCell");
GameRegistry.registerItem(StorageCraftItems.WIRELESS_GRID, "wirelessGrid"); GameRegistry.registerItem(StorageCraftItems.WIRELESS_GRID, "wirelessGrid");
GameRegistry.registerItem(StorageCraftItems.WIRELESS_GRID_PLATE, "wirelessGridPlate"); GameRegistry.registerItem(StorageCraftItems.WIRELESS_GRID_PLATE, "wireless_grid_plate");
GameRegistry.registerItem(StorageCraftItems.QUARTZ_ENRICHED_IRON, "quartzEnrichedIron"); GameRegistry.registerItem(StorageCraftItems.QUARTZ_ENRICHED_IRON, "quartz_enriched_iron");
GameRegistry.registerItem(StorageCraftItems.CORE, "core"); GameRegistry.registerItem(StorageCraftItems.CORE, "core");
GameRegistry.registerItem(StorageCraftItems.SILICON, "silicon"); GameRegistry.registerItem(StorageCraftItems.SILICON, "silicon");
GameRegistry.registerItem(StorageCraftItems.PROCESSOR, "processor"); GameRegistry.registerItem(StorageCraftItems.PROCESSOR, "processor");
GameRegistry.registerItem(StorageCraftItems.STORAGE_PART, "storagePart"); GameRegistry.registerItem(StorageCraftItems.STORAGE_PART, "storage_part");
// Processors // Processors
SoldererRegistry.addRecipe(new SoldererRecipePrintedProcessor(ItemProcessor.TYPE_PRINTED_BASIC)); SoldererRegistry.addRecipe(new SoldererRecipePrintedProcessor(ItemProcessor.TYPE_PRINTED_BASIC));

View File

@@ -3,29 +3,29 @@ itemGroup.storagecraft=StorageCraft
gui.storagecraft:controller=Controller gui.storagecraft:controller=Controller
gui.storagecraft:grid=Grid gui.storagecraft:grid=Grid
gui.storagecraft:drive=Drive gui.storagecraft:drive=Drive
gui.storagecraft:externalStorage=External Storage gui.storagecraft:external_storage=External Storage
gui.storagecraft:importer=Importer gui.storagecraft:importer=Importer
gui.storagecraft:exporter=Exporter gui.storagecraft:exporter=Exporter
gui.storagecraft:detector=Detector gui.storagecraft:detector=Detector
gui.storagecraft:solderer=Solderer gui.storagecraft:solderer=Solderer
gui.storagecraft:wirelessTransmitter=Wireless Transmitter gui.storagecraft:wireless_transmitter=Wireless Transmitter
gui.storagecraft:destructor=Destructor gui.storagecraft:destructor=Destructor
gui.storagecraft:constructor=Constructor gui.storagecraft:constructor=Constructor
misc.storagecraft:energyStored=%d / %d RF misc.storagecraft:energy_stored=%d / %d RF
misc.storagecraft:energyUsage=Usage: %d RF/t misc.storagecraft:energy_usage=Usage: %d RF/t
misc.storagecraft:storageCellStored=Stored: %d misc.storagecraft:storage_cell_stored=Stored: %d
misc.storagecraft:storageCellStoredWithCapacity=Stored: %d / %d misc.storagecraft:storage_cell_stored_capacity=Stored: %d / %d
misc.storagecraft:wirelessGrid.tooltip=Bound to %d, %d, %d. misc.storagecraft:wireless_grid.tooltip=Bound to %d, %d, %d.
misc.storagecraft:wirelessGrid.notWorking=The Wireless Grid is disabled or out of fuel. misc.storagecraft:wireless_grid.not_working=The Wireless Transmitter is disabled or out of fuel.
misc.storagecraft:wirelessGrid.notFound=The Wireless Transmitter is not found. misc.storagecraft:wireless_grid.not_found=The Wireless Transmitter is not found.
misc.storagecraft:wirelessGrid.notSet.0=This Wireless Grid is not bound to a Wireless Transmitter yet. misc.storagecraft:wireless_grid.not_set.0=This Wireless Grid is not bound to a Wireless Transmitter yet.
misc.storagecraft:wirelessGrid.notSet.1=This Wireless Crafting Grid is not bound to a Wireless Transmitter yet. misc.storagecraft:wireless_grid.not_set.1=This Wireless Crafting Grid is not bound to a Wireless Transmitter yet.
misc.storagecraft:wirelessGrid.outOfRange=The Wireless Transmitter is out of range. misc.storagecraft:wireless_grid.out_of_range=The Wireless Transmitter is out of range.
misc.storagecraft:wirelessGrid.noGrid.0=There is no Grid found in the network. You need to place a Grid before you can use the Wireless Grid! misc.storagecraft:wireless_grid.no_grid.0=There is no Grid found in the network. You need to place a Grid before you can use the Wireless Grid!
misc.storagecraft:wirelessGrid.noGrid.1=There is no Crafting Grid found in the network. You need to place a Crafting Grid before you can use the Wireless Crafting Grid! misc.storagecraft:wireless_grid.no_grid.1=There is no Crafting Grid found in the network. You need to place a Crafting Grid before you can use the Wireless Crafting Grid!
misc.storagecraft:yes=Yes misc.storagecraft:yes=Yes
misc.storagecraft:no=No misc.storagecraft:no=No
@@ -34,10 +34,10 @@ misc.storagecraft:clear=Clear
sidebutton.storagecraft:compare.1=Compare Damage sidebutton.storagecraft:compare.1=Compare Damage
sidebutton.storagecraft:compare.2=Compare NBT sidebutton.storagecraft:compare.2=Compare NBT
sidebutton.storagecraft:redstoneMode=Redstone Mode sidebutton.storagecraft:redstone_mode=Redstone Mode
sidebutton.storagecraft:redstoneMode.0=Ignore sidebutton.storagecraft:redstone_mode.0=Ignore
sidebutton.storagecraft:redstoneMode.1=High sidebutton.storagecraft:redstone_mode.1=High
sidebutton.storagecraft:redstoneMode.2=Low sidebutton.storagecraft:redstone_mode.2=Low
sidebutton.storagecraft:sorting.direction=Sorting Direction sidebutton.storagecraft:sorting.direction=Sorting Direction
sidebutton.storagecraft:sorting.direction.0=Ascending sidebutton.storagecraft:sorting.direction.0=Ascending
@@ -62,25 +62,25 @@ block.storagecraft:cable.1.name=Sensitive Cable
block.storagecraft:grid.0.name=Grid block.storagecraft:grid.0.name=Grid
block.storagecraft:grid.1.name=Crafting Grid block.storagecraft:grid.1.name=Crafting Grid
block.storagecraft:drive.name=Drive block.storagecraft:drive.name=Drive
block.storagecraft:externalStorage.name=External Storage block.storagecraft:external_storage.name=External Storage
block.storagecraft:importer.name=Importer block.storagecraft:importer.name=Importer
block.storagecraft:exporter.name=Exporter block.storagecraft:exporter.name=Exporter
block.storagecraft:detector.name=Detector block.storagecraft:detector.name=Detector
block.storagecraft:machineCasing.name=Machine Casing block.storagecraft:machine_casing.name=Machine Casing
block.storagecraft:solderer.name=Solderer block.storagecraft:solderer.name=Solderer
block.storagecraft:wirelessTransmitter.name=Wireless Transmitter block.storagecraft:wireless_transmitter.name=Wireless Transmitter
block.storagecraft:destructor.name=Destructor block.storagecraft:destructor.name=Destructor
block.storagecraft:constructor.name=Constructor block.storagecraft:constructor.name=Constructor
item.storagecraft:storageCell.0.name=1k Storage Cell item.storagecraft:storage_cell.0.name=1k Storage Cell
item.storagecraft:storageCell.1.name=4k Storage Cell item.storagecraft:storage_cell.1.name=4k Storage Cell
item.storagecraft:storageCell.2.name=16k Storage Cell item.storagecraft:storage_cell.2.name=16k Storage Cell
item.storagecraft:storageCell.3.name=64k Storage Cell item.storagecraft:storage_cell.3.name=64k Storage Cell
item.storagecraft:storageCell.4.name=Creative Storage Cell item.storagecraft:storage_cell.4.name=Creative Storage Cell
item.storagecraft:wirelessGrid.0.name=Wireless Grid item.storagecraft:wireless_grid.0.name=Wireless Grid
item.storagecraft:wirelessGrid.1.name=Wireless Crafting Grid item.storagecraft:wireless_grid.1.name=Wireless Crafting Grid
item.storagecraft:wirelessGridPlate.name=Wireless Grid Plate item.storagecraft:wireless_grid_plate.name=Wireless Grid Plate
item.storagecraft:quartzEnrichedIron.name=Quartz Enriched Iron item.storagecraft:quartz_enriched_iron.name=Quartz Enriched Iron
item.storagecraft:core.0.name=Construction Core item.storagecraft:core.0.name=Construction Core
item.storagecraft:core.1.name=Destruction Core item.storagecraft:core.1.name=Destruction Core
item.storagecraft:silicon.name=Silicon item.storagecraft:silicon.name=Silicon
@@ -91,7 +91,7 @@ item.storagecraft:processor.3.name=Basic Processor
item.storagecraft:processor.4.name=Improved Processor item.storagecraft:processor.4.name=Improved Processor
item.storagecraft:processor.5.name=Advanced Processor item.storagecraft:processor.5.name=Advanced Processor
item.storagecraft:processor.6.name=Printed Silicon item.storagecraft:processor.6.name=Printed Silicon
item.storagecraft:storagePart.0.name=1k Storage Part item.storagecraft:storage_part.0.name=1k Storage Part
item.storagecraft:storagePart.1.name=4k Storage Part item.storagecraft:storage_part.1.name=4k Storage Part
item.storagecraft:storagePart.2.name=16k Storage Part item.storagecraft:storage_part.2.name=16k Storage Part
item.storagecraft:storagePart.3.name=64k Storage Part item.storagecraft:storage_part.3.name=64k Storage Part

View File

@@ -1,97 +0,0 @@
itemGroup.storagecraft=StorageCraft
gui.storagecraft:controller=Controleur
gui.storagecraft:grid=Rooster
gui.storagecraft:drive=Schijf
gui.storagecraft:externalStorage=Externe Opslag
gui.storagecraft:importer=Importeur
gui.storagecraft:exporter=Exporteur
gui.storagecraft:detector=Detector
gui.storagecraft:solderer=Soldeerder
gui.storagecraft:wirelessTransmitter=Draadloze Zender
gui.storagecraft:destructor=Destructor
gui.storagecraft:constructor=Constructor
misc.storagecraft:energyStored=%d / %d RF
misc.storagecraft:energyUsage=Verbruik: %d RF/t
misc.storagecraft:storageCellStored=Opgeslagen: %d
misc.storagecraft:storageCellStoredWithCapacity=Opgeslagen: %d / %d
misc.storagecraft:wirelessGrid.tooltip=Gebonden aan %d, %d, %d.
misc.storagecraft:wirelessGrid.notWorking=De Draadloze Zender is uit of het heeft geen brandstof meer.
misc.storagecraft:wirelessGrid.notFound=De Draadloze Zender is niet gevonden.
misc.storagecraft:wirelessGrid.notSet.0=Het Draadloze Rooster is nog niet gebonden aan een Draadloze Zender.
misc.storagecraft:wirelessGrid.notSet.1=Het Draadloze Crafting Rooster is nog niet gebonden aan een Draadloze Zender.
misc.storagecraft:wirelessGrid.outOfRange=De Draadloze Zender is buiten bereik.
misc.storagecraft:wirelessGrid.noGrid.0=Er is geen Rooster gevonden in het netwerk. Je moet een Rooster plaatsen alvorens je het Draadloze Rooster kan gebruiken.
misc.storagecraft:wirelessGrid.noGrid.1=Er is geen Crafting Rooster gevonden in het netwerk. Je moet een Rooster plaatsen alvorens je het Draadloze Crafting Rooster kan gebruiken.
misc.storagecraft:yes=Ja
misc.storagecraft:no=Nee
misc.storagecraft:clear=Legen
sidebutton.storagecraft:compare.1=Op damage vergelijken
sidebutton.storagecraft:compare.2=Op NBT vergelijken
sidebutton.storagecraft:redstoneMode=Redstone Mode
sidebutton.storagecraft:redstoneMode.0=Negeren
sidebutton.storagecraft:redstoneMode.1=Hoog
sidebutton.storagecraft:redstoneMode.2=Laag
sidebutton.storagecraft:sorting.direction=Sorteer Richting
sidebutton.storagecraft:sorting.direction.0=Oplopend
sidebutton.storagecraft:sorting.direction.1=Aflopend
sidebutton.storagecraft:sorting.type=Sorteer Type
sidebutton.storagecraft:sorting.type.0=Hoeveelheid
sidebutton.storagecraft:sorting.type.1=Naam
sidebutton.storagecraft:importer.mode=Mode
sidebutton.storagecraft:importer.mode.0=Whitelist
sidebutton.storagecraft:importer.mode.1=Blacklist
sidebutton.storagecraft:detector.mode=Mode
sidebutton.storagecraft:detector.mode.0=Onder het aantal
sidebutton.storagecraft:detector.mode.1=Op het aantal
sidebutton.storagecraft:detector.mode.2=Boven het aantal
block.storagecraft:controller.name=Controleur
block.storagecraft:cable.0.name=Kabel
block.storagecraft:cable.1.name=Gevoelige Kabel
block.storagecraft:grid.0.name=Rooster
block.storagecraft:grid.1.name=Crafting Rooster
block.storagecraft:drive.name=Schijf
block.storagecraft:externalStorage.name=Externe Opslag
block.storagecraft:importer.name=Importeur
block.storagecraft:exporter.name=Exporteur
block.storagecraft:detector.name=Detector
block.storagecraft:machineCasing.name=Machine Behuizing
block.storagecraft:solderer.name=Soldeerder
block.storagecraft:wirelessTransmitter.name=Draadloze Zender
block.storagecraft:destructor.name=Destructor
block.storagecraft:constructor.name=Constructor
item.storagecraft:storageCell.0.name=1k Opslagcel
item.storagecraft:storageCell.1.name=4k Opslagcel
item.storagecraft:storageCell.2.name=16k Opslagcel
item.storagecraft:storageCell.3.name=64k Opslagcel
item.storagecraft:storageCell.4.name=Creative Opslagcel
item.storagecraft:wirelessGrid.0.name=Draadloze Rooster
item.storagecraft:wirelessGrid.1.name=Draadloze Crafting Rooster
item.storagecraft:wirelessGridPlate.name=Draadloze Roosterplaat
item.storagecraft:quartzEnrichedIron.name=Quartz Verrijkt Iron
item.storagecraft:core.0.name=Construction Core
item.storagecraft:core.1.name=Destruction Core
item.storagecraft:silicon.name=Silicon
item.storagecraft:processor.0.name=Gedrukte Simpele Verwerkingseenheid
item.storagecraft:processor.1.name=Gedrukte Verbeterde Verwerkingseenheid
item.storagecraft:processor.2.name=Gedrukte Uitgebreide Verwerkingseenheid
item.storagecraft:processor.3.name=Simpele Verwerkingseenheid
item.storagecraft:processor.4.name=Verbeterde Verwerkingseenheid
item.storagecraft:processor.5.name=Uitgebreide Verwerkingseenheid
item.storagecraft:processor.6.name=Gedruikte Silicon
item.storagecraft:storagePart.0.name=1k Opslagdeel
item.storagecraft:storagePart.1.name=4k Opslagdeel
item.storagecraft:storagePart.2.name=16k Opslagdeel
item.storagecraft:storagePart.3.name=64k Opslagdeel

View File

Before

Width:  |  Height:  |  Size: 2.0 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB