mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 13:20:27 -06:00
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:
@ -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));
|
||||
|
Reference in New Issue
Block a user