mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-12 12:23:59 +00:00
Merge branch 'master' of github.com:essentials/Essentials
This commit is contained in:
commit
a4d7b5dcf8
2 changed files with 10 additions and 7 deletions
|
@ -126,23 +126,25 @@ public class EssentialsConf extends YamlConfiguration
|
||||||
{
|
{
|
||||||
buffer.rewind();
|
buffer.rewind();
|
||||||
data.clear();
|
data.clear();
|
||||||
LOGGER.log(Level.INFO, "File {0} is not utf-8 encoded, trying {1}", new Object[]
|
LOGGER.log(Level.INFO, "File " + configFile.getAbsolutePath().toString() + "is not utf-8 encoded, trying " + Charset.defaultCharset().displayName());
|
||||||
{
|
|
||||||
configFile.getAbsolutePath().toString(), Charset.defaultCharset().displayName()
|
|
||||||
});
|
|
||||||
decoder = Charset.defaultCharset().newDecoder();
|
decoder = Charset.defaultCharset().newDecoder();
|
||||||
result = decoder.decode(buffer, data, true);
|
result = decoder.decode(buffer, data, true);
|
||||||
if (result.isError())
|
if (result.isError())
|
||||||
{
|
{
|
||||||
throw new InvalidConfigurationException("Invalid Characters in file " + configFile.getAbsolutePath().toString());
|
throw new InvalidConfigurationException("Invalid Characters in file " + configFile.getAbsolutePath().toString());
|
||||||
} else {
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
decoder.flush(data);
|
decoder.flush(data);
|
||||||
}
|
}
|
||||||
} else {
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
decoder.flush(data);
|
decoder.flush(data);
|
||||||
}
|
}
|
||||||
|
final int end = data.position();
|
||||||
data.rewind();
|
data.rewind();
|
||||||
super.loadFromString(data.toString());
|
super.loadFromString(data.subSequence(0, end).toString());
|
||||||
}
|
}
|
||||||
finally
|
finally
|
||||||
{
|
{
|
||||||
|
|
|
@ -114,6 +114,7 @@ public class I18n implements II18n
|
||||||
{
|
{
|
||||||
currentLocale = new Locale(parts[0], parts[1], parts[2]);
|
currentLocale = new Locale(parts[0], parts[1], parts[2]);
|
||||||
}
|
}
|
||||||
|
ResourceBundle.clearCache();
|
||||||
Logger.getLogger("Minecraft").log(Level.INFO, String.format("Using locale %s", currentLocale.toString()));
|
Logger.getLogger("Minecraft").log(Level.INFO, String.format("Using locale %s", currentLocale.toString()));
|
||||||
customBundle = ResourceBundle.getBundle(MESSAGES, currentLocale, new FileResClassLoader(I18n.class.getClassLoader(), ess));
|
customBundle = ResourceBundle.getBundle(MESSAGES, currentLocale, new FileResClassLoader(I18n.class.getClassLoader(), ess));
|
||||||
localeBundle = ResourceBundle.getBundle(MESSAGES, currentLocale);
|
localeBundle = ResourceBundle.getBundle(MESSAGES, currentLocale);
|
||||||
|
|
Loading…
Reference in a new issue