Typo fix: Correct various misspelled words
agressive -> aggressive decription -> description miscellanous-> miscellaneous rectange -> rectangle Unkown -> Unknown
This commit is contained in:
parent
8dff3725ac
commit
cb17c9f3dd
|
@ -618,7 +618,7 @@ void CADSTAR_SCH_ARCHIVE_LOADER::loadSchematicSymbolInstances()
|
|||
}
|
||||
else
|
||||
{
|
||||
wxASSERT_MSG( false, "Unkown Symbol Variant." );
|
||||
wxASSERT_MSG( false, "Unknown Symbol Variant." );
|
||||
}
|
||||
}
|
||||
else
|
||||
|
|
|
@ -305,7 +305,7 @@ std::vector<wxString> DIALOG_IMPORTED_LAYERS::GetUnmappedRequiredLayers() const
|
|||
for( const wxString& layerName : m_unmatched_layer_names )
|
||||
{
|
||||
const INPUT_LAYER_DESC* layerDesc = GetLayerDescription( layerName );
|
||||
wxASSERT_MSG( layerDesc != nullptr, "Expected to find layer decription" );
|
||||
wxASSERT_MSG( layerDesc != nullptr, "Expected to find layer description" );
|
||||
if( layerDesc->Required )
|
||||
unmappedLayers.push_back( layerDesc->Name );
|
||||
}
|
||||
|
|
|
@ -102,7 +102,7 @@ PANEL_SETUP_CONSTRAINTS_BASE::PANEL_SETUP_CONSTRAINTS_BASE( wxWindow* parent, wx
|
|||
bSizerOutlinesOpts = new wxBoxSizer( wxVERTICAL );
|
||||
|
||||
m_rbOutlinePolygonBestQ = new wxRadioButton( this, wxID_ANY, _("Mimic legacy behavior"), wxDefaultPosition, wxDefaultSize, 0 );
|
||||
m_rbOutlinePolygonBestQ->SetToolTip( _("Produces a slightly smoother outline at the expense of performance, some export fidelity issues, and overly agressive higher-priority zone knockouts.") );
|
||||
m_rbOutlinePolygonBestQ->SetToolTip( _("Produces a slightly smoother outline at the expense of performance, some export fidelity issues, and overly aggressive higher-priority zone knockouts.") );
|
||||
|
||||
bSizerOutlinesOpts->Add( m_rbOutlinePolygonBestQ, 0, wxALL, 4 );
|
||||
|
||||
|
|
|
@ -1048,7 +1048,7 @@
|
|||
<property name="style"></property>
|
||||
<property name="subclass">; ; forward_declare</property>
|
||||
<property name="toolbar_pane">0</property>
|
||||
<property name="tooltip">Produces a slightly smoother outline at the expense of performance, some export fidelity issues, and overly agressive higher-priority zone knockouts.</property>
|
||||
<property name="tooltip">Produces a slightly smoother outline at the expense of performance, some export fidelity issues, and overly aggressive higher-priority zone knockouts.</property>
|
||||
<property name="validator_data_type"></property>
|
||||
<property name="validator_style">wxFILTER_NONE</property>
|
||||
<property name="validator_type">wxDefaultValidator</property>
|
||||
|
|
|
@ -57,7 +57,7 @@ public:
|
|||
|
||||
virtual const wxString GetName() const override
|
||||
{
|
||||
return "miscellanous";
|
||||
return "miscellaneous";
|
||||
};
|
||||
|
||||
virtual const wxString GetDescription() const override
|
||||
|
|
|
@ -1917,7 +1917,7 @@ void EAGLE_PLUGIN::packageRectangle( FOOTPRINT* aFootprint, wxXmlNode* aTree ) c
|
|||
|
||||
if( layer == UNDEFINED_LAYER )
|
||||
{
|
||||
wxLogMessage( wxString::Format( _( "Ignoring a rectange since Eagle layer '%s' (%d) "
|
||||
wxLogMessage( wxString::Format( _( "Ignoring a rectangle since Eagle layer '%s' (%d) "
|
||||
"was not mapped" ),
|
||||
eagle_layer_name( r.layer ),
|
||||
r.layer ) );
|
||||
|
|
Loading…
Reference in New Issue