diff options
author | volzhs <volzhs@gmail.com> | 2017-04-26 04:48:03 +0900 |
---|---|---|
committer | volzhs <volzhs@gmail.com> | 2017-04-26 04:48:03 +0900 |
commit | ec1c7ce6c360006a887e5ff654fc553c10ea27f2 (patch) | |
tree | a69ccb14ec2be6e6e90d485da9f2c10d77757e33 /core | |
parent | b6e0eaf3ca74d9777c6869d8519db6264866d1e6 (diff) |
Fix wrong fallback for locale
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 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++; } |