Better strings for translation (minor fix)
This commit is contained in:
parent
d227b53e1a
commit
55089f4732
|
@ -82,9 +82,9 @@ wxString VIA::GetSelectMenuText( EDA_UNITS aUnits ) const
|
||||||
|
|
||||||
switch( GetViaType() )
|
switch( GetViaType() )
|
||||||
{
|
{
|
||||||
case VIATYPE::BLIND_BURIED: viaType = _( "Blind/Buried" ) + " "; break;
|
case VIATYPE::BLIND_BURIED: viaType = _( "Blind/Buried Via" ); break;
|
||||||
case VIATYPE::MICROVIA: viaType = _( "Micro" ) + " "; break;
|
case VIATYPE::MICROVIA: viaType = _( "Micro Via" ); break;
|
||||||
default: viaType = ""; break;
|
default: viaType = _( "Via" ); break;
|
||||||
}
|
}
|
||||||
|
|
||||||
// say which layers, only two for now
|
// say which layers, only two for now
|
||||||
|
@ -94,7 +94,7 @@ wxString VIA::GetSelectMenuText( EDA_UNITS aUnits ) const
|
||||||
|
|
||||||
LayerPair( &topLayer, &botLayer );
|
LayerPair( &topLayer, &botLayer );
|
||||||
|
|
||||||
return wxString::Format( _( "%s Via %s %s on %s - %s" ),
|
return wxString::Format( _( "%s %s %s on %s - %s" ),
|
||||||
viaType,
|
viaType,
|
||||||
MessageTextFromValue( aUnits, m_Width ),
|
MessageTextFromValue( aUnits, m_Width ),
|
||||||
GetNetnameMsg(),
|
GetNetnameMsg(),
|
||||||
|
|
Loading…
Reference in New Issue