FIX: Fix incorrect usage of “an/a” in the text

Jira: STUDIO-13941
Change-Id: I5fbd29130773041423c7e8a6686d92c4508989eb
(cherry picked from commit bab99bf26e6fddfc65892409d7fdb3209821cecd)
This commit is contained in:
weizhen.xie
2025-08-20 10:08:27 +08:00
committed by Noisyfox
parent bac1473116
commit bd5c7b38b1

View File

@@ -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) {