mirror of https://github.com/PCSX2/pcsx2.git
Various translations related fixes and removed another log.
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@4374 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
4bd5322dc6
commit
4615daf357
|
@ -265,7 +265,7 @@ static wxString GetMsg_InvalidELF()
|
||||||
return
|
return
|
||||||
_("Cannot load ELF binary image. The file may be corrupt or incomplete.") +
|
_("Cannot load ELF binary image. The file may be corrupt or incomplete.") +
|
||||||
wxString(L"\n\n") +
|
wxString(L"\n\n") +
|
||||||
_("If loading from an ISO image, this error may be caused by an unsupported ISO image type or bug in PCSX2 ISO image support.");
|
_("If loading from an ISO image, this error may be caused by an unsupported ISO image type or a bug in PCSX2 ISO image support.");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -87,7 +87,7 @@ Panels::FirstTimeIntroPanel::FirstTimeIntroPanel( wxWindow* parent )
|
||||||
*this += langSel | StdExpand();
|
*this += langSel | StdExpand();
|
||||||
*this += GetCharHeight() * 2;
|
*this += GetCharHeight() * 2;
|
||||||
|
|
||||||
*this += Heading(AddAppName(L"Welcome to %s!")).Bold();
|
*this += Heading(_("Welcome to PCSX2!")).Bold() | StdExpand();
|
||||||
*this += GetCharHeight();
|
*this += GetCharHeight();
|
||||||
|
|
||||||
*this += Heading(AddAppName(
|
*this += Heading(AddAppName(
|
||||||
|
|
|
@ -362,8 +362,8 @@ MainEmuFrame::MainEmuFrame(wxWindow* parent, const wxString& title)
|
||||||
|
|
||||||
int m_statusbar_widths[] = { (int)(backsize.GetWidth()*0.73), (int)(backsize.GetWidth()*0.25) };
|
int m_statusbar_widths[] = { (int)(backsize.GetWidth()*0.73), (int)(backsize.GetWidth()*0.25) };
|
||||||
m_statusbar.SetStatusWidths(2, m_statusbar_widths);
|
m_statusbar.SetStatusWidths(2, m_statusbar_widths);
|
||||||
m_statusbar.SetStatusText( L"The Status is Good!", 0);
|
//m_statusbar.SetStatusText( L"The Status is Good!", 0);
|
||||||
m_statusbar.SetStatusText( wxEmptyString, 1);
|
m_statusbar.SetStatusText( wxEmptyString, 0);
|
||||||
|
|
||||||
wxBoxSizer& joe( *new wxBoxSizer( wxVERTICAL ) );
|
wxBoxSizer& joe( *new wxBoxSizer( wxVERTICAL ) );
|
||||||
joe.Add( &m_background );
|
joe.Add( &m_background );
|
||||||
|
|
|
@ -99,14 +99,15 @@ void NTFS_CompressFile( const wxString& file, bool compressStatus )
|
||||||
DWORD bytesReturned = 0;
|
DWORD bytesReturned = 0;
|
||||||
DWORD compressMode = compressStatus ? COMPRESSION_FORMAT_DEFAULT : COMPRESSION_FORMAT_NONE;
|
DWORD compressMode = compressStatus ? COMPRESSION_FORMAT_DEFAULT : COMPRESSION_FORMAT_NONE;
|
||||||
|
|
||||||
BOOL result = DeviceIoControl(
|
/*BOOL result = */DeviceIoControl(
|
||||||
bloated_crap, FSCTL_SET_COMPRESSION,
|
bloated_crap, FSCTL_SET_COMPRESSION,
|
||||||
&compressMode, 2, NULL, 0,
|
&compressMode, 2, NULL, 0,
|
||||||
&bytesReturned, NULL
|
&bytesReturned, NULL
|
||||||
);
|
);
|
||||||
|
|
||||||
if( !result )
|
// No need to see this every time on my exFAT drive (rama)
|
||||||
StreamException_LogLastError( file, L"NTFS Compress Notice" );
|
//if( !result )
|
||||||
|
// StreamException_LogLastError( file, L"NTFS Compress Notice" );
|
||||||
|
|
||||||
CloseHandle( bloated_crap );
|
CloseHandle( bloated_crap );
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue