Browse Source

Fix wrong fallback for locale

volzhs 8 năm trước cách đây
mục cha
commit
cfa943a0eb
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      core/translation.cpp

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