From bd5c7b38b170207625f82a03035c29c9e628c1ba Mon Sep 17 00:00:00 2001 From: "weizhen.xie" Date: Wed, 20 Aug 2025 10:08:27 +0800 Subject: [PATCH] =?UTF-8?q?FIX:=20Fix=20incorrect=20usage=20of=20=E2=80=9C?= =?UTF-8?q?an/a=E2=80=9D=20in=20the=20text?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Jira: STUDIO-13941 Change-Id: I5fbd29130773041423c7e8a6686d92c4508989eb (cherry picked from commit bab99bf26e6fddfc65892409d7fdb3209821cecd) --- src/slic3r/GUI/Plater.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/slic3r/GUI/Plater.cpp b/src/slic3r/GUI/Plater.cpp index c01e193652..4b67dcae71 100644 --- a/src/slic3r/GUI/Plater.cpp +++ b/src/slic3r/GUI/Plater.cpp @@ -15988,10 +15988,9 @@ void Plater::pop_warning_and_go_to_device_page(wxString printer_name, PrinterWar printer_name.Replace("Bambu Lab", "", false); wxString content; if (type == PrinterWarningType::NOT_CONNECTED) { - content = wxString::Format(_L("Printer not connected. Please go to the device page to connect an %s printer before syncing."), printer_name); - + content = wxString::Format(_L("Printer not connected. Please go to the device page to connect %s before syncing."), printer_name); } else if (type == PrinterWarningType::INCONSISTENT) { - content = wxString::Format(_L("The currently connected printer on the device page is not an %s. Please switch to an %s before syncing."), printer_name, printer_name); + content = wxString::Format(_L("The currently connected printer on the device page is not %s. Please switch to %s before syncing."), printer_name, printer_name); } else if (type == PrinterWarningType::UNINSTALL_FILAMENT) { content = _L("There are no filaments on the printer. Please load the filaments on the printer first."); } else if (type == PrinterWarningType::EMPTY_FILAMENT) {