Commit 2229b5ff authored by jean-pierre charras's avatar jean-pierre charras

Fix typo

parent 6a9ed328
...@@ -281,7 +281,7 @@ int CVPCB_MAINFRAME::SaveCmpLinkFile( const wxString& aFullFileName ) ...@@ -281,7 +281,7 @@ int CVPCB_MAINFRAME::SaveCmpLinkFile( const wxString& aFullFileName )
fpLibFileName.SetName( FP_LIB_TABLE::GetFileName() ); fpLibFileName.SetName( FP_LIB_TABLE::GetFileName() );
if( fpLibFileName.FileExists() if( fpLibFileName.FileExists()
&& IsOK( this, _( "A footprint library table already exsist in this path.\n\nDo " && IsOK( this, _( "A footprint library table already exists in this path.\n\nDo "
"you want to overwrite it?" ) ) ) "you want to overwrite it?" ) ) )
{ {
try try
...@@ -292,7 +292,7 @@ int CVPCB_MAINFRAME::SaveCmpLinkFile( const wxString& aFullFileName ) ...@@ -292,7 +292,7 @@ int CVPCB_MAINFRAME::SaveCmpLinkFile( const wxString& aFullFileName )
{ {
DisplayError( this, DisplayError( this,
wxString::Format( _( "An error occurred attempting to save the " wxString::Format( _( "An error occurred attempting to save the "
"footpirnt library table <%s>\n\n%s" ), "footprint library table <%s>\n\n%s" ),
GetChars( fpLibFileName.GetFullPath() ), GetChars( fpLibFileName.GetFullPath() ),
GetChars( ioe.errorText ) ) ); GetChars( ioe.errorText ) ) );
} }
......
...@@ -544,7 +544,7 @@ bool PCB_EDIT_FRAME::SavePcbFile( const wxString& aFileName, bool aCreateBackupF ...@@ -544,7 +544,7 @@ bool PCB_EDIT_FRAME::SavePcbFile( const wxString& aFileName, bool aCreateBackupF
fn.SetName( FP_LIB_TABLE::GetFileName() ); fn.SetName( FP_LIB_TABLE::GetFileName() );
if( fn.FileExists() if( fn.FileExists()
&& IsOK( this, _( "A footprint library table already exsist in this path.\n\nDo " && IsOK( this, _( "A footprint library table already exists in this path.\n\nDo "
"you want to overwrite it?" ) ) ) "you want to overwrite it?" ) ) )
{ {
try try
...@@ -555,7 +555,7 @@ bool PCB_EDIT_FRAME::SavePcbFile( const wxString& aFileName, bool aCreateBackupF ...@@ -555,7 +555,7 @@ bool PCB_EDIT_FRAME::SavePcbFile( const wxString& aFileName, bool aCreateBackupF
{ {
DisplayError( this, DisplayError( this,
wxString::Format( _( "An error occurred attempting to save the " wxString::Format( _( "An error occurred attempting to save the "
"footpirnt library table <%s>\n\n%s" ), "footprint library table <%s>\n\n%s" ),
GetChars( fn.GetFullPath() ), GetChars( fn.GetFullPath() ),
GetChars( ioe.errorText ) ) ); GetChars( ioe.errorText ) ) );
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment