Better strings for translation (minor fix)

This commit is contained in:
jean-pierre charras 2020-09-19 14:22:53 +02:00
parent d227b53e1a
commit 55089f4732
1 changed files with 4 additions and 4 deletions

View File

@ -82,9 +82,9 @@ wxString VIA::GetSelectMenuText( EDA_UNITS aUnits ) const
switch( GetViaType() )
{
case VIATYPE::BLIND_BURIED: viaType = _( "Blind/Buried" ) + " "; break;
case VIATYPE::MICROVIA: viaType = _( "Micro" ) + " "; break;
default: viaType = ""; break;
case VIATYPE::BLIND_BURIED: viaType = _( "Blind/Buried Via" ); break;
case VIATYPE::MICROVIA: viaType = _( "Micro Via" ); break;
default: viaType = _( "Via" ); break;
}
// say which layers, only two for now
@ -94,7 +94,7 @@ wxString VIA::GetSelectMenuText( EDA_UNITS aUnits ) const
LayerPair( &topLayer, &botLayer );
return wxString::Format( _( "%s Via %s %s on %s - %s" ),
return wxString::Format( _( "%s %s %s on %s - %s" ),
viaType,
MessageTextFromValue( aUnits, m_Width ),
GetNetnameMsg(),