eb15bd3a68
Added Event to Recalculate Channel Requirements for a Node. Level Emitter can now output redstone based on network energy levels. Level Emitter's entry field can now hold longs ( text box supports up o trillions )
57 lines
1.4 KiB
Java
57 lines
1.4 KiB
Java
package appeng.core.localization;
|
|
|
|
import net.minecraft.util.StatCollector;
|
|
|
|
public enum ButtonToolTips
|
|
{
|
|
PowerUnits, IOMode, CondenserOutput, RedstoneMode, MatchingFuzzy,
|
|
|
|
MatchingMode, TransferDirection, SortOrder, SortBy, View,
|
|
|
|
PartitionStorage, Clear, FuzzyMode, OperationMode, TrashController,
|
|
|
|
InterfaceBlockingMode, InterfaceCraftingMode, Trash, MatterBalls,
|
|
|
|
Singularity, Read, Write, ReadWrite, AlwaysActive,
|
|
|
|
ActiveWithoutSignal, ActiveWithSignal, ActiveOnPulse,
|
|
|
|
EmitLevelsBelow, EmitLevelAbove, MatchingExact, TransferToNetwork,
|
|
|
|
TransferToStorageCell, ToggleSortDirection, SearchMode_Auto,
|
|
|
|
SearchMode_Standard, SearchMode_NEIAuto, SearchMode_NEIStandard,
|
|
|
|
SearchMode, ItemName, NumberOfItems, PartitionStorageHint,
|
|
|
|
ClearSettings, StoredItems, StoredCraftable, Craftable,
|
|
|
|
FZPercent_25, FZPercent_50, FZPercent_75, FZPercent_99, FZIgnoreAll,
|
|
|
|
MoveWhenEmpty, MoveWhenWorkIsDone, MoveWhenFull, Disabled, Enable,
|
|
|
|
Blocking, NonBlocking, Craft, DontCraft,
|
|
|
|
LevelType, LevelType_Energy, LevelType_Item;
|
|
|
|
String root;
|
|
|
|
ButtonToolTips() {
|
|
root = "gui.tooltips.appliedenergistics2";
|
|
}
|
|
|
|
ButtonToolTips(String r) {
|
|
root = r;
|
|
}
|
|
|
|
public String getUnlocalized()
|
|
{
|
|
return root + "." + toString();
|
|
}
|
|
|
|
public String getLocal()
|
|
{
|
|
return StatCollector.translateToLocal( getUnlocalized() );
|
|
}
|
|
|
|
}
|