mirror of https://github.com/PCSX2/pcsx2.git
i18n: fixes for po filenames (they didn't match the ones in the wiki)
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@4068 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
5f1d99188d
commit
cc9461471b
|
@ -236,6 +236,15 @@ void Pcsx2App::OpenProgramLog()
|
|||
EnableAllLogging();
|
||||
|
||||
if( m_current_focus ) m_current_focus->SetFocus();
|
||||
|
||||
/*
|
||||
// This is test code for printing out all supported languages and their canonical names in wiki-fied
|
||||
// format. I might use it again soon, so I'm leaving it in for now... --air
|
||||
for( int li=wxLANGUAGE_UNKNOWN+1; li<wxLANGUAGE_USER_DEFINED; ++li )
|
||||
{
|
||||
if (const wxLanguageInfo* info = wxLocale::GetLanguageInfo( li ))
|
||||
Console.WriteLn( L"|| %-30s || %s ||", info->Description.c_str(), info->CanonicalName.c_str() );
|
||||
}*/
|
||||
}
|
||||
|
||||
void Pcsx2App::AllocateCoreStuffs()
|
||||
|
|
|
@ -157,8 +157,8 @@ bool i18n_SetLanguage( int wxLangId )
|
|||
static const wxChar* dictFiles[] =
|
||||
{
|
||||
L"pcsx2_Main",
|
||||
L"pcsx2_Notices",
|
||||
L"pcsx2_ContextTips"
|
||||
L"pcsx2_Iconized",
|
||||
L"pcsx2_Tertiary"
|
||||
};
|
||||
|
||||
bool foundone = false;
|
||||
|
|
Loading…
Reference in New Issue