diff options
| author | volzhs | 2017-04-26 04:45:52 +0900 |
|---|---|---|
| committer | volzhs | 2017-04-26 04:45:52 +0900 |
| commit | cfa943a0ebbb801a8838d31d18649b8a61f9c7ca (patch) | |
| tree | 5b2a4bbb66e6737b1e22b8bec1fc4b77d01ee5af /core/translation.cpp | |
| parent | ea89c56bfbf7ab6f5810c74960f1e5c28da63927 (diff) | |
| download | godot-cfa943a0ebbb801a8838d31d18649b8a61f9c7ca.tar.gz godot-cfa943a0ebbb801a8838d31d18649b8a61f9c7ca.tar.zst godot-cfa943a0ebbb801a8838d31d18649b8a61f9c7ca.zip | |
Fix wrong fallback for locale
Diffstat (limited to '')
| -rw-r--r-- | core/translation.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/translation.cpp b/core/translation.cpp index fef0acbd3..bd9a9c53f 100644 --- a/core/translation.cpp +++ b/core/translation.cpp @@ -1064,7 +1064,7 @@ void TranslationServer::setup() { int idx = 0; while (locale_list[idx]) { if (idx > 0) - options += ", "; + options += ","; options += locale_list[idx]; idx++; } |
