From 22fdfa61ef176219de4d5210880f1e8f3ec9c86e Mon Sep 17 00:00:00 2001 From: unknown Date: Thu, 17 Dec 2015 20:06:13 +0100 Subject: [PATCH] Make message window title translatable in a rescue dialog. --- eeschema/project_rescue.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/eeschema/project_rescue.cpp b/eeschema/project_rescue.cpp index 098d3a3776..f8db7d61fc 100644 --- a/eeschema/project_rescue.cpp +++ b/eeschema/project_rescue.cpp @@ -524,7 +524,8 @@ bool SCH_EDIT_FRAME::RescueProject( bool aRunningOnDemand ) { if( aRunningOnDemand ) { - wxMessageDialog dlg( this, _( "This project has nothing to rescue." ) ); + wxMessageDialog dlg( this, _( "This project has nothing to rescue." ), + _( "Project Rescue Helper" ) ); dlg.ShowModal(); } return true; @@ -538,7 +539,8 @@ bool SCH_EDIT_FRAME::RescueProject( bool aRunningOnDemand ) // have clicked cancel by mistake, and should have some indication of that. if( !rescuer.GetChosenCandidateCount() ) { - wxMessageDialog dlg( this, _( "No symbols were rescued." ) ); + wxMessageDialog dlg( this, _( "No symbols were rescued." ), + _( "Project Rescue Helper" ) ); dlg.ShowModal(); // Set the modified flag even on Cancel. Many users seem to instinctively want to Save at