From 7b36e5f755309a8ea91e000a3113a4484510a307 Mon Sep 17 00:00:00 2001 From: jean-pierre charras Date: Tue, 9 May 2023 17:10:59 +0200 Subject: [PATCH] Do not mark empty strings for translation: empty strings are not allowed. --- eeschema/eeschema_jobs_handler.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eeschema/eeschema_jobs_handler.cpp b/eeschema/eeschema_jobs_handler.cpp index 7b02570f66..9996355492 100644 --- a/eeschema/eeschema_jobs_handler.cpp +++ b/eeschema/eeschema_jobs_handler.cpp @@ -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() ); }