Do not mark empty strings for translation: empty strings are not allowed.

This commit is contained in:
jean-pierre charras 2023-05-09 17:10:59 +02:00
parent 8cd1f8d905
commit 7b36e5f755
1 changed files with 2 additions and 2 deletions

View File

@ -492,7 +492,7 @@ int EESCHEMA_JOBS_HANDLER::doSymExportSvg( JOB_SYM_EXPORT_SVG* aSvgJob,
wxPrintf( _( "Plotting symbol '%s' unit %d %sto '%s'\n" ),
symbol->GetName(),
unit,
convert == 2 ? _( "(De Morgan) " ) : _( "" ),
convert == 2 ? _( "(De Morgan) " ) : wxS( "" ),
fn.GetFullPath() );
}
else
@ -502,7 +502,7 @@ int EESCHEMA_JOBS_HANDLER::doSymExportSvg( JOB_SYM_EXPORT_SVG* aSvgJob,
convert == 2 ? wxS( "_demorgan" ) : wxS( "" ) ) );
wxPrintf( _( "Plotting symbol '%s' %sto '%s'\n" ),
symbol->GetName(),
convert == 2 ? _( "(De Morgan) " ) : _( "" ),
convert == 2 ? _( "(De Morgan) " ) : wxS( "" ),
fn.GetFullPath() );
}