소스 검색

Fix wrong fallback for locale

volzhs 8 년 전
부모
커밋
cfa943a0eb
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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++;
 		}