Fix wrong fallback for locale

This commit is contained in:
volzhs 2017-04-26 04:45:52 +09:00
parent ea89c56bfb
commit cfa943a0eb

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++;
}