Merge pull request #8536 from volzhs/tr-fallback

Fix wrong fallback for locale (2.1)
This commit is contained in:
Rémi Verschelde 2017-04-26 08:15:07 +02:00 committed by GitHub
commit 6cde867b2f

View file

@ -1064,7 +1064,7 @@ void TranslationServer::setup() {
int idx = 0;
while (locale_list[idx]) {
if (idx > 0)
options += ", ";
options += ",";
options += locale_list[idx];
idx++;
}