Added missing Localization Strings in Options Menu

This commit is contained in:
CrushedPixel
2015-04-29 23:46:55 +02:00
parent 5bfe66e09b
commit 263ce4df8b
3 changed files with 8 additions and 5 deletions

View File

@@ -36,7 +36,8 @@ public class LocalizedResourcePack implements IResourcePack {
boolean downloaded = true;
try {
String lang = ReplayMod.apiClient.getTranslation(langcode);
availableLanguages.put(langcode, StringEscapeUtils.unescapeHtml4(lang));
String prop = StringEscapeUtils.unescapeHtml4(lang);
availableLanguages.put(langcode, prop);
} catch(Exception e) {
e.printStackTrace();
downloaded = false;