From 87045ea94c4119e582d9e6221db8668fd3bbf7de Mon Sep 17 00:00:00 2001 From: jean-pierre charras Date: Wed, 10 Jan 2018 14:48:00 +0100 Subject: [PATCH] Fix tipo and tooltip --- eeschema/project_rescue.cpp | 4 ++-- eeschema/tool_lib.cpp | 10 +++++----- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/eeschema/project_rescue.cpp b/eeschema/project_rescue.cpp index 9bd8a7f2b9..9dc8813e6d 100644 --- a/eeschema/project_rescue.cpp +++ b/eeschema/project_rescue.cpp @@ -290,7 +290,7 @@ wxString RESCUE_CACHE_CANDIDATE::GetActionDescription() const wxString action; 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 ); else if( m_cache_candidate && !m_lib_candidate ) 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; 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() ); else if( m_cache_candidate && !m_lib_candidate ) action.Printf( _( "Rescue symbol %s found only in cache library to %s." ), diff --git a/eeschema/tool_lib.cpp b/eeschema/tool_lib.cpp index ef320fea59..95deb8c4fd 100644 --- a/eeschema/tool_lib.cpp +++ b/eeschema/tool_lib.cpp @@ -199,12 +199,12 @@ void LIB_EDIT_FRAME::ReCreateHToolbar() m_mainToolBar->AddControl( m_aliasSelectBox ); 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" - "between units and body styles 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" - "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" ); + "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" + "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." ); m_mainToolBar->AddTool( ID_LIBEDIT_EDIT_PIN_BY_PIN, wxEmptyString, KiBitmap( pin2pin_xpm ), msg, wxITEM_CHECK ); m_mainToolBar->AddTool( ID_LIBEDIT_EDIT_PIN_BY_TABLE, wxEmptyString, KiBitmap( pin_table_xpm ),