Minor string fixes
This commit is contained in:
parent
f039e0bb6d
commit
758d5727b0
|
@ -836,7 +836,7 @@ void WORKSHEET_LAYOUT::SetPageLayout( const wxString& aFullFileName, bool Append
|
||||||
char * buffer = new char[filelen+10];
|
char * buffer = new char[filelen+10];
|
||||||
|
|
||||||
if( wksFile.Read( buffer, filelen ) != filelen )
|
if( wksFile.Read( buffer, filelen ) != filelen )
|
||||||
wxLogMessage( _("The file <%s> was not fully read"),
|
wxLogMessage( _("The file \"%s\" was not fully read"),
|
||||||
fullFileName.GetData() );
|
fullFileName.GetData() );
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
|
@ -154,7 +154,7 @@ void PCB_CALCULATOR_FRAME::OnClosePcbCalc( wxCloseEvent& event )
|
||||||
if( !WriteDataFile() )
|
if( !WriteDataFile() )
|
||||||
{
|
{
|
||||||
wxString msg;
|
wxString msg;
|
||||||
msg.Printf( _("Unable to write file\"%s\"\n"\
|
msg.Printf( _("Unable to write file \"%s\"\n"\
|
||||||
"Do you want to exit and abandon your change?"),
|
"Do you want to exit and abandon your change?"),
|
||||||
GetDataFilename().c_str() );
|
GetDataFilename().c_str() );
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue