diff --git a/pcbnew/edit.cpp b/pcbnew/edit.cpp index d12d1e5c1f..eb44ef8d1c 100644 --- a/pcbnew/edit.cpp +++ b/pcbnew/edit.cpp @@ -1442,7 +1442,7 @@ void PCB_EDIT_FRAME::OnSelectTool( wxCommandEvent& aEvent ) break; case ID_PCB_MODULE_BUTT: - SetToolID( id, wxCURSOR_PENCIL, _( "Add module" ) ); + SetToolID( id, wxCURSOR_PENCIL, _( "Add footprint" ) ); break; case ID_PCB_ZONES_BUTT: @@ -1489,7 +1489,7 @@ void PCB_EDIT_FRAME::OnSelectTool( wxCommandEvent& aEvent ) break; case ID_COMPONENT_BUTT: - SetToolID( id, wxCURSOR_HAND, _( "Add module" ) ); + SetToolID( id, wxCURSOR_HAND, _( "Add footprint" ) ); break; case ID_PCB_DIMENSION_BUTT: diff --git a/pcbnew/exporters/gen_modules_placefile.cpp b/pcbnew/exporters/gen_modules_placefile.cpp index 442a264083..c1afb84130 100644 --- a/pcbnew/exporters/gen_modules_placefile.cpp +++ b/pcbnew/exporters/gen_modules_placefile.cpp @@ -231,7 +231,7 @@ bool DIALOG_GEN_MODULE_POSITION::CreateFiles() ForceAllSmd(), 2 ); if( fpcount == 0) { - wxMessageBox( _( "No modules for automated placement." ) ); + wxMessageBox( _( "No footprint for automated placement." ) ); return false; } diff --git a/pcbnew/legacy_plugin.cpp b/pcbnew/legacy_plugin.cpp index 7579d58411..036cce7f9b 100644 --- a/pcbnew/legacy_plugin.cpp +++ b/pcbnew/legacy_plugin.cpp @@ -1454,7 +1454,7 @@ void LEGACY_PLUGIN::loadPAD( MODULE* aModule ) case 'O': padshape = PAD_SHAPE_OVAL; break; case 'T': padshape = PAD_SHAPE_TRAPEZOID; break; default: - m_error.Printf( _( "Unknown padshape '%c=0x%02x' on line: %d of module: '%s'" ), + m_error.Printf( _( "Unknown padshape '%c=0x%02x' on line: %d of footprint: '%s'" ), padchar, padchar, m_reader->LineNumber(), diff --git a/pcbnew/librairi.cpp b/pcbnew/librairi.cpp index 1e0b6d7b24..a44e7c20e8 100644 --- a/pcbnew/librairi.cpp +++ b/pcbnew/librairi.cpp @@ -60,7 +60,7 @@ #define FMT_OK_OVERWRITE _( "Library '%s' exists, OK to replace ?" ) #define FMT_CREATE_LIB _( "Create New Library Folder (the .pretty folder is the library)" ) -#define FMT_OK_DELETE _( "OK to delete module %s in library '%s'" ) +#define FMT_OK_DELETE _( "OK to delete footprint %s in library '%s'" ) #define FMT_IMPORT_MODULE _( "Import Footprint" ) #define FMT_FILE_NOT_FOUND _( "File '%s' not found" ) #define FMT_NOT_MODULE _( "Not a footprint file" ) diff --git a/pcbnew/loadcmp.cpp b/pcbnew/loadcmp.cpp index d041dfb0d4..3bf97109ac 100644 --- a/pcbnew/loadcmp.cpp +++ b/pcbnew/loadcmp.cpp @@ -493,11 +493,11 @@ MODULE* FOOTPRINT_EDIT_FRAME::SelectFootprint( BOARD* aPcb ) for( ; module; module = module->Next() ) listnames.Add( module->GetReference() ); - msg.Printf( _( "Modules [%u items]" ), (unsigned) listnames.GetCount() ); + msg.Printf( _( "Footprints [%u items]" ), (unsigned) listnames.GetCount() ); wxArrayString headers; - headers.Add( _( "Module" ) ); + headers.Add( _( "Footprint" ) ); std::vector itemsToDisplay; diff --git a/pcbnew/menubar_modedit.cpp b/pcbnew/menubar_modedit.cpp index a7541b1f91..b7e1e83718 100644 --- a/pcbnew/menubar_modedit.cpp +++ b/pcbnew/menubar_modedit.cpp @@ -119,7 +119,7 @@ void FOOTPRINT_EDIT_FRAME::ReCreateMenuBar() // Save module in new lib AddMenuItem( fileMenu, ID_MODEDIT_CREATE_NEW_LIB_AND_SAVE_CURRENT_PART, _( "S&ave Footprint in New Library" ), - _( "Create a new library and save current module into it" ), + _( "Create a new library and save current footprint into it" ), KiBitmap( new_library_xpm ) ); // Export module diff --git a/pcbnew/pcb_parser.cpp b/pcbnew/pcb_parser.cpp index 8a27852671..a2a4377f6d 100644 --- a/pcbnew/pcb_parser.cpp +++ b/pcbnew/pcb_parser.cpp @@ -1905,7 +1905,7 @@ TEXTE_MODULE* PCB_PARSER::parseTEXTE_MODULE() throw( IO_ERROR, PARSE_ERROR ) break; // Default type is user text. default: - THROW_IO_ERROR( wxString::Format( _( "cannot handle module text type %s" ), + THROW_IO_ERROR( wxString::Format( _( "cannot handle footprint text type %s" ), GetChars( FromUTF8() ) ) ); } diff --git a/pcbnew/plot_board_layers.cpp b/pcbnew/plot_board_layers.cpp index b79280f529..6ccbdd57a4 100644 --- a/pcbnew/plot_board_layers.cpp +++ b/pcbnew/plot_board_layers.cpp @@ -113,7 +113,7 @@ void PlotSilkScreen( BOARD *aBoard, PLOTTER* aPlotter, LSET aLayerMask, { if( ! itemplotter.PlotAllTextsModule( module ) ) { - wxLogMessage( _( "Your BOARD has a bad layer number for module %s" ), + wxLogMessage( _( "Your BOARD has a bad layer number for footprint %s" ), GetChars( module->GetReference() ) ); } } @@ -298,7 +298,7 @@ void PlotStandardLayer( BOARD *aBoard, PLOTTER* aPlotter, { if( ! itemplotter.PlotAllTextsModule( module ) ) { - wxLogMessage( _( "Your BOARD has a bad layer number for module %s" ), + wxLogMessage( _( "Your BOARD has a bad layer number for footprint %s" ), GetChars( module->GetReference() ) ); } } diff --git a/pcbnew/tools/common_actions.cpp b/pcbnew/tools/common_actions.cpp index 34488cb7b4..348b85c238 100644 --- a/pcbnew/tools/common_actions.cpp +++ b/pcbnew/tools/common_actions.cpp @@ -385,7 +385,7 @@ TOOL_ACTION COMMON_ACTIONS::placeTarget( "pcbnew.EditorControl.placeTarget", TOOL_ACTION COMMON_ACTIONS::placeModule( "pcbnew.EditorControl.placeModule", AS_GLOBAL, TOOL_ACTION::LegacyHotKey( HK_ADD_MODULE ), - _( "Add modules" ), _( "Add modules" ), NULL, AF_ACTIVATE ); + _( "Add footprints" ), _( "Add footprints" ), NULL, AF_ACTIVATE ); TOOL_ACTION COMMON_ACTIONS::drillOrigin( "pcbnew.EditorControl.drillOrigin", AS_GLOBAL, 0, diff --git a/pcbnew/tools/pcb_editor_control.cpp b/pcbnew/tools/pcb_editor_control.cpp index 594c3645b0..75b37bae44 100644 --- a/pcbnew/tools/pcb_editor_control.cpp +++ b/pcbnew/tools/pcb_editor_control.cpp @@ -219,7 +219,7 @@ int PCB_EDITOR_CONTROL::PlaceModule( const TOOL_EVENT& aEvent ) controls->SetSnapping( true ); Activate(); - m_frame->SetToolID( ID_PCB_MODULE_BUTT, wxCURSOR_HAND, _( "Add module" ) ); + m_frame->SetToolID( ID_PCB_MODULE_BUTT, wxCURSOR_HAND, _( "Add footprint" ) ); // Main loop: keep receiving events while( OPT_TOOL_EVENT evt = Wait() )