From 30479cc5a241358107a22e30a8ac3d79d5c5bc48 Mon Sep 17 00:00:00 2001 From: Markus Goetz Date: Tue, 11 Nov 2014 16:44:12 +0100 Subject: [PATCH] Wizard: Properly show error message --- src/wizard/owncloudsetuppage.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wizard/owncloudsetuppage.cpp b/src/wizard/owncloudsetuppage.cpp index 8f4cb7245..d49e78f9c 100644 --- a/src/wizard/owncloudsetuppage.cpp +++ b/src/wizard/owncloudsetuppage.cpp @@ -224,7 +224,7 @@ void OwncloudSetupPage::setErrorString( const QString& err ) _ui.errorLabel->setVisible(false); } else { if (_ui.leUrl->text().startsWith("https://")) { - QString msg = tr("Could not connect securely. Do you want to connect unencrypted instead (not recommended)?").arg(err); + QString msg = tr("Could not connect securely:\n\n%1\n\nDo you want to connect unencrypted instead (not recommended)?").arg(err); QString title = tr("Connection failed"); if (QMessageBox::question(this, title, msg, QMessageBox::Yes, QMessageBox::No) == QMessageBox::Yes) { QUrl url(_ui.leUrl->text());