From e66451c56ecf90ad424fd3f047e5efc383e028f7 Mon Sep 17 00:00:00 2001 From: jean-pierre charras Date: Sun, 27 Dec 2020 15:54:37 +0100 Subject: [PATCH] I18n: remove useless trailing spaces in strings. --- eeschema/sch_screen.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eeschema/sch_screen.cpp b/eeschema/sch_screen.cpp index 97e7846c5d..d6066ed8a8 100644 --- a/eeschema/sch_screen.cpp +++ b/eeschema/sch_screen.cpp @@ -685,7 +685,7 @@ void SCH_SCREEN::UpdateSymbolLinks( REPORTER* aReporter ) if( aReporter ) { - msg.Printf( _( "Setting schematic symbol '%s %s' library identifier to '%s'. " ), + msg.Printf( _( "Setting schematic symbol '%s %s' library identifier to '%s'." ), symbol->GetField( REFERENCE_FIELD )->GetText(), symbol->GetField( VALUE_FIELD )->GetText(), symbol->GetLibId().Format().wx_str() ); @@ -696,7 +696,7 @@ void SCH_SCREEN::UpdateSymbolLinks( REPORTER* aReporter ) { if( aReporter ) { - msg.Printf( _( "No library symbol found for schematic symbol '%s %s'. " ), + msg.Printf( _( "No library symbol found for schematic symbol '%s %s'." ), symbol->GetField( REFERENCE_FIELD )->GetText(), symbol->GetField( VALUE_FIELD )->GetText() ); aReporter->ReportTail( msg, RPT_SEVERITY_ERROR );