diff --git a/cockatrice/src/dlg_update.cpp b/cockatrice/src/dlg_update.cpp
index b31a5e05..8a7212e3 100644
--- a/cockatrice/src/dlg_update.cpp
+++ b/cockatrice/src/dlg_update.cpp
@@ -131,7 +131,7 @@ void DlgUpdate::finishedUpdateCheck(bool needToUpdate, bool isCompatible, Releas
reply = QMessageBox::question(this, tr("Update Available"),
tr("A new version of Cockatrice is available!") + "
"
+ "" + tr("New version") + QString(": %1
").arg(release->getName())
- + "" + tr("Published") + QString(": %1 (").arg(publishDate, release->getDescriptionUrl()) + tr("Changelog") + ")
"
+ + "" + tr("Released") + QString(": %1 (").arg(publishDate, release->getDescriptionUrl()) + tr("Changelog") + ")
"
+ tr("Do you want to update now?"),
QMessageBox::Yes | QMessageBox::No);
@@ -141,7 +141,7 @@ void DlgUpdate::finishedUpdateCheck(bool needToUpdate, bool isCompatible, Releas
QMessageBox::information(this, tr("Update Available"),
tr("A new version of Cockatrice is available!") + "
"
+ "" + tr("New version") + QString(": %1
").arg(release->getName())
- + "" + tr("Published") + QString(": %1 (").arg(publishDate, release->getDescriptionUrl()) + tr("Changelog") + ")
"
+ + "" + tr("Released") + QString(": %1 (").arg(publishDate, release->getDescriptionUrl()) + tr("Changelog") + ")
"
+ tr("Unfortunately there are no download packages available for your operating system. \nYou may have to build from source yourself.") + "
"
+ tr("Please check the download page manually and visit the wiki for instructions on compiling."));
}