Merge pull request #19213 from bit-shift-io/master

Fix for not picking up locale of some .po translation files
This commit is contained in:
Rémi Verschelde 2018-05-28 12:50:35 +02:00 committed by GitHub
commit ced113136b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -175,7 +175,7 @@ RES TranslationLoaderPO::load_translation(FileAccess *f, Error *r_error, const S
String prop = c.substr(0, p).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);
}
}