7
mirror of https://gitlab.com/kicad/code/kicad.git synced 2025-04-11 00:30:01 +00:00

Fix spelling.

This commit is contained in:
Jeff Young 2024-07-03 17:20:04 +01:00
parent a0bc8283d3
commit b719f9e89e
4 changed files with 40 additions and 40 deletions

View File

@ -155,8 +155,8 @@ public:
}
/**
* Gets the SCH_SHEET_PATH of the auxillary item causing this ERC violation
* @return SCH_SHEET_PATH containing the auxillary item
* Gets the SCH_SHEET_PATH of the auxiliary item causing this ERC violation
* @return SCH_SHEET_PATH containing the auxiliary item
*/
SCH_SHEET_PATH& GetAuxItemSheetPath()
{

View File

@ -635,7 +635,7 @@ const char* LAYER::ShowType( LAYER_T aType )
case LT_POWER: return "power";
case LT_MIXED: return "mixed";
case LT_JUMPER: return "jumper";
case LT_AUX: return "auxillary";
case LT_AUX: return "auxiliary";
case LT_FRONT: return "front";
case LT_BACK: return "back";
}
@ -648,7 +648,7 @@ LAYER_T LAYER::ParseType( const char* aType )
else if( strcmp( aType, "power" ) == 0 ) return LT_POWER;
else if( strcmp( aType, "mixed" ) == 0 ) return LT_MIXED;
else if( strcmp( aType, "jumper" ) == 0 ) return LT_JUMPER;
else if( strcmp( aType, "auxillary" ) == 0 ) return LT_AUX;
else if( strcmp( aType, "auxiliary" ) == 0 ) return LT_AUX;
else if( strcmp( aType, "front" ) == 0 ) return LT_FRONT;
else if( strcmp( aType, "back" ) == 0 ) return LT_BACK;
else return LT_UNDEFINED;

View File

@ -719,11 +719,11 @@ PANEL_SETUP_LAYERS_BASE::PANEL_SETUP_LAYERS_BASE( wxWindow* parent, wxWindowID i
m_User1Name = new wxTextCtrl( m_LayersListPanel, wxID_ANY, _("User1"), wxDefaultPosition, wxDefaultSize, 0 );
m_LayerListFlexGridSizer->Add( m_User1Name, 0, wxEXPAND|wxRIGHT, 5 );
wxString m_User1TypeChoices[] = { _("Auxillary"), _(" Off-board, front"), _("Off-board, back") };
wxString m_User1TypeChoices[] = { _("Auxiliary"), _(" Off-board, front"), _("Off-board, back") };
int m_User1TypeNChoices = sizeof( m_User1TypeChoices ) / sizeof( wxString );
m_User1Type = new wxChoice( m_LayersListPanel, ID_BACKCHOICE, wxDefaultPosition, wxDefaultSize, m_User1TypeNChoices, m_User1TypeChoices, 0 );
m_User1Type->SetSelection( 0 );
m_User1Type->SetToolTip( _("Auxillary layers do not flip with board side, while back and front layers do.") );
m_User1Type->SetToolTip( _("Auxiliary layers do not flip with board side, while back and front layers do.") );
m_LayerListFlexGridSizer->Add( m_User1Type, 0, wxRIGHT|wxLEFT|wxEXPAND, 5 );
@ -733,11 +733,11 @@ PANEL_SETUP_LAYERS_BASE::PANEL_SETUP_LAYERS_BASE( wxWindow* parent, wxWindowID i
m_User2Name = new wxTextCtrl( m_LayersListPanel, wxID_ANY, _("User2"), wxDefaultPosition, wxDefaultSize, 0 );
m_LayerListFlexGridSizer->Add( m_User2Name, 0, wxEXPAND|wxRIGHT, 5 );
wxString m_User2TypeChoices[] = { _("Auxillary"), _(" Off-board, front"), _("Off-board, back") };
wxString m_User2TypeChoices[] = { _("Auxiliary"), _(" Off-board, front"), _("Off-board, back") };
int m_User2TypeNChoices = sizeof( m_User2TypeChoices ) / sizeof( wxString );
m_User2Type = new wxChoice( m_LayersListPanel, ID_BACKCHOICE, wxDefaultPosition, wxDefaultSize, m_User2TypeNChoices, m_User2TypeChoices, 0 );
m_User2Type->SetSelection( 0 );
m_User2Type->SetToolTip( _("Auxillary layers do not flip with board side, while back and front layers do.") );
m_User2Type->SetToolTip( _("Auxiliary layers do not flip with board side, while back and front layers do.") );
m_LayerListFlexGridSizer->Add( m_User2Type, 0, wxRIGHT|wxLEFT|wxEXPAND, 5 );
@ -747,11 +747,11 @@ PANEL_SETUP_LAYERS_BASE::PANEL_SETUP_LAYERS_BASE( wxWindow* parent, wxWindowID i
m_User3Name = new wxTextCtrl( m_LayersListPanel, wxID_ANY, _("User3"), wxDefaultPosition, wxDefaultSize, 0 );
m_LayerListFlexGridSizer->Add( m_User3Name, 0, wxEXPAND|wxRIGHT, 5 );
wxString m_User3TypeChoices[] = { _("Auxillary"), _(" Off-board, front"), _("Off-board, back") };
wxString m_User3TypeChoices[] = { _("Auxiliary"), _(" Off-board, front"), _("Off-board, back") };
int m_User3TypeNChoices = sizeof( m_User3TypeChoices ) / sizeof( wxString );
m_User3Type = new wxChoice( m_LayersListPanel, ID_BACKCHOICE, wxDefaultPosition, wxDefaultSize, m_User3TypeNChoices, m_User3TypeChoices, 0 );
m_User3Type->SetSelection( 0 );
m_User3Type->SetToolTip( _("Auxillary layers do not flip with board side, while back and front layers do.") );
m_User3Type->SetToolTip( _("Auxiliary layers do not flip with board side, while back and front layers do.") );
m_LayerListFlexGridSizer->Add( m_User3Type, 0, wxEXPAND|wxRIGHT|wxLEFT, 5 );
@ -761,11 +761,11 @@ PANEL_SETUP_LAYERS_BASE::PANEL_SETUP_LAYERS_BASE( wxWindow* parent, wxWindowID i
m_User4Name = new wxTextCtrl( m_LayersListPanel, wxID_ANY, _("User4"), wxDefaultPosition, wxDefaultSize, 0 );
m_LayerListFlexGridSizer->Add( m_User4Name, 0, wxEXPAND|wxRIGHT, 5 );
wxString m_User4TypeChoices[] = { _("Auxillary"), _(" Off-board, front"), _("Off-board, back") };
wxString m_User4TypeChoices[] = { _("Auxiliary"), _(" Off-board, front"), _("Off-board, back") };
int m_User4TypeNChoices = sizeof( m_User4TypeChoices ) / sizeof( wxString );
m_User4Type = new wxChoice( m_LayersListPanel, ID_BACKCHOICE, wxDefaultPosition, wxDefaultSize, m_User4TypeNChoices, m_User4TypeChoices, 0 );
m_User4Type->SetSelection( 0 );
m_User4Type->SetToolTip( _("Auxillary layers do not flip with board side, while back and front layers do.") );
m_User4Type->SetToolTip( _("Auxiliary layers do not flip with board side, while back and front layers do.") );
m_LayerListFlexGridSizer->Add( m_User4Type, 0, wxRIGHT|wxLEFT|wxEXPAND, 5 );
@ -775,11 +775,11 @@ PANEL_SETUP_LAYERS_BASE::PANEL_SETUP_LAYERS_BASE( wxWindow* parent, wxWindowID i
m_User5Name = new wxTextCtrl( m_LayersListPanel, wxID_ANY, _("User5"), wxDefaultPosition, wxDefaultSize, 0 );
m_LayerListFlexGridSizer->Add( m_User5Name, 0, wxEXPAND|wxRIGHT, 5 );
wxString m_User5TypeChoices[] = { _("Auxillary"), _(" Off-board, front"), _("Off-board, back") };
wxString m_User5TypeChoices[] = { _("Auxiliary"), _(" Off-board, front"), _("Off-board, back") };
int m_User5TypeNChoices = sizeof( m_User5TypeChoices ) / sizeof( wxString );
m_User5Type = new wxChoice( m_LayersListPanel, ID_BACKCHOICE, wxDefaultPosition, wxDefaultSize, m_User5TypeNChoices, m_User5TypeChoices, 0 );
m_User5Type->SetSelection( 0 );
m_User5Type->SetToolTip( _("Auxillary layers do not flip with board side, while back and front layers do.") );
m_User5Type->SetToolTip( _("Auxiliary layers do not flip with board side, while back and front layers do.") );
m_LayerListFlexGridSizer->Add( m_User5Type, 0, wxRIGHT|wxLEFT|wxEXPAND, 5 );
@ -789,11 +789,11 @@ PANEL_SETUP_LAYERS_BASE::PANEL_SETUP_LAYERS_BASE( wxWindow* parent, wxWindowID i
m_User6Name = new wxTextCtrl( m_LayersListPanel, wxID_ANY, _("User6"), wxDefaultPosition, wxDefaultSize, 0 );
m_LayerListFlexGridSizer->Add( m_User6Name, 0, wxEXPAND|wxRIGHT, 5 );
wxString m_User6TypeChoices[] = { _("Auxillary"), _(" Off-board, front"), _("Off-board, back") };
wxString m_User6TypeChoices[] = { _("Auxiliary"), _(" Off-board, front"), _("Off-board, back") };
int m_User6TypeNChoices = sizeof( m_User6TypeChoices ) / sizeof( wxString );
m_User6Type = new wxChoice( m_LayersListPanel, ID_BACKCHOICE, wxDefaultPosition, wxDefaultSize, m_User6TypeNChoices, m_User6TypeChoices, 0 );
m_User6Type->SetSelection( 0 );
m_User6Type->SetToolTip( _("Auxillary layers do not flip with board side, while back and front layers do.") );
m_User6Type->SetToolTip( _("Auxiliary layers do not flip with board side, while back and front layers do.") );
m_LayerListFlexGridSizer->Add( m_User6Type, 0, wxRIGHT|wxLEFT|wxEXPAND, 5 );
@ -803,11 +803,11 @@ PANEL_SETUP_LAYERS_BASE::PANEL_SETUP_LAYERS_BASE( wxWindow* parent, wxWindowID i
m_User7Name = new wxTextCtrl( m_LayersListPanel, wxID_ANY, _("User7"), wxDefaultPosition, wxDefaultSize, 0 );
m_LayerListFlexGridSizer->Add( m_User7Name, 0, wxEXPAND|wxRIGHT, 5 );
wxString m_User7TypeChoices[] = { _("Auxillary"), _(" Off-board, front"), _("Off-board, back") };
wxString m_User7TypeChoices[] = { _("Auxiliary"), _(" Off-board, front"), _("Off-board, back") };
int m_User7TypeNChoices = sizeof( m_User7TypeChoices ) / sizeof( wxString );
m_User7Type = new wxChoice( m_LayersListPanel, ID_BACKCHOICE, wxDefaultPosition, wxDefaultSize, m_User7TypeNChoices, m_User7TypeChoices, 0 );
m_User7Type->SetSelection( 0 );
m_User7Type->SetToolTip( _("Auxillary layers do not flip with board side, while back and front layers do.") );
m_User7Type->SetToolTip( _("Auxiliary layers do not flip with board side, while back and front layers do.") );
m_LayerListFlexGridSizer->Add( m_User7Type, 0, wxRIGHT|wxLEFT|wxEXPAND, 5 );
@ -817,11 +817,11 @@ PANEL_SETUP_LAYERS_BASE::PANEL_SETUP_LAYERS_BASE( wxWindow* parent, wxWindowID i
m_User8Name = new wxTextCtrl( m_LayersListPanel, wxID_ANY, _("User8"), wxDefaultPosition, wxDefaultSize, 0 );
m_LayerListFlexGridSizer->Add( m_User8Name, 0, wxEXPAND|wxRIGHT, 5 );
wxString m_User8TypeChoices[] = { _("Auxillary"), _(" Off-board, front"), _("Off-board, back") };
wxString m_User8TypeChoices[] = { _("Auxiliary"), _(" Off-board, front"), _("Off-board, back") };
int m_User8TypeNChoices = sizeof( m_User8TypeChoices ) / sizeof( wxString );
m_User8Type = new wxChoice( m_LayersListPanel, ID_BACKCHOICE, wxDefaultPosition, wxDefaultSize, m_User8TypeNChoices, m_User8TypeChoices, 0 );
m_User8Type->SetSelection( 0 );
m_User8Type->SetToolTip( _("Auxillary layers do not flip with board side, while back and front layers do.") );
m_User8Type->SetToolTip( _("Auxiliary layers do not flip with board side, while back and front layers do.") );
m_LayerListFlexGridSizer->Add( m_User8Type, 0, wxRIGHT|wxLEFT|wxEXPAND, 5 );
@ -831,11 +831,11 @@ PANEL_SETUP_LAYERS_BASE::PANEL_SETUP_LAYERS_BASE( wxWindow* parent, wxWindowID i
m_User9Name = new wxTextCtrl( m_LayersListPanel, wxID_ANY, _("User9"), wxDefaultPosition, wxDefaultSize, 0 );
m_LayerListFlexGridSizer->Add( m_User9Name, 0, wxEXPAND|wxRIGHT, 5 );
wxString m_User9TypeChoices[] = { _("Auxillary"), _(" Off-board, front"), _("Off-board, back") };
wxString m_User9TypeChoices[] = { _("Auxiliary"), _(" Off-board, front"), _("Off-board, back") };
int m_User9TypeNChoices = sizeof( m_User9TypeChoices ) / sizeof( wxString );
m_User9Type = new wxChoice( m_LayersListPanel, ID_BACKCHOICE, wxDefaultPosition, wxDefaultSize, m_User9TypeNChoices, m_User9TypeChoices, 0 );
m_User9Type->SetSelection( 0 );
m_User9Type->SetToolTip( _("Auxillary layers do not flip with board side, while back and front layers do.") );
m_User9Type->SetToolTip( _("Auxiliary layers do not flip with board side, while back and front layers do.") );
m_LayerListFlexGridSizer->Add( m_User9Type, 0, wxEXPAND|wxRIGHT|wxLEFT, 5 );

View File

@ -10049,7 +10049,7 @@
<property name="caption"></property>
<property name="caption_visible">1</property>
<property name="center_pane">0</property>
<property name="choices">&quot;Auxillary&quot; &quot; Off-board, front&quot; &quot;Off-board, back&quot;</property>
<property name="choices">&quot;Auxiliary&quot; &quot; Off-board, front&quot; &quot;Off-board, back&quot;</property>
<property name="close_button">1</property>
<property name="context_help"></property>
<property name="context_menu">1</property>
@ -10086,7 +10086,7 @@
<property name="style"></property>
<property name="subclass"></property>
<property name="toolbar_pane">0</property>
<property name="tooltip">Auxillary layers do not flip with board side, while back and front layers do.</property>
<property name="tooltip">Auxiliary layers do not flip with board side, while back and front layers do.</property>
<property name="validator_data_type"></property>
<property name="validator_style">wxFILTER_NONE</property>
<property name="validator_type">wxDefaultValidator</property>
@ -10245,7 +10245,7 @@
<property name="caption"></property>
<property name="caption_visible">1</property>
<property name="center_pane">0</property>
<property name="choices">&quot;Auxillary&quot; &quot; Off-board, front&quot; &quot;Off-board, back&quot;</property>
<property name="choices">&quot;Auxiliary&quot; &quot; Off-board, front&quot; &quot;Off-board, back&quot;</property>
<property name="close_button">1</property>
<property name="context_help"></property>
<property name="context_menu">1</property>
@ -10282,7 +10282,7 @@
<property name="style"></property>
<property name="subclass"></property>
<property name="toolbar_pane">0</property>
<property name="tooltip">Auxillary layers do not flip with board side, while back and front layers do.</property>
<property name="tooltip">Auxiliary layers do not flip with board side, while back and front layers do.</property>
<property name="validator_data_type"></property>
<property name="validator_style">wxFILTER_NONE</property>
<property name="validator_type">wxDefaultValidator</property>
@ -10441,7 +10441,7 @@
<property name="caption"></property>
<property name="caption_visible">1</property>
<property name="center_pane">0</property>
<property name="choices">&quot;Auxillary&quot; &quot; Off-board, front&quot; &quot;Off-board, back&quot;</property>
<property name="choices">&quot;Auxiliary&quot; &quot; Off-board, front&quot; &quot;Off-board, back&quot;</property>
<property name="close_button">1</property>
<property name="context_help"></property>
<property name="context_menu">1</property>
@ -10478,7 +10478,7 @@
<property name="style"></property>
<property name="subclass"></property>
<property name="toolbar_pane">0</property>
<property name="tooltip">Auxillary layers do not flip with board side, while back and front layers do.</property>
<property name="tooltip">Auxiliary layers do not flip with board side, while back and front layers do.</property>
<property name="validator_data_type"></property>
<property name="validator_style">wxFILTER_NONE</property>
<property name="validator_type">wxDefaultValidator</property>
@ -10637,7 +10637,7 @@
<property name="caption"></property>
<property name="caption_visible">1</property>
<property name="center_pane">0</property>
<property name="choices">&quot;Auxillary&quot; &quot; Off-board, front&quot; &quot;Off-board, back&quot;</property>
<property name="choices">&quot;Auxiliary&quot; &quot; Off-board, front&quot; &quot;Off-board, back&quot;</property>
<property name="close_button">1</property>
<property name="context_help"></property>
<property name="context_menu">1</property>
@ -10674,7 +10674,7 @@
<property name="style"></property>
<property name="subclass"></property>
<property name="toolbar_pane">0</property>
<property name="tooltip">Auxillary layers do not flip with board side, while back and front layers do.</property>
<property name="tooltip">Auxiliary layers do not flip with board side, while back and front layers do.</property>
<property name="validator_data_type"></property>
<property name="validator_style">wxFILTER_NONE</property>
<property name="validator_type">wxDefaultValidator</property>
@ -10833,7 +10833,7 @@
<property name="caption"></property>
<property name="caption_visible">1</property>
<property name="center_pane">0</property>
<property name="choices">&quot;Auxillary&quot; &quot; Off-board, front&quot; &quot;Off-board, back&quot;</property>
<property name="choices">&quot;Auxiliary&quot; &quot; Off-board, front&quot; &quot;Off-board, back&quot;</property>
<property name="close_button">1</property>
<property name="context_help"></property>
<property name="context_menu">1</property>
@ -10870,7 +10870,7 @@
<property name="style"></property>
<property name="subclass"></property>
<property name="toolbar_pane">0</property>
<property name="tooltip">Auxillary layers do not flip with board side, while back and front layers do.</property>
<property name="tooltip">Auxiliary layers do not flip with board side, while back and front layers do.</property>
<property name="validator_data_type"></property>
<property name="validator_style">wxFILTER_NONE</property>
<property name="validator_type">wxDefaultValidator</property>
@ -11029,7 +11029,7 @@
<property name="caption"></property>
<property name="caption_visible">1</property>
<property name="center_pane">0</property>
<property name="choices">&quot;Auxillary&quot; &quot; Off-board, front&quot; &quot;Off-board, back&quot;</property>
<property name="choices">&quot;Auxiliary&quot; &quot; Off-board, front&quot; &quot;Off-board, back&quot;</property>
<property name="close_button">1</property>
<property name="context_help"></property>
<property name="context_menu">1</property>
@ -11066,7 +11066,7 @@
<property name="style"></property>
<property name="subclass"></property>
<property name="toolbar_pane">0</property>
<property name="tooltip">Auxillary layers do not flip with board side, while back and front layers do.</property>
<property name="tooltip">Auxiliary layers do not flip with board side, while back and front layers do.</property>
<property name="validator_data_type"></property>
<property name="validator_style">wxFILTER_NONE</property>
<property name="validator_type">wxDefaultValidator</property>
@ -11225,7 +11225,7 @@
<property name="caption"></property>
<property name="caption_visible">1</property>
<property name="center_pane">0</property>
<property name="choices">&quot;Auxillary&quot; &quot; Off-board, front&quot; &quot;Off-board, back&quot;</property>
<property name="choices">&quot;Auxiliary&quot; &quot; Off-board, front&quot; &quot;Off-board, back&quot;</property>
<property name="close_button">1</property>
<property name="context_help"></property>
<property name="context_menu">1</property>
@ -11262,7 +11262,7 @@
<property name="style"></property>
<property name="subclass"></property>
<property name="toolbar_pane">0</property>
<property name="tooltip">Auxillary layers do not flip with board side, while back and front layers do.</property>
<property name="tooltip">Auxiliary layers do not flip with board side, while back and front layers do.</property>
<property name="validator_data_type"></property>
<property name="validator_style">wxFILTER_NONE</property>
<property name="validator_type">wxDefaultValidator</property>
@ -11421,7 +11421,7 @@
<property name="caption"></property>
<property name="caption_visible">1</property>
<property name="center_pane">0</property>
<property name="choices">&quot;Auxillary&quot; &quot; Off-board, front&quot; &quot;Off-board, back&quot;</property>
<property name="choices">&quot;Auxiliary&quot; &quot; Off-board, front&quot; &quot;Off-board, back&quot;</property>
<property name="close_button">1</property>
<property name="context_help"></property>
<property name="context_menu">1</property>
@ -11458,7 +11458,7 @@
<property name="style"></property>
<property name="subclass"></property>
<property name="toolbar_pane">0</property>
<property name="tooltip">Auxillary layers do not flip with board side, while back and front layers do.</property>
<property name="tooltip">Auxiliary layers do not flip with board side, while back and front layers do.</property>
<property name="validator_data_type"></property>
<property name="validator_style">wxFILTER_NONE</property>
<property name="validator_type">wxDefaultValidator</property>
@ -11617,7 +11617,7 @@
<property name="caption"></property>
<property name="caption_visible">1</property>
<property name="center_pane">0</property>
<property name="choices">&quot;Auxillary&quot; &quot; Off-board, front&quot; &quot;Off-board, back&quot;</property>
<property name="choices">&quot;Auxiliary&quot; &quot; Off-board, front&quot; &quot;Off-board, back&quot;</property>
<property name="close_button">1</property>
<property name="context_help"></property>
<property name="context_menu">1</property>
@ -11654,7 +11654,7 @@
<property name="style"></property>
<property name="subclass"></property>
<property name="toolbar_pane">0</property>
<property name="tooltip">Auxillary layers do not flip with board side, while back and front layers do.</property>
<property name="tooltip">Auxiliary layers do not flip with board side, while back and front layers do.</property>
<property name="validator_data_type"></property>
<property name="validator_style">wxFILTER_NONE</property>
<property name="validator_type">wxDefaultValidator</property>