Commit 5d306bb2 authored by Marco Ciampa's avatar Marco Ciampa Committed by Wayne Stambaugh

Rename instances of module to footprint for consistency.

parent 09e20c6c
...@@ -278,7 +278,7 @@ void PCB_EDIT_FRAME::AutoPlaceModule( MODULE* Module, int place_mode, wxDC* DC ) ...@@ -278,7 +278,7 @@ void PCB_EDIT_FRAME::AutoPlaceModule( MODULE* Module, int place_mode, wxDC* DC )
while( ( Module = PickModule( this, DC ) ) != NULL ) while( ( Module = PickModule( this, DC ) ) != NULL )
{ {
// Display some info about activity, module placement can take a while: // Display some info about activity, module placement can take a while:
msg.Printf( _( "Place module %d of %d" ), cnt, moduleCount ); msg.Printf( _( "Place footprint %d of %d" ), cnt, moduleCount );
SetStatusText( msg ); SetStatusText( msg );
double initialOrient = Module->GetOrientation(); double initialOrient = Module->GetOrientation();
......
...@@ -174,7 +174,7 @@ void PCB_EDIT_FRAME::SpreadFootprints( bool aFootprintsOutsideBoardOnly ) ...@@ -174,7 +174,7 @@ void PCB_EDIT_FRAME::SpreadFootprints( bool aFootprintsOutsideBoardOnly )
if( aFootprintsOutsideBoardOnly && !edgesExist ) if( aFootprintsOutsideBoardOnly && !edgesExist )
{ {
DisplayError( this, DisplayError( this,
_( "Could not automatically place modules. No board outlines detected." ) ); _( "Could not automatically place footprints. No board outlines detected." ) );
return; return;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment