Fix missed strings for UI consistency

Fix ellipsis rendering
This commit is contained in:
Max Wilfinger
2025-08-08 09:39:11 +02:00
committed by Chris Hennes
parent 2eeff96e99
commit 1850c5dc0f
41 changed files with 117 additions and 118 deletions

View File

@@ -46,9 +46,9 @@ 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."
"MeshPart_CreateFlatMesh", "Finds a flat representation of a mesh"
),
}
@@ -85,9 +85,9 @@ 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."
"MeshPart_CreateFlatFace", "Finds a flat representation of a face"
),
}