diff --git a/eeschema/generate_alias_info.cpp b/eeschema/generate_alias_info.cpp index 4ad4302201..37dc5db166 100644 --- a/eeschema/generate_alias_info.cpp +++ b/eeschema/generate_alias_info.cpp @@ -36,7 +36,7 @@ static const wxString DescriptionFormat = static const wxString AliasOfFormat = "
" + _( "Alias of" ) + " %s (%s)"; static const wxString DescFormat = "
%s"; -static const wxString KeywordsFormat = "
" + _( "Keywords:" ) + " %s"; +static const wxString KeywordsFormat = "
" + _( "Key words:" ) + " %s"; static const wxString FieldFormat = "" " __NAME__" diff --git a/eeschema/sch_component.cpp b/eeschema/sch_component.cpp index 1cfad2431a..80da7423cc 100644 --- a/eeschema/sch_component.cpp +++ b/eeschema/sch_component.cpp @@ -1466,7 +1466,7 @@ void SCH_COMPONENT::GetMsgPanelInfo( MSG_PANEL_ITEMS& aList ) // Display description of the component, and keywords found in lib aList.push_back( MSG_PANEL_ITEM( _( "Description" ), alias->GetDescription(), DARKCYAN ) ); - aList.push_back( MSG_PANEL_ITEM( _( "Key Words" ), alias->GetKeyWords(), DARKCYAN ) ); + aList.push_back( MSG_PANEL_ITEM( _( "Key words" ), alias->GetKeyWords(), DARKCYAN ) ); } } else diff --git a/eeschema/selpart.cpp b/eeschema/selpart.cpp index 12b89b242b..a9d9bd23ed 100644 --- a/eeschema/selpart.cpp +++ b/eeschema/selpart.cpp @@ -68,8 +68,8 @@ static void DisplayCmpDocAndKeywords( wxString& aSelection, void* aData ) if( !part ) return; - aSelection = _( "Description: " ) + part->GetDescription() + "\n"; - aSelection += _( "Key Words: " ) + part->GetKeyWords(); + aSelection = _( "Description:" ) + " " + part->GetDescription() + "\n"; + aSelection += _( "Key words:" ) + " " + part->GetKeyWords(); }