From ec1c7ce6c360006a887e5ff654fc553c10ea27f2 Mon Sep 17 00:00:00 2001 From: volzhs Date: Wed, 26 Apr 2017 04:48:03 +0900 Subject: Fix wrong fallback for locale --- core/translation.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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++; } -- cgit v1.2.3