From 69bd43813d662d20d6876debc0ff501aa340ebd3 Mon Sep 17 00:00:00 2001 From: Leena Miettinen Date: Mon, 6 Jul 2015 13:36:45 +0200 Subject: [PATCH] ClearCase: replace link with text URL ...because Qt Creator blocks external links. Also remove the word "Please", to follow the UI text guidelines. Change-Id: I060035367ede54c3915f5396ffb42c7be73b729d Reviewed-by: Orgad Shaneh --- src/plugins/clearcase/settingspage.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/plugins/clearcase/settingspage.cpp b/src/plugins/clearcase/settingspage.cpp index cefb10b6887..160ae1f4ac0 100644 --- a/src/plugins/clearcase/settingspage.cpp +++ b/src/plugins/clearcase/settingspage.cpp @@ -88,12 +88,12 @@ void SettingsPageWidget::setSettings(const ClearCaseSettings &s) if (extDiffAvailable) { m_ui.diffWarningLabel->setVisible(false); } else { - QString diffWarning = tr("In order to use External diff, 'diff' command needs to be accessible."); + QString diffWarning = tr("In order to use External diff, \"diff\" command needs to be accessible."); if (HostOsInfo::isWindowsHost()) { diffWarning += QLatin1Char(' '); - diffWarning.append(tr("DiffUtils is available for free download " - "here. " - "Please extract it to a directory in your PATH.")); + diffWarning.append(tr("DiffUtils is available for free download at" + "http://gnuwin32.sourceforge.net/packages/diffutils.htm." + "Extract it to a directory in your PATH.")); } m_ui.diffWarningLabel->setText(diffWarning); m_ui.externalDiffRadioButton->setEnabled(false);