TechDraw: Update UI strings for consistency

Closes: #22143
This commit is contained in:
Ryan Kembrey
2025-06-23 18:43:09 +10:00
committed by Kacper Donat
parent bee89d0447
commit 75b2ef67fc
93 changed files with 1112 additions and 1294 deletions

View File

@@ -61,13 +61,13 @@ bool TaskProjection::accept()
{
Gui::Document* document = Gui::Application::Instance->activeDocument();
if (!document) {
QMessageBox::warning(Gui::getMainWindow(), tr("No active document"),
QMessageBox::warning(Gui::getMainWindow(), tr("No Active Document"),
tr("There is currently no active document to complete the operation"));
return true;
}
std::list<Gui::MDIView*> mdis = document->getMDIViewsOfType(Gui::View3DInventor::getClassTypeId());
if (mdis.empty()) {
QMessageBox::warning(Gui::getMainWindow(), tr("No active view"),
QMessageBox::warning(Gui::getMainWindow(), tr("No Active View"),
tr("There is currently no active view to complete the operation"));
return false;
}