Commit f43a7acc authored by jerryjacobs's avatar jerryjacobs
Browse files

Make menu strings,tooltips, statusbar message more global

Dutch language update
 - 182 strings left
 - 100 fuzzy strings left
parent ba25d20f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -602,7 +602,7 @@ wxMenu* WinEDA_App::SetLanguageList( wxMenu* MasterMenu )
    {
        ADD_MENUITEM_WITH_HELP_AND_SUBMENU( MasterMenu, m_Language_Menu,
            ID_LANGUAGE_CHOICE, _( "Language" ),
            wxT( "For test only, use Default setup for normal use" ),
            _( "Select application language (only for testing!)" ),
            language_xpm );
    }
    return m_Language_Menu;
+7 −7
Original line number Diff line number Diff line
@@ -72,24 +72,24 @@ void WinEDA_SchematicFrame::ReCreateMenuBar()
        // Print and Plot section:
        m_FilesMenu->AppendSeparator();
        item = new wxMenuItem( m_FilesMenu, ID_GEN_PRINT,
                              _( "P&rint" ), _( "Print on current printer" ) );
                              _( "P&rint" ), _( "Print schematic" ) );
        item->SetBitmap( print_button );
        m_FilesMenu->Append( item );

        /* Plot Submenu */
        wxMenu* choice_plot_fmt = new wxMenu;
        item = new wxMenuItem( choice_plot_fmt, ID_GEN_PLOT_PS,
                              _( "Plot PostScript" ), _( "Plotting in PostScript format" ) );
                              _( "Plot PostScript" ), _( "Plot schematic in PostScript format" ) );
        item->SetBitmap( plot_PS_xpm );
        choice_plot_fmt->Append( item );

        item = new wxMenuItem( choice_plot_fmt, ID_GEN_PLOT_HPGL,
                              _( "Plot HPGL" ), _( "Plotting in HPGL format" ) );
                              _( "Plot HPGL" ), _( "Plot schematic in HPGL format" ) );
        item->SetBitmap( plot_HPG_xpm );
        choice_plot_fmt->Append( item );

        item = new wxMenuItem( choice_plot_fmt, ID_GEN_PLOT_SVG,
                              _( "Plot SVG" ), _( "Plotting in SVG format" ) );
                              _( "Plot SVG" ), _( "Plot schematic in SVG format" ) );
        item->SetBitmap( plot_xpm );
        choice_plot_fmt->Append( item );

@@ -103,7 +103,7 @@ void WinEDA_SchematicFrame::ReCreateMenuBar()

        ADD_MENUITEM_WITH_HELP_AND_SUBMENU( m_FilesMenu, choice_plot_fmt,
                                            ID_GEN_PLOT, _( "&Plot" ),
                                            _( "Plot HPGL, PostScript, SVG" ), plot_xpm );
                                            _( "Plot schematic in HPGL, PostScript or SVG format" ), plot_xpm );

        m_FilesMenu->AppendSeparator();
        item = new wxMenuItem( m_FilesMenu, ID_EXIT, _( "E&xit" ), _( "Quit Eeschema" ) );
@@ -281,7 +281,7 @@ void WinEDA_SchematicFrame::ReCreateMenuBar()
       item = new wxMenuItem(
            placeMenu,
            ID_JUNCTION_BUTT,
            _( "Junction" ),
            _( "Place Junction" ),
            _( "Place junction" ),
            wxITEM_NORMAL
            );
@@ -399,7 +399,7 @@ void WinEDA_SchematicFrame::ReCreateMenuBar()
        helpMenu->Append( item );

        item = new wxMenuItem( helpMenu, ID_KICAD_ABOUT,
                              _( "&About eeschema" ), _( "About eeschema schematic designer" ) );
                              _( "&About" ), _( "About eeschema schematic designer" ) );
        item->SetBitmap( info_xpm );
        helpMenu->Append( item );

+1 −1
Original line number Diff line number Diff line
@@ -85,7 +85,7 @@ void WinEDA_GerberFrame::ReCreateMenuBar( void )

        m_FilesMenu->AppendSeparator();

        m_FilesMenu->Append( ID_GEN_PRINT, _( "P&rint" ), _( "Print on current printer" ) );
        m_FilesMenu->Append( ID_GEN_PRINT, _( "P&rint" ), _( "Print gerber" ) );
        m_FilesMenu->Append( ID_GEN_PLOT,
                            _( "Plot" ), _( "Plotting in various formats" ) );

+14.4 KiB (125 KiB)

File changed.

No diff preview for this file type.

+226 −421

File changed.

Preview size limit exceeded, changes collapsed.

Loading