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 <orgads@gmail.com>
This commit is contained in:
Leena Miettinen
2015-07-06 13:36:45 +02:00
parent 84163cb0d7
commit 69bd43813d

View File

@@ -88,12 +88,12 @@ void SettingsPageWidget::setSettings(const ClearCaseSettings &s)
if (extDiffAvailable) { if (extDiffAvailable) {
m_ui.diffWarningLabel->setVisible(false); m_ui.diffWarningLabel->setVisible(false);
} else { } 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()) { if (HostOsInfo::isWindowsHost()) {
diffWarning += QLatin1Char(' '); diffWarning += QLatin1Char(' ');
diffWarning.append(tr("DiffUtils is available for free download " diffWarning.append(tr("DiffUtils is available for free download at"
"<a href=\"http://gnuwin32.sourceforge.net/packages/diffutils.htm\">here</a>. " "http://gnuwin32.sourceforge.net/packages/diffutils.htm."
"Please extract it to a directory in your PATH.")); "Extract it to a directory in your PATH."));
} }
m_ui.diffWarningLabel->setText(diffWarning); m_ui.diffWarningLabel->setText(diffWarning);
m_ui.externalDiffRadioButton->setEnabled(false); m_ui.externalDiffRadioButton->setEnabled(false);