From d092a94902f0932d83c9b72b194ea63aaff48b6d Mon Sep 17 00:00:00 2001 From: luzpaz Date: Tue, 23 Sep 2025 14:47:02 -0400 Subject: [PATCH] Techdraw: fix dialog text in Gui/Command.cpp (#24165) --- src/Mod/TechDraw/Gui/Command.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Mod/TechDraw/Gui/Command.cpp b/src/Mod/TechDraw/Gui/Command.cpp index e772708aff..363d063301 100644 --- a/src/Mod/TechDraw/Gui/Command.cpp +++ b/src/Mod/TechDraw/Gui/Command.cpp @@ -422,9 +422,9 @@ void CmdTechDrawView::activated(int iMsg) // If nothing was selected, then we offer to insert SVG or Images files. bool dontShowAgain = hGrp->GetBool("DontShowInsertFileMessage", false); if (!dontShowAgain) { - auto msgText = QObject::tr("to insert a view from existing objects, " + auto msgText = QObject::tr("To insert a view from existing objects, " "select them before invoking this tool. Without a selection, a " - "file browser will open to insert a SVG or image file."); + "file browser will open to insert an SVG or image file."); QMessageBox msgBox(Gui::getMainWindow()); msgBox.setText(msgText); auto dontShowMsg = QObject::tr("Do not show this message again");