Fix strings for save/load project menu options; standardize on "Load"
Fixes: lp:1753659 * https://bugs.launchpad.net/kicad/+bug/1753659
This commit is contained in:
parent
b9ce203487
commit
285bf79370
|
@ -173,7 +173,7 @@ void SCH_EDIT_FRAME::Process_Config( wxCommandEvent& event )
|
|||
fn = g_RootSheet->GetScreen()->GetFileName();
|
||||
fn.SetExt( ProjectFileExtension );
|
||||
|
||||
wxFileDialog dlg( this, _( "Read Project File" ), fn.GetPath(),
|
||||
wxFileDialog dlg( this, _( "Load Project File" ), fn.GetPath(),
|
||||
fn.GetFullName(), ProjectFileWildcard(),
|
||||
wxFD_OPEN | wxFD_FILE_MUST_EXIST );
|
||||
|
||||
|
|
|
@ -734,13 +734,13 @@ static void preparePreferencesMenu( SCH_EDIT_FRAME* aFrame, wxMenu* aParentMenu
|
|||
// Import/export
|
||||
AddMenuItem( aParentMenu,
|
||||
ID_CONFIG_SAVE,
|
||||
_( "&Save Preferences..." ),
|
||||
_( "Save application preferences" ),
|
||||
_( "&Save Project File..." ),
|
||||
_( "Save project preferences into a project file" ),
|
||||
KiBitmap( save_setup_xpm ) );
|
||||
|
||||
AddMenuItem( aParentMenu,
|
||||
ID_CONFIG_READ,
|
||||
_( "Load Prefe&rences..." ),
|
||||
_( "Load application preferences" ),
|
||||
_( "Load P&roject File..." ),
|
||||
_( "Load project preferences into a project file" ),
|
||||
KiBitmap( import_setup_xpm ) );
|
||||
}
|
||||
|
|
|
@ -254,13 +254,13 @@ void preparePreferencesMenu( PCB_EDIT_FRAME* aFrame, wxMenu* aParentMenu )
|
|||
aParentMenu->AppendSeparator();
|
||||
|
||||
AddMenuItem( aParentMenu, ID_CONFIG_SAVE,
|
||||
_( "&Save Preferences..." ),
|
||||
_( "Save application preferences" ),
|
||||
_( "&Save Project File..." ),
|
||||
_( "Save project preferences into a project file" ),
|
||||
KiBitmap( save_setup_xpm ) );
|
||||
|
||||
AddMenuItem( aParentMenu, ID_CONFIG_READ,
|
||||
_( "Load Prefe&rences..." ),
|
||||
_( "Load application preferences" ),
|
||||
_( "Load P&roject File..." ),
|
||||
_( "Load project preferences from a project file" ),
|
||||
KiBitmap( read_setup_xpm ) );
|
||||
}
|
||||
|
||||
|
|
|
@ -192,7 +192,7 @@ void PCB_EDIT_FRAME::Process_Config( wxCommandEvent& event )
|
|||
fn = GetBoard()->GetFileName();
|
||||
fn.SetExt( ProjectFileExtension );
|
||||
|
||||
wxFileDialog dlg( this, _( "Read Project File" ), fn.GetPath(),
|
||||
wxFileDialog dlg( this, _( "Load Project File" ), fn.GetPath(),
|
||||
fn.GetFullName(), ProjectFileWildcard(),
|
||||
wxFD_OPEN | wxFD_FILE_MUST_EXIST | wxFD_CHANGE_DIR );
|
||||
|
||||
|
|
Loading…
Reference in New Issue