diff options
| author | Rémi Verschelde | 2017-04-26 08:15:07 +0200 |
|---|---|---|
| committer | GitHub | 2017-04-26 08:15:07 +0200 |
| commit | 6cde867b2ffdcf3b25e927349967a95f15298df6 (patch) | |
| tree | 24fe7f91352db2f2f6b5227a330d35e62c090630 /core | |
| parent | 8a7ff259cba78a4661f4749d49730fb4016ba453 (diff) | |
| parent | cfa943a0ebbb801a8838d31d18649b8a61f9c7ca (diff) | |
| download | godot-6cde867b2ffdcf3b25e927349967a95f15298df6.tar.gz godot-6cde867b2ffdcf3b25e927349967a95f15298df6.tar.zst godot-6cde867b2ffdcf3b25e927349967a95f15298df6.zip | |
Merge pull request #8536 from volzhs/tr-fallback
Fix wrong fallback for locale (2.1)
Diffstat (limited to 'core')
| -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++; } |
