Always load the "en_US" langpack into the translation table first, then the actual language.

This commit is contained in:
Christian Weeks 2012-05-11 22:20:09 -04:00
parent 658f018404
commit 1146642dec
1 changed files with 4 additions and 0 deletions

View File

@ -349,6 +349,10 @@ public class FMLCommonHandler
*/
public void handleLanguageLoad(Properties languagePack, String lang)
{
Properties usPack=modLanguageData.get("en_US");
if (usPack!=null) {
languagePack.putAll(usPack);
}
Properties langPack=modLanguageData.get(lang);
if (langPack==null) {
return;