Put the list of locales in the bundle plist to make wxLANGUAGE_DEFAULT work.

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@7028 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Soren Jorvang
2011-02-01 02:22:15 +00:00
parent 27a3e533f4
commit 1c6572faa7
3 changed files with 11 additions and 7 deletions

View File

@ -1019,7 +1019,7 @@ void CISOProperties::LoadGameConfig()
PHackChoice->Enable(bTemp);
PHackChoice->Clear();
PHackChoice->Append(wxString(_("Custom"), *wxConvCurrent));
PHackChoice->Append(_("Custom"));
for (int i=0 ; ; i++)
{
sprintf(sIndex,"%d",i);
@ -1027,7 +1027,7 @@ void CISOProperties::LoadGameConfig()
break;
PHPresetsIni.Get(sIndex, "Title", &sTemp);
if (sTemp.empty())
sTemp = wxString(_("(UNKNOWN)"), *wxConvCurrent).char_str();
sTemp = _("(UNKNOWN)").char_str();
if (i == 0)
PHackChoice->Append(wxString("-----------", *wxConvCurrent));
PHackChoice->Append(wxString(sTemp.c_str(), *wxConvCurrent));