Enable Arabic on Windows where we are using system fonts that can handle it.

This commit is contained in:
Henrik Rydgard 2013-09-04 14:46:21 +02:00
parent d69d33b0da
commit 1c422d41ce

View File

@ -204,10 +204,13 @@ NewLanguageScreen::NewLanguageScreen(const std::string &title) : ListPopupScreen
if (tempLangs[i].name.find("README") != std::string::npos) {
continue;
}
// Skip ar_AE
#ifndef _WIN32
// ar_AE only works on Windows.
if (tempLangs[i].name.find("ar_AE") != std::string::npos) {
continue;
}
#endif
FileInfo lang = tempLangs[i];
langs_.push_back(lang);