Remove spaces from start of common translated words
This commit is contained in:
parent
52ab6216c0
commit
26392f8070
|
@ -156,6 +156,7 @@ wxString LengthDoubleToString( double aValue, bool aConvertToMils )
|
|||
}
|
||||
|
||||
text.Printf( format, value );
|
||||
text += " ";
|
||||
|
||||
if( g_UserUnit == INCHES )
|
||||
text += ( aConvertToMils ) ? _( "mils" ) : _( "in" );
|
||||
|
@ -243,15 +244,15 @@ wxString StringFromValue( EDA_UNITS_T aUnit, int aValue, bool aAddUnitSymbol )
|
|||
switch( aUnit )
|
||||
{
|
||||
case INCHES:
|
||||
stringValue += _( " \"" );
|
||||
stringValue += " " + _( "\"" );
|
||||
break;
|
||||
|
||||
case MILLIMETRES:
|
||||
stringValue += _( " mm" );
|
||||
stringValue += " " + _( "mm" );
|
||||
break;
|
||||
|
||||
case DEGREES:
|
||||
stringValue += _( " deg" );
|
||||
stringValue += " " + _( "deg" );
|
||||
break;
|
||||
|
||||
case UNSCALED_UNITS:
|
||||
|
|
Loading…
Reference in New Issue