Commit 4611bfd5 authored by stambaughw's avatar stambaughw
Browse files

Comment translations.

* Completed translation of all kicad source.
* Translated source files A through C in pcbnew.
parent cb24fb25
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -126,7 +126,7 @@ void WinEDA_MainFrame::OnArchiveFiles( wxCommandEvent& event )


    wxFileName zip = dlg.GetPath();
    wxFileName zip = dlg.GetPath();


    /* Liste des extensions des fichiers  sauver */
    /* List of file extensions to save. */
    static const wxChar* extList[] = {
    static const wxChar* extList[] = {
        wxT( "*.sch" ), wxT( "*.lib" ), wxT( "*.cmp" ), wxT( "*.brd" ),
        wxT( "*.sch" ), wxT( "*.lib" ), wxT( "*.cmp" ), wxT( "*.brd" ),
        wxT( "*.net" ), wxT( "*.pro" ), wxT( "*.pho" ), wxT( "*.py" ),
        wxT( "*.net" ), wxT( "*.pro" ), wxT( "*.pho" ), wxT( "*.py" ),
+6 −11
Original line number Original line Diff line number Diff line
@@ -28,7 +28,7 @@ class WinEDA_PrjFrame;
/**
/**
 * Command IDs for Kicad.
 * Command IDs for Kicad.
 *
 *
 * Please add IDs that are unique to Kica  here and not in the global id.h
 * Please add IDs that are unique to Kicad  here and not in the global id.h
 * file.  This will prevent the entire project from being rebuilt when adding
 * file.  This will prevent the entire project from being rebuilt when adding
 * new commands to Kicad.
 * new commands to Kicad.
 */
 */
@@ -64,10 +64,6 @@ enum id_kicad_frm
};
};




/*******************************************/
/* classe pour la Fenetre generale de kicad*/
/*******************************************/

/* class WinEDA_MainFrame
/* class WinEDA_MainFrame
 * This is the main kicad frame
 * This is the main kicad frame
 */
 */
@@ -80,7 +76,7 @@ public:
    WinEDA_PrjFrame*     m_LeftWin;
    WinEDA_PrjFrame*     m_LeftWin;
    wxSashLayoutWindow*  m_BottomWin;
    wxSashLayoutWindow*  m_BottomWin;
    wxTextCtrl*          m_DialogWin;
    wxTextCtrl*          m_DialogWin;
    WinEDA_Toolbar*      m_VToolBar; // Verticam Toolbar (not used)
    WinEDA_Toolbar*      m_VToolBar; // Vertical toolbar (not used)
    wxString             m_BoardFileName;
    wxString             m_BoardFileName;
    wxString             m_SchematicRootFileName;
    wxString             m_SchematicRootFileName;
    wxFileName           m_ProjectFileName;
    wxFileName           m_ProjectFileName;
@@ -90,7 +86,6 @@ public:


public:
public:


    // Constructor and destructor
    WinEDA_MainFrame( wxWindow* parent, const wxString& title,
    WinEDA_MainFrame( wxWindow* parent, const wxString& title,
                      const wxPoint& pos, const wxSize& size );
                      const wxPoint& pos, const wxSize& size );


@@ -207,9 +202,9 @@ private:
};
};




/***********************************************************/
/*********************************/
/* Classes pour l'arbre de hierarchie de gestion du projet */
/* Classes for the project tree. */
/***********************************************************/
/*********************************/


/** class TreePrjItemData
/** class TreePrjItemData
 * Handle one item (a file or a directory name) for the tree file
 * Handle one item (a file or a directory name) for the tree file
@@ -414,7 +409,7 @@ public:
    WinEDA_TreePrj( WinEDA_PrjFrame* parent );
    WinEDA_TreePrj( WinEDA_PrjFrame* parent );
    ~WinEDA_TreePrj();
    ~WinEDA_TreePrj();
private:
private:
    /* overlayed sort function */
    /* overridden sort function */
    int OnCompareItems( const wxTreeItemId& item1, const wxTreeItemId& item2 );
    int OnCompareItems( const wxTreeItemId& item1, const wxTreeItemId& item2 );
};
};


+3 −3
Original line number Original line Diff line number Diff line
/******************************************************************/
/*******************/
/* mdiframe.cpp - fonctions de la classe du type WinEDA_MainFrame */
/* preferences.cpp */
/******************************************************************/
/*******************/


#ifdef __GNUG__
#ifdef __GNUG__
#pragma implementation
#pragma implementation
+1 −2
Original line number Original line Diff line number Diff line
@@ -17,7 +17,7 @@


static const wxString GeneralGroupName( wxT( "/general" ) );
static const wxString GeneralGroupName( wxT( "/general" ) );


/* Kicad project file entry namse. */
/* Kicad project file entry names. */
static const wxString SchematicRootNameEntry( wxT( "RootSch" ) );
static const wxString SchematicRootNameEntry( wxT( "RootSch" ) );
static const wxString BoardFileNameEntry( wxT( "BoardNm" ) );
static const wxString BoardFileNameEntry( wxT( "BoardNm" ) );


@@ -130,7 +130,6 @@ void WinEDA_MainFrame::OnSaveProject( wxCommandEvent& event )


    m_ProjectFileName = dlg.GetPath();
    m_ProjectFileName = dlg.GetPath();


    /* ecriture de la configuration */
    wxGetApp().WriteProjectConfig( m_ProjectFileName.GetFullPath(),
    wxGetApp().WriteProjectConfig( m_ProjectFileName.GetFullPath(),
                                   GeneralGroupName, NULL );
                                   GeneralGroupName, NULL );
}
}
+3 −4
Original line number Original line Diff line number Diff line
@@ -5,6 +5,5 @@
#include "param_config.h"
#include "param_config.h"




/* Liste des parametres */
extern PARAM_CFG_BASE* CfgParamList[];
extern PARAM_CFG_BASE* CfgParamList[];
Loading