diff --git a/resources/qml/WelcomePages/AddPrinterByIpContent.qml b/resources/qml/WelcomePages/AddPrinterByIpContent.qml
index 5ab0217f01..a28a3149ce 100644
--- a/resources/qml/WelcomePages/AddPrinterByIpContent.qml
+++ b/resources/qml/WelcomePages/AddPrinterByIpContent.qml
@@ -197,17 +197,20 @@ Item
renderType: Text.NativeRendering
visible: addPrinterByIpScreen.hasRequestInProgress || (addPrinterByIpScreen.hasRequestFinished && !addPrinterByIpScreen.isPrinterDiscovered)
+ textFormat: Text.RichText
text:
{
if (addPrinterByIpScreen.hasRequestFinished)
{
- catalog.i18nc("@label", "Could not connect to device.")
+ return catalog.i18nc("@label", "Could not connect to device.");
}
else
{
- catalog.i18nc("@label", "The printer at this address has not responded yet.")
+ return catalog.i18nc("@label", "The printer at this address has not responded yet.") + "
"
+ + catalog.i18nc("@label", "Can't connect to your printer?") + "";
}
}
+ onLinkActivated: Qt.openUrlExternally(link)
}
Item