i18n: news string for translators.

git-svn-id: http://pcsx2.googlecode.com/svn/trunk@4427 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
gregory.hainaut@gmail.com 2011-03-13 10:33:19 +00:00
parent 0df52e40cc
commit 5e9930a9dc
2 changed files with 5 additions and 2 deletions

View File

@ -668,6 +668,8 @@ protected:
Pcsx2App::Pcsx2App()
: SysExecutorThread( new SysEvtHandler() )
{
// Warning: Do not delete this comment block! Gettext will parse it to allow
// the translation of some wxWidget internal strings. -- greg
#if 0
{
// Some common labels provided by wxWidgets. wxWidgets translation files are chucked full
@ -685,11 +687,12 @@ Pcsx2App::Pcsx2App()
_("&Yes");
_("&No");
_("Browse");
_("&Save");
_("Save &As...");
_("&Help");
_("&Home");
_("Show about dialog")
}
#endif

View File

@ -478,7 +478,7 @@ void Panels::PluginSelectorPanel::Apply()
throw Exception::CannotApplySettings( this )
.SetDiagMsg(pxsFmt( L"PluginSelectorPanel: Invalid or missing selection for the %s plugin.", plugname.c_str()) )
.SetUserMsg(pxsFmt( L"Please select a valid plugin for the %s.", plugname.c_str() ) + L"\n\n" + GetApplyFailedMsg() );
.SetUserMsg(pxsFmt( _("Please select a valid plugin for the %s."), plugname.c_str() ) + L"\n\n" + GetApplyFailedMsg() );
}
g_Conf->BaseFilenames.Plugins[pid] = GetFilename((int)m_ComponentBoxes->Get(pid).GetClientData(sel));