From cfa943a0ebbb801a8838d31d18649b8a61f9c7ca Mon Sep 17 00:00:00 2001 From: volzhs Date: Wed, 26 Apr 2017 04:45:52 +0900 Subject: [PATCH] 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 fef0acbd307..bd9a9c53ff6 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++; }