From 237c60e40558659cd64e38aac544847281b9513a Mon Sep 17 00:00:00 2001 From: Roy-043 <70520633+Roy-043@users.noreply.github.com> Date: Fri, 14 Nov 2025 13:12:41 +0100 Subject: [PATCH] GUI: DrawStyle submenu to Title Case (#24220) --- src/Gui/CommandView.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Gui/CommandView.cpp b/src/Gui/CommandView.cpp index 85840c69be..72cb4620da 100644 --- a/src/Gui/CommandView.cpp +++ b/src/Gui/CommandView.cpp @@ -776,7 +776,7 @@ void StdCmdDrawStyle::languageChange() auto pcAction = qobject_cast(_pcAction); QList a = pcAction->actions(); - a[0]->setText(QCoreApplication::translate("Std_DrawStyle", "&1 As is")); + a[0]->setText(QCoreApplication::translate("Std_DrawStyle", "&1 As Is")); a[0]->setToolTip(QCoreApplication::translate("Std_DrawStyle", "Normal mode")); a[1]->setText(QCoreApplication::translate("Std_DrawStyle", "&2 Points")); @@ -785,16 +785,16 @@ void StdCmdDrawStyle::languageChange() a[2]->setText(QCoreApplication::translate("Std_DrawStyle", "&3 Wireframe")); a[2]->setToolTip(QCoreApplication::translate("Std_DrawStyle", "Wireframe mode")); - a[3]->setText(QCoreApplication::translate("Std_DrawStyle", "&4 Hidden line")); + a[3]->setText(QCoreApplication::translate("Std_DrawStyle", "&4 Hidden Line")); a[3]->setToolTip(QCoreApplication::translate("Std_DrawStyle", "Hidden line mode")); - a[4]->setText(QCoreApplication::translate("Std_DrawStyle", "&5 No shading")); + a[4]->setText(QCoreApplication::translate("Std_DrawStyle", "&5 No Shading")); a[4]->setToolTip(QCoreApplication::translate("Std_DrawStyle", "No shading mode")); a[5]->setText(QCoreApplication::translate("Std_DrawStyle", "&6 Shaded")); a[5]->setToolTip(QCoreApplication::translate("Std_DrawStyle", "Shaded mode")); - a[6]->setText(QCoreApplication::translate("Std_DrawStyle", "&7 Flat lines")); + a[6]->setText(QCoreApplication::translate("Std_DrawStyle", "&7 Flat Lines")); a[6]->setToolTip(QCoreApplication::translate("Std_DrawStyle", "Flat lines mode")); }