owncloudsetuppage.cpp: adapt to string change from master: url -> URL
authorMichael Schuster <michael@schuster.ms>
Sun, 1 Mar 2020 04:32:59 +0000 (05:32 +0100)
committerMichael Schuster <michael@schuster.ms>
Sun, 1 Mar 2020 04:32:59 +0000 (05:32 +0100)
Signed-off-by: Michael Schuster <michael@schuster.ms>
src/gui/wizard/owncloudsetuppage.cpp

index 95510b6967fb69016ed22d45cd0b030d1fa5f907..ac93245c6785130c4e0fe9c625814ab7514f2096 100644 (file)
@@ -179,11 +179,11 @@ void OwncloudSetupPage::slotUrlChanged(const QString &url)
 
     if (!url.startsWith(QLatin1String("https://"))) {
         _ui.urlLabel->setPixmap(QPixmap(Theme::hidpiFileName(":/client/theme/lock-http.svg")));
-        _ui.urlLabel->setToolTip(tr("This url is NOT secure as it is not encrypted.\n"
+        _ui.urlLabel->setToolTip(tr("This URL is NOT secure as it is not encrypted.\n"
                                     "It is not advisable to use it."));
     } else {
         _ui.urlLabel->setPixmap(QPixmap(Theme::hidpiFileName(":/client/theme/lock-https.svg")));
-        _ui.urlLabel->setToolTip(tr("This url is secure. You can use it."));
+        _ui.urlLabel->setToolTip(tr("This URL is secure. You can use it."));
     }
 }