The REPORTER interface is inherently line-based.
Also fixes a bunch of error messages that were similar but not identical (which just increases translation burden). Fixes https://gitlab.com/kicad/code/kicad/issues/8723
This commit is contained in:
+2
-2
@@ -336,7 +336,7 @@ bool EnsureFileDirectoryExists( wxFileName* aTargetFullFileName,
|
||||
{
|
||||
if( aReporter )
|
||||
{
|
||||
msg.Printf( _( "Output directory '%s' created.\n" ), outputPath );
|
||||
msg.Printf( _( "Output directory '%s' created." ), outputPath );
|
||||
aReporter->Report( msg, RPT_SEVERITY_INFO );
|
||||
return true;
|
||||
}
|
||||
@@ -345,7 +345,7 @@ bool EnsureFileDirectoryExists( wxFileName* aTargetFullFileName,
|
||||
{
|
||||
if( aReporter )
|
||||
{
|
||||
msg.Printf( _( "Cannot create output directory '%s'.\n" ), outputPath );
|
||||
msg.Printf( _( "Cannot create output directory '%s'." ), outputPath );
|
||||
aReporter->Report( msg, RPT_SEVERITY_ERROR );
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user