Standardize Keywords->Key words

This commit is contained in:
Seth Hillbrand 2018-03-08 20:08:09 -08:00
parent 26392f8070
commit 649809a38f
3 changed files with 4 additions and 4 deletions

View File

@ -36,7 +36,7 @@ static const wxString DescriptionFormat =
static const wxString AliasOfFormat = "<br><i>" + _( "Alias of" ) + " %s (%s)</i>"; static const wxString AliasOfFormat = "<br><i>" + _( "Alias of" ) + " %s (%s)</i>";
static const wxString DescFormat = "<br>%s"; static const wxString DescFormat = "<br>%s";
static const wxString KeywordsFormat = "<br>" + _( "Keywords:" ) + " %s"; static const wxString KeywordsFormat = "<br>" + _( "Key words:" ) + " %s";
static const wxString FieldFormat = static const wxString FieldFormat =
"<tr>" "<tr>"
" <td><b>__NAME__</b></td>" " <td><b>__NAME__</b></td>"

View File

@ -1466,7 +1466,7 @@ void SCH_COMPONENT::GetMsgPanelInfo( MSG_PANEL_ITEMS& aList )
// Display description of the component, and keywords found in lib // Display description of the component, and keywords found in lib
aList.push_back( MSG_PANEL_ITEM( _( "Description" ), alias->GetDescription(), aList.push_back( MSG_PANEL_ITEM( _( "Description" ), alias->GetDescription(),
DARKCYAN ) ); DARKCYAN ) );
aList.push_back( MSG_PANEL_ITEM( _( "Key Words" ), alias->GetKeyWords(), DARKCYAN ) ); aList.push_back( MSG_PANEL_ITEM( _( "Key words" ), alias->GetKeyWords(), DARKCYAN ) );
} }
} }
else else

View File

@ -68,8 +68,8 @@ static void DisplayCmpDocAndKeywords( wxString& aSelection, void* aData )
if( !part ) if( !part )
return; return;
aSelection = _( "Description: " ) + part->GetDescription() + "\n"; aSelection = _( "Description:" ) + " " + part->GetDescription() + "\n";
aSelection += _( "Key Words: " ) + part->GetKeyWords(); aSelection += _( "Key words:" ) + " " + part->GetKeyWords();
} }