Commit cbdf6a90 authored by jerryjacobs's avatar jerryjacobs
Browse files

Dutch language update

parent a19576a3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -242,7 +242,7 @@ void AddMenusForBlock(wxMenu * PopMenu, WinEDA_LibeditFrame * frame)
        ADD_MENUITEM(PopMenu, ID_POPUP_SELECT_ITEMS_BLOCK, _("Select Items"), green_xpm);
        ADD_MENUITEM(PopMenu, ID_POPUP_COPY_BLOCK,
            _("Copy Block"), copyblock_xpm);
        ADD_MENUITEM(PopMenu, ID_POPUP_INVERT_BLOCK, _("Mirror Block"), mirror_H_xpm );
        ADD_MENUITEM(PopMenu, ID_POPUP_INVERT_BLOCK, _("Mirror Block ||"), mirror_H_xpm );
        ADD_MENUITEM(PopMenu, ID_POPUP_DELETE_BLOCK,
            _("Delete Block"), delete_xpm );
    }
+2 −2
Original line number Diff line number Diff line
@@ -419,8 +419,8 @@ void WinEDA_SchematicFrame::SetToolbars()
        m_OptionsToolBar->ToggleTool( ID_TB_OPTIONS_BUS_WIRES_ORIENT,
            g_HVLines );
        m_OptionsToolBar->SetToolShortHelp( ID_TB_OPTIONS_BUS_WIRES_ORIENT,
            g_HVLines ? _( "Draw lines at any direction" ) :
            _( "Draw lines H, V or 45 deg only" ) );
            g_HVLines ? _( "Snap Grid (OFF)" ) :
            _( "Snap Grid (ON)" ) );
    }

    DisplayUnitsMsg();
+2 −2
Original line number Diff line number Diff line
@@ -251,11 +251,11 @@ void WinEDA_SchematicFrame::ReCreateOptToolbar()

    m_OptionsToolBar->AddTool( ID_TB_OPTIONS_SELECT_UNIT_INCH, wxEmptyString,
                               BITMAP( unit_inch_xpm ),
                               _( "Units = Inch" ), wxITEM_CHECK );
                               _( "Units in inches" ), wxITEM_CHECK );

    m_OptionsToolBar->AddTool( ID_TB_OPTIONS_SELECT_UNIT_MM, wxEmptyString,
                               BITMAP( unit_mm_xpm ),
                               _( "Units = mm" ), wxITEM_CHECK );
                               _( "Units in millimeters" ), wxITEM_CHECK );

    m_OptionsToolBar->AddTool( ID_TB_OPTIONS_SELECT_CURSOR, wxEmptyString,
                               BITMAP( cursor_shape_xpm ),
+2 −2
Original line number Diff line number Diff line
@@ -131,7 +131,7 @@ int WinEDA_GerberFrame::LoadOneGerberFile( const wxString& FullFileName,

        mask    += wxT( ";*.gbr;*.gbx;*.lgr;*.ger" );

        filename = EDA_FileSelector( _( "Gerber files:" ),
        filename = EDA_FileSelector( _( "Load gerber file" ),
                                     path,                  /* Chemin par defaut */
                                     wxEmptyString,         /* nom fichier par defaut */
                                     g_PhotoFilenameExt,    /* extension par defaut */
@@ -217,7 +217,7 @@ bool WinEDA_GerberFrame::SaveGerberFile( const wxString& FullFileName, wxDC* DC
        wxString mask( wxT( "*" ) );

        mask    += g_PhotoFilenameExt;
        filename = EDA_FileSelector( _( "Gerber files:" ),
        filename = EDA_FileSelector( _( "Save gerber file" ),
                                     wxEmptyString,             /* Chemin par defaut */
                                     GetScreen()->m_FileName,   /* nom fichier par defaut */
                                     g_PhotoFilenameExt,        /* extension par defaut */
+2 −2
Original line number Diff line number Diff line
@@ -426,11 +426,11 @@ create or update the left vertical toolbar (option toolbar

    m_OptionsToolBar->AddTool( ID_TB_OPTIONS_SELECT_UNIT_INCH, wxEmptyString,
                               BITMAP( unit_inch_xpm ),
                               _( "Units = Inch" ), wxITEM_CHECK );
                               _( "Units in inches" ), wxITEM_CHECK );

    m_OptionsToolBar->AddTool( ID_TB_OPTIONS_SELECT_UNIT_MM, wxEmptyString,
                               BITMAP( unit_mm_xpm ),
                               _( "Units = mm" ), wxITEM_CHECK );
                               _( "Units in millimeters" ), wxITEM_CHECK );

    m_OptionsToolBar->AddTool( ID_TB_OPTIONS_SELECT_CURSOR, BITMAP( cursor_shape_xpm ),
                              wxNullBitmap,
Loading