← Back to team overview

kicad-developers team mailing list archive

Spelling/grammar fixes

 

Hi guys,

Just a few basic spelling/grammar errors I came across whilst making a
board.

Patch attached.

Cheers,

Tom
diff -Naur kicad.bzr/pcbnew/dialogs/dialog_gendrill_base.cpp spellingfix.kicad.bzr/pcbnew/dialogs/dialog_gendrill_base.cpp
--- kicad.bzr/pcbnew/dialogs/dialog_gendrill_base.cpp	2015-11-24 18:55:29.839603000 +0000
+++ spellingfix.kicad.bzr/pcbnew/dialogs/dialog_gendrill_base.cpp	2016-02-05 19:26:36.648370512 +0000
@@ -83,17 +83,17 @@
 	sbOptSizer = new wxStaticBoxSizer( new wxStaticBox( this, wxID_ANY, _("Drill File Options:") ), wxVERTICAL );
 	
 	m_Check_Mirror = new wxCheckBox( sbOptSizer->GetStaticBox(), wxID_ANY, _("Mirror y axis"), wxDefaultPosition, wxDefaultSize, 0 );
-	m_Check_Mirror->SetToolTip( _("Not recommanded.\nUsed mostly by users who make themselves the boards.") );
+	m_Check_Mirror->SetToolTip( _("Not recommended.\nUsed mostly by users who make the boards themselves.") );
 	
 	sbOptSizer->Add( m_Check_Mirror, 0, wxRIGHT|wxLEFT, 5 );
 	
 	m_Check_Minimal = new wxCheckBox( sbOptSizer->GetStaticBox(), wxID_ANY, _("Minimal header"), wxDefaultPosition, wxDefaultSize, 0 );
-	m_Check_Minimal->SetToolTip( _("Not recommanded.\nUse it only for board houses which do not accept fully featured headers.") );
+	m_Check_Minimal->SetToolTip( _("Not recommended.\nOnly use for board houses which do not accept fully featured headers.") );
 	
 	sbOptSizer->Add( m_Check_Minimal, 0, wxTOP|wxRIGHT|wxLEFT, 5 );
 	
 	m_Check_Merge_PTH_NPTH = new wxCheckBox( sbOptSizer->GetStaticBox(), wxID_ANY, _("Merge PTH and NPTH holes into one file"), wxDefaultPosition, wxDefaultSize, 0 );
-	m_Check_Merge_PTH_NPTH->SetToolTip( _("Not recommanded.\nUse it only for board houses which ask for merged PTH and NPTH into onlu one file") );
+	m_Check_Merge_PTH_NPTH->SetToolTip( _("Not recommended.\nOnly use for board houses which ask for merged PTH and NPTH into a single file.") );
 	
 	sbOptSizer->Add( m_Check_Merge_PTH_NPTH, 0, wxALL, 5 );
 	
diff -Naur kicad.bzr/pcbnew/dialogs/dialog_gendrill_base.fbp spellingfix.kicad.bzr/pcbnew/dialogs/dialog_gendrill_base.fbp
--- kicad.bzr/pcbnew/dialogs/dialog_gendrill_base.fbp	2015-11-24 18:55:29.839603000 +0000
+++ spellingfix.kicad.bzr/pcbnew/dialogs/dialog_gendrill_base.fbp	2016-02-05 19:30:48.528375247 +0000
@@ -759,7 +759,7 @@
                                                 <property name="style"></property>
                                                 <property name="subclass"></property>
                                                 <property name="toolbar_pane">0</property>
-                                                <property name="tooltip">Not recommanded.&#x0A;Used mostly by users who make themselves the boards.</property>
+                                                <property name="tooltip">Not recommended.&#x0A;Used mostly by users who make the boards themselves.</property>
                                                 <property name="validator_data_type"></property>
                                                 <property name="validator_style">wxFILTER_NONE</property>
                                                 <property name="validator_type">wxDefaultValidator</property>
@@ -847,7 +847,7 @@
                                                 <property name="style"></property>
                                                 <property name="subclass"></property>
                                                 <property name="toolbar_pane">0</property>
-                                                <property name="tooltip">Not recommanded.&#x0A;Use it only for board houses which do not accept fully featured headers.</property>
+                                                <property name="tooltip">Not recommended.&#x0A;Only use it for board houses which do not accept fully featured headers.</property>
                                                 <property name="validator_data_type"></property>
                                                 <property name="validator_style">wxFILTER_NONE</property>
                                                 <property name="validator_type">wxDefaultValidator</property>
@@ -935,7 +935,7 @@
                                                 <property name="style"></property>
                                                 <property name="subclass"></property>
                                                 <property name="toolbar_pane">0</property>
-                                                <property name="tooltip">Not recommanded.&#x0A;Use it only for board houses which ask for merged PTH and NPTH into onlu one file</property>
+                                                <property name="tooltip">Not recommended.&#x0A;Only use for board houses which ask for merged PTH and NTPH into a single file.</property>
                                                 <property name="validator_data_type"></property>
                                                 <property name="validator_style">wxFILTER_NONE</property>
                                                 <property name="validator_type">wxDefaultValidator</property>

Follow ups