Commit 137d1329 authored by jean-pierre charras's avatar jean-pierre charras
Browse files

Make some messages translatable.

parent 9a27065f
Loading
Loading
Loading
Loading
+7 −4
Original line number Diff line number Diff line
@@ -1884,10 +1884,13 @@ const char** LIB_PIN::GetMenuImage() const

wxString LIB_PIN::GetSelectMenuText() const
{
    wxString tmp = _( "Pin " );

    return tmp << GetNumberString() << wxT( ", " ) << GetTypeString() << wxT( ", " )
               << wxGetTranslation( pin_style_names[ GetStyleCodeIndex( m_shape ) ] );;
    wxString tmp;
    tmp.Printf( _( "Pin %s, %s, %s" ),
                GetChars( GetNumberString() ),
                GetChars( GetTypeString() ),
                GetChars( wxGetTranslation( pin_style_names[ GetStyleCodeIndex( m_shape ) ] ) )
              );
    return tmp;
}


+5 −3
Original line number Diff line number Diff line
@@ -1633,9 +1633,11 @@ LIB_DRAW_ITEM* SCH_COMPONENT::GetDrawItem( const wxPoint& aPosition, KICAD_T aTy

wxString SCH_COMPONENT::GetSelectMenuText() const
{
    wxString tmp = _( "Component " );

    return tmp << m_ChipName << wxT( ", " ) << GetField( REFERENCE )->GetText();
    wxString tmp;
    tmp.Printf( _( "Component %s, %s" ),
                GetChars( m_ChipName ),
                GetChars( GetField( REFERENCE )->GetText() ) );
    return tmp;
}


+3 −2
Original line number Diff line number Diff line
@@ -449,9 +449,10 @@ void SCH_FIELD::Rotate( wxPoint rotationPoint )

wxString SCH_FIELD::GetSelectMenuText() const
{
    wxString tmp = _( "Field " );
    wxString tmp;
    tmp.Printf( _( "Field %s" ), GetChars(  + GetName() ) );

    return tmp + GetName();
    return tmp;
}


+14 −10
Original line number Diff line number Diff line
@@ -419,31 +419,35 @@ void SCH_LINE::GetConnectionPoints( vector< wxPoint >& aPoints ) const

wxString SCH_LINE::GetSelectMenuText() const
{
    wxString menuText;
    wxString menuText, txtfmt, orient;
    if( m_Start.x == m_End.x )
        orient = _("Vert.");
    else if( m_Start.y == m_End.y )
        orient = _("Horiz.");

    switch( m_Layer )
    {
    case LAYER_NOTES:
        menuText = _( "Graphic Line " );
        txtfmt = _( "%s Graphic Line from (%s,%s) to (%s,%s) " );
        break;

    case LAYER_WIRE:
        menuText = _( "Wire " );
        txtfmt = _( "%s Wire from (%s,%s) to (%s,%s)" );
        break;

    case LAYER_BUS:
        menuText = _( "Bus " );
        txtfmt = _( "%s Bus from (%s,%s) to (%s,%s)" );
        break;

    default:
        menuText = _( "Line on Unkown Layer " );
        txtfmt += _( "%s Line on Unkown Layer from (%s,%s) to (%s,%s)" );
    }

    menuText << wxT( "from (" ) << CoordinateToString( m_Start.x, EESCHEMA_INTERNAL_UNIT )
             << wxT( "," ) << CoordinateToString( m_Start.y, EESCHEMA_INTERNAL_UNIT )
             << wxT( ")" );
    menuText << wxT( " to (" ) << CoordinateToString( m_End.x, EESCHEMA_INTERNAL_UNIT )
             << wxT( "," ) << CoordinateToString( m_End.y, EESCHEMA_INTERNAL_UNIT ) << wxT( ")" );
    menuText.Printf( txtfmt, GetChars( orient ),
                    GetChars(CoordinateToString( m_Start.x, EESCHEMA_INTERNAL_UNIT )),
                    GetChars(CoordinateToString( m_Start.y, EESCHEMA_INTERNAL_UNIT )),
                    GetChars(CoordinateToString( m_End.x, EESCHEMA_INTERNAL_UNIT )),
                    GetChars(CoordinateToString( m_End.y, EESCHEMA_INTERNAL_UNIT )) );

    return menuText;
}
+6 −6
Original line number Diff line number Diff line
@@ -207,27 +207,27 @@ void SCH_POLYLINE::Rotate( wxPoint rotationPoint )

wxString SCH_POLYLINE::GetSelectMenuText() const
{
    wxString menuText;
    wxString menuText, fmt;

    switch( m_Layer )
    {
    case LAYER_NOTES:
        menuText = _( "Graphic Polyline " );
        fmt = _( "Graphic Polyline with %d Points" );
        break;

    case LAYER_WIRE:
        menuText = _( "Polyline Wire " );
        fmt = _( "Polyline Wire with %d Points" );
        break;

    case LAYER_BUS:
        menuText = _( "Polyline Bus " );
        fmt = _( "Polyline Bus with %d Points" );
        break;

    default:
        menuText = _( "Polyline on Unkown Layer " );
        fmt = _( "Polyline on Unkown Layer with %d Points" );
    }

    menuText += wxString::Format( _( "with %d Points" ), m_PolyPoints.size() );
    menuText.Printf( fmt, m_PolyPoints.size() );

    return menuText;
}
Loading