2013-12-27 23:59:59 +01:00
|
|
|
package appeng.core.localization;
|
|
|
|
|
|
|
|
import net.minecraft.util.StatCollector;
|
|
|
|
import appeng.core.AELog;
|
|
|
|
|
|
|
|
public enum GuiText
|
|
|
|
{
|
|
|
|
inventory("container"), // mc's default Inventory localization.
|
|
|
|
|
2014-01-20 17:41:37 +01:00
|
|
|
Chest, StoredEnergy, Of, Condenser, Drive, GrindStone, VibrationChamber, SpatialIOPort, LevelEmitter, Terminal, Interface, Config, StoredItems, Patterns, ImportBus, ExportBus, CellWorkbench, NetworkDetails, StorageCells, IOBuses, IOPort, BytesUsed, Types, QuantumLinkChamber, PortableCell;
|
2013-12-27 23:59:59 +01:00
|
|
|
|
|
|
|
String root;
|
|
|
|
|
|
|
|
GuiText() {
|
|
|
|
root = "gui.appliedenergistics2";
|
2014-01-20 17:41:37 +01:00
|
|
|
AELog.localization( "gui", getUnlocalized() );
|
2013-12-27 23:59:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
}
|