From 930d4392b82129a413fd23e700a94052ad3e4632 Mon Sep 17 00:00:00 2001 From: Alexdoru <57050655+Alexdoru@users.noreply.github.com> Date: Sun, 11 Sep 2022 01:02:13 +0200 Subject: Use pre-defined methods to draw tooltips in GT_GUIContainer_DigitalTank (#1374) * use pre defined methods to draw tooltip in GT_GUIContainer_DigitalTank * introduce private static final fields for string tooltip names --- src/main/resources/assets/gregtech/lang/en_US.lang | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'src/main/resources/assets/gregtech') diff --git a/src/main/resources/assets/gregtech/lang/en_US.lang b/src/main/resources/assets/gregtech/lang/en_US.lang index b2cedefa4d..99010cc2bc 100644 --- a/src/main/resources/assets/gregtech/lang/en_US.lang +++ b/src/main/resources/assets/gregtech/lang/en_US.lang @@ -105,15 +105,15 @@ GT5U.machines.minermulti=Multiblock Miner GT5U.machines.digitaltank.tooltip=Stores %sL of fluid GT5U.machines.digitaltank.tooltip1=Can keep its contents when harvested GT5U.machines.digitaltank.tooltip2=Sneak when harvesting to void its contents -GT5U.machines.digitaltank.autooutput.name=Fluid Auto-Output -GT5U.machines.digitaltank.lockfluid.name=Lock Fluid Mode -GT5U.machines.digitaltank.lockfluid.tooltip=§7This tank will be locked to only accept one type of fluid -GT5U.machines.digitaltank.lockfluid.tooltip1=§7It will be locked to the first fluid that goes in -GT5U.machines.digitaltank.voidoverflow.name=Overflow Voiding Mode -GT5U.machines.digitaltank.voidoverflow.tooltip=§7Voids all fluid excess if the tank is full -GT5U.machines.digitaltank.voidfull.name=Void Full Mode -GT5U.machines.digitaltank.voidfull.tooltip=§7Voids all fluids that enter the tank -GT5U.machines.digitaltank.inputfromoutput.name=Input Fluid from Output Side +GT5U.machines.digitaltank.autooutput.tooltip=Fluid Auto-Output +GT5U.machines.digitaltank.lockfluid.tooltip=Lock Fluid Mode +GT5U.machines.digitaltank.lockfluid.tooltip.1=§7This tank will be locked to only accept one type of fluid +GT5U.machines.digitaltank.lockfluid.tooltip.2=§7It will be locked to the first fluid type that enters the tank +GT5U.machines.digitaltank.voidoverflow.tooltip=Overflow Voiding Mode +GT5U.machines.digitaltank.voidoverflow.tooltip.1=§7Voids all fluid excess if the tank is full +GT5U.machines.digitaltank.voidfull.tooltip=Void Full Mode +GT5U.machines.digitaltank.voidfull.tooltip.1=§7Voids all fluids that enter the tank +GT5U.machines.digitaltank.inputfromoutput.tooltip=Input Fluid from Output Side GT5U.machines.select_circuit=Select Machine Mode GT5U.machines.select_circuit.tooltip=Ghost Circuit Slot GT5U.machines.select_circuit.tooltip.1=§7LMB/RMB/scroll to cycle through the list -- cgit