Append Schematic Content -> Insert Schematic Content

Fixes https://gitlab.com/kicad/code/kicad/issues/7905
This commit is contained in:
Jeff Young 2021-06-18 21:23:09 +01:00
parent 1edc232af1
commit 96e4b19444
2 changed files with 2 additions and 2 deletions

View File

@ -654,7 +654,7 @@ bool SCH_EDIT_FRAME::AppendSchematic()
// open file chooser dialog
wxString path = wxPathOnly( Prj().GetProjectFullName() );
wxFileDialog dlg( this, _( "Append Schematic" ), path, wxEmptyString,
wxFileDialog dlg( this, _( "Insert Schematic" ), path, wxEmptyString,
KiCadSchematicFileWildcard(), wxFD_OPEN | wxFD_FILE_MUST_EXIST );
if( dlg.ShowModal() == wxID_CANCEL )

View File

@ -85,7 +85,7 @@ void SCH_EDIT_FRAME::ReCreateMenuBar()
fileMenu->AppendSeparator();
fileMenu->Add( _( "Append Schematic Sheet Content..." ),
fileMenu->Add( _( "Insert Schematic Sheet Content..." ),
_( "Append schematic sheet content from another project to the current sheet" ),
ID_APPEND_PROJECT,
BITMAPS::add_document );