Fix GUI strings that should start with uppercase (#12499)

This commit is contained in:
Alexandre Folle de Menezes
2026-02-27 11:19:22 -03:00
committed by GitHub
parent 2806398e79
commit 72a4597107
39 changed files with 594 additions and 562 deletions

View File

@@ -764,7 +764,7 @@ void CalibrationPresetPage::create_selection_panel(wxWindow* parent)
m_filament_from_panel = new wxPanel(parent);
m_filament_from_panel->Hide();
auto filament_from_sizer = new wxBoxSizer(wxVERTICAL);
auto filament_from_text = new Label(m_filament_from_panel, _L("filament position"));
auto filament_from_text = new Label(m_filament_from_panel, _L("Filament position"));
filament_from_text->SetFont(Label::Head_14);
filament_from_sizer->Add(filament_from_text, 0);