From 42ce9fdc09c49fb0eb385770bfae966f1a6311d7 Mon Sep 17 00:00:00 2001 From: Roy-043 Date: Fri, 20 Oct 2023 22:02:58 +0200 Subject: [PATCH] Part: Filter selection GUI texts to sentence case --- src/Mod/Part/Gui/CommandFilter.cpp | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/src/Mod/Part/Gui/CommandFilter.cpp b/src/Mod/Part/Gui/CommandFilter.cpp index 8146922e0c..502562d11e 100644 --- a/src/Mod/Part/Gui/CommandFilter.cpp +++ b/src/Mod/Part/Gui/CommandFilter.cpp @@ -44,8 +44,8 @@ PartCmdSelectFilter::PartCmdSelectFilter() { sGroup = "Standard-View"; sMenuText = QT_TR_NOOP("Selection filter"); - sToolTipText = QT_TR_NOOP("Change the Selection filter"); - sStatusTip = QT_TR_NOOP("Change the Selection filter"); + sToolTipText = QT_TR_NOOP("Change the selection filter"); + sStatusTip = QT_TR_NOOP("Change the selection filter"); sWhatsThis = "Part_SelectFilter"; sPixmap = "selection-filter"; eType = Alter3DView; @@ -170,10 +170,10 @@ PartCmdVertexSelection::PartCmdVertexSelection() : Command("Part_VertexSelection") { sGroup = "Standard-View"; - sMenuText = QT_TR_NOOP("Vertex Selection"); - sToolTipText = QT_TR_NOOP("Select a Vertex/Vertices"); + sMenuText = QT_TR_NOOP("Vertex selection"); + sToolTipText = QT_TR_NOOP("Select a vertex/vertices"); sWhatsThis = "Part_VertexSelection"; - sStatusTip = QT_TR_NOOP("Select a Vertex/Vertices"); + sStatusTip = QT_TR_NOOP("Select a vertex/vertices"); sPixmap = "vertex-selection"; sAccel = "X, S"; eType = Alter3DView; @@ -195,10 +195,10 @@ PartCmdEdgeSelection::PartCmdEdgeSelection() : Command("Part_EdgeSelection") { sGroup = "Standard-View"; - sMenuText = QT_TR_NOOP("Edge Selection"); - sToolTipText = QT_TR_NOOP("Select Edge(s)"); + sMenuText = QT_TR_NOOP("Edge selection"); + sToolTipText = QT_TR_NOOP("Select edge(s)"); sWhatsThis = "Part_EdgeSelection"; - sStatusTip = QT_TR_NOOP("Select Edge(s)"); + sStatusTip = QT_TR_NOOP("Select edge(s)"); sPixmap = "edge-selection"; sAccel = "E, S"; eType = Alter3DView; @@ -220,10 +220,10 @@ PartCmdFaceSelection::PartCmdFaceSelection() : Command("Part_FaceSelection") { sGroup = "Standard-View"; - sMenuText = QT_TR_NOOP("Face Selection"); - sToolTipText = QT_TR_NOOP("Select Face(s)"); + sMenuText = QT_TR_NOOP("Face selection"); + sToolTipText = QT_TR_NOOP("Select face(s)"); sWhatsThis = "Part_FaceSelection"; - sStatusTip = QT_TR_NOOP("Select Face(s)"); + sStatusTip = QT_TR_NOOP("Select face(s)"); sPixmap = "face-selection"; sAccel = "F, S"; eType = Alter3DView;