Browse Source

Fix for not picking up locale of some .po translation files

Fabian 7 years ago
parent
commit
1065f06eef
1 changed files with 1 additions and 1 deletions
  1. 1 1
      core/io/translation_loader_po.cpp

+ 1 - 1
core/io/translation_loader_po.cpp

@@ -175,7 +175,7 @@ RES TranslationLoaderPO::load_translation(FileAccess *f, Error *r_error, const S
 		String prop = c.substr(0, p).strip_edges();
 		String prop = c.substr(0, p).strip_edges();
 		String value = c.substr(p + 1, c.length()).strip_edges();
 		String value = c.substr(p + 1, c.length()).strip_edges();
 
 
-		if (prop == "X-Language") {
+		if (prop == "X-Language" || prop == "Language") {
 			translation->set_locale(value);
 			translation->set_locale(value);
 		}
 		}
 	}
 	}