Grammar and spelling fixes on GUI strings (#12410)

This commit is contained in:
Alexandre Folle de Menezes
2026-03-03 17:36:42 -03:00
committed by GitHub
parent 17e534cac4
commit d54adafdaa
35 changed files with 648 additions and 648 deletions

View File

@@ -181,13 +181,13 @@ void PublishDialog::SetPublishStep(PublishStep step, bool yield, int percent)
else
m_progress->SetValue(0);
} else if (step == PublishStep::STEP_PACKING) {
m_text_progress->SetLabelText(_L("Packing data to 3mf"));
m_text_progress->SetLabelText(_L("Packing data to 3MF"));
if (percent > 0)
m_progress->SetValue(percent);
else
m_progress->SetValue(70);
} else if (step == PublishStep::STEP_UPLOADING) {
m_text_progress->SetLabelText(_L("Packing data to 3mf"));
m_text_progress->SetLabelText(_L("Uploading data"));
if (percent > 0)
m_progress->SetValue(percent);
else