From baa5f0ddfb6721210c9b46b25d499b6254ea314a Mon Sep 17 00:00:00 2001 From: unknown Date: Thu, 21 Apr 2016 09:32:29 +0200 Subject: [PATCH] Fix typos in dialogs. --- kicad/dialogs/dialog_template_selector.fbp | 2 +- kicad/dialogs/dialog_template_selector_base.cpp | 2 +- pcbnew/exporters/gen_modules_placefile.cpp | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/kicad/dialogs/dialog_template_selector.fbp b/kicad/dialogs/dialog_template_selector.fbp index 4ceefd3b60..687a92301a 100644 --- a/kicad/dialogs/dialog_template_selector.fbp +++ b/kicad/dialogs/dialog_template_selector.fbp @@ -293,7 +293,7 @@ 0 0 wxID_ANY - Templates path + Template path 0 diff --git a/kicad/dialogs/dialog_template_selector_base.cpp b/kicad/dialogs/dialog_template_selector_base.cpp index 487e0d3b3e..7328f89701 100644 --- a/kicad/dialogs/dialog_template_selector_base.cpp +++ b/kicad/dialogs/dialog_template_selector_base.cpp @@ -23,7 +23,7 @@ DIALOG_TEMPLATE_SELECTOR_BASE::DIALOG_TEMPLATE_SELECTOR_BASE( wxWindow* parent, m_htmlWin = new wxHtmlWindow( this, wxID_ANY, wxDefaultPosition, wxSize( -1,-1 ), wxHW_SCROLLBAR_AUTO ); bmainSizer->Add( m_htmlWin, 1, wxALL|wxEXPAND, 3 ); - m_staticTextTpath = new wxStaticText( this, wxID_ANY, _("Templates path"), wxDefaultPosition, wxDefaultSize, 0 ); + m_staticTextTpath = new wxStaticText( this, wxID_ANY, _("Template path"), wxDefaultPosition, wxDefaultSize, 0 ); m_staticTextTpath->Wrap( -1 ); bmainSizer->Add( m_staticTextTpath, 0, wxTOP|wxRIGHT|wxLEFT, 5 ); diff --git a/pcbnew/exporters/gen_modules_placefile.cpp b/pcbnew/exporters/gen_modules_placefile.cpp index e6f3aa5481..202ddb1518 100644 --- a/pcbnew/exporters/gen_modules_placefile.cpp +++ b/pcbnew/exporters/gen_modules_placefile.cpp @@ -288,7 +288,7 @@ bool DIALOG_GEN_MODULE_POSITION::CreateFiles() if( singleFile ) { - m_reporter->Report( _( "Componment Placement File generation OK." ), REPORTER::RPT_ACTION ); + m_reporter->Report( _( "Component Placement File generation OK." ), REPORTER::RPT_ACTION ); return true; } @@ -329,7 +329,7 @@ bool DIALOG_GEN_MODULE_POSITION::CreateFiles() m_reporter->Report( msg, REPORTER::RPT_INFO ); } - m_reporter->Report( _( "Componment Placement File generation OK." ), REPORTER::RPT_ACTION ); + m_reporter->Report( _( "Component Placement File generation OK." ), REPORTER::RPT_ACTION ); return true; }