Unify the saved file strings
This commit is contained in:
parent
fbc70511c7
commit
ad1aae40ec
|
@ -182,7 +182,7 @@ bool SCH_EDIT_FRAME::SaveEEFile( SCH_SHEET* aSheet, bool aSaveUnderNewName )
|
|||
screen->ClrSave();
|
||||
screen->ClrModify();
|
||||
|
||||
msg.Printf( _( "File %s saved" ), screen->GetFileName() );
|
||||
msg.Printf( _( "File \"%s\" saved." ), screen->GetFileName() );
|
||||
SetStatusText( msg, 0 );
|
||||
}
|
||||
else
|
||||
|
|
|
@ -156,7 +156,7 @@ void PL_EDITOR_FRAME::Files_io( wxCommandEvent& event )
|
|||
else
|
||||
{
|
||||
OnNewPageLayout();
|
||||
msg.Printf( _( "File \"%s\" loaded" ), filename );
|
||||
msg.Printf( _( "File \"%s\" saved." ), filename );
|
||||
SetStatusText( msg );
|
||||
}
|
||||
}
|
||||
|
@ -170,7 +170,7 @@ void PL_EDITOR_FRAME::Files_io( wxCommandEvent& event )
|
|||
}
|
||||
else
|
||||
{
|
||||
msg.Printf( _("File \"%s\" written"), filename );
|
||||
msg.Printf( _("File \"%s\" saved."), filename );
|
||||
SetStatusText( msg );
|
||||
}
|
||||
break;
|
||||
|
@ -201,7 +201,7 @@ void PL_EDITOR_FRAME::Files_io( wxCommandEvent& event )
|
|||
|
||||
else
|
||||
{
|
||||
msg.Printf( _("File \"%s\" written"), filename );
|
||||
msg.Printf( _("File \"%s\" saved."), filename );
|
||||
SetStatusText( msg );
|
||||
|
||||
if( GetCurrentFileName().IsEmpty() )
|
||||
|
|
|
@ -914,7 +914,7 @@ bool PCB_EDIT_FRAME::SavePcbFile( const wxString& aFileName, bool addToHistory,
|
|||
if( autoSaveFileName.FileExists() )
|
||||
wxRemoveFile( autoSaveFileName.GetFullPath() );
|
||||
|
||||
lowerTxt.Printf( _( "Wrote board file: \"%s\"" ), pcbFileName.GetFullPath() );
|
||||
lowerTxt.Printf( _( "File \"%s\" saved." ), pcbFileName.GetFullPath() );
|
||||
|
||||
SetStatusText( lowerTxt, 0 );
|
||||
|
||||
|
|
Loading…
Reference in New Issue