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