diff --git a/src/Mod/TechDraw/App/DrawViewDimExtent.cpp b/src/Mod/TechDraw/App/DrawViewDimExtent.cpp index 25179c824b..a684054411 100644 --- a/src/Mod/TechDraw/App/DrawViewDimExtent.cpp +++ b/src/Mod/TechDraw/App/DrawViewDimExtent.cpp @@ -53,7 +53,7 @@ DrawViewDimExtent::DrawViewDimExtent(void) Source.setScope(App::LinkScope::Global); //Source3d is a candidate for deprecation as References3D contains the same information - ADD_PROPERTY_TYPE(Source3d, (nullptr, nullptr), "", (App::PropertyType)(App::Prop_Output), "3d geometry to be dimensioned"); + ADD_PROPERTY_TYPE(Source3d, (nullptr, nullptr), "", (App::PropertyType)(App::Prop_Output), "3D geometry to be dimensioned"); Source3d.setScope(App::LinkScope::Global); ADD_PROPERTY_TYPE(DirExtent ,(0), "", App::Prop_Output, "Horizontal / Vertical"); diff --git a/src/Mod/TechDraw/App/DrawViewDimension.cpp b/src/Mod/TechDraw/App/DrawViewDimension.cpp index 05a9da9119..3264180c6c 100644 --- a/src/Mod/TechDraw/App/DrawViewDimension.cpp +++ b/src/Mod/TechDraw/App/DrawViewDimension.cpp @@ -1095,9 +1095,9 @@ arcPoints DrawViewDimension::arcPointsFromBaseGeom(TechDraw::BaseGeomPtr base) else { // fubar - can't have non-circular spline as target of Diameter dimension, but this is // already checked, so something has gone badly wrong. - Base::Console().Error("%s: can not make a Circle from this BSpline edge\n", + Base::Console().Error("%s: can not make a Circle from this B-spline edge\n", getNameInDocument()); - throw Base::RuntimeError("Bad BSpline geometry for arc dimension"); + throw Base::RuntimeError("Bad B-spline geometry for arc dimension"); } } else { @@ -1173,7 +1173,7 @@ arcPoints DrawViewDimension::arcPointsFromEdge(TopoDS_Edge occEdge) pts.isArc = isArc; BRepAdaptor_Curve adaptCircle(circleEdge); if (adaptCircle.GetType() != GeomAbs_Circle) { - throw Base::RuntimeError("failed to get circle from bspline"); + throw Base::RuntimeError("failed to get circle from B-spline"); } gp_Circ circle = adapt.Circle(); // TODO: same code as above. reuse opportunity. @@ -1196,7 +1196,7 @@ arcPoints DrawViewDimension::arcPointsFromEdge(TopoDS_Edge occEdge) } } else { - throw Base::RuntimeError("failed to make circle from bspline"); + throw Base::RuntimeError("failed to make circle from B-spline"); } } else { diff --git a/src/Mod/TechDraw/App/Geometry.cpp b/src/Mod/TechDraw/App/Geometry.cpp index 0ecc3c4a92..38a2fc7462 100644 --- a/src/Mod/TechDraw/App/Geometry.cpp +++ b/src/Mod/TechDraw/App/Geometry.cpp @@ -594,7 +594,7 @@ TopoDS_Edge BaseGeom::completeEdge(const TopoDS_Edge &edge) { // If an arc of ellipse was provided, return full ellipse return BRepBuilderAPI_MakeEdge(curve.Ellipse()); default: - // Currently we are not extrapolating BSplines, though it is technically possible + // Currently we are not extrapolating B-splines, though it is technically possible return BRepBuilderAPI_MakeEdge(curve.Curve().Curve()); } } @@ -1219,7 +1219,7 @@ BSpline::BSpline(const TopoDS_Edge &e) } -//! Can this BSpline be represented by a straight line? +//! Can this B-spline be represented by a straight line? // if len(first-last) == sum(len(pi - pi+1)) then it is a line bool BSpline::isLine() { @@ -1232,7 +1232,7 @@ bool BSpline::isCircle() return GeometryUtils::isCircle(occEdge); } -// make a circular edge from BSpline +// make a circular edge from B-spline TopoDS_Edge BSpline::asCircle(bool& arc) { return GeometryUtils::asCircle(occEdge, arc); @@ -1561,7 +1561,7 @@ bool GeometryUtils::isCircle(TopoDS_Edge occEdge) return GeometryUtils::getCircleParms(occEdge, radius, center, isArc); } -//! tries to interpret a BSpline edge as a circle. Used by DVDim for approximate dimensions. +//! tries to interpret a B-spline edge as a circle. Used by DVDim for approximate dimensions. //! calculates the curvature of the spline at a number of places and measures the deviation from the average //! a true circle has constant curvature and would have no deviation from the average. bool GeometryUtils::getCircleParms(TopoDS_Edge occEdge, double& radius, Base::Vector3d& center, bool& isArc) @@ -1708,7 +1708,7 @@ bool GeometryUtils::isLine(TopoDS_Edge occEdge) } -//! make a line Edge from BSpline Edge +//! make a line Edge from B-spline Edge TopoDS_Edge GeometryUtils::asLine(TopoDS_Edge occEdge) { BRepAdaptor_Curve c(occEdge); diff --git a/src/Mod/TechDraw/Gui/Command.cpp b/src/Mod/TechDraw/Gui/Command.cpp index 9e02d9fb2d..2239716209 100644 --- a/src/Mod/TechDraw/Gui/Command.cpp +++ b/src/Mod/TechDraw/Gui/Command.cpp @@ -1417,7 +1417,7 @@ void CmdTechDrawClipGroupAdd::activated(int iMsg) std::string ClipName = clip->getNameInDocument(); std::string ViewName = view->getNameInDocument(); - openCommand(QT_TRANSLATE_NOOP("Command", "ClipGroupAdd")); + openCommand(QT_TRANSLATE_NOOP("Command", "Add clip group")); doCommand(Doc, "App.activeDocument().%s.ViewObject.Visibility = False", ViewName.c_str()); doCommand(Doc, "App.activeDocument().%s.addView(App.activeDocument().%s)", ClipName.c_str(), ViewName.c_str()); @@ -1488,7 +1488,7 @@ void CmdTechDrawClipGroupRemove::activated(int iMsg) std::string ClipName = clip->getNameInDocument(); std::string ViewName = view->getNameInDocument(); - openCommand(QT_TRANSLATE_NOOP("Command", "ClipGroupRemove")); + openCommand(QT_TRANSLATE_NOOP("Command", "Remove clip group")); doCommand(Doc, "App.activeDocument().%s.ViewObject.Visibility = False", ViewName.c_str()); doCommand(Doc, "App.activeDocument().%s.removeView(App.activeDocument().%s)", ClipName.c_str(), ViewName.c_str()); @@ -1853,7 +1853,7 @@ void CmdTechDrawExportPageDXF::activated(int iMsg) QString defaultDir; QString fileName = Gui::FileDialog::getSaveFileName( Gui::getMainWindow(), QString::fromUtf8(QT_TR_NOOP("Save DXF file")), defaultDir, - QString::fromUtf8(QT_TR_NOOP("DXF (*.dxf)"))); + QString::fromUtf8("DXF (*.dxf)")); if (fileName.isEmpty()) { return; diff --git a/src/Mod/TechDraw/Gui/CommandAnnotate.cpp b/src/Mod/TechDraw/Gui/CommandAnnotate.cpp index 949ea63dce..bfbc3fa873 100644 --- a/src/Mod/TechDraw/Gui/CommandAnnotate.cpp +++ b/src/Mod/TechDraw/Gui/CommandAnnotate.cpp @@ -120,7 +120,7 @@ void CmdTechDrawLeaderLine::activated(int iMsg) baseFeat = dynamic_cast(selection[0].getObject()); if (!baseFeat) { QMessageBox::warning(Gui::getMainWindow(), QObject::tr("Wrong Selection"), - QObject::tr("Can not attach leader. No base View selected.")); + QObject::tr("Can not attach leader. No base View selected.")); return; } } else { diff --git a/src/Mod/TechDraw/Gui/CommandCreateDims.cpp b/src/Mod/TechDraw/Gui/CommandCreateDims.cpp index 3477e568d1..a47ce46e38 100644 --- a/src/Mod/TechDraw/Gui/CommandCreateDims.cpp +++ b/src/Mod/TechDraw/Gui/CommandCreateDims.cpp @@ -2440,7 +2440,7 @@ void execDim(Gui::Command* cmd, std::string type, StringVector acceptableGeometr if (geometryRefs2d == isBSplineCircle || geometryRefs3d == isBSplineCircle) { QMessageBox::StandardButton result = QMessageBox::warning( Gui::getMainWindow(), - QObject::tr("BSpline Curve Warning"), + QObject::tr("B-spline Curve Warning"), QObject::tr("Selected edge is a B-spline. Value will be approximate. Continue?"), QMessageBox::Ok | QMessageBox::Cancel, QMessageBox::Cancel); @@ -2451,7 +2451,7 @@ void execDim(Gui::Command* cmd, std::string type, StringVector acceptableGeometr if (geometryRefs2d == isBSpline || geometryRefs3d == isBSpline) { QMessageBox::critical( Gui::getMainWindow(), - QObject::tr("BSpline Curve Error"), + QObject::tr("B-spline Curve Error"), QObject::tr("Selected edge is a B-spline and a radius/diameter can not be calculated.")); return; } diff --git a/src/Mod/TechDraw/Gui/CommandDecorate.cpp b/src/Mod/TechDraw/Gui/CommandDecorate.cpp index ed19c81a26..c4f308aceb 100644 --- a/src/Mod/TechDraw/Gui/CommandDecorate.cpp +++ b/src/Mod/TechDraw/Gui/CommandDecorate.cpp @@ -108,7 +108,7 @@ void CmdTechDrawHatch::activated(int iMsg) if (TechDraw::DrawHatch::faceIsHatched(face, hatchObjs)) { QMessageBox::StandardButton rc = QMessageBox::question(Gui::getMainWindow(), QObject::tr("Replace Hatch?"), - QObject::tr("Some Faces in selection are already hatched. Replace?")); + QObject::tr("Some Faces in selection are already hatched. Replace?")); if (rc == QMessageBox::StandardButton::NoButton) { return; } diff --git a/src/Mod/TechDraw/Gui/DlgPageChooser.ui b/src/Mod/TechDraw/Gui/DlgPageChooser.ui index 755c037882..fb52e45d20 100644 --- a/src/Mod/TechDraw/Gui/DlgPageChooser.ui +++ b/src/Mod/TechDraw/Gui/DlgPageChooser.ui @@ -26,7 +26,7 @@ - FreeCAD could not determine which Page to use. Please select a Page. + FreeCAD could not determine which Page to use. Please select a Page. true diff --git a/src/Mod/TechDraw/Gui/DlgPrefsTechDrawDimensions.ui b/src/Mod/TechDraw/Gui/DlgPrefsTechDrawDimensions.ui index f7dbc3a26b..d5c885c36c 100644 --- a/src/Mod/TechDraw/Gui/DlgPrefsTechDrawDimensions.ui +++ b/src/Mod/TechDraw/Gui/DlgPrefsTechDrawDimensions.ui @@ -402,7 +402,7 @@ Multiplier of 'Font Size' - Controls the size of the gap between the dimension point and the start of the extension line for ISO dimensions. + Controls the gap size between the dimension point and the start of the extension line for ISO dimensions. Extension Gap Factor - ISO @@ -430,7 +430,7 @@ Multiplier of 'Font Size' - Controls the size of the gap between the dimension point and the start of the extension line for ASME dimensions. + Controls the gap size between the dimension point and the start of the extension line for ASME dimensions. Extension Gap Factor - ASME @@ -440,7 +440,7 @@ Multiplier of 'Font Size' - Controls the size of the gap between the dimension point and the start of the extension line for ISO dimensions. + Controls the gap size between the dimension point and the start of the extension line for ISO dimensions. Value * linewidth is the gap. Normally, no gap is used. If using a gap, the recommended value is 8. @@ -458,7 +458,7 @@ Multiplier of 'Font Size' - Controls the size of the gap between the dimension point and the start of the extension line for ASME dimensions. Value * linewidth is the gap. + Controls the gap size between the dimension point and the start of the extension line for ASME dimensions. Value * linewidth is the gap. Normally, no gap is used. If using a gap, the recommended value is 6. @@ -480,7 +480,7 @@ Multiplier of 'Font Size' - Controls the size of spacing between dimension line and dimension text for ISO dimensions. + Controls the gap size between dimension line and dimension text for ISO dimensions. Line Spacing - ISO @@ -490,7 +490,7 @@ Multiplier of 'Font Size' - Controls the size of spacing between dimension line and dimension text. + Controls the gap size between dimension line and dimension text. Value * linewidth is the line spacing. diff --git a/src/Mod/TechDraw/Gui/DlgPrefsTechDrawGeneral.ui b/src/Mod/TechDraw/Gui/DlgPrefsTechDrawGeneral.ui index 8fd5f3d31b..8df8ba9242 100644 --- a/src/Mod/TechDraw/Gui/DlgPrefsTechDrawGeneral.ui +++ b/src/Mod/TechDraw/Gui/DlgPrefsTechDrawGeneral.ui @@ -382,12 +382,12 @@ for ProjectionGroups - ANSI + ANSI - ISO + ISO diff --git a/src/Mod/TechDraw/Gui/MDIViewPage.cpp b/src/Mod/TechDraw/Gui/MDIViewPage.cpp index bc82c62d6f..14f85f9737 100644 --- a/src/Mod/TechDraw/Gui/MDIViewPage.cpp +++ b/src/Mod/TechDraw/Gui/MDIViewPage.cpp @@ -392,7 +392,7 @@ void MDIViewPage::print(QPrinter* printer) if (doPrint && printer->pageLayout().orientation() != pageAttr.orientation()) { int ret = QMessageBox::warning( this, tr("Different orientation"), - tr("The printer uses a different orientation than the drawing.\n" + tr("The printer uses a different orientation than the drawing.\n" "Do you want to continue?"), QMessageBox::Yes | QMessageBox::No); if (ret != QMessageBox::Yes) { @@ -471,7 +471,7 @@ void MDIViewPage::saveSVG(std::string filename) void MDIViewPage::saveSVG() { QStringList filter; - filter << QObject::tr("SVG (*.svg)"); + filter << QStringLiteral("SVG (*.svg)"); filter << QObject::tr("All Files (*.*)"); QString fn = Gui::FileDialog::getSaveFileName(Gui::getMainWindow(), QObject::tr("Export page as SVG"), @@ -494,7 +494,7 @@ void MDIViewPage::saveDXF() QString defaultDir; QString fileName = Gui::FileDialog::getSaveFileName( Gui::getMainWindow(), QString::fromUtf8(QT_TR_NOOP("Save DXF file")), defaultDir, - QString::fromUtf8(QT_TR_NOOP("DXF (*.dxf)"))); + QString::fromUtf8("DXF (*.dxf)")); if (fileName.isEmpty()) { return; } @@ -517,7 +517,7 @@ void MDIViewPage::savePDF() QString defaultDir; QString fileName = Gui::FileDialog::getSaveFileName( Gui::getMainWindow(), QString::fromUtf8(QT_TR_NOOP("Save PDF file")), defaultDir, - QString::fromUtf8(QT_TR_NOOP("PDF (*.pdf)"))); + QString::fromUtf8("PDF (*.pdf)")); if (fileName.isEmpty()) { return; } diff --git a/src/Mod/TechDraw/Gui/PagePrinter.cpp b/src/Mod/TechDraw/Gui/PagePrinter.cpp index 43ce9c8942..5766cd36f8 100644 --- a/src/Mod/TechDraw/Gui/PagePrinter.cpp +++ b/src/Mod/TechDraw/Gui/PagePrinter.cpp @@ -416,9 +416,10 @@ void PagePrinter::saveDXF(ViewProviderPage* vpPage, const std::string& inFileNam { TechDraw::DrawPage* page = vpPage->getDrawPage(); std::string PageName = page->getNameInDocument(); + auto filespec = Base::Tools::escapeEncodeFilename(inFileName); filespec = DU::cleanFilespecBackslash(filespec); - Gui::Command::openCommand(QT_TRANSLATE_NOOP("Command", "Save page to dxf")); + Gui::Command::openCommand(QT_TRANSLATE_NOOP("Command", "Save page to DXF")); Gui::Command::doCommand(Gui::Command::Doc, "import TechDraw"); Gui::Command::doCommand(Gui::Command::Doc, "TechDraw.writeDXFPage(App.activeDocument().%s, u\"%s\")", diff --git a/src/Mod/TechDraw/Gui/TaskCenterLine.ui b/src/Mod/TechDraw/Gui/TaskCenterLine.ui index 8173ecc129..7b6c8ad7d0 100644 --- a/src/Mod/TechDraw/Gui/TaskCenterLine.ui +++ b/src/Mod/TechDraw/Gui/TaskCenterLine.ui @@ -305,7 +305,7 @@ Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - mm + mm 3.000000000000000 diff --git a/src/Mod/TechDraw/Gui/TaskCosVertex.ui b/src/Mod/TechDraw/Gui/TaskCosVertex.ui index ddeaa080f7..328ba13ec2 100644 --- a/src/Mod/TechDraw/Gui/TaskCosVertex.ui +++ b/src/Mod/TechDraw/Gui/TaskCosVertex.ui @@ -103,7 +103,7 @@ - X + X @@ -139,7 +139,7 @@ - Y + Y diff --git a/src/Mod/TechDraw/Gui/TaskCosmeticCircle.ui b/src/Mod/TechDraw/Gui/TaskCosmeticCircle.ui index 0971e1092d..3e54cbf3d0 100644 --- a/src/Mod/TechDraw/Gui/TaskCosmeticCircle.ui +++ b/src/Mod/TechDraw/Gui/TaskCosmeticCircle.ui @@ -98,7 +98,7 @@ - X: + X: @@ -112,7 +112,7 @@ - Y: + Y: @@ -126,7 +126,7 @@ - Z: + Z: diff --git a/src/Mod/TechDraw/Gui/TaskCosmeticLine.ui b/src/Mod/TechDraw/Gui/TaskCosmeticLine.ui index 588bd19dda..40877bcfd1 100644 --- a/src/Mod/TechDraw/Gui/TaskCosmeticLine.ui +++ b/src/Mod/TechDraw/Gui/TaskCosmeticLine.ui @@ -91,7 +91,7 @@ - X: + X: @@ -105,7 +105,7 @@ - Y: + Y: @@ -119,7 +119,7 @@ - Z: + Z: @@ -170,7 +170,7 @@ - X: + X: @@ -184,7 +184,7 @@ - Y: + Y: @@ -198,7 +198,7 @@ - Z: + Z: diff --git a/src/Mod/TechDraw/Gui/TaskDetail.ui b/src/Mod/TechDraw/Gui/TaskDetail.ui index a19d6c669e..9d506516c0 100644 --- a/src/Mod/TechDraw/Gui/TaskDetail.ui +++ b/src/Mod/TechDraw/Gui/TaskDetail.ui @@ -111,7 +111,7 @@ - X + X @@ -150,7 +150,7 @@ - Y + Y diff --git a/src/Mod/TechDraw/Gui/TaskDimRepair.cpp b/src/Mod/TechDraw/Gui/TaskDimRepair.cpp index e3deaba80a..ae5810f8ac 100644 --- a/src/Mod/TechDraw/Gui/TaskDimRepair.cpp +++ b/src/Mod/TechDraw/Gui/TaskDimRepair.cpp @@ -135,7 +135,7 @@ void TaskDimRepair::slotUseSelection() if (geometryRefs2d == isInvalid) { QMessageBox::warning(Gui::getMainWindow(), QObject::tr("Incorrect Selection"), - QObject::tr("Can not make a dimension from selection")); + QObject::tr("Can not make dimension from selection")); return; } //what 3d geometry configuration did we receive? diff --git a/src/Mod/TechDraw/Gui/TaskDimension.cpp b/src/Mod/TechDraw/Gui/TaskDimension.cpp index fc8e65ff8c..60094479a4 100644 --- a/src/Mod/TechDraw/Gui/TaskDimension.cpp +++ b/src/Mod/TechDraw/Gui/TaskDimension.cpp @@ -144,7 +144,7 @@ bool TaskDimension::accept() { if (m_dimensionVP.expired()) { QMessageBox::warning(Gui::getMainWindow(), QObject::tr("Missing Dimension"), - QObject::tr("Dimension not found. Was it deleted? Can not continue.")); + QObject::tr("Dimension not found. Was it deleted? Can not continue.")); return true; } Gui::Document* doc = m_dimensionVP->getDocument(); @@ -159,7 +159,7 @@ bool TaskDimension::reject() { if (m_dimensionVP.expired()) { QMessageBox::warning(Gui::getMainWindow(), QObject::tr("Missing Dimension"), - QObject::tr("Dimension not found. Was it deleted? Can not continue.")); + QObject::tr("Dimension not found. Was it deleted? Can not continue.")); return true; } Gui::Document* doc = m_dimensionVP->getDocument(); diff --git a/src/Mod/TechDraw/Gui/TaskHatch.ui b/src/Mod/TechDraw/Gui/TaskHatch.ui index 0d172cdf94..7022aa0388 100644 --- a/src/Mod/TechDraw/Gui/TaskHatch.ui +++ b/src/Mod/TechDraw/Gui/TaskHatch.ui @@ -104,7 +104,7 @@ - Svg Line Color + SVG Line Color diff --git a/src/Mod/TechDraw/Gui/TaskHoleShaftFit.ui b/src/Mod/TechDraw/Gui/TaskHoleShaftFit.ui index f3d5010eda..fdf5d40c11 100644 --- a/src/Mod/TechDraw/Gui/TaskHoleShaftFit.ui +++ b/src/Mod/TechDraw/Gui/TaskHoleShaftFit.ui @@ -59,82 +59,82 @@ - c11 + c11 - f7 + f7 - h6 + h6 - h7 + h7 - h9 + h9 - h9 + h9 - h9 + h9 - h6 + h6 - h6 + h6 - h6 + h6 - h6 + h6 - h6 + h6 - k6 + k6 - n6 + n6 - r6 + r6 - s6 + s6 @@ -149,7 +149,7 @@ - H11/ + H11/ diff --git a/src/Mod/TechDraw/Gui/TaskLineDecor.ui b/src/Mod/TechDraw/Gui/TaskLineDecor.ui index 97e1884c68..ae6b8fbf35 100644 --- a/src/Mod/TechDraw/Gui/TaskLineDecor.ui +++ b/src/Mod/TechDraw/Gui/TaskLineDecor.ui @@ -96,7 +96,7 @@ - The use of the Qt line style is being phased out. Please use a standard line style instead. + The use of the Qt line style is being phased out. Please use a standard line style instead. -1 diff --git a/src/Mod/TechDraw/Gui/TaskProjGroup.cpp b/src/Mod/TechDraw/Gui/TaskProjGroup.cpp index 374b197b75..e5b8a973be 100644 --- a/src/Mod/TechDraw/Gui/TaskProjGroup.cpp +++ b/src/Mod/TechDraw/Gui/TaskProjGroup.cpp @@ -957,7 +957,7 @@ void DirectionEditDialog::createUI() { // Create layout and widgets for X auto* xLayout = new QHBoxLayout; - auto* xLabel = new QLabel(tr("X: ")); + auto* xLabel = new QLabel(QStringLiteral("X: ")); xSpinBox = new Gui::QuantitySpinBox; xSpinBox->setUnit(Base::Unit::Length); xLayout->addWidget(xLabel); @@ -965,7 +965,7 @@ void DirectionEditDialog::createUI() { // Create layout and widgets for Y auto* yLayout = new QHBoxLayout; - auto* yLabel = new QLabel(tr("Y: ")); + auto* yLabel = new QLabel(QStringLiteral("Y: ")); ySpinBox = new Gui::QuantitySpinBox; ySpinBox->setUnit(Base::Unit::Length); yLayout->addWidget(yLabel); @@ -973,7 +973,7 @@ void DirectionEditDialog::createUI() { // Create layout and widgets for Z auto* zLayout = new QHBoxLayout; - auto* zLabel = new QLabel(tr("Z: ")); + auto* zLabel = new QLabel(QStringLiteral("Z: ")); zSpinBox = new Gui::QuantitySpinBox; zSpinBox->setUnit(Base::Unit::Length); zLayout->addWidget(zLabel); diff --git a/src/Mod/TechDraw/Gui/TaskSectionView.ui b/src/Mod/TechDraw/Gui/TaskSectionView.ui index f59c7bbc4c..e2a9f77931 100644 --- a/src/Mod/TechDraw/Gui/TaskSectionView.ui +++ b/src/Mod/TechDraw/Gui/TaskSectionView.ui @@ -315,7 +315,7 @@ - X + X @@ -369,7 +369,7 @@ - Y + Y @@ -410,7 +410,7 @@ - Z + Z diff --git a/src/Mod/TechDraw/Gui/TaskSurfaceFinishSymbols.ui b/src/Mod/TechDraw/Gui/TaskSurfaceFinishSymbols.ui index 148870400e..6ee7c358c1 100644 --- a/src/Mod/TechDraw/Gui/TaskSurfaceFinishSymbols.ui +++ b/src/Mod/TechDraw/Gui/TaskSurfaceFinishSymbols.ui @@ -265,7 +265,7 @@ Use ISO standard - ISO + ISO true @@ -278,7 +278,7 @@ Use ASME standard - ASME + ASME diff --git a/src/Mod/TechDraw/Gui/TaskWeldingSymbol.ui b/src/Mod/TechDraw/Gui/TaskWeldingSymbol.ui index 1614a43a6e..51eae239ff 100644 --- a/src/Mod/TechDraw/Gui/TaskWeldingSymbol.ui +++ b/src/Mod/TechDraw/Gui/TaskWeldingSymbol.ui @@ -305,7 +305,7 @@ This directory will be used for the symbol selection. Gui::FileChooser::Directory - *.svg + *.svg