From a02d156e5d85fc6ffdc0b554f1d653175a261065 Mon Sep 17 00:00:00 2001 From: Jeff Young Date: Wed, 12 Oct 2022 10:55:41 +0100 Subject: [PATCH] Improved auto-save message. Fixes https://gitlab.com/kicad/code/kicad/issues/12589 --- common/eda_base_frame.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/common/eda_base_frame.cpp b/common/eda_base_frame.cpp index d88b23cbbb..a58a98a91d 100644 --- a/common/eda_base_frame.cpp +++ b/common/eda_base_frame.cpp @@ -1204,13 +1204,13 @@ void EDA_BASE_FRAME::CheckForAutoSaveFile( const wxFileName& aFileName ) if( !autoSaveFileName.FileExists() ) return; - wxString msg = wxString::Format( _( - "Well this is potentially embarrassing!\n" - "It appears that the last time you were editing the file\n" - "%s\n" - "it was not saved properly. Do you wish to restore the last saved edits you made?" ), - aFileName.GetFullName() - ); + wxString msg = wxString::Format( _( "Well this is potentially embarrassing!\n" + "It appears that the last time you were editing\n" + "%s\n" + "KiCad exited before saving.\n" + "\n" + "Do you wish to open the auto-saved file instead?" ), + aFileName.GetFullName() ); int response = wxMessageBox( msg, Pgm().App().GetAppDisplayName(), wxYES_NO | wxICON_QUESTION, this );