UNTESTED - Per verm's request, changed listing of locales for non-Windows to use a hardcoded list. Change this to use a proper txt list later.

Originally committed to SVN as r2593.
This commit is contained in:
Rodrigo Braz Monteiro 2009-01-01 02:16:09 +00:00
parent 91b205e7bd
commit 77095bab39
1 changed files with 13 additions and 0 deletions

View File

@ -112,6 +112,8 @@ int AegisubLocale::PickLanguage() {
// Get list of available languages
wxArrayInt AegisubLocale::GetAvailableLanguages() {
wxArrayInt final;
#ifdef __WINDOWS__
wxString temp1;
// Open directory
@ -131,5 +133,16 @@ wxArrayInt AegisubLocale::GetAvailableLanguages() {
}
}
}
#else
wxString langs[] = { _T("en"), _T("pt_BR") }; // TODO: fill me
for (size_t i=0; i<sizeof(langs); i++) {
const wxLanguageInfo *lang = wxLocale::FindLanguageInfo(langs[i]);
if (lang) final.Add(lang->Language);
}
#endif
return final;
}