diff --git a/src/gui/qt/mainwindow/mainwindowimpl.cpp b/src/gui/qt/mainwindow/mainwindowimpl.cpp
index 08932c50..c859202f 100755
--- a/src/gui/qt/mainwindow/mainwindowimpl.cpp
+++ b/src/gui/qt/mainwindow/mainwindowimpl.cpp
@@ -3521,7 +3521,7 @@ void mainWindowImpl::networkError(int errorID, int /*osErrorID*/) {
break;
case ERR_NET_VERSION_NOT_SUPPORTED:
{ QMessageBox::warning(this, tr("Network Error"),
- tr("The PokerTH server does not support this version of the game.\nPlease update PokerTH."),
+ tr("The PokerTH server does not support this version of the game.\nPlease go to http://www.pokerth.net/ and download the latest version."),
QMessageBox::Close); }
break;
case ERR_NET_SERVER_FULL:
@@ -3656,12 +3656,12 @@ void mainWindowImpl::networkNotification(int notificationId)
break;
case NTF_NET_NEW_RELEASE_AVAILABLE:
{ QMessageBox::information(this, tr("Network Notification"),
- tr("A new release of PokerTH is available. Please go to http://www.pokerth.net/ and download the latest version."),
+ tr("A new release of PokerTH is available.\nPlease go to http://www.pokerth.net/ and download the latest version."),
QMessageBox::Close); }
break;
case NTF_NET_OUTDATED_BETA:
{ QMessageBox::information(this, tr("Network Notification"),
- tr("This beta release of PokerTH is outdated. Please go to http://www.pokerth.net/ and download the latest version."),
+ tr("This beta release of PokerTH is outdated.\nPlease go to http://www.pokerth.net/ and download the latest version."),
QMessageBox::Close); }
break;
}