mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-09-15 10:43:15 +02:00
Restore some strings.
This commit is contained in:
parent
d2477b3125
commit
a019626719
@ -425,7 +425,8 @@ bool CopyFilesOrDirectory( const wxString& aSourcePath, const wxString& aDestDir
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
aErrors += wxString::Format( _( "Could not copy file: %s to %s\n" ), src, dest );
|
aErrors += wxString::Format( _( "Could not copy file: %s to %s" ), src, dest );
|
||||||
|
aErrors += wxT( "\n" );
|
||||||
return false;
|
return false;
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -473,8 +474,10 @@ bool CopyFilesOrDirectory( const wxString& aSourcePath, const wxString& aDestDir
|
|||||||
if( !CopyFilesOrDirectory( entrySrc, destDir, aErrors, aFileCopiedCount,
|
if( !CopyFilesOrDirectory( entrySrc, destDir, aErrors, aFileCopiedCount,
|
||||||
aExclusions ) )
|
aExclusions ) )
|
||||||
{
|
{
|
||||||
aErrors += wxString::Format( _( "Could not copy directory: %s to %s\n" ),
|
aErrors += wxString::Format( _( "Could not copy directory: %s to %s" ),
|
||||||
entrySrc, entryDest );
|
entrySrc, entryDest );
|
||||||
|
aErrors += wxT( "\n" );
|
||||||
|
|
||||||
success = false;
|
success = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user