← Back to team overview

kicad-developers team mailing list archive

Typos patch

 

Hi all,
This patch fixes some simple typos.

https://github.com/KiCad/kicad-source-mirror/compare/master...Caerbannog:master.patch

Martin
From 6927d8781845bff2e95569e2205ce937c39aff96 Mon Sep 17 00:00:00 2001
From: Martin d'Allens <martin.dallens@xxxxxxxxx>
Date: Mon, 18 Apr 2016 20:34:43 +0200
Subject: [PATCH] Fix some typos in the UI

---
 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 4ceefd3..687a923 100644
--- a/kicad/dialogs/dialog_template_selector.fbp
+++ b/kicad/dialogs/dialog_template_selector.fbp
@@ -293,7 +293,7 @@
                         <property name="gripper">0</property>
                         <property name="hidden">0</property>
                         <property name="id">wxID_ANY</property>
-                        <property name="label">Templates path</property>
+                        <property name="label">Template path</property>
                         <property name="max_size"></property>
                         <property name="maximize_button">0</property>
                         <property name="maximum_size"></property>
diff --git a/kicad/dialogs/dialog_template_selector_base.cpp b/kicad/dialogs/dialog_template_selector_base.cpp
index 487e0d3..7328f89 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 e6f3aa5..202ddb1 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;
 }

Follow ups