From db54f3e7a7a106ee7d668743f7cd0e447085d2cd Mon Sep 17 00:00:00 2001 From: Matthew Petroff Date: Mon, 2 May 2016 10:01:43 -0400 Subject: [PATCH] Correct multiple UI spelling errors --- 3d-viewer/3d_toolbar.cpp | 4 ++-- common/dialogs/dialog_env_var_config_base.cpp | 2 +- common/dialogs/dialog_env_var_config_base.fbp | 2 +- cvpcb/dialogs/dialog_display_options_base.cpp | 2 +- cvpcb/dialogs/dialog_display_options_base.fbp | 2 +- eeschema/dialogs/dialog_edit_component_in_schematic_fbp.cpp | 2 +- eeschema/dialogs/dialog_edit_component_in_schematic_fbp.fbp | 2 +- kicad/preferences.cpp | 2 +- pagelayout_editor/menubar.cpp | 2 +- pagelayout_editor/pl_editor_config.cpp | 4 ++-- pcbnew/dialogs/dialog_copper_zones_base.cpp | 2 +- pcbnew/dialogs/dialog_copper_zones_base.fbp | 2 +- pcbnew/dialogs/dialog_design_rules.cpp | 2 +- pcbnew/dialogs/dialog_netlist_fbp.cpp | 4 ++-- pcbnew/dialogs/dialog_netlist_fbp.fbp | 4 ++-- pcbnew/router/router_tool.cpp | 2 +- pcbnew/zones_by_polygon.cpp | 2 +- 17 files changed, 21 insertions(+), 21 deletions(-) diff --git a/3d-viewer/3d_toolbar.cpp b/3d-viewer/3d_toolbar.cpp index c61dd79e72..29184f8b1a 100644 --- a/3d-viewer/3d_toolbar.cpp +++ b/3d-viewer/3d_toolbar.cpp @@ -135,10 +135,10 @@ void EDA_3D_FRAME::CreateMenuBar() menuBar->Append( fileMenu, _( "&File" ) ); AddMenuItem( fileMenu, ID_MENU_SCREENCOPY_PNG, - _( "Create Image (png format)" ), + _( "Create Image (PNG format)" ), KiBitmap( export_xpm ) ); AddMenuItem( fileMenu, ID_MENU_SCREENCOPY_JPEG, - _( "Create Image (jpeg format)" ), + _( "Create Image (JPEG format)" ), KiBitmap( export_xpm ) ); fileMenu->AppendSeparator(); diff --git a/common/dialogs/dialog_env_var_config_base.cpp b/common/dialogs/dialog_env_var_config_base.cpp index 8f857c74eb..8f8590a252 100644 --- a/common/dialogs/dialog_env_var_config_base.cpp +++ b/common/dialogs/dialog_env_var_config_base.cpp @@ -62,7 +62,7 @@ DIALOG_ENV_VAR_CONFIG_BASE::DIALOG_ENV_VAR_CONFIG_BASE( wxWindow* parent, wxWind brightSizer->Add( m_buttonAdd, 0, wxALL|wxEXPAND, 5 ); m_buttonDelete = new wxButton( this, wxID_ANY, _("Delete"), wxDefaultPosition, wxDefaultSize, 0 ); - m_buttonDelete->SetToolTip( _("Remove the selectect entry from the table.") ); + m_buttonDelete->SetToolTip( _("Remove the selected entry from the table.") ); brightSizer->Add( m_buttonDelete, 0, wxBOTTOM|wxLEFT|wxRIGHT|wxEXPAND, 5 ); diff --git a/common/dialogs/dialog_env_var_config_base.fbp b/common/dialogs/dialog_env_var_config_base.fbp index fa78eb7dc0..8c86db4d00 100644 --- a/common/dialogs/dialog_env_var_config_base.fbp +++ b/common/dialogs/dialog_env_var_config_base.fbp @@ -407,7 +407,7 @@ 0 - Remove the selectect entry from the table. + Remove the selected entry from the table. wxFILTER_NONE wxDefaultValidator diff --git a/cvpcb/dialogs/dialog_display_options_base.cpp b/cvpcb/dialogs/dialog_display_options_base.cpp index 5b06c1058e..99be00714e 100644 --- a/cvpcb/dialogs/dialog_display_options_base.cpp +++ b/cvpcb/dialogs/dialog_display_options_base.cpp @@ -40,7 +40,7 @@ DIALOG_FOOTPRINTS_DISPLAY_OPTIONS_BASE::DIALOG_FOOTPRINTS_DISPLAY_OPTIONS_BASE( wxStaticBoxSizer* sbSizerViewOpt; sbSizerViewOpt = new wxStaticBoxSizer( new wxStaticBox( this, wxID_ANY, _("Pan and Zoom") ), wxVERTICAL ); - m_IsZoomNoCenter = new wxCheckBox( this, wxID_ANY, _("Do not center and warp cusor on zoom"), wxDefaultPosition, wxDefaultSize, 0 ); + m_IsZoomNoCenter = new wxCheckBox( this, wxID_ANY, _("Do not center and warp cursor on zoom"), wxDefaultPosition, wxDefaultSize, 0 ); m_IsZoomNoCenter->SetToolTip( _("Keep the cursor at its current location when zooming") ); sbSizerViewOpt->Add( m_IsZoomNoCenter, 0, wxEXPAND|wxALL, 5 ); diff --git a/cvpcb/dialogs/dialog_display_options_base.fbp b/cvpcb/dialogs/dialog_display_options_base.fbp index 3e08bd0da7..1a7fb17eb5 100644 --- a/cvpcb/dialogs/dialog_display_options_base.fbp +++ b/cvpcb/dialogs/dialog_display_options_base.fbp @@ -513,7 +513,7 @@ 0 0 wxID_ANY - Do not center and warp cusor on zoom + Do not center and warp cursor on zoom 0 diff --git a/eeschema/dialogs/dialog_edit_component_in_schematic_fbp.cpp b/eeschema/dialogs/dialog_edit_component_in_schematic_fbp.cpp index bb1265a1a9..b4150584fe 100644 --- a/eeschema/dialogs/dialog_edit_component_in_schematic_fbp.cpp +++ b/eeschema/dialogs/dialog_edit_component_in_schematic_fbp.cpp @@ -182,7 +182,7 @@ DIALOG_EDIT_COMPONENT_IN_SCHEMATIC_FBP::DIALOG_EDIT_COMPONENT_IN_SCHEMATIC_FBP( int m_StyleRadioBoxNChoices = sizeof( m_StyleRadioBoxChoices ) / sizeof( wxString ); m_StyleRadioBox = new wxRadioBox( fieldsSizer->GetStaticBox(), wxID_ANY, _("Style:"), wxDefaultPosition, wxDefaultSize, m_StyleRadioBoxNChoices, m_StyleRadioBoxChoices, 1, wxRA_SPECIFY_COLS ); m_StyleRadioBox->SetSelection( 3 ); - m_StyleRadioBox->SetToolTip( _("The style of the currently selected field's text in the schemati") ); + m_StyleRadioBox->SetToolTip( _("The style of the currently selected field's text in the schematic") ); bSizerStyle->Add( m_StyleRadioBox, 1, wxEXPAND|wxALL, 5 ); diff --git a/eeschema/dialogs/dialog_edit_component_in_schematic_fbp.fbp b/eeschema/dialogs/dialog_edit_component_in_schematic_fbp.fbp index 2c02a37c3e..07addab429 100644 --- a/eeschema/dialogs/dialog_edit_component_in_schematic_fbp.fbp +++ b/eeschema/dialogs/dialog_edit_component_in_schematic_fbp.fbp @@ -2217,7 +2217,7 @@ wxRA_SPECIFY_COLS 0 - The style of the currently selected field's text in the schemati + The style of the currently selected field's text in the schematic wxFILTER_NONE wxDefaultValidator diff --git a/kicad/preferences.cpp b/kicad/preferences.cpp index bd9a7e82bd..12738f2c49 100644 --- a/kicad/preferences.cpp +++ b/kicad/preferences.cpp @@ -77,7 +77,7 @@ void KICAD_MANAGER_FRAME::OnSelectPreferredPdfBrowser( wxCommandEvent& event ) Pgm().ReadPdfBrowserInfos(); wxFileName fn = Pgm().GetPdfBrowserName(); - wxFileDialog dlg( this, _( "Select Preferred Pdf Browser" ), fn.GetPath(), + wxFileDialog dlg( this, _( "Select Preferred PDF Browser" ), fn.GetPath(), fn.GetFullPath(), wildcard, wxFD_OPEN | wxFD_FILE_MUST_EXIST ); diff --git a/pagelayout_editor/menubar.cpp b/pagelayout_editor/menubar.cpp index baa44c7a86..957febfbb6 100644 --- a/pagelayout_editor/menubar.cpp +++ b/pagelayout_editor/menubar.cpp @@ -118,7 +118,7 @@ void PL_EDITOR_FRAME::ReCreateMenuBar() AddMenuItem( preferencesMenu, ID_MENU_SWITCH_BGCOLOR, GetDrawBgColor() == WHITE ? - _( "&BackGround Black" ) : _( "&BackGround White" ), + _( "&Background Black" ) : _( "&Background White" ), wxEmptyString, KiBitmap( palette_xpm ) ); AddMenuItem( preferencesMenu, diff --git a/pagelayout_editor/pl_editor_config.cpp b/pagelayout_editor/pl_editor_config.cpp index c0242c080f..d3cfca974e 100644 --- a/pagelayout_editor/pl_editor_config.cpp +++ b/pagelayout_editor/pl_editor_config.cpp @@ -55,8 +55,8 @@ void PL_EDITOR_FRAME::Process_Config( wxCommandEvent& event ) GetMenuBar()->SetLabel( ID_MENU_SWITCH_BGCOLOR, GetDrawBgColor() == WHITE ? - _( "&BackGround Black" ) : - _( "&BackGround White" ) ); + _( "&Background Black" ) : + _( "&Background White" ) ); m_canvas->Refresh(); break; diff --git a/pcbnew/dialogs/dialog_copper_zones_base.cpp b/pcbnew/dialogs/dialog_copper_zones_base.cpp index de1ee9e7d4..09ff71a31d 100644 --- a/pcbnew/dialogs/dialog_copper_zones_base.cpp +++ b/pcbnew/dialogs/dialog_copper_zones_base.cpp @@ -112,7 +112,7 @@ DIALOG_COPPER_ZONE_BASE::DIALOG_COPPER_ZONE_BASE( wxWindow* parent, wxWindowID i m_MinThicknessValueTitle = new wxStaticText( m_ExportableSetupSizer->GetStaticBox(), wxID_ANY, _("Minimum width"), wxDefaultPosition, wxDefaultSize, 0 ); m_MinThicknessValueTitle->Wrap( -1 ); - m_MinThicknessValueTitle->SetToolTip( _("Minimun thickness of filled areas.") ); + m_MinThicknessValueTitle->SetToolTip( _("Minimum thickness of filled areas.") ); bSizerSettings->Add( m_MinThicknessValueTitle, 0, wxRIGHT|wxLEFT, 5 ); diff --git a/pcbnew/dialogs/dialog_copper_zones_base.fbp b/pcbnew/dialogs/dialog_copper_zones_base.fbp index 9013d73d3f..78ae83bd6c 100644 --- a/pcbnew/dialogs/dialog_copper_zones_base.fbp +++ b/pcbnew/dialogs/dialog_copper_zones_base.fbp @@ -1356,7 +1356,7 @@ 0 - Minimun thickness of filled areas. + Minimum thickness of filled areas. diff --git a/pcbnew/dialogs/dialog_design_rules.cpp b/pcbnew/dialogs/dialog_design_rules.cpp index 8618816c8c..20a5643501 100644 --- a/pcbnew/dialogs/dialog_design_rules.cpp +++ b/pcbnew/dialogs/dialog_design_rules.cpp @@ -931,7 +931,7 @@ bool DIALOG_DESIGN_RULES::TestDataValidity( wxString* aErrorMsg ) if( viadia < minViaDia ) { result = false; - msg.Printf( _( "%s: Via Diameter < Minimun Via Diameter
" ), + msg.Printf( _( "%s: Via Diameter < Minimum Via Diameter
" ), GetChars( m_grid->GetRowLabelValue( row ) ) ); errorMsg += msg; } diff --git a/pcbnew/dialogs/dialog_netlist_fbp.cpp b/pcbnew/dialogs/dialog_netlist_fbp.cpp index 343895cb14..461a6671f2 100644 --- a/pcbnew/dialogs/dialog_netlist_fbp.cpp +++ b/pcbnew/dialogs/dialog_netlist_fbp.cpp @@ -96,12 +96,12 @@ DIALOG_NETLIST_FBP::DIALOG_NETLIST_FBP( wxWindow* parent, wxWindowID id, const w bRightSizerButtons->Add( m_buttonClose, 0, wxALL|wxEXPAND, 5 ); m_buttonFPTest = new wxButton( this, ID_TEST_NETLIST, _("Test Footprints"), wxDefaultPosition, wxDefaultSize, 0 ); - m_buttonFPTest->SetToolTip( _("Read the current neltist file and list missing and extra footprints") ); + m_buttonFPTest->SetToolTip( _("Read the current netlist file and list missing and extra footprints") ); bRightSizerButtons->Add( m_buttonFPTest, 0, wxEXPAND|wxALL, 5 ); m_buttonRebild = new wxButton( this, ID_COMPILE_RATSNEST, _("Rebuild Board Connectivity"), wxDefaultPosition, wxDefaultSize, 0 ); - m_buttonRebild->SetToolTip( _("Rebuild the full ratsnest (usefull after a manual pad netname edition)") ); + m_buttonRebild->SetToolTip( _("Rebuild the full ratsnest (useful after a manual pad netname edition)") ); bRightSizerButtons->Add( m_buttonRebild, 0, wxEXPAND|wxALL, 5 ); diff --git a/pcbnew/dialogs/dialog_netlist_fbp.fbp b/pcbnew/dialogs/dialog_netlist_fbp.fbp index 7240e07b0b..deb2c433fe 100644 --- a/pcbnew/dialogs/dialog_netlist_fbp.fbp +++ b/pcbnew/dialogs/dialog_netlist_fbp.fbp @@ -835,7 +835,7 @@ 0 - Read the current neltist file and list missing and extra footprints + Read the current netlist file and list missing and extra footprints wxFILTER_NONE wxDefaultValidator @@ -923,7 +923,7 @@ 0 - Rebuild the full ratsnest (usefull after a manual pad netname edition) + Rebuild the full ratsnest (useful after a manual pad netname edition) wxFILTER_NONE wxDefaultValidator diff --git a/pcbnew/router/router_tool.cpp b/pcbnew/router/router_tool.cpp index 0884e72601..782145b4e4 100644 --- a/pcbnew/router/router_tool.cpp +++ b/pcbnew/router/router_tool.cpp @@ -99,7 +99,7 @@ static TOOL_ACTION ACT_CustomTrackWidth( "pcbnew.InteractiveRouter.CustomTrackVi static TOOL_ACTION ACT_SwitchPosture( "pcbnew.InteractiveRouter.SwitchPosture", AS_CONTEXT, TOOL_ACTION::LegacyHotKey( HK_SWITCH_TRACK_POSTURE ), _( "Switch Track Posture" ), - _( "Switches posture of the currenly routed track." ), + _( "Switches posture of the currently routed track." ), change_entry_orient_xpm ); static TOOL_ACTION ACT_SetDpDimensions( "pcbnew.InteractiveRouter.SetDpDimensions", diff --git a/pcbnew/zones_by_polygon.cpp b/pcbnew/zones_by_polygon.cpp index cdbc1df08b..ddb5f48452 100644 --- a/pcbnew/zones_by_polygon.cpp +++ b/pcbnew/zones_by_polygon.cpp @@ -741,7 +741,7 @@ bool PCB_EDIT_FRAME::End_Zone( wxDC* DC ) if( g_Drc_On && m_drc->Drc( zone, icorner ) == BAD_DRC ) // we can't validate the closing edge { DisplayError( this, - _( "DRC error: closing this area creates a drc error with an other area" ) ); + _( "DRC error: closing this area creates a DRC error with an other area" ) ); m_canvas->MoveCursorToCrossHair(); return false; }