1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-28 17:24:47 +01:00

Added support for Norwegian (nb-NO)

This commit is contained in:
Goddesen
2016-05-31 21:38:13 +02:00
parent ad372a5aef
commit 9aa5958484
4 changed files with 7 additions and 0 deletions

View File

@@ -875,6 +875,9 @@ uint16 platform_get_locale_language()
else if (strcmp(langCode, "FIN") == 0){
return LANGUAGE_FINNISH;
}
else if (strcmp(langCode, "NOR") == 0){
return LANGUAGE_NORWEGIAN;
}
return LANGUAGE_UNDEFINED;
}