diff options
author | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2018-08-26 17:28:50 +1000 |
---|---|---|
committer | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2018-08-26 17:28:50 +1000 |
commit | d2821105000b58b49d7f575b08cb759b40860f3e (patch) | |
tree | 6e51d65ecb92eb1c6164beebc8fa1dd216ee510b /src/Java/gtPlusPlus/xmod/gregtech/api/gui | |
parent | d8068556c49aee29368be0955228e4b937f761de (diff) | |
download | GT5-Unofficial-d2821105000b58b49d7f575b08cb759b40860f3e.tar.gz GT5-Unofficial-d2821105000b58b49d7f575b08cb759b40860f3e.tar.bz2 GT5-Unofficial-d2821105000b58b49d7f575b08cb759b40860f3e.zip |
+ Added Russian .lang file, translated by Wolfpup and Indeed.
% Further tweaks to GUI handling.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/api/gui')
-rw-r--r-- | src/Java/gtPlusPlus/xmod/gregtech/api/gui/CONTAINER_ThreadedSuperBuffer.java | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/api/gui/CONTAINER_ThreadedSuperBuffer.java b/src/Java/gtPlusPlus/xmod/gregtech/api/gui/CONTAINER_ThreadedSuperBuffer.java index 51ad334a01..265742e5ad 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/api/gui/CONTAINER_ThreadedSuperBuffer.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/api/gui/CONTAINER_ThreadedSuperBuffer.java @@ -44,9 +44,9 @@ public class CONTAINER_ThreadedSuperBuffer extends GT_ContainerMetaTile_Machine .getMetaTileEntity()).bOutput = !((GT_MetaTileEntity_ThreadedChestBuffer) this.mTileEntity .getMetaTileEntity()).bOutput; if (((GT_MetaTileEntity_ThreadedChestBuffer) this.mTileEntity.getMetaTileEntity()).bOutput) { - GT_Utility.sendChatToPlayer(aPlayer, this.trans("116", "Emit Energy to Outputside")); + GT_Utility.sendChatToPlayer(aPlayer, "Emit Energy to Outputside"); } else { - GT_Utility.sendChatToPlayer(aPlayer, this.trans("117", "Don't emit Energy")); + GT_Utility.sendChatToPlayer(aPlayer, "Don't emit Energy"); } return null; } @@ -55,9 +55,9 @@ public class CONTAINER_ThreadedSuperBuffer extends GT_ContainerMetaTile_Machine .getMetaTileEntity()).bRedstoneIfFull = !((GT_MetaTileEntity_ThreadedChestBuffer) this.mTileEntity .getMetaTileEntity()).bRedstoneIfFull; if (((GT_MetaTileEntity_ThreadedChestBuffer) this.mTileEntity.getMetaTileEntity()).bRedstoneIfFull) { - GT_Utility.sendChatToPlayer(aPlayer, this.trans("118", "Emit Redstone if no Slot is free")); + GT_Utility.sendChatToPlayer(aPlayer, "Emit Redstone if no Slot is free"); } else { - GT_Utility.sendChatToPlayer(aPlayer, this.trans("119", "Don't emit Redstone")); + GT_Utility.sendChatToPlayer(aPlayer, "Don't emit Redstone"); } return null; } @@ -66,9 +66,9 @@ public class CONTAINER_ThreadedSuperBuffer extends GT_ContainerMetaTile_Machine .getMetaTileEntity()).bInvert = !((GT_MetaTileEntity_ThreadedChestBuffer) this.mTileEntity .getMetaTileEntity()).bInvert; if (((GT_MetaTileEntity_ThreadedChestBuffer) this.mTileEntity.getMetaTileEntity()).bInvert) { - GT_Utility.sendChatToPlayer(aPlayer, this.trans("120", "Invert Redstone")); + GT_Utility.sendChatToPlayer(aPlayer, "Invert Redstone"); } else { - GT_Utility.sendChatToPlayer(aPlayer, this.trans("121", "Don't invert Redstone")); + GT_Utility.sendChatToPlayer(aPlayer, "Don't invert Redstone"); } return null; } |