Remove markers from strings that don't need translation (#11234)

* Remove markers from strings that don't need translation
This commit is contained in:
Alexandre Folle de Menezes
2025-11-07 13:53:56 -03:00
committed by GitHub
parent 210bc47173
commit c3e03a0955
26 changed files with 7 additions and 402 deletions

View File

@ -3820,7 +3820,7 @@ void StatusPanel::update_partskip_subtask(MachineObject *obj){
BOOST_LOG_TRIVIAL(info) << "part skip: recv printer normal data.";
}
if (part_cnt > 0)
partskip_button->SetLabel(wxString::Format(_L("(%d)"), part_cnt));
partskip_button->SetLabel(wxString::Format("(%d)", part_cnt));
else
partskip_button->SetLabel("");
}