本文整理汇总了Java中com.enderio.core.common.Lang类的典型用法代码示例。如果您正苦于以下问题:Java Lang类的具体用法?Java Lang怎么用?Java Lang使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
Lang类属于com.enderio.core.common包,在下文中一共展示了Lang类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: localizeComment
import com.enderio.core.common.Lang; //导入依赖的package包/类
static @Nonnull public String localizeComment(@Nonnull Lang lang, @Nonnull Section configSection, @Nonnull String configKey) {
final String langKey = "config.capacitor." + configKey;
if (!lang.canLocalize(langKey)) {
Log.warn("Missing translation: " + langKey);
}
return lang.localize(langKey);
}
示例2: sendChatUnloc
import com.enderio.core.common.Lang; //导入依赖的package包/类
/**
* Localizes the lines before sending them.
*
* @see #sendChat(EntityPlayer, String...)
*/
public static void sendChatUnloc(EntityPlayer player, Lang lang, String... unlocLines) {
sendChat(player, lang.localizeAll(lang, unlocLines));
}
示例3: sendNoSpamClientUnloc
import com.enderio.core.common.Lang; //导入依赖的package包/类
/**
* Localizes the strings before sending them.
*
* @see #sendNoSpamClient(String...)
*/
public static void sendNoSpamClientUnloc(Lang lang, String... unlocLines) {
sendNoSpamClient(lang.localizeAll(lang, unlocLines));
}
示例4: sendNoSpamUnloc
import com.enderio.core.common.Lang; //导入依赖的package包/类
/**
* Localizes the strings before sending them.
*
* @see #sendNoSpam(EntityPlayer, String...)
*/
public static void sendNoSpamUnloc(EntityPlayer player, Lang lang, String... unlocLines) {
sendNoSpam(player, lang.localizeAll(lang, unlocLines));
}