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:
Jake.Stine 2010-12-02 19:38:18 +00:00
parent 5f1d99188d
commit cc9461471b
2 changed files with 11 additions and 2 deletions

View File

@ -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()

View File

@ -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;