Package co.aikar.commands
Class BukkitLocales
- java.lang.Object
-
- co.aikar.commands.Locales
-
- co.aikar.commands.BukkitLocales
-
public class BukkitLocales extends co.aikar.commands.Locales
-
-
Field Summary
-
Fields inherited from class co.aikar.commands.Locales
AFRIKAANS, ARABIC, BULGARIAN, CHINESE, CZECH, DANISH, DUTCH, ENGLISH, FINNISH, FRENCH, GERMAN, GREEK, HEBREW, HINDI, HUNGARIAN, ITALIAN, JAPANESE, KOREAN, LATIN, NORWEGIAN_BOKMAAL, NORWEGIAN_NYNORSK, POLISH, PORTUGUESE, ROMANIAN, RUSSIAN, SIMPLIFIED_CHINESE, SPANISH, SWEDISH, THAI, TRADITIONAL_CHINESE, TURKISH, UKRANIAN, VIETNAMESE, WELSH
-
-
Constructor Summary
Constructors Constructor Description BukkitLocales(BukkitCommandManager manager)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanloadLanguage(org.bukkit.configuration.file.FileConfiguration config, Locale locale)Loads every message from the Configuration object.voidloadLanguages()booleanloadYamlLanguageFile(File file, Locale locale)Loads the given filebooleanloadYamlLanguageFile(String file, Locale locale)Loads a file out of the plugins data folder by the given name
-
-
-
Constructor Detail
-
BukkitLocales
public BukkitLocales(BukkitCommandManager manager)
-
-
Method Detail
-
loadLanguages
public void loadLanguages()
- Overrides:
loadLanguagesin classco.aikar.commands.Locales
-
loadYamlLanguageFile
public boolean loadYamlLanguageFile(File file, Locale locale) throws IOException, org.bukkit.configuration.InvalidConfigurationException
Loads the given file- Parameters:
file-locale-- Returns:
- If any language keys were added
- Throws:
IOExceptionorg.bukkit.configuration.InvalidConfigurationException
-
loadYamlLanguageFile
public boolean loadYamlLanguageFile(String file, Locale locale) throws IOException, org.bukkit.configuration.InvalidConfigurationException
Loads a file out of the plugins data folder by the given name- Parameters:
file-locale-- Returns:
- If any language keys were added
- Throws:
IOExceptionorg.bukkit.configuration.InvalidConfigurationException
-
loadLanguage
public boolean loadLanguage(org.bukkit.configuration.file.FileConfiguration config, Locale locale)
Loads every message from the Configuration object. Any nested values will be treated as namespace so acf-core:\n\tfoo: bar will be acf-core.foo = bar- Parameters:
config-locale-- Returns:
- If any language keys were added
-
-