i18n: add some missing strings. Remove SetDiagMsg one.

git-svn-id: http://pcsx2.googlecode.com/svn/trunk@4509 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
gregory.hainaut@gmail.com 2011-03-29 18:21:54 +00:00
parent fe72821eaa
commit 738346bc8b
3 changed files with 6 additions and 6 deletions

View File

@ -413,8 +413,8 @@ void isoFile::Open( const wxString& srcfile )
if (!Detect())
throw Exception::BadStream()
.SetUserMsg(L"Unrecognized ISO image file format")
.SetDiagMsg(_("ISO mounting failed: PCSX2 is unable to identify the ISO image type."));
.SetUserMsg(_("Unrecognized ISO image file format"))
.SetDiagMsg(L"ISO mounting failed: PCSX2 is unable to identify the ISO image type.");
if (!(m_flags & ISOFLAGS_BLOCKDUMP_V2))
{

View File

@ -203,9 +203,9 @@ extern SysMainMemory& GetVmMemory();
namespace Msgbox
{
extern bool Alert( const wxString& text, const wxString& caption=L"PCSX2 Message", int icon=wxICON_EXCLAMATION );
extern bool OkCancel( const wxString& text, const wxString& caption=L"PCSX2 Message", int icon=0 );
extern bool YesNo( const wxString& text, const wxString& caption=L"PCSX2 Message", int icon=wxICON_QUESTION );
extern bool Alert( const wxString& text, const wxString& caption=_("PCSX2 Message"), int icon=wxICON_EXCLAMATION );
extern bool OkCancel( const wxString& text, const wxString& caption=_("PCSX2 Message"), int icon=0 );
extern bool YesNo( const wxString& text, const wxString& caption=_("PCSX2 Message"), int icon=wxICON_QUESTION );
extern int Assertion( const wxString& text, const wxString& stacktrace );
}

View File

@ -323,7 +323,7 @@ protected:
if( !SysHasValidState() )
throw Exception::RuntimeError()
.SetDiagMsg(L"SysExecEvent_DownloadState: Cannot freeze/download an invalid VM state!")
.SetUserMsg(L"There is no active virtual machine state to download or save." );
.SetUserMsg(_("There is no active virtual machine state to download or save." ));
memSavingState saveme( m_dest_list->GetBuffer() );
ArchiveEntry internals( EntryFilename_InternalStructures );