diff --git a/src/slic3r/GUI/GUI_App.cpp b/src/slic3r/GUI/GUI_App.cpp index 6bce99466a..665870815a 100644 --- a/src/slic3r/GUI/GUI_App.cpp +++ b/src/slic3r/GUI/GUI_App.cpp @@ -1326,21 +1326,21 @@ bool GUI_App::on_init_inner() { wxString preferences_item = _L("Restore window position on start"); InfoDialog dialog(nullptr, - _L("PrusaSlicer is started in save mode"), - format_wxstr(_L("PrusaSlicer was crashed last time due to \"%1%\".\n" - "For more information see issues \"%2%\" and \"%3%\"\n\n" - "To avoid an application crash next time you have to disable\n" - "\"%4%\" in \"Preferences\""), + _L("PrusaSlicer started after a crash"), + format_wxstr(_L("PrusaSlicer crashed last time when attempting to set window position.\n" + "We are sorry for the inconvenience, it unfortunately happens with certain multiple-monitor setups.\n" + "More precise reason for the crash: \"%1%\".\n" + "For more information see our GitHub issue tracker: \"%2%\" and \"%3%\"\n\n" + "To avoid this problem, consider disabling \"%4%\" in \"Preferences\". " + "Otherwise, the application will most likely crash again next time."), "" + from_u8(crash_reason) + "", "#2939", "#5573", - "" + preferences_item + "") - + "\n\n" + - format_wxstr(_L("Note: Enabling of the \"%1%\" will caused an application crash on next start."), preferences_item), + "" + preferences_item + ""), true, wxYES_NO); dialog.SetButtonLabel(wxID_YES, format_wxstr(_L("Disable \"%1%\""), preferences_item)); - dialog.SetButtonLabel(wxID_NO, format_wxstr(_L("Enable \"%1%\"") , preferences_item)); + dialog.SetButtonLabel(wxID_NO, format_wxstr(_L("Leave \"%1%\" enabled") , preferences_item)); auto answer = dialog.ShowModal(); if (answer == wxID_YES)