Correct multiple UI spelling errors
This commit is contained in:
parent
e46f706d4b
commit
db54f3e7a7
|
@ -135,10 +135,10 @@ void EDA_3D_FRAME::CreateMenuBar()
|
||||||
menuBar->Append( fileMenu, _( "&File" ) );
|
menuBar->Append( fileMenu, _( "&File" ) );
|
||||||
|
|
||||||
AddMenuItem( fileMenu, ID_MENU_SCREENCOPY_PNG,
|
AddMenuItem( fileMenu, ID_MENU_SCREENCOPY_PNG,
|
||||||
_( "Create Image (png format)" ),
|
_( "Create Image (PNG format)" ),
|
||||||
KiBitmap( export_xpm ) );
|
KiBitmap( export_xpm ) );
|
||||||
AddMenuItem( fileMenu, ID_MENU_SCREENCOPY_JPEG,
|
AddMenuItem( fileMenu, ID_MENU_SCREENCOPY_JPEG,
|
||||||
_( "Create Image (jpeg format)" ),
|
_( "Create Image (JPEG format)" ),
|
||||||
KiBitmap( export_xpm ) );
|
KiBitmap( export_xpm ) );
|
||||||
|
|
||||||
fileMenu->AppendSeparator();
|
fileMenu->AppendSeparator();
|
||||||
|
|
|
@ -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 );
|
brightSizer->Add( m_buttonAdd, 0, wxALL|wxEXPAND, 5 );
|
||||||
|
|
||||||
m_buttonDelete = new wxButton( this, wxID_ANY, _("Delete"), wxDefaultPosition, wxDefaultSize, 0 );
|
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 );
|
brightSizer->Add( m_buttonDelete, 0, wxBOTTOM|wxLEFT|wxRIGHT|wxEXPAND, 5 );
|
||||||
|
|
||||||
|
|
|
@ -407,7 +407,7 @@
|
||||||
<property name="style"></property>
|
<property name="style"></property>
|
||||||
<property name="subclass"></property>
|
<property name="subclass"></property>
|
||||||
<property name="toolbar_pane">0</property>
|
<property name="toolbar_pane">0</property>
|
||||||
<property name="tooltip">Remove the selectect entry from the table.</property>
|
<property name="tooltip">Remove the selected entry from the table.</property>
|
||||||
<property name="validator_data_type"></property>
|
<property name="validator_data_type"></property>
|
||||||
<property name="validator_style">wxFILTER_NONE</property>
|
<property name="validator_style">wxFILTER_NONE</property>
|
||||||
<property name="validator_type">wxDefaultValidator</property>
|
<property name="validator_type">wxDefaultValidator</property>
|
||||||
|
|
|
@ -40,7 +40,7 @@ DIALOG_FOOTPRINTS_DISPLAY_OPTIONS_BASE::DIALOG_FOOTPRINTS_DISPLAY_OPTIONS_BASE(
|
||||||
wxStaticBoxSizer* sbSizerViewOpt;
|
wxStaticBoxSizer* sbSizerViewOpt;
|
||||||
sbSizerViewOpt = new wxStaticBoxSizer( new wxStaticBox( this, wxID_ANY, _("Pan and Zoom") ), wxVERTICAL );
|
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") );
|
m_IsZoomNoCenter->SetToolTip( _("Keep the cursor at its current location when zooming") );
|
||||||
|
|
||||||
sbSizerViewOpt->Add( m_IsZoomNoCenter, 0, wxEXPAND|wxALL, 5 );
|
sbSizerViewOpt->Add( m_IsZoomNoCenter, 0, wxEXPAND|wxALL, 5 );
|
||||||
|
|
|
@ -513,7 +513,7 @@
|
||||||
<property name="gripper">0</property>
|
<property name="gripper">0</property>
|
||||||
<property name="hidden">0</property>
|
<property name="hidden">0</property>
|
||||||
<property name="id">wxID_ANY</property>
|
<property name="id">wxID_ANY</property>
|
||||||
<property name="label">Do not center and warp cusor on zoom</property>
|
<property name="label">Do not center and warp cursor on zoom</property>
|
||||||
<property name="max_size"></property>
|
<property name="max_size"></property>
|
||||||
<property name="maximize_button">0</property>
|
<property name="maximize_button">0</property>
|
||||||
<property name="maximum_size"></property>
|
<property name="maximum_size"></property>
|
||||||
|
|
|
@ -182,7 +182,7 @@ DIALOG_EDIT_COMPONENT_IN_SCHEMATIC_FBP::DIALOG_EDIT_COMPONENT_IN_SCHEMATIC_FBP(
|
||||||
int m_StyleRadioBoxNChoices = sizeof( m_StyleRadioBoxChoices ) / sizeof( wxString );
|
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 = new wxRadioBox( fieldsSizer->GetStaticBox(), wxID_ANY, _("Style:"), wxDefaultPosition, wxDefaultSize, m_StyleRadioBoxNChoices, m_StyleRadioBoxChoices, 1, wxRA_SPECIFY_COLS );
|
||||||
m_StyleRadioBox->SetSelection( 3 );
|
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 );
|
bSizerStyle->Add( m_StyleRadioBox, 1, wxEXPAND|wxALL, 5 );
|
||||||
|
|
||||||
|
|
|
@ -2217,7 +2217,7 @@
|
||||||
<property name="style">wxRA_SPECIFY_COLS</property>
|
<property name="style">wxRA_SPECIFY_COLS</property>
|
||||||
<property name="subclass"></property>
|
<property name="subclass"></property>
|
||||||
<property name="toolbar_pane">0</property>
|
<property name="toolbar_pane">0</property>
|
||||||
<property name="tooltip">The style of the currently selected field's text in the schemati</property>
|
<property name="tooltip">The style of the currently selected field's text in the schematic</property>
|
||||||
<property name="validator_data_type"></property>
|
<property name="validator_data_type"></property>
|
||||||
<property name="validator_style">wxFILTER_NONE</property>
|
<property name="validator_style">wxFILTER_NONE</property>
|
||||||
<property name="validator_type">wxDefaultValidator</property>
|
<property name="validator_type">wxDefaultValidator</property>
|
||||||
|
|
|
@ -77,7 +77,7 @@ void KICAD_MANAGER_FRAME::OnSelectPreferredPdfBrowser( wxCommandEvent& event )
|
||||||
Pgm().ReadPdfBrowserInfos();
|
Pgm().ReadPdfBrowserInfos();
|
||||||
wxFileName fn = Pgm().GetPdfBrowserName();
|
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,
|
fn.GetFullPath(), wildcard,
|
||||||
wxFD_OPEN | wxFD_FILE_MUST_EXIST );
|
wxFD_OPEN | wxFD_FILE_MUST_EXIST );
|
||||||
|
|
||||||
|
|
|
@ -118,7 +118,7 @@ void PL_EDITOR_FRAME::ReCreateMenuBar()
|
||||||
AddMenuItem( preferencesMenu,
|
AddMenuItem( preferencesMenu,
|
||||||
ID_MENU_SWITCH_BGCOLOR,
|
ID_MENU_SWITCH_BGCOLOR,
|
||||||
GetDrawBgColor() == WHITE ?
|
GetDrawBgColor() == WHITE ?
|
||||||
_( "&BackGround Black" ) : _( "&BackGround White" ),
|
_( "&Background Black" ) : _( "&Background White" ),
|
||||||
wxEmptyString, KiBitmap( palette_xpm ) );
|
wxEmptyString, KiBitmap( palette_xpm ) );
|
||||||
|
|
||||||
AddMenuItem( preferencesMenu,
|
AddMenuItem( preferencesMenu,
|
||||||
|
|
|
@ -55,8 +55,8 @@ void PL_EDITOR_FRAME::Process_Config( wxCommandEvent& event )
|
||||||
|
|
||||||
GetMenuBar()->SetLabel( ID_MENU_SWITCH_BGCOLOR,
|
GetMenuBar()->SetLabel( ID_MENU_SWITCH_BGCOLOR,
|
||||||
GetDrawBgColor() == WHITE ?
|
GetDrawBgColor() == WHITE ?
|
||||||
_( "&BackGround Black" ) :
|
_( "&Background Black" ) :
|
||||||
_( "&BackGround White" ) );
|
_( "&Background White" ) );
|
||||||
m_canvas->Refresh();
|
m_canvas->Refresh();
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
|
|
@ -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 = new wxStaticText( m_ExportableSetupSizer->GetStaticBox(), wxID_ANY, _("Minimum width"), wxDefaultPosition, wxDefaultSize, 0 );
|
||||||
m_MinThicknessValueTitle->Wrap( -1 );
|
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 );
|
bSizerSettings->Add( m_MinThicknessValueTitle, 0, wxRIGHT|wxLEFT, 5 );
|
||||||
|
|
||||||
|
|
|
@ -1356,7 +1356,7 @@
|
||||||
<property name="style"></property>
|
<property name="style"></property>
|
||||||
<property name="subclass"></property>
|
<property name="subclass"></property>
|
||||||
<property name="toolbar_pane">0</property>
|
<property name="toolbar_pane">0</property>
|
||||||
<property name="tooltip">Minimun thickness of filled areas.</property>
|
<property name="tooltip">Minimum thickness of filled areas.</property>
|
||||||
<property name="window_extra_style"></property>
|
<property name="window_extra_style"></property>
|
||||||
<property name="window_name"></property>
|
<property name="window_name"></property>
|
||||||
<property name="window_style"></property>
|
<property name="window_style"></property>
|
||||||
|
|
|
@ -931,7 +931,7 @@ bool DIALOG_DESIGN_RULES::TestDataValidity( wxString* aErrorMsg )
|
||||||
if( viadia < minViaDia )
|
if( viadia < minViaDia )
|
||||||
{
|
{
|
||||||
result = false;
|
result = false;
|
||||||
msg.Printf( _( "%s: <b>Via Diameter</b> < <b>Minimun Via Diameter</b><br>" ),
|
msg.Printf( _( "%s: <b>Via Diameter</b> < <b>Minimum Via Diameter</b><br>" ),
|
||||||
GetChars( m_grid->GetRowLabelValue( row ) ) );
|
GetChars( m_grid->GetRowLabelValue( row ) ) );
|
||||||
errorMsg += msg;
|
errorMsg += msg;
|
||||||
}
|
}
|
||||||
|
|
|
@ -96,12 +96,12 @@ DIALOG_NETLIST_FBP::DIALOG_NETLIST_FBP( wxWindow* parent, wxWindowID id, const w
|
||||||
bRightSizerButtons->Add( m_buttonClose, 0, wxALL|wxEXPAND, 5 );
|
bRightSizerButtons->Add( m_buttonClose, 0, wxALL|wxEXPAND, 5 );
|
||||||
|
|
||||||
m_buttonFPTest = new wxButton( this, ID_TEST_NETLIST, _("Test Footprints"), wxDefaultPosition, wxDefaultSize, 0 );
|
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 );
|
bRightSizerButtons->Add( m_buttonFPTest, 0, wxEXPAND|wxALL, 5 );
|
||||||
|
|
||||||
m_buttonRebild = new wxButton( this, ID_COMPILE_RATSNEST, _("Rebuild Board Connectivity"), wxDefaultPosition, wxDefaultSize, 0 );
|
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 );
|
bRightSizerButtons->Add( m_buttonRebild, 0, wxEXPAND|wxALL, 5 );
|
||||||
|
|
||||||
|
|
|
@ -835,7 +835,7 @@
|
||||||
<property name="style"></property>
|
<property name="style"></property>
|
||||||
<property name="subclass"></property>
|
<property name="subclass"></property>
|
||||||
<property name="toolbar_pane">0</property>
|
<property name="toolbar_pane">0</property>
|
||||||
<property name="tooltip">Read the current neltist file and list missing and extra footprints</property>
|
<property name="tooltip">Read the current netlist file and list missing and extra footprints</property>
|
||||||
<property name="validator_data_type"></property>
|
<property name="validator_data_type"></property>
|
||||||
<property name="validator_style">wxFILTER_NONE</property>
|
<property name="validator_style">wxFILTER_NONE</property>
|
||||||
<property name="validator_type">wxDefaultValidator</property>
|
<property name="validator_type">wxDefaultValidator</property>
|
||||||
|
@ -923,7 +923,7 @@
|
||||||
<property name="style"></property>
|
<property name="style"></property>
|
||||||
<property name="subclass"></property>
|
<property name="subclass"></property>
|
||||||
<property name="toolbar_pane">0</property>
|
<property name="toolbar_pane">0</property>
|
||||||
<property name="tooltip">Rebuild the full ratsnest (usefull after a manual pad netname edition)</property>
|
<property name="tooltip">Rebuild the full ratsnest (useful after a manual pad netname edition)</property>
|
||||||
<property name="validator_data_type"></property>
|
<property name="validator_data_type"></property>
|
||||||
<property name="validator_style">wxFILTER_NONE</property>
|
<property name="validator_style">wxFILTER_NONE</property>
|
||||||
<property name="validator_type">wxDefaultValidator</property>
|
<property name="validator_type">wxDefaultValidator</property>
|
||||||
|
|
|
@ -99,7 +99,7 @@ static TOOL_ACTION ACT_CustomTrackWidth( "pcbnew.InteractiveRouter.CustomTrackVi
|
||||||
static TOOL_ACTION ACT_SwitchPosture( "pcbnew.InteractiveRouter.SwitchPosture", AS_CONTEXT,
|
static TOOL_ACTION ACT_SwitchPosture( "pcbnew.InteractiveRouter.SwitchPosture", AS_CONTEXT,
|
||||||
TOOL_ACTION::LegacyHotKey( HK_SWITCH_TRACK_POSTURE ),
|
TOOL_ACTION::LegacyHotKey( HK_SWITCH_TRACK_POSTURE ),
|
||||||
_( "Switch Track Posture" ),
|
_( "Switch Track Posture" ),
|
||||||
_( "Switches posture of the currenly routed track." ),
|
_( "Switches posture of the currently routed track." ),
|
||||||
change_entry_orient_xpm );
|
change_entry_orient_xpm );
|
||||||
|
|
||||||
static TOOL_ACTION ACT_SetDpDimensions( "pcbnew.InteractiveRouter.SetDpDimensions",
|
static TOOL_ACTION ACT_SetDpDimensions( "pcbnew.InteractiveRouter.SetDpDimensions",
|
||||||
|
|
|
@ -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
|
if( g_Drc_On && m_drc->Drc( zone, icorner ) == BAD_DRC ) // we can't validate the closing edge
|
||||||
{
|
{
|
||||||
DisplayError( this,
|
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();
|
m_canvas->MoveCursorToCrossHair();
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue