فهرست منبع

Merge pull request #8536 from volzhs/tr-fallback

Fix wrong fallback for locale (2.1)
Rémi Verschelde 8 سال پیش
والد
کامیت
6cde867b2f
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      core/translation.cpp

+ 1 - 1
core/translation.cpp

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