From 67990f7013ce669c5f3340a02b314b9cc3430cb4 Mon Sep 17 00:00:00 2001 From: Roy-043 Date: Sat, 25 Nov 2023 17:56:30 +0100 Subject: [PATCH] MeshPart: menu texts to sentence case --- src/Mod/MeshPart/Gui/MeshFlatteningCommand.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Mod/MeshPart/Gui/MeshFlatteningCommand.py b/src/Mod/MeshPart/Gui/MeshFlatteningCommand.py index a5bef0af75..cd53f9a46c 100644 --- a/src/Mod/MeshPart/Gui/MeshFlatteningCommand.py +++ b/src/Mod/MeshPart/Gui/MeshFlatteningCommand.py @@ -46,7 +46,7 @@ class CreateFlatMesh(BaseCommand): def GetResources(self): return { "Pixmap": "MeshPart_CreateFlatMesh.svg", - "MenuText": QT_TRANSLATE_NOOP("MeshPart_CreateFlatMesh", "Unwrap Mesh"), + "MenuText": QT_TRANSLATE_NOOP("MeshPart_CreateFlatMesh", "Unwrap mesh"), "ToolTip": QT_TRANSLATE_NOOP( "MeshPart_CreateFlatMesh", "Find a flat representation of a mesh." ), @@ -85,7 +85,7 @@ class CreateFlatFace(BaseCommand): def GetResources(self): return { "Pixmap": "MeshPart_CreateFlatFace.svg", - "MenuText": QT_TRANSLATE_NOOP("MeshPart_CreateFlatFace", "Unwrap Face"), + "MenuText": QT_TRANSLATE_NOOP("MeshPart_CreateFlatFace", "Unwrap face"), "ToolTip": QT_TRANSLATE_NOOP( "MeshPart_CreateFlatFace", "Find a flat representation of a face." ),