Skip ar_AE language since it is not supported yet

This commit is contained in:
raven02 2013-08-22 11:01:37 +08:00
parent 0dd3b89f1d
commit 1efa544fe6

View file

@ -193,7 +193,10 @@ NewLanguageScreen::NewLanguageScreen() : ListPopupScreen("Language") {
if (tempLangs[i].name.find("README") != std::string::npos) {
continue;
}
// Skip ar_AE
if (tempLangs[i].name.find("ar_AE") != std::string::npos) {
continue;
}
FileInfo lang = tempLangs[i];
langs_.push_back(lang);