Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[I18n] Fix hardcoded semicolon #59

Open
wants to merge 1 commit into
base: 1.12
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@ public void addInformation(ItemStack stack, @Nullable World worldIn, List<String
tooltip.add(StringHelper.getInfoText("info.thermalexpansion.storage.cache"));

if (isCreative(stack)) {
tooltip.add(StringHelper.localize("info.cofh.capacity") + ": " + StringHelper.localize("info.cofh.infinite"));
tooltip.add(StringHelper.localize("info.cofh.capacity") + StringHelper.localize("info.thermalexpansion.semicolon") + StringHelper.localize("info.cofh.infinite"));
} else {
tooltip.add(StringHelper.localize("info.cofh.capacity") + ": " + StringHelper.formatNumber(getSizeInventory(stack)));
tooltip.add(StringHelper.localize("info.cofh.capacity") + StringHelper.localize("info.thermalexpansion.semicolon") + StringHelper.formatNumber(getSizeInventory(stack)));
}
if (stack.getTagCompound().hasKey("Item")) {
ItemStack stored = ItemHelper.readItemStackFromNBT(stack.getTagCompound().getCompoundTag("Item"));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,9 @@ public void addInformation(ItemStack stack, @Nullable World worldIn, List<String
if (isCreative(stack)) {
tooltip.add(StringHelper.localize("info.cofh.charge") + ": 1.21G RF");
} else {
tooltip.add(StringHelper.localize("info.cofh.charge") + ": " + StringHelper.getScaledNumber(getEnergyStored(stack)) + " / " + StringHelper.getScaledNumber(getMaxEnergyStored(stack)) + " RF");
tooltip.add(StringHelper.localize("info.cofh.charge") + StringHelper.localize("info.thermalexpansion.semicolon") + StringHelper.getScaledNumber(getEnergyStored(stack)) + " / " + StringHelper.getScaledNumber(getMaxEnergyStored(stack)) + " RF");
}
tooltip.add(StringHelper.localize("info.cofh.send") + "/" + StringHelper.localize("info.cofh.receive") + ": " + StringHelper.formatNumber(stack.getTagCompound().getInteger("Send")) + "/" + StringHelper.formatNumber(stack.getTagCompound().getInteger("Recv")) + " RF/t");
tooltip.add(StringHelper.localize("info.cofh.send") + "/" + StringHelper.localize("info.cofh.receive") + StringHelper.localize("info.thermalexpansion.semicolon") + StringHelper.formatNumber(stack.getTagCompound().getInteger("Send")) + "/" + StringHelper.formatNumber(stack.getTagCompound().getInteger("Recv")) + " RF/t");

RedstoneControlHelper.addRSControlInformation(stack, tooltip);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,19 +67,19 @@ public void addInformation(ItemStack stack, @Nullable World worldIn, List<String
FluidStack fluid = getFluid(stack);
if (fluid != null) {
String color = fluid.getFluid().getRarity().rarityColor.toString();
tooltip.add(StringHelper.localize("info.cofh.fluid") + ": " + color + fluid.getFluid().getLocalizedName(fluid) + StringHelper.LIGHT_GRAY);
tooltip.add(StringHelper.localize("info.cofh.fluid") + StringHelper.localize("info.thermalexpansion.semicolon") + color + fluid.getFluid().getLocalizedName(fluid) + StringHelper.LIGHT_GRAY);
if (isCreative(stack)) {
tooltip.add(StringHelper.localize("info.cofh.infiniteSource"));
} else {
tooltip.add(StringHelper.localize("info.cofh.level") + ": " + StringHelper.formatNumber(fluid.amount) + " / " + StringHelper.formatNumber(getCapacity(stack)) + " mB");
tooltip.add(StringHelper.localize("info.cofh.level") + StringHelper.localize("info.thermalexpansion.semicolon") + StringHelper.formatNumber(fluid.amount) + " / " + StringHelper.formatNumber(getCapacity(stack)) + " mB");
}
if (isLocked(stack)) {
tooltip.add(StringHelper.YELLOW + StringHelper.localize("info.cofh.locked"));
} else {
tooltip.add(StringHelper.YELLOW + StringHelper.localize("info.cofh.unlocked"));
}
} else {
tooltip.add(StringHelper.localize("info.cofh.fluid") + ": " + StringHelper.localize("info.cofh.empty"));
tooltip.add(StringHelper.localize("info.cofh.fluid") + StringHelper.localize("info.thermalexpansion.semicolon") + StringHelper.localize("info.cofh.empty"));

if (isCreative(stack)) {
tooltip.add(StringHelper.localize("info.cofh.infiniteSource"));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -431,11 +431,11 @@ public void getTileInfo(List<ITextComponent> 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")));
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -451,11 +451,11 @@ public void getTileInfo(List<ITextComponent> 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")));
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/cofh/thermalexpansion/item/ItemAugment.java
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions src/main/java/cofh/thermalexpansion/item/ItemCapacitor.java
Original file line number Diff line number Diff line change
Expand Up @@ -82,10 +82,10 @@ public void addInformation(ItemStack stack, @Nullable World worldIn, List<String

if (isCreative(stack)) {
tooltip.add(StringHelper.localize("info.cofh.charge") + ": 1.21G RF");
tooltip.add(StringHelper.localize("info.cofh.send") + ": " + StringHelper.formatNumber(getSend(stack)) + " RF/t");
tooltip.add(StringHelper.localize("info.cofh.send") + StringHelper.localize("info.thermalexpansion.semicolon") + StringHelper.formatNumber(getSend(stack)) + " RF/t");
} else {
tooltip.add(StringHelper.localize("info.cofh.charge") + ": " + StringHelper.getScaledNumber(getEnergyStored(stack)) + " / " + StringHelper.getScaledNumber(getMaxEnergyStored(stack)) + " RF");
tooltip.add(StringHelper.localize("info.cofh.send") + "/" + StringHelper.localize("info.cofh.receive") + ": " + StringHelper.formatNumber(getSend(stack)) + "/" + StringHelper.formatNumber(getReceive(stack)) + " RF/t");
tooltip.add(StringHelper.localize("info.cofh.charge") + StringHelper.localize("info.thermalexpansion.semicolon") + StringHelper.getScaledNumber(getEnergyStored(stack)) + " / " + StringHelper.getScaledNumber(getMaxEnergyStored(stack)) + " RF");
tooltip.add(StringHelper.localize("info.cofh.send") + "/" + StringHelper.localize("info.cofh.receive") + StringHelper.localize("info.thermalexpansion.semicolon") + StringHelper.formatNumber(getSend(stack)) + "/" + StringHelper.formatNumber(getReceive(stack)) + " RF/t");
}
}

Expand Down
6 changes: 3 additions & 3 deletions src/main/java/cofh/thermalexpansion/item/ItemReservoir.java
Original file line number Diff line number Diff line change
Expand Up @@ -102,14 +102,14 @@ public void addInformation(ItemStack stack, @Nullable World worldIn, List<String
FluidStack fluid = getFluid(stack);
if (fluid != null) {
String color = fluid.getFluid().getRarity().rarityColor.toString();
tooltip.add(StringHelper.localize("info.cofh.fluid") + ": " + color + fluid.getFluid().getLocalizedName(fluid) + StringHelper.LIGHT_GRAY);
tooltip.add(StringHelper.localize("info.cofh.fluid") + StringHelper.localize("info.thermalexpansion.semicolon") + color + fluid.getFluid().getLocalizedName(fluid) + StringHelper.LIGHT_GRAY);
if (isCreative(stack)) {
tooltip.add(StringHelper.localize("info.cofh.infiniteSource"));
} else {
tooltip.add(StringHelper.localize("info.cofh.level") + ": " + StringHelper.formatNumber(fluid.amount) + " / " + StringHelper.formatNumber(getCapacity(stack)) + " mB");
tooltip.add(StringHelper.localize("info.cofh.level") + StringHelper.localize("info.thermalexpansion.semicolon") + StringHelper.formatNumber(fluid.amount) + " / " + StringHelper.formatNumber(getCapacity(stack)) + " mB");
}
} else {
tooltip.add(StringHelper.localize("info.cofh.fluid") + ": " + StringHelper.localize("info.cofh.empty"));
tooltip.add(StringHelper.localize("info.cofh.fluid") + StringHelper.localize("info.thermalexpansion.semicolon") + StringHelper.localize("info.cofh.empty"));

if (isCreative(stack)) {
tooltip.add(StringHelper.localize("info.cofh.infiniteSource"));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public List<String> getTooltipStrings(int mouseX, int mouseY) {
// List<String> 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;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public List<String> getTooltipStrings(int mouseX, int mouseY) {
List<String> 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;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public List<String> getTooltipStrings(int mouseX, int mouseY) {
List<String> 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;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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) + "%");
}
}
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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) + "%");
}
}
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 + "%");
}
});
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 + "%");
}
});
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 + "%");
}
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 + "%");
}
});
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 + "%");
}
});
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 + "%");
}
});

Expand Down
2 changes: 2 additions & 0 deletions src/main/resources/assets/thermalexpansion/lang/cs_CZ.lang
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/assets/thermalexpansion/lang/de_DE.lang
Original file line number Diff line number Diff line change
Expand Up @@ -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=:



Expand Down
2 changes: 2 additions & 0 deletions src/main/resources/assets/thermalexpansion/lang/en_GB.lang
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/assets/thermalexpansion/lang/en_PT.lang
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/assets/thermalexpansion/lang/en_US.lang
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 2 additions & 0 deletions src/main/resources/assets/thermalexpansion/lang/es_ES.lang
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/assets/thermalexpansion/lang/fr_FR.lang
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
Loading