mirror of https://github.com/PCSX2/pcsx2.git
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:
parent
fe72821eaa
commit
738346bc8b
|
@ -413,8 +413,8 @@ void isoFile::Open( const wxString& srcfile )
|
||||||
|
|
||||||
if (!Detect())
|
if (!Detect())
|
||||||
throw Exception::BadStream()
|
throw Exception::BadStream()
|
||||||
.SetUserMsg(L"Unrecognized ISO image file format")
|
.SetUserMsg(_("Unrecognized ISO image file format"))
|
||||||
.SetDiagMsg(_("ISO mounting failed: PCSX2 is unable to identify the ISO image type."));
|
.SetDiagMsg(L"ISO mounting failed: PCSX2 is unable to identify the ISO image type.");
|
||||||
|
|
||||||
if (!(m_flags & ISOFLAGS_BLOCKDUMP_V2))
|
if (!(m_flags & ISOFLAGS_BLOCKDUMP_V2))
|
||||||
{
|
{
|
||||||
|
|
|
@ -203,9 +203,9 @@ extern SysMainMemory& GetVmMemory();
|
||||||
|
|
||||||
namespace Msgbox
|
namespace Msgbox
|
||||||
{
|
{
|
||||||
extern bool Alert( const wxString& text, const wxString& caption=L"PCSX2 Message", int icon=wxICON_EXCLAMATION );
|
extern bool Alert( const wxString& text, const wxString& caption=_("PCSX2 Message"), int icon=wxICON_EXCLAMATION );
|
||||||
extern bool OkCancel( const wxString& text, const wxString& caption=L"PCSX2 Message", int icon=0 );
|
extern bool OkCancel( const wxString& text, const wxString& caption=_("PCSX2 Message"), int icon=0 );
|
||||||
extern bool YesNo( const wxString& text, const wxString& caption=L"PCSX2 Message", int icon=wxICON_QUESTION );
|
extern bool YesNo( const wxString& text, const wxString& caption=_("PCSX2 Message"), int icon=wxICON_QUESTION );
|
||||||
|
|
||||||
extern int Assertion( const wxString& text, const wxString& stacktrace );
|
extern int Assertion( const wxString& text, const wxString& stacktrace );
|
||||||
}
|
}
|
||||||
|
|
|
@ -323,7 +323,7 @@ protected:
|
||||||
if( !SysHasValidState() )
|
if( !SysHasValidState() )
|
||||||
throw Exception::RuntimeError()
|
throw Exception::RuntimeError()
|
||||||
.SetDiagMsg(L"SysExecEvent_DownloadState: Cannot freeze/download an invalid VM state!")
|
.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() );
|
memSavingState saveme( m_dest_list->GetBuffer() );
|
||||||
ArchiveEntry internals( EntryFilename_InternalStructures );
|
ArchiveEntry internals( EntryFilename_InternalStructures );
|
||||||
|
|
Loading…
Reference in New Issue