From fd6c81828245b54446e6db07367e661ca0e70ec2 Mon Sep 17 00:00:00 2001 From: WuzgXY-GitHub Date: Mon, 7 Feb 2022 18:12:38 +0800 Subject: [PATCH] Fix hardcoded semicolon --- .../cofh/thermalexpansion/block/storage/ItemBlockCache.java | 4 ++-- .../cofh/thermalexpansion/block/storage/ItemBlockCell.java | 4 ++-- .../cofh/thermalexpansion/block/storage/ItemBlockTank.java | 6 +++--- .../java/cofh/thermalexpansion/block/storage/TileCache.java | 6 +++--- .../java/cofh/thermalexpansion/block/storage/TileTank.java | 6 +++--- .../thermalexpansion/gui/client/device/GuiFluidBuffer.java | 2 +- .../thermalexpansion/gui/client/dynamo/GuiDynamoBase.java | 2 +- .../cofh/thermalexpansion/gui/client/storage/GuiTank.java | 2 +- src/main/java/cofh/thermalexpansion/item/ItemAugment.java | 2 +- src/main/java/cofh/thermalexpansion/item/ItemCapacitor.java | 6 +++--- src/main/java/cofh/thermalexpansion/item/ItemReservoir.java | 6 +++--- .../plugins/jei/device/coolant/CoolantWrapper.java | 2 +- .../plugins/jei/dynamo/BaseFuelWrapper.java | 2 +- .../plugins/jei/machine/BaseRecipeWrapper.java | 2 +- .../jei/machine/centrifuge/CentrifugeRecipeCategory.java | 2 +- .../machine/centrifuge/CentrifugeRecipeCategoryMobs.java | 2 +- .../jei/machine/insolator/InsolatorRecipeCategory.java | 2 +- .../jei/machine/pulverizer/PulverizerRecipeCategory.java | 2 +- .../jei/machine/refinery/RefineryRecipeCategory.java | 2 +- .../plugins/jei/machine/sawmill/SawmillRecipeCategory.java | 2 +- .../plugins/jei/machine/smelter/SmelterRecipeCategory.java | 2 +- .../machine/transposer/TransposerRecipeCategoryExtract.java | 2 +- src/main/resources/assets/thermalexpansion/lang/cs_CZ.lang | 2 ++ src/main/resources/assets/thermalexpansion/lang/de_DE.lang | 2 +- src/main/resources/assets/thermalexpansion/lang/en_GB.lang | 2 ++ src/main/resources/assets/thermalexpansion/lang/en_PT.lang | 1 + src/main/resources/assets/thermalexpansion/lang/en_US.lang | 1 + src/main/resources/assets/thermalexpansion/lang/es_ES.lang | 2 ++ src/main/resources/assets/thermalexpansion/lang/fr_FR.lang | 1 + src/main/resources/assets/thermalexpansion/lang/it_IT.lang | 1 + src/main/resources/assets/thermalexpansion/lang/ja_JP.lang | 1 + src/main/resources/assets/thermalexpansion/lang/ko_KR.lang | 1 + src/main/resources/assets/thermalexpansion/lang/nl_NL.lang | 2 ++ src/main/resources/assets/thermalexpansion/lang/pt_BR.lang | 1 + src/main/resources/assets/thermalexpansion/lang/ru_RU.lang | 1 + src/main/resources/assets/thermalexpansion/lang/zh_CN.lang | 1 + src/main/resources/assets/thermalexpansion/lang/zh_TW.lang | 2 ++ 37 files changed, 54 insertions(+), 35 deletions(-) diff --git a/src/main/java/cofh/thermalexpansion/block/storage/ItemBlockCache.java b/src/main/java/cofh/thermalexpansion/block/storage/ItemBlockCache.java index f70b8833..b9d9907a 100644 --- a/src/main/java/cofh/thermalexpansion/block/storage/ItemBlockCache.java +++ b/src/main/java/cofh/thermalexpansion/block/storage/ItemBlockCache.java @@ -60,9 +60,9 @@ public void addInformation(ItemStack stack, @Nullable World worldIn, List info, EnumFacing side, EntityPlayer return; } if (!getStoredInstance().isEmpty()) { - info.add(new TextComponentTranslation("info.cofh.item").appendText(": " + StringHelper.getItemName(getStoredInstance()))); - info.add(new TextComponentTranslation("info.cofh.amount").appendText(": " + StringHelper.formatNumber(getStoredCount()) + "/" + StringHelper.formatNumber(handler.capacity))); + info.add(new TextComponentTranslation("info.cofh.item").appendText(StringHelper.localize("info.thermalexpansion.semicolon") + StringHelper.getItemName(getStoredInstance()))); + info.add(new TextComponentTranslation("info.cofh.amount").appendText(StringHelper.localize("info.thermalexpansion.semicolon") + StringHelper.formatNumber(getStoredCount()) + "/" + StringHelper.formatNumber(handler.capacity))); info.add(new TextComponentTranslation(lock ? "info.cofh.locked" : "info.cofh.unlocked")); } else { - info.add(new TextComponentTranslation("info.cofh.item").appendText(": ").appendSibling(new TextComponentTranslation("info.cofh.empty"))); + info.add(new TextComponentTranslation("info.cofh.item").appendText(StringHelper.localize("info.thermalexpansion.semicolon")).appendSibling(new TextComponentTranslation("info.cofh.empty"))); } } diff --git a/src/main/java/cofh/thermalexpansion/block/storage/TileTank.java b/src/main/java/cofh/thermalexpansion/block/storage/TileTank.java index 28684fb7..a71f22b3 100644 --- a/src/main/java/cofh/thermalexpansion/block/storage/TileTank.java +++ b/src/main/java/cofh/thermalexpansion/block/storage/TileTank.java @@ -451,11 +451,11 @@ public void getTileInfo(List info, EnumFacing side, EntityPlayer return; } if (tank.getFluid() != null) { - info.add(new TextComponentTranslation("info.cofh.fluid").appendText(": " + StringHelper.getFluidName(tank.getFluid()))); - info.add(new TextComponentTranslation("info.cofh.amount").appendText(": " + StringHelper.formatNumber(tank.getFluidAmount()) + "/" + StringHelper.formatNumber(tank.getCapacity()) + " mB")); + info.add(new TextComponentTranslation("info.cofh.fluid").appendText(StringHelper.localize("info.thermalexpansion.semicolon") + StringHelper.getFluidName(tank.getFluid()))); + info.add(new TextComponentTranslation("info.cofh.amount").appendText(StringHelper.localize("info.thermalexpansion.semicolon") + StringHelper.formatNumber(tank.getFluidAmount()) + "/" + StringHelper.formatNumber(tank.getCapacity()) + " mB")); info.add(new TextComponentTranslation(lock ? "info.cofh.locked" : "info.cofh.unlocked")); } else { - info.add(new TextComponentTranslation("info.cofh.fluid").appendText(": ").appendSibling(new TextComponentTranslation("info.cofh.empty"))); + info.add(new TextComponentTranslation("info.cofh.fluid").appendText(StringHelper.localize("info.thermalexpansion.semicolon")).appendSibling(new TextComponentTranslation("info.cofh.empty"))); } } diff --git a/src/main/java/cofh/thermalexpansion/gui/client/device/GuiFluidBuffer.java b/src/main/java/cofh/thermalexpansion/gui/client/device/GuiFluidBuffer.java index ac049110..f72d523d 100644 --- a/src/main/java/cofh/thermalexpansion/gui/client/device/GuiFluidBuffer.java +++ b/src/main/java/cofh/thermalexpansion/gui/client/device/GuiFluidBuffer.java @@ -132,7 +132,7 @@ protected void updateElementInformation() { if (myTile.locks[i]) { FluidStack fluid = myTile.getTank(i).getFluid(); String color = fluid.getFluid().getRarity().rarityColor.toString(); - lock[i].setToolTip(StringHelper.localize("info.cofh.locked") + ": " + color + StringHelper.localize(fluid.getFluid().getLocalizedName(fluid)) + StringHelper.END); + lock[i].setToolTip(StringHelper.localize("info.cofh.locked") + StringHelper.localize("info.thermalexpansion.semicolon") + color + StringHelper.localize(fluid.getFluid().getLocalizedName(fluid)) + StringHelper.END); lock[i].setSheetX(176); lock[i].setHoverX(176); } else { diff --git a/src/main/java/cofh/thermalexpansion/gui/client/dynamo/GuiDynamoBase.java b/src/main/java/cofh/thermalexpansion/gui/client/dynamo/GuiDynamoBase.java index ad36fbf3..5929ed72 100644 --- a/src/main/java/cofh/thermalexpansion/gui/client/dynamo/GuiDynamoBase.java +++ b/src/main/java/cofh/thermalexpansion/gui/client/dynamo/GuiDynamoBase.java @@ -108,7 +108,7 @@ public void handleItemTooltipEvent(ItemTooltipEvent event) { } int energy = baseTile.getFuelEnergy(event.getItemStack()); if (energy > 0) { - event.getToolTip().add(StringHelper.BRIGHT_GREEN + StringHelper.localize("info.cofh.energy") + ": " + StringHelper.getScaledNumber(energy) + " RF" + StringHelper.END); + event.getToolTip().add(StringHelper.BRIGHT_GREEN + StringHelper.localize("info.cofh.energy") + StringHelper.localize("info.thermalexpansion.semicolon") + StringHelper.getScaledNumber(energy) + " RF" + StringHelper.END); } } diff --git a/src/main/java/cofh/thermalexpansion/gui/client/storage/GuiTank.java b/src/main/java/cofh/thermalexpansion/gui/client/storage/GuiTank.java index 64d95260..f9d0c5bd 100644 --- a/src/main/java/cofh/thermalexpansion/gui/client/storage/GuiTank.java +++ b/src/main/java/cofh/thermalexpansion/gui/client/storage/GuiTank.java @@ -103,7 +103,7 @@ protected void updateElementInformation() { if (baseTile.isLocked()) { FluidStack fluid = baseTile.getTankFluid(); String color = fluid.getFluid().getRarity().rarityColor.toString(); - lock.setToolTip(StringHelper.localize("info.cofh.locked") + ": " + color + StringHelper.localize(fluid.getFluid().getLocalizedName(fluid)) + StringHelper.END); + lock.setToolTip(StringHelper.localize("info.cofh.locked") + StringHelper.localize("info.thermalexpansion.semicolon") + color + StringHelper.localize(fluid.getFluid().getLocalizedName(fluid)) + StringHelper.END); lock.setSheetX(176); lock.setHoverX(176); } else { diff --git a/src/main/java/cofh/thermalexpansion/item/ItemAugment.java b/src/main/java/cofh/thermalexpansion/item/ItemAugment.java index 85eed953..4cf3eab1 100644 --- a/src/main/java/cofh/thermalexpansion/item/ItemAugment.java +++ b/src/main/java/cofh/thermalexpansion/item/ItemAugment.java @@ -52,7 +52,7 @@ public ItemAugment() { @Override public String getItemStackDisplayName(ItemStack stack) { - return StringHelper.localize("info.thermalexpansion.augment.0") + ": " + super.getItemStackDisplayName(stack); + return StringHelper.localize("info.thermalexpansion.augment.0") + StringHelper.localize("info.thermalexpansion.semicolon") + super.getItemStackDisplayName(stack); } @Override diff --git a/src/main/java/cofh/thermalexpansion/item/ItemCapacitor.java b/src/main/java/cofh/thermalexpansion/item/ItemCapacitor.java index 17cdd31c..4c0e883d 100644 --- a/src/main/java/cofh/thermalexpansion/item/ItemCapacitor.java +++ b/src/main/java/cofh/thermalexpansion/item/ItemCapacitor.java @@ -82,10 +82,10 @@ public void addInformation(ItemStack stack, @Nullable World worldIn, List getTooltipStrings(int mouseX, int mouseY) { // List tooltip = new ArrayList<>(); // // if (mouseX > 71 && mouseX < 84 && mouseY > 7 && mouseY < 48) { - // tooltip.add(StringHelper.localize("info.cofh.energy") + ": " + StringHelper.formatNumber(energy) + " TC"); + // tooltip.add(StringHelper.localize("info.cofh.energy") + StringHelper.localize("info.thermalexpansion.semicolon") + StringHelper.formatNumber(energy) + " TC"); // } // return tooltip; } diff --git a/src/main/java/cofh/thermalexpansion/plugins/jei/dynamo/BaseFuelWrapper.java b/src/main/java/cofh/thermalexpansion/plugins/jei/dynamo/BaseFuelWrapper.java index ff4b2ae2..93cfb23a 100644 --- a/src/main/java/cofh/thermalexpansion/plugins/jei/dynamo/BaseFuelWrapper.java +++ b/src/main/java/cofh/thermalexpansion/plugins/jei/dynamo/BaseFuelWrapper.java @@ -32,7 +32,7 @@ public List getTooltipStrings(int mouseX, int mouseY) { List tooltip = new ArrayList<>(); if (mouseX > 71 && mouseX < 84 && mouseY > 7 && mouseY < 48) { - tooltip.add(StringHelper.localize("info.cofh.energy") + ": " + StringHelper.formatNumber(energy) + " RF"); + tooltip.add(StringHelper.localize("info.cofh.energy") + StringHelper.localize("info.thermalexpansion.semicolon") + StringHelper.formatNumber(energy) + " RF"); } return tooltip; } diff --git a/src/main/java/cofh/thermalexpansion/plugins/jei/machine/BaseRecipeWrapper.java b/src/main/java/cofh/thermalexpansion/plugins/jei/machine/BaseRecipeWrapper.java index b2aebb56..dfa50a48 100644 --- a/src/main/java/cofh/thermalexpansion/plugins/jei/machine/BaseRecipeWrapper.java +++ b/src/main/java/cofh/thermalexpansion/plugins/jei/machine/BaseRecipeWrapper.java @@ -26,7 +26,7 @@ public List getTooltipStrings(int mouseX, int mouseY) { List tooltip = new ArrayList<>(); if (energyMeter != null && mouseX > 2 && mouseX < 15 && mouseY > 8 && mouseY < 49) { - tooltip.add(StringHelper.localize("info.cofh.energy") + ": " + StringHelper.formatNumber(energy) + " RF"); + tooltip.add(StringHelper.localize("info.cofh.energy") + StringHelper.localize("info.thermalexpansion.semicolon") + StringHelper.formatNumber(energy) + " RF"); } return tooltip; } diff --git a/src/main/java/cofh/thermalexpansion/plugins/jei/machine/centrifuge/CentrifugeRecipeCategory.java b/src/main/java/cofh/thermalexpansion/plugins/jei/machine/centrifuge/CentrifugeRecipeCategory.java index 8940141c..b45d4ef2 100644 --- a/src/main/java/cofh/thermalexpansion/plugins/jei/machine/centrifuge/CentrifugeRecipeCategory.java +++ b/src/main/java/cofh/thermalexpansion/plugins/jei/machine/centrifuge/CentrifugeRecipeCategory.java @@ -138,7 +138,7 @@ public void setRecipe(IRecipeLayout recipeLayout, CentrifugeRecipeWrapper recipe if (!recipeWrapper.chance.isEmpty() && slotIndex >= 1 && slotIndex <= 4) { if (recipeWrapper.chance.get(slotIndex - 1) < 100) { - tooltip.add(StringHelper.localize("info.cofh.chance") + ": " + recipeWrapper.chance.get(slotIndex - 1) + "%"); + tooltip.add(StringHelper.localize("info.cofh.chance") + StringHelper.localize("info.thermalexpansion.semicolon") + recipeWrapper.chance.get(slotIndex - 1) + "%"); } } }); diff --git a/src/main/java/cofh/thermalexpansion/plugins/jei/machine/centrifuge/CentrifugeRecipeCategoryMobs.java b/src/main/java/cofh/thermalexpansion/plugins/jei/machine/centrifuge/CentrifugeRecipeCategoryMobs.java index 45d237f7..9bd7b90e 100644 --- a/src/main/java/cofh/thermalexpansion/plugins/jei/machine/centrifuge/CentrifugeRecipeCategoryMobs.java +++ b/src/main/java/cofh/thermalexpansion/plugins/jei/machine/centrifuge/CentrifugeRecipeCategoryMobs.java @@ -89,7 +89,7 @@ public void setRecipe(IRecipeLayout recipeLayout, CentrifugeRecipeWrapper recipe if (recipeWrapper.outputs.get(slotIndex - 1).getCount() > 1) { tooltip.add(StringHelper.localize("gui.thermalexpansion.jei.centrifuge.mobNotice")); } - tooltip.add(StringHelper.localize("gui.thermalexpansion.jei.centrifuge.mobChance") + ": " + recipeWrapper.chance.get(slotIndex - 1) + "%"); + tooltip.add(StringHelper.localize("gui.thermalexpansion.jei.centrifuge.mobChance") + StringHelper.localize("info.thermalexpansion.semicolon")ngHelper.localize("info.thermalexpansion.semicolon")ngHelper.localize("info.thermalexpansion.semicolon") + recipeWrapper.chance.get(slotIndex - 1) + "%"); } } }); diff --git a/src/main/java/cofh/thermalexpansion/plugins/jei/machine/insolator/InsolatorRecipeCategory.java b/src/main/java/cofh/thermalexpansion/plugins/jei/machine/insolator/InsolatorRecipeCategory.java index 6e6f805d..1bc24be7 100644 --- a/src/main/java/cofh/thermalexpansion/plugins/jei/machine/insolator/InsolatorRecipeCategory.java +++ b/src/main/java/cofh/thermalexpansion/plugins/jei/machine/insolator/InsolatorRecipeCategory.java @@ -140,7 +140,7 @@ public void setRecipe(IRecipeLayout recipeLayout, InsolatorRecipeWrapper recipeW guiItemStacks.addTooltipCallback((slotIndex, input, ingredient, tooltip) -> { if (slotIndex == 3) { - tooltip.add(StringHelper.localize("info.cofh.chance") + ": " + recipeWrapper.chance + "%"); + tooltip.add(StringHelper.localize("info.cofh.chance") + StringHelper.localize("info.thermalexpansion.semicolon")ngHelper.localize("info.thermalexpansion.semicolon") + recipeWrapper.chance + "%"); } }); } diff --git a/src/main/java/cofh/thermalexpansion/plugins/jei/machine/pulverizer/PulverizerRecipeCategory.java b/src/main/java/cofh/thermalexpansion/plugins/jei/machine/pulverizer/PulverizerRecipeCategory.java index 8af13a08..f67be7a8 100644 --- a/src/main/java/cofh/thermalexpansion/plugins/jei/machine/pulverizer/PulverizerRecipeCategory.java +++ b/src/main/java/cofh/thermalexpansion/plugins/jei/machine/pulverizer/PulverizerRecipeCategory.java @@ -121,7 +121,7 @@ public void setRecipe(IRecipeLayout recipeLayout, PulverizerRecipeWrapper recipe guiItemStacks.addTooltipCallback((slotIndex, input, ingredient, tooltip) -> { if (slotIndex == 2) { - tooltip.add(StringHelper.localize("info.cofh.chance") + ": " + recipeWrapper.chance + "%"); + tooltip.add(StringHelper.localize("info.cofh.chance") + StringHelper.localize("info.thermalexpansion.semicolon") + recipeWrapper.chance + "%"); } }); } diff --git a/src/main/java/cofh/thermalexpansion/plugins/jei/machine/refinery/RefineryRecipeCategory.java b/src/main/java/cofh/thermalexpansion/plugins/jei/machine/refinery/RefineryRecipeCategory.java index 279c1141..4f9fe68e 100644 --- a/src/main/java/cofh/thermalexpansion/plugins/jei/machine/refinery/RefineryRecipeCategory.java +++ b/src/main/java/cofh/thermalexpansion/plugins/jei/machine/refinery/RefineryRecipeCategory.java @@ -139,7 +139,7 @@ public void setRecipe(IRecipeLayout recipeLayout, RefineryRecipeWrapper recipeWr guiItemStacks.addTooltipCallback((slotIndex, input, ingredient, tooltip) -> { if (slotIndex == 0 && recipeWrapper.chance < 100) { - tooltip.add(StringHelper.localize("info.cofh.chance") + ": " + recipeWrapper.chance + "%"); + tooltip.add(StringHelper.localize("info.cofh.chance") + StringHelper.localize("info.thermalexpansion.semicolon") + recipeWrapper.chance + "%"); } }); diff --git a/src/main/java/cofh/thermalexpansion/plugins/jei/machine/sawmill/SawmillRecipeCategory.java b/src/main/java/cofh/thermalexpansion/plugins/jei/machine/sawmill/SawmillRecipeCategory.java index 620dd9bc..c95be4c7 100644 --- a/src/main/java/cofh/thermalexpansion/plugins/jei/machine/sawmill/SawmillRecipeCategory.java +++ b/src/main/java/cofh/thermalexpansion/plugins/jei/machine/sawmill/SawmillRecipeCategory.java @@ -121,7 +121,7 @@ public void setRecipe(IRecipeLayout recipeLayout, SawmillRecipeWrapper recipeWra guiItemStacks.addTooltipCallback((slotIndex, input, ingredient, tooltip) -> { if (slotIndex == 2) { - tooltip.add(StringHelper.localize("info.cofh.chance") + ": " + recipeWrapper.chance + "%"); + tooltip.add(StringHelper.localize("info.cofh.chance") + StringHelper.localize("info.thermalexpansion.semicolon") + recipeWrapper.chance + "%"); } }); } diff --git a/src/main/java/cofh/thermalexpansion/plugins/jei/machine/smelter/SmelterRecipeCategory.java b/src/main/java/cofh/thermalexpansion/plugins/jei/machine/smelter/SmelterRecipeCategory.java index aeb41216..90dfb1fa 100644 --- a/src/main/java/cofh/thermalexpansion/plugins/jei/machine/smelter/SmelterRecipeCategory.java +++ b/src/main/java/cofh/thermalexpansion/plugins/jei/machine/smelter/SmelterRecipeCategory.java @@ -123,7 +123,7 @@ public void setRecipe(IRecipeLayout recipeLayout, SmelterRecipeWrapper recipeWra guiItemStacks.addTooltipCallback((slotIndex, input, ingredient, tooltip) -> { if (slotIndex == 3) { - tooltip.add(StringHelper.localize("info.cofh.chance") + ": " + recipeWrapper.chance + "%"); + tooltip.add(StringHelper.localize("info.cofh.chance") + StringHelper.localize("info.thermalexpansion.semicolon") + recipeWrapper.chance + "%"); } }); } diff --git a/src/main/java/cofh/thermalexpansion/plugins/jei/machine/transposer/TransposerRecipeCategoryExtract.java b/src/main/java/cofh/thermalexpansion/plugins/jei/machine/transposer/TransposerRecipeCategoryExtract.java index 45dc21af..e37093e3 100644 --- a/src/main/java/cofh/thermalexpansion/plugins/jei/machine/transposer/TransposerRecipeCategoryExtract.java +++ b/src/main/java/cofh/thermalexpansion/plugins/jei/machine/transposer/TransposerRecipeCategoryExtract.java @@ -153,7 +153,7 @@ public void setRecipe(IRecipeLayout recipeLayout, TransposerRecipeWrapper recipe guiItemStacks.addTooltipCallback((slotIndex, input, ingredient, tooltip) -> { if (slotIndex == 1 && recipeWrapper.chance < 100) { - tooltip.add(StringHelper.localize("info.cofh.chance") + ": " + recipeWrapper.chance + "%"); + tooltip.add(StringHelper.localize("info.cofh.chance") + StringHelper.localize("info.thermalexpansion.semicolon") + recipeWrapper.chance + "%"); } }); diff --git a/src/main/resources/assets/thermalexpansion/lang/cs_CZ.lang b/src/main/resources/assets/thermalexpansion/lang/cs_CZ.lang index ed5b1549..ebd19dd2 100644 --- a/src/main/resources/assets/thermalexpansion/lang/cs_CZ.lang +++ b/src/main/resources/assets/thermalexpansion/lang/cs_CZ.lang @@ -1,5 +1,7 @@ #cs_CZ +info.thermalexpansion.semicolon=: + achievement.thermalexpansion.florb.desc=Obsahuje tekutinu. Můžeš to hodit. achievement.thermalexpansion.florb=Mohu to hodit ?! achievement.thermalexpansion.florbMagmatic.desc=Florb. Ano, uchovává lávu. Ty příšero. diff --git a/src/main/resources/assets/thermalexpansion/lang/de_DE.lang b/src/main/resources/assets/thermalexpansion/lang/de_DE.lang index 9dbceddf..8af87522 100644 --- a/src/main/resources/assets/thermalexpansion/lang/de_DE.lang +++ b/src/main/resources/assets/thermalexpansion/lang/de_DE.lang @@ -46,7 +46,7 @@ gui.thermalexpansion.storage.cell.maxRecv=Max Input gui.thermalexpansion.storage.cell.maxSend=Max Output info.thermalexpansion.augment.0=Verbesserung - +info.thermalexpansion.semicolon=: diff --git a/src/main/resources/assets/thermalexpansion/lang/en_GB.lang b/src/main/resources/assets/thermalexpansion/lang/en_GB.lang index df235fd4..bf41a21e 100644 --- a/src/main/resources/assets/thermalexpansion/lang/en_GB.lang +++ b/src/main/resources/assets/thermalexpansion/lang/en_GB.lang @@ -7,6 +7,8 @@ info.thermalexpansion.augment.machineFurnaceFood=Redstone Furnace: Specialisatio info.thermalexpansion.light.1=Can be almost any colour you wish. +info.thermalexpansion.semicolon=: + tab.thermalexpansion.light.1=Colour and mode may be adjusted with sliders. tile.thermalexpansion.machine.pulverizer.name=Pulveriser diff --git a/src/main/resources/assets/thermalexpansion/lang/en_PT.lang b/src/main/resources/assets/thermalexpansion/lang/en_PT.lang index 5f5253de..04da0268 100644 --- a/src/main/resources/assets/thermalexpansion/lang/en_PT.lang +++ b/src/main/resources/assets/thermalexpansion/lang/en_PT.lang @@ -35,6 +35,7 @@ info.thermalexpansion.multimeter=Use a multimetarr whilst skulking to configure. info.thermalexpansion.wrench=Wrench whilst skulking to dismantle. #Items +info.thermalexpansion.semicolon=: item.thermalexpansion.augment.dynamoEfficiency0.name=Extra Widgetbox item.thermalexpansion.augment.dynamoEfficiency1.name=Better Flux Linkage item.thermalexpansion.augment.dynamoEfficiency2.name=CryoCoil Regulatorr diff --git a/src/main/resources/assets/thermalexpansion/lang/en_US.lang b/src/main/resources/assets/thermalexpansion/lang/en_US.lang index a88c7b5d..8ee11b5e 100644 --- a/src/main/resources/assets/thermalexpansion/lang/en_US.lang +++ b/src/main/resources/assets/thermalexpansion/lang/en_US.lang @@ -41,6 +41,7 @@ gui.thermalexpansion.storage.cell.incRecv=Increase RF Input by gui.thermalexpansion.storage.cell.incSend=Increase RF Output by info.thermalexpansion.augment.0=Augment +info.thermalexpansion.semicolon=: info.thermalexpansion.augment.dynamoBoiler.0=Dynamos: Output Specialization info.thermalexpansion.augment.dynamoBoiler.a.0=Converts an applicable Dynamo into a Steam Boiler. diff --git a/src/main/resources/assets/thermalexpansion/lang/es_ES.lang b/src/main/resources/assets/thermalexpansion/lang/es_ES.lang index 30c1f6f7..8a185736 100644 --- a/src/main/resources/assets/thermalexpansion/lang/es_ES.lang +++ b/src/main/resources/assets/thermalexpansion/lang/es_ES.lang @@ -11,6 +11,8 @@ info.thermalexpansion.augment.dynamoThrottle.0=Activa la salida minima del dynam info.thermalexpansion.augment.machineFurnaceFood.0=Incrementa la salida de Comida. +info.thermalexpansion.semicolon=: + info.thermalexpansion.dynamo.compression=Require cobustibles en estado liquido y refrigerantes liquidos. info.thermalexpansion.dynamo.enervation=Extrae el flux de objetos varios. info.thermalexpansion.dynamo.magmatic=Require fluidos calientes. diff --git a/src/main/resources/assets/thermalexpansion/lang/fr_FR.lang b/src/main/resources/assets/thermalexpansion/lang/fr_FR.lang index 9eb750b0..e7f4068b 100644 --- a/src/main/resources/assets/thermalexpansion/lang/fr_FR.lang +++ b/src/main/resources/assets/thermalexpansion/lang/fr_FR.lang @@ -41,6 +41,7 @@ gui.thermalexpansion.storage.cell.incRecv=Augmenter entrée RF par gui.thermalexpansion.storage.cell.incSend=Augmenter sortie RF par info.thermalexpansion.augment.0=Amélioration +info.thermalexpansion.semicolon=: info.thermalexpansion.augment.dynamoBoiler.0=Dynamos : spécialisation de sortie info.thermalexpansion.augment.dynamoBoiler.a.0=Convertit une dynamo compatible en une chaudière à vapeur. diff --git a/src/main/resources/assets/thermalexpansion/lang/it_IT.lang b/src/main/resources/assets/thermalexpansion/lang/it_IT.lang index 92e34ddf..78879773 100644 --- a/src/main/resources/assets/thermalexpansion/lang/it_IT.lang +++ b/src/main/resources/assets/thermalexpansion/lang/it_IT.lang @@ -41,6 +41,7 @@ gui.thermalexpansion.storage.cell.incRecv=Aumenta l'Entrata di RF di gui.thermalexpansion.storage.cell.incSend=Aumenta l'Uscita di RF di info.thermalexpansion.augment.0=Aumentamento +info.thermalexpansion.semicolon=: info.thermalexpansion.augment.dynamoBoiler.0=Dinamo: Output Specializzazione di Uscita info.thermalexpansion.augment.dynamoBoiler.a.0=Converte un Dinamo applicabile in una Caldaia a Vapore. diff --git a/src/main/resources/assets/thermalexpansion/lang/ja_JP.lang b/src/main/resources/assets/thermalexpansion/lang/ja_JP.lang index f5074489..ee78b5c5 100644 --- a/src/main/resources/assets/thermalexpansion/lang/ja_JP.lang +++ b/src/main/resources/assets/thermalexpansion/lang/ja_JP.lang @@ -41,6 +41,7 @@ gui.thermalexpansion.storage.cell.incRecv=RF流入量を増やす: gui.thermalexpansion.storage.cell.incSend=RF流出量を増やす: info.thermalexpansion.augment.0=オーグメント +info.thermalexpansion.semicolon=: info.thermalexpansion.augment.dynamoBoiler.0=発電機:出力特化 info.thermalexpansion.augment.dynamoBoiler.a.0=発電機を蒸気ボイラーにします。 diff --git a/src/main/resources/assets/thermalexpansion/lang/ko_KR.lang b/src/main/resources/assets/thermalexpansion/lang/ko_KR.lang index f7949400..1c68e594 100644 --- a/src/main/resources/assets/thermalexpansion/lang/ko_KR.lang +++ b/src/main/resources/assets/thermalexpansion/lang/ko_KR.lang @@ -41,6 +41,7 @@ gui.thermalexpansion.storage.cell.incRecv=RF 입력 감소 gui.thermalexpansion.storage.cell.incSend=RF 출력 감소 info.thermalexpansion.augment.0=늘리기 +info.thermalexpansion.semicolon=: info.thermalexpansion.augment.dynamoBoiler.0=발전기: 출력 특징 info.thermalexpansion.augment.dynamoBoiler.a.0=해당 발전기를 증기 보일러로 변환합니다. diff --git a/src/main/resources/assets/thermalexpansion/lang/nl_NL.lang b/src/main/resources/assets/thermalexpansion/lang/nl_NL.lang index e45b9eda..1c35c635 100644 --- a/src/main/resources/assets/thermalexpansion/lang/nl_NL.lang +++ b/src/main/resources/assets/thermalexpansion/lang/nl_NL.lang @@ -15,6 +15,8 @@ info.thermalexpansion.dynamo.magmatic=Vereist hete vloeistoffen. info.thermalexpansion.dynamo.reactant=Vereist vloeibare brandstof en vaste reagent. info.thermalexpansion.dynamo.steam=Vereist water en vaste brandstof. +info.thermalexpansion.semicolon=: + info.thermalexpansion.machine.charger=Laad items op met RF. info.thermalexpansion.machine.crucible=Smelt items tot vloeistoffen. info.thermalexpansion.machine.extruder=Mixt hete en koude vloeistoffen. diff --git a/src/main/resources/assets/thermalexpansion/lang/pt_BR.lang b/src/main/resources/assets/thermalexpansion/lang/pt_BR.lang index 5bcd1247..16efe7e7 100644 --- a/src/main/resources/assets/thermalexpansion/lang/pt_BR.lang +++ b/src/main/resources/assets/thermalexpansion/lang/pt_BR.lang @@ -41,6 +41,7 @@ gui.thermalexpansion.storage.cell.incRecv=Aumentar a Entrada de RF em gui.thermalexpansion.storage.cell.incSend=Aumentar a Saída de RF em info.thermalexpansion.augment.0=Melhoria +info.thermalexpansion.semicolon=: info.thermalexpansion.augment.dynamoBoiler.0=Dínamos: Especialização de Saída info.thermalexpansion.augment.dynamoBoiler.a.0=Converte um dínamo apropriado em uma caldeira a vapor diff --git a/src/main/resources/assets/thermalexpansion/lang/ru_RU.lang b/src/main/resources/assets/thermalexpansion/lang/ru_RU.lang index 662b927f..176c3349 100644 --- a/src/main/resources/assets/thermalexpansion/lang/ru_RU.lang +++ b/src/main/resources/assets/thermalexpansion/lang/ru_RU.lang @@ -41,6 +41,7 @@ gui.thermalexpansion.storage.cell.incRecv=Увеличение входа RF н gui.thermalexpansion.storage.cell.incSend=Увеличение выхода RF на info.thermalexpansion.augment.0=Расширение +info.thermalexpansion.semicolon=: info.thermalexpansion.augment.dynamoBoiler.0=Генератор: Специализация выхода info.thermalexpansion.augment.dynamoBoiler.a.0=Преобразует подходящий генератор в паровой котел. diff --git a/src/main/resources/assets/thermalexpansion/lang/zh_CN.lang b/src/main/resources/assets/thermalexpansion/lang/zh_CN.lang index c22b81bc..717b5e06 100644 --- a/src/main/resources/assets/thermalexpansion/lang/zh_CN.lang +++ b/src/main/resources/assets/thermalexpansion/lang/zh_CN.lang @@ -41,6 +41,7 @@ gui.thermalexpansion.storage.cell.incRecv=按一下增加RF输入 gui.thermalexpansion.storage.cell.incSend=按一下增加RF输出 info.thermalexpansion.augment.0=升级 +info.thermalexpansion.semicolon=: info.thermalexpansion.augment.dynamoBoiler.0=蒸汽能源炉:蒸汽锅炉 info.thermalexpansion.augment.dynamoBoiler.a.0=将能源炉变成真正的蒸汽锅炉。 diff --git a/src/main/resources/assets/thermalexpansion/lang/zh_TW.lang b/src/main/resources/assets/thermalexpansion/lang/zh_TW.lang index b65abb75..59c5b9d8 100644 --- a/src/main/resources/assets/thermalexpansion/lang/zh_TW.lang +++ b/src/main/resources/assets/thermalexpansion/lang/zh_TW.lang @@ -29,6 +29,8 @@ info.thermalexpansion.machine.sawmill=增產木材。 info.thermalexpansion.machine.smelter=冶煉合金和金屬。兩個輸入。 info.thermalexpansion.machine.transposer=處理液體與液體容器。 +info.thermalexpansion.semicolon=: + item.thermalexpansion.augment.dynamoCoilDuct.name=傳輸線圈管道 item.thermalexpansion.augment.dynamoThrottle.name=節流閥裝置