From d61de347ea3a3fffc14095699881fe4370857277 Mon Sep 17 00:00:00 2001 From: Kunda Date: Tue, 21 Feb 2017 12:35:25 -0500 Subject: [PATCH] Cleanup non-short-url wiki links in translations ...to avoid translators translating the url varable names --- src/Gui/MainWindow.cpp | 4 ++-- src/Mod/Draft/importDXF.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Gui/MainWindow.cpp b/src/Gui/MainWindow.cpp index 7572f948cf5a..7fd998b1c6cf 100644 --- a/src/Gui/MainWindow.cpp +++ b/src/Gui/MainWindow.cpp @@ -480,7 +480,7 @@ void MainWindow::tile() mb.setIcon(QMessageBox::Warning); mb.setTextFormat(Qt::RichText); mb.setText(tr("There is a rendering issue on MacOS.")); - mb.setInformativeText(tr("See the wiki for more information")); + mb.setInformativeText(tr("See the wiki for more information")); QAbstractButton *suppressBtn; suppressBtn = mb.addButton(tr("Don't show again"), QMessageBox::DestructiveRole); @@ -508,7 +508,7 @@ void MainWindow::cascade() mb.setIcon(QMessageBox::Warning); mb.setTextFormat(Qt::RichText); mb.setText(tr("There is a rendering issue on MacOS.")); - mb.setInformativeText(tr("See the wiki for more information")); + mb.setInformativeText(tr("See the wiki for more information")); QAbstractButton *suppressBtn; suppressBtn = mb.addButton(tr("Don't show again"), QMessageBox::DestructiveRole); diff --git a/src/Mod/Draft/importDXF.py b/src/Mod/Draft/importDXF.py index 955caef9f958..8b50470c6ef4 100644 --- a/src/Mod/Draft/importDXF.py +++ b/src/Mod/Draft/importDXF.py @@ -90,7 +90,7 @@ def errorDXFLib(gui): message = translate("Draft","""Download of dxf libraries failed. Please download and install them manually. See complete instructions at -http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install""") +http://www.freecadweb.org/wiki/Dxf_Importer_Install""") QtGui.QMessageBox.information(None,"",message) else: FreeCAD.Console.PrintWarning("The DXF import/export libraries needed by FreeCAD to handle the DXF format are not installed.\n")