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

@ -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

View File

@ -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();
}