Standardize Keywords->Key words
This commit is contained in:
parent
26392f8070
commit
649809a38f
|
@ -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
|
||||
|
|
|
@ -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();
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue