Always load the "en_US" langpack into the translation table first, then the actual language.
This commit is contained in:
parent
658f018404
commit
1146642dec
1 changed files with 4 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue