Commit e9c7d50c authored by charras's avatar charras
Browse files

fixed some typo, misspelling and errors in menus.

parent b8e27b50
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -367,7 +367,7 @@ int WinEDA_BasicFrame::WriteHotkeyConfigFile( const wxString&
        Ext  = DEFAULT_HOTKEY_FILENAME_EXT;
        Ext  = DEFAULT_HOTKEY_FILENAME_EXT;
        Mask = wxT( "*" ) + Ext;
        Mask = wxT( "*" ) + Ext;
        Path = ReturnHotkeyConfigFilePath( g_ConfigFileLocationChoice );
        Path = ReturnHotkeyConfigFilePath( g_ConfigFileLocationChoice );
        FullFilename = EDA_FileSelector( _( "Hotkey configuration file:" ),
        FullFilename = EDA_FileSelector( _( "Save Hotkey Configuration File:" ),
                                         Path,          /* Chemin par defaut */
                                         Path,          /* Chemin par defaut */
                                         FullFilename,  /* nom fichier par defaut */
                                         FullFilename,  /* nom fichier par defaut */
                                         Ext,           /* extension par defaut */
                                         Ext,           /* extension par defaut */
@@ -485,7 +485,7 @@ int WinEDA_BasicFrame::ReadHotkeyConfigFile( const wxString&
        Ext  = DEFAULT_HOTKEY_FILENAME_EXT;
        Ext  = DEFAULT_HOTKEY_FILENAME_EXT;
        Mask = wxT( "*" ) + Ext;
        Mask = wxT( "*" ) + Ext;
        Path = ReturnHotkeyConfigFilePath( g_ConfigFileLocationChoice );
        Path = ReturnHotkeyConfigFilePath( g_ConfigFileLocationChoice );
        FullFilename = EDA_FileSelector( _( "Hotkey configuration file:" ),
        FullFilename = EDA_FileSelector( _( "Open Hotkey Configuration File:" ),
                                         Path,          /* Chemin par defaut */
                                         Path,          /* Chemin par defaut */
                                         FullFilename,  /* nom fichier par defaut */
                                         FullFilename,  /* nom fichier par defaut */
                                         Ext,           /* extension par defaut */
                                         Ext,           /* extension par defaut */
+7 −7
Original line number Original line Diff line number Diff line
@@ -53,7 +53,7 @@ char Line[1024];
FILE *fichierstf ;	/* sert en lecture des differents fichiers *.STF */
FILE *fichierstf ;	/* sert en lecture des differents fichiers *.STF */
AUTOMODULE * ItemModule,* NextMod;
AUTOMODULE * ItemModule,* NextMod;
AUTOMODULE * BaseListeMod = NULL;
AUTOMODULE * BaseListeMod = NULL;
STORECMP * Componant;
STORECMP * Component;


int nb_correspondances = 0;
int nb_correspondances = 0;


@@ -110,12 +110,12 @@ int nb_correspondances = 0;
		frame->SetStatusText(msg, 0);
		frame->SetStatusText(msg, 0);
		}
		}


	Componant = g_BaseListeCmp;
	Component = g_BaseListeCmp;
	for ( ii = 0; Componant != NULL; Componant = Componant->Pnext, ii++ )
	for ( ii = 0; Component != NULL; Component = Component->Pnext, ii++ )
		{
		{
		frame->m_ListCmp->SetSelection(ii,TRUE);
		frame->m_ListCmp->SetSelection(ii,TRUE);
		if( Componant->m_Module.IsEmpty() )
		if( Component->m_Module.IsEmpty() )
			auto_select(frame, Componant, BaseListeMod);
			auto_select(frame, Component, BaseListeMod);
		}
		}


	/* Liberation memoire */
	/* Liberation memoire */
+2 −2
Original line number Original line Diff line number Diff line
@@ -256,7 +256,7 @@ void WinEDA_CvpcbFrame::OnCloseWindow( wxCloseEvent& Event )
    }
    }


    FreeMemoryModules();
    FreeMemoryModules();
    FreeMemoryComponants();
    FreeMemoryComponents();
    modified = 0;
    modified = 0;


    SaveSettings();
    SaveSettings();
@@ -376,7 +376,7 @@ void WinEDA_CvpcbFrame::DelAssociations( wxCommandEvent& event )
        composants_non_affectes = nbcomp;
        composants_non_affectes = nbcomp;
    }
    }


    Line.Printf( _( "Componants: %d (free: %d)" ), nbcomp,
    Line.Printf( _( "Components: %d (free: %d)" ), nbcomp,
                 composants_non_affectes );
                 composants_non_affectes );
    SetStatusText( Line, 1 );
    SetStatusText( Line, 1 );
}
}
+1 −1
Original line number Original line Diff line number Diff line
@@ -125,7 +125,7 @@ void WinEDA_CvpcbFrame::ReadNetListe()
    if( g_BaseListeCmp )
    if( g_BaseListeCmp )
        m_ListCmp->SetSelection( 0, TRUE );
        m_ListCmp->SetSelection( 0, TRUE );


    msg.Printf( _( "Componants: %d (free: %d)" ), nbcomp,
    msg.Printf( _( "Components: %d (free: %d)" ), nbcomp,
                composants_non_affectes );
                composants_non_affectes );
    SetStatusText( msg, 1 );
    SetStatusText( msg, 1 );


+1 −1
Original line number Original line Diff line number Diff line
@@ -34,7 +34,7 @@ STOREMOD * Module, * NextMod;
}
}


/***********************************/
/***********************************/
void FreeMemoryComponants()
void FreeMemoryComponents()
/***********************************/
/***********************************/


/* Routine de liberation memoire de la liste des composants
/* Routine de liberation memoire de la liste des composants
Loading