Fix wrong fallback for locale

This commit is contained in:
volzhs 2017-04-26 04:48:03 +09:00
parent b6e0eaf3ca
commit ec1c7ce6c3

View file

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