diff --git a/src/gui/updater/ocupdater.cpp b/src/gui/updater/ocupdater.cpp
index fe6d455138..6adaa4a73c 100644
--- a/src/gui/updater/ocupdater.cpp
+++ b/src/gui/updater/ocupdater.cpp
@@ -149,11 +149,11 @@ QString OCUpdater::statusString() const
case DownloadComplete:
return tr("%1 available. Restart application to start the update.").arg(updateVersion);
case DownloadFailed:
- return tr("Could not download update. Please click here to download the update manually.").arg(_updateInfo.web());
+ return tr("Could not download update. Please open %1 to download the update manually.").arg(_updateInfo.web());
case DownloadTimedOut:
return tr("Could not check for new updates.");
case UpdateOnlyAvailableThroughSystem:
- return tr("New %1 is available. Please click here to download the update.").arg(updateVersion, _updateInfo.web());
+ return tr("New %1 is available. Please open %2 to download the update.").arg(updateVersion, _updateInfo.web());
case CheckingServer:
return tr("Checking update server …");
case Unknown: