1
0
mirror of https://github.com/godotengine/godot.git synced 2026-01-06 19:41:11 +00:00

Merge pull request #8537 from volzhs/tr-fallback-master

Fix wrong fallback for locale
This commit is contained in:
Rémi Verschelde
2017-04-26 08:15:05 +02:00
committed by GitHub

View File

@@ -1085,7 +1085,7 @@ void TranslationServer::setup() {
int idx = 0;
while (locale_list[idx]) {
if (idx > 0)
options += ", ";
options += ",";
options += locale_list[idx];
idx++;
}