Fix tipo and tooltip
This commit is contained in:
parent
efe55b6f0a
commit
87045ea94c
|
@ -290,7 +290,7 @@ wxString RESCUE_CACHE_CANDIDATE::GetActionDescription() const
|
||||||
wxString action;
|
wxString action;
|
||||||
|
|
||||||
if( !m_cache_candidate && !m_lib_candidate )
|
if( !m_cache_candidate && !m_lib_candidate )
|
||||||
action.Printf( _( "Cannot rescue symbol %s which is not avialable in any library or "
|
action.Printf( _( "Cannot rescue symbol %s which is not available in any library or "
|
||||||
"the cache." ), m_requested_name );
|
"the cache." ), m_requested_name );
|
||||||
else if( m_cache_candidate && !m_lib_candidate )
|
else if( m_cache_candidate && !m_lib_candidate )
|
||||||
action.Printf( _( "Rescue symbol %s found only in cache library to %s." ),
|
action.Printf( _( "Rescue symbol %s found only in cache library to %s." ),
|
||||||
|
@ -417,7 +417,7 @@ wxString RESCUE_SYMBOL_LIB_TABLE_CANDIDATE::GetActionDescription() const
|
||||||
wxString action;
|
wxString action;
|
||||||
|
|
||||||
if( !m_cache_candidate && !m_lib_candidate )
|
if( !m_cache_candidate && !m_lib_candidate )
|
||||||
action.Printf( _( "Cannot rescue symbol %s which is not avialable in any library or "
|
action.Printf( _( "Cannot rescue symbol %s which is not available in any library or "
|
||||||
"the cache." ), m_requested_id.GetLibItemName().wx_str() );
|
"the cache." ), m_requested_id.GetLibItemName().wx_str() );
|
||||||
else if( m_cache_candidate && !m_lib_candidate )
|
else if( m_cache_candidate && !m_lib_candidate )
|
||||||
action.Printf( _( "Rescue symbol %s found only in cache library to %s." ),
|
action.Printf( _( "Rescue symbol %s found only in cache library to %s." ),
|
||||||
|
|
|
@ -199,12 +199,12 @@ void LIB_EDIT_FRAME::ReCreateHToolbar()
|
||||||
m_mainToolBar->AddControl( m_aliasSelectBox );
|
m_mainToolBar->AddControl( m_aliasSelectBox );
|
||||||
|
|
||||||
m_mainToolBar->AddSeparator();
|
m_mainToolBar->AddSeparator();
|
||||||
msg = _( "Allows disabling pin edition coupling between units or body styles\n"
|
msg = _( "Allows disabling pin edition coupling between units.\n"
|
||||||
"When not disabled, adding, deleting and moving pins are synchronized\n"
|
"When not disabled, adding, deleting and moving pins are synchronized\n"
|
||||||
"between units and body styles for pins at the same location\n"
|
"between units for pins at the same location.\n"
|
||||||
"For instance, adding a pin to a unit also add a similar pin to other units at the same location\n"
|
"For instance, adding a pin to a unit also add a similar pin to other units at the same location.\n"
|
||||||
"However, pins can have a different number or size because they are specific to a unit\n"
|
"However, pins can have a different number or size because they are specific to a unit.\n"
|
||||||
"Usually synchronization is enabled when units are interchangeable and disabled if not" );
|
"Usually synchronization is enabled when units are interchangeable and disabled if not." );
|
||||||
m_mainToolBar->AddTool( ID_LIBEDIT_EDIT_PIN_BY_PIN, wxEmptyString, KiBitmap( pin2pin_xpm ),
|
m_mainToolBar->AddTool( ID_LIBEDIT_EDIT_PIN_BY_PIN, wxEmptyString, KiBitmap( pin2pin_xpm ),
|
||||||
msg, wxITEM_CHECK );
|
msg, wxITEM_CHECK );
|
||||||
m_mainToolBar->AddTool( ID_LIBEDIT_EDIT_PIN_BY_TABLE, wxEmptyString, KiBitmap( pin_table_xpm ),
|
m_mainToolBar->AddTool( ID_LIBEDIT_EDIT_PIN_BY_TABLE, wxEmptyString, KiBitmap( pin_table_xpm ),
|
||||||
|
|
Loading…
Reference in New Issue