Commit 021a075f authored by jean-pierre charras's avatar jean-pierre charras
Browse files

Gerbview: minor enhancement.

All: fix some strings very hard to translate in messages.
parent 121b65bf
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -7,9 +7,9 @@

#ifndef KICAD_BUILD_VERSION
#if defined KICAD_GOST
#   define KICAD_BUILD_VERSION "(2011-aug-04 GOST)"
#   define KICAD_BUILD_VERSION "(2011-oct-15 GOST)"
#else
#   define KICAD_BUILD_VERSION "(2011-aug-04)"
#   define KICAD_BUILD_VERSION "(2011-oct-15)"
#endif
#endif

+4 −9
Original line number Diff line number Diff line
@@ -89,15 +89,10 @@ void CVPCB_MAINFRAME::ReCreateMenuBar()
    // Menu Preferences:
    wxMenu* preferencesMenu = new wxMenu;

    // Options (Preferences on WXMAC)
    AddMenuItem( preferencesMenu,
                 wxID_PREFERENCES,
#ifdef __WXMAC__
                 _( "&Preferences..." ),
#else
                 _( "&Options" ),
#endif // __WXMAC__
                 _( "Set libraries and library search paths" ),
    // Libraries to load
    AddMenuItem( preferencesMenu, wxID_PREFERENCES,
                 _( "&Libraries" ),
                 _( "Set footprint libraries lo load and library search paths" ),
                 KiBitmap( config_xpm ) );

    // Language submenu
+1 −1
Original line number Diff line number Diff line
@@ -425,7 +425,7 @@ bool CMP_LIBRARY::Load( wxString& aErrorMsg )
        if( !tkn.HasMoreTokens()
            || !tkn.GetNextToken().Upper().StartsWith(wxT( "EESCHEMA-LIB" ) ) )
        {
            aErrorMsg = _( "The file is NOT an EESCHEMA library!" );
            aErrorMsg = _( "The file is NOT an Eeschema library!" );
            fclose( file );
            return false;
        }
+1 −1
Original line number Diff line number Diff line
@@ -231,7 +231,7 @@ void DIALOG_PLOT_SCHEMATIC_DXF::PlotOneSheetDXF( const wxString& FileName,
    plotter->set_color_mode( m_plotColorOpt );

    /* Init : */
    plotter->set_creator( wxT( "EESchema-DXF" ) );
    plotter->set_creator( wxT( "Eeschema-DXF" ) );
    plotter->set_filename( FileName );
    plotter->start_plot( output_file );

+1 −1
Original line number Diff line number Diff line
@@ -378,7 +378,7 @@ void DIALOG_PLOT_SCHEMATIC_HPGL::Plot_1_Page_HPGL( const wxString& FileName,
    plotter->set_viewport( offset, plot_scale, 0 );
    plotter->set_default_line_width( g_DrawDefaultLineThickness );
    /* Init : */
    plotter->set_creator( wxT( "EESchema-HPGL" ) );
    plotter->set_creator( wxT( "Eeschema-HPGL" ) );
    plotter->set_filename( FileName );
    plotter->set_pen_speed( g_HPGL_Pen_Descr.m_Pen_Speed );
    plotter->set_pen_number( g_HPGL_Pen_Descr.m_Pen_Num );
Loading