2013-12-27 23:59:59 +01:00
|
|
|
package appeng.core.localization;
|
|
|
|
|
|
|
|
import net.minecraft.util.StatCollector;
|
|
|
|
|
|
|
|
public enum GuiText
|
|
|
|
{
|
|
|
|
inventory("container"), // mc's default Inventory localization.
|
|
|
|
|
2014-02-28 09:12:00 +01:00
|
|
|
Chest, StoredEnergy, Of, Condenser, Drive, GrindStone, SkyChest,
|
2014-01-23 17:28:12 +01:00
|
|
|
|
|
|
|
VibrationChamber, SpatialIOPort, LevelEmitter, Terminal,
|
|
|
|
|
|
|
|
Interface, Config, StoredItems, Patterns, ImportBus, ExportBus,
|
|
|
|
|
|
|
|
CellWorkbench, NetworkDetails, StorageCells, IOBuses,
|
|
|
|
|
|
|
|
IOPort, BytesUsed, Types, QuantumLinkChamber, PortableCell,
|
|
|
|
|
2014-01-24 17:35:58 +01:00
|
|
|
NetworkTool, PowerUsageRate, PowerInputRate, Installed, EnergyDrain,
|
|
|
|
|
2014-01-31 18:32:30 +01:00
|
|
|
StorageBus, Priority, Security, Encoded, Blank, Unlinked, Linked,
|
|
|
|
|
2014-02-04 05:23:14 +01:00
|
|
|
SecurityCardEditor, NoPermissions, WirelessTerminal, Wireless,
|
2014-02-01 06:37:27 +01:00
|
|
|
|
2014-02-26 05:34:05 +01:00
|
|
|
CraftingTerminal, FormationPlane, Inscriber, QuartzCuttingKnife,
|
2014-02-05 03:44:54 +01:00
|
|
|
|
2014-08-03 06:53:34 +02:00
|
|
|
METunnel, ItemTunnel, RedstoneTunnel, MJTunnel, EUTunnel, FluidTunnel,
|
2014-05-10 07:00:02 +02:00
|
|
|
|
2014-08-03 06:53:34 +02:00
|
|
|
StoredSize, CopyMode, CopyModeDesc, PatternTerminal, CraftingPattern,
|
2014-05-10 07:00:02 +02:00
|
|
|
|
2014-08-03 06:53:34 +02:00
|
|
|
ProcessingPattern, Crafts, Creates, And, With, MolecularAssembler,
|
2014-05-10 07:00:02 +02:00
|
|
|
|
2014-08-03 06:53:34 +02:00
|
|
|
StoredPower, MaxPower, RequiredPower, Efficiency, InWorldCrafting,
|
2014-06-28 07:20:12 +02:00
|
|
|
|
2014-08-03 06:53:34 +02:00
|
|
|
inWorldFluix, inWorldPurificationCertus, inWorldPurificationNether,
|
|
|
|
|
|
|
|
inWorldPurificationFluix, inWorldSingularity, ChargedQuartz, OfSecondOutput,
|
|
|
|
|
|
|
|
NoSecondOutput, RFTunnel, Stores, Next, SelectAmount, Lumen, Empty,
|
|
|
|
|
|
|
|
ConfirmCrafting, Stored, Crafting, Scheduled, CraftingStatus, Cancel,
|
|
|
|
|
|
|
|
FromStorage, ToCraft, CraftingPlan, CalculatingWait, Start, Bytes,
|
|
|
|
|
|
|
|
CraftingCPU, Automatic, CoProcessors, Simulation, Missing,
|
|
|
|
|
|
|
|
InterfaceTerminal, NoCraftingCPUs, LightTunnel, Clean, InvalidPattern,
|
|
|
|
|
2014-08-05 05:33:26 +02:00
|
|
|
InterfaceTerminalHint, Range, TransparentFacades, TransparentFacadesHint,
|
|
|
|
|
2014-08-14 03:26:41 +02:00
|
|
|
NoCraftingJobs, CPUs, FacadeCrafting, inWorldCraftingPresses, ChargedQuartzFind;
|
2013-12-27 23:59:59 +01:00
|
|
|
|
|
|
|
String root;
|
|
|
|
|
|
|
|
GuiText() {
|
|
|
|
root = "gui.appliedenergistics2";
|
|
|
|
}
|
|
|
|
|
|
|
|
GuiText(String r) {
|
|
|
|
root = r;
|
|
|
|
}
|
|
|
|
|
2014-01-20 17:41:37 +01:00
|
|
|
public String getUnlocalized()
|
2013-12-27 23:59:59 +01:00
|
|
|
{
|
|
|
|
return root + "." + toString();
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getLocal()
|
|
|
|
{
|
2014-01-20 17:41:37 +01:00
|
|
|
return StatCollector.translateToLocal( getUnlocalized() );
|
2013-12-27 23:59:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|