Browse Source

Merge pull request #8537 from volzhs/tr-fallback-master

Fix wrong fallback for locale
Rémi Verschelde 8 years ago
parent
commit
5c7e6c9212
1 changed files with 1 additions and 1 deletions
  1. 1 1
      core/translation.cpp

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