Java Code Examples for codechicken.nei.NEIClientUtils#translate()

The following examples show how to use codechicken.nei.NEIClientUtils#translate() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: FuelRecipeHandler.java    From NotEnoughItems with MIT License 4 votes vote down vote up
public String getRecipeName() {
    return NEIClientUtils.translate("recipe.fuel");
}
 
Example 2
Source File: ProfilerRecipeHandler.java    From NotEnoughItems with MIT License 4 votes vote down vote up
@Override
public String getRecipeName()
{
    return NEIClientUtils.translate("recipe.profiler."+(crafting ? "crafting" : "usage"));
}
 
Example 3
Source File: BrewingRecipeHandler.java    From NotEnoughItems with MIT License 4 votes vote down vote up
@Override
public String getRecipeName() {
    return NEIClientUtils.translate("recipe.brewing");
}
 
Example 4
Source File: ShapelessRecipeHandler.java    From NotEnoughItems with MIT License 4 votes vote down vote up
public String getRecipeName() {
    return NEIClientUtils.translate("recipe.shapeless");
}
 
Example 5
Source File: FireworkRecipeHandler.java    From NotEnoughItems with MIT License 4 votes vote down vote up
@Override
public String getRecipeName() {
    return NEIClientUtils.translate("recipe.firework");
}
 
Example 6
Source File: FurnaceRecipeHandler.java    From NotEnoughItems with MIT License 4 votes vote down vote up
@Override
public String getRecipeName() {
    return NEIClientUtils.translate("recipe.furnace");
}
 
Example 7
Source File: ShapedRecipeHandler.java    From NotEnoughItems with MIT License 4 votes vote down vote up
@Override
public String getRecipeName() {
    return NEIClientUtils.translate("recipe.shaped");
}
 
Example 8
Source File: GuiHighlightTips.java    From NotEnoughItems with MIT License 4 votes vote down vote up
private void updateNames() {
    toggleButton.text = NEIClientUtils.translate("options." + name + "." + (show() ? "show" : "hide"));
}
 
Example 9
Source File: BloomeryFurnaceRecipeHandler.java    From GardenCollection with MIT License 4 votes vote down vote up
@Override
public String getRecipeName () {
    return NEIClientUtils.translate("recipe.gardenstuff.bloomeryFurnace", new Object[0]);
}