Skip to content

Commit

Permalink
Merge pull request #544 from luzpaz/short-url-cont
Browse files Browse the repository at this point in the history
Cleanup non-short-url wiki links in translations
  • Loading branch information
wwmayer committed Feb 21, 2017
2 parents 97c9174 + d61de34 commit e5fe3d8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/Gui/MainWindow.cpp
Expand Up @@ -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 <a href=\"http://www.freecadweb.org/wiki/index.php?title=OpenGL_on_MacOS\"> the wiki</a> for more information"));
mb.setInformativeText(tr("See <a href=\"http://www.freecadweb.org/wiki/OpenGL_on_MacOS\"> the wiki</a> for more information"));

QAbstractButton *suppressBtn;
suppressBtn = mb.addButton(tr("Don't show again"), QMessageBox::DestructiveRole);
Expand Down Expand Up @@ -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 <a href=\"http://www.freecadweb.org/wiki/index.php?title=OpenGL_on_MacOS\"> the wiki</a> for more information"));
mb.setInformativeText(tr("See <a href=\"http://www.freecadweb.org/wiki/OpenGL_on_MacOS\"> the wiki</a> for more information"));

QAbstractButton *suppressBtn;
suppressBtn = mb.addButton(tr("Don't show again"), QMessageBox::DestructiveRole);
Expand Down
2 changes: 1 addition & 1 deletion src/Mod/Draft/importDXF.py
Expand Up @@ -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")
Expand Down

0 comments on commit e5fe3d8

Please sign in to comment.