From 314d66593c84ac3ccc88c23da2708efaba9d7ecb Mon Sep 17 00:00:00 2001 From: Roy-043 <70520633+Roy-043@users.noreply.github.com> Date: Tue, 26 Aug 2025 00:39:25 +0200 Subject: [PATCH] MeshPart: "Trim by plane" -> "Trim With Plane" (#23361) * MeshPart: "Trim by plane" -> "Trim With Plane" * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> --- src/Mod/MeshPart/Gui/Command.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Mod/MeshPart/Gui/Command.cpp b/src/Mod/MeshPart/Gui/Command.cpp index 4f3497106c..d8e298ee0d 100644 --- a/src/Mod/MeshPart/Gui/Command.cpp +++ b/src/Mod/MeshPart/Gui/Command.cpp @@ -101,8 +101,8 @@ void CmdMeshPartTrimByPlane::activated(int) QMessageBox msgBox(Gui::getMainWindow()); msgBox.setIcon(QMessageBox::Question); - msgBox.setWindowTitle(qApp->translate("MeshPart_TrimByPlane", "Trim by plane")); - msgBox.setText(qApp->translate("MeshPart_TrimByPlane", "Select the side to keep.")); + msgBox.setWindowTitle(qApp->translate("MeshPart_TrimByPlane", "Trim With Plane")); + msgBox.setText(qApp->translate("MeshPart_TrimByPlane", "Select the side to keep")); QPushButton* inner = msgBox.addButton(qApp->translate("MeshPart_TrimByPlane", "Below"), QMessageBox::ActionRole); QPushButton* outer =