diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2017-04-26 08:15:05 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-26 08:15:05 +0200 |
commit | 5c7e6c9212c98fbfcd3c2d2b88cab56eebc00739 (patch) | |
tree | 4be6a800d923903859e7a130e28b37bd0e7e38c9 | |
parent | 4856613109c73cd8671442dd1be0f58bff3609f3 (diff) | |
parent | ec1c7ce6c360006a887e5ff654fc553c10ea27f2 (diff) |
Merge pull request #8537 from volzhs/tr-fallback-master
Fix wrong fallback for locale
-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 65dd083902..bd670167f9 100644 --- a/core/translation.cpp +++ b/core/translation.cpp @@ -1085,7 +1085,7 @@ void TranslationServer::setup() { int idx = 0; while (locale_list[idx]) { if (idx > 0) - options += ", "; + options += ","; options += locale_list[idx]; idx++; } |