diff --git a/eeschema/tools/ee_actions.cpp b/eeschema/tools/ee_actions.cpp index d7aca6f9d2..edf741ddb6 100644 --- a/eeschema/tools/ee_actions.cpp +++ b/eeschema/tools/ee_actions.cpp @@ -1284,14 +1284,14 @@ TOOL_ACTION EE_ACTIONS::repairSchematic( TOOL_ACTION_ARGS() TOOL_ACTION EE_ACTIONS::previousUnit( TOOL_ACTION_ARGS() .Name( "eeschema.EditorControl.previousUnit" ) .Scope( AS_GLOBAL ) - .FriendlyName( _( "Previous Unit" ) ) + .FriendlyName( _( "Previous Symbol Unit" ) ) .Tooltip( _( "Open the previous unit of the symbol" ) ) .Parameter( -1 ) ); TOOL_ACTION EE_ACTIONS::nextUnit( TOOL_ACTION_ARGS() .Name( "eeschema.EditorControl.nextUnit" ) .Scope( AS_GLOBAL ) - .FriendlyName( _( "Next Unit" ) ) + .FriendlyName( _( "Next Symbol Unit" ) ) .Tooltip( _( "Open the next unit of the symbol" ) ) .Parameter( 1 ) ); diff --git a/kicad/jobs_runner.cpp b/kicad/jobs_runner.cpp index aa22e276f6..f9095751da 100644 --- a/kicad/jobs_runner.cpp +++ b/kicad/jobs_runner.cpp @@ -122,15 +122,17 @@ bool JOBS_RUNNER::RunJobsForOutput( JOBSET_OUTPUT* aOutput, bool aBail ) if( m_reporter ) { + wxString msg_fmt = wxT( "\033[32;1m%s\033[0m\n" ); + if( result == 0 ) { - msg = _( "\033[32;1mJob successful\033[0m\n" ); + msg = wxString::Format( msg_fmt, _( "Job successful" ) ); successCount++; } else { - msg = _( "\033[31;1mJob failed\033[0m\n" ); + msg = wxString::Format( msg_fmt, _( "Job failed" ) ); failCount++; } @@ -159,8 +161,11 @@ bool JOBS_RUNNER::RunJobsForOutput( JOBSET_OUTPUT* aOutput, bool aBail ) if( m_reporter ) { - msg = wxString::Format( _( "\n\n\033[33;1m%d jobs succeeded, %d job failed\033[0m\n" ), - successCount, failCount ); + msg = wxString::Format( wxT( "\n\n\033[33;1m%d %s, %d %s\033[0m\n" ), + successCount, + wxT( "jobs succeeded" ), + failCount, + wxT( "job failed" ) ); m_reporter->Report( msg, RPT_SEVERITY_INFO ); } diff --git a/pcbnew/dialogs/dialog_text_properties_base.cpp b/pcbnew/dialogs/dialog_text_properties_base.cpp index 25d364eda2..822c19bf0c 100644 --- a/pcbnew/dialogs/dialog_text_properties_base.cpp +++ b/pcbnew/dialogs/dialog_text_properties_base.cpp @@ -265,7 +265,7 @@ DIALOG_TEXT_PROPERTIES_BASE::DIALOG_TEXT_PROPERTIES_BASE( wxWindow* parent, wxWi wxBoxSizer* bSizerBottom; bSizerBottom = new wxBoxSizer( wxHORIZONTAL ); - m_buttonUpdateTh = new wxButton( this, wxID_ANY, _("Update thickness according to text size "), wxDefaultPosition, wxDefaultSize, 0 ); + m_buttonUpdateTh = new wxButton( this, wxID_ANY, _("Update thickness according to text size"), wxDefaultPosition, wxDefaultSize, 0 ); m_buttonUpdateTh->SetToolTip( _("Set the best text thickness from the text width and height\nNormal text: thickness is size/8\nBold text: thickness is size/5") ); bSizerBottom->Add( m_buttonUpdateTh, 0, wxALL, 5 ); diff --git a/pcbnew/dialogs/dialog_text_properties_base.fbp b/pcbnew/dialogs/dialog_text_properties_base.fbp index 4ee9c99d5f..0e785e6c0a 100644 --- a/pcbnew/dialogs/dialog_text_properties_base.fbp +++ b/pcbnew/dialogs/dialog_text_properties_base.fbp @@ -3082,7 +3082,7 @@ 0 0 wxID_ANY - Update thickness according to text size + Update thickness according to text size 0