From 4cda967b0c2a25e7dd1cac3e542b1a990d770edd Mon Sep 17 00:00:00 2001 From: Stone Li Date: Tue, 7 Jan 2025 09:56:33 +0800 Subject: [PATCH] ENH: optimized a description JIRA: STUDIO-9544 Change-Id: I70808e1fe2ffe766f29a023393087a005b054d58 Signed-off-by: Stone Li --- src/slic3r/GUI/GUI_App.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slic3r/GUI/GUI_App.cpp b/src/slic3r/GUI/GUI_App.cpp index 4f3d9c0c2..79bc08aff 100644 --- a/src/slic3r/GUI/GUI_App.cpp +++ b/src/slic3r/GUI/GUI_App.cpp @@ -4882,7 +4882,7 @@ void GUI_App::process_network_msg(std::string dev_id, std::string msg) else if (msg == "cert_revoked") { BOOST_LOG_TRIVIAL(info) << "process_network_msg, cert_revoked"; if (!m_show_error_msgdlg) { - MessageDialog msg_dlg(nullptr, _L("The certificate has been revoked. Please check the time settings or update Bambu Studio and try again."), "", wxAPPLY | wxOK); + MessageDialog msg_dlg(nullptr, _L("The certificate has been revoked and the printing functions are unavailable. If you need printing. Please visit the official website at https://bambulab.com/ to download and update."), "", wxAPPLY | wxOK); m_show_error_msgdlg = true; auto modal_result = msg_dlg.ShowModal(); m_show_error_msgdlg = false;