l10n: Changed grammar
authorrakekniven <mark.ziegler@rakekniven.de>
Wed, 5 Feb 2020 05:55:51 +0000 (06:55 +0100)
committerGitHub <noreply@github.com>
Wed, 5 Feb 2020 05:55:51 +0000 (06:55 +0100)
Signed-off-by: rakekniven <mark.ziegler@rakekniven.de>
src/gui/wizard/owncloudsetuppage.cpp

index 84f160aaf784e9cfd0186824633e94277967b8e5..4d42dc3354ac18682d1232ebca5beb3892ead003 100644 (file)
@@ -179,11 +179,11 @@ void OwncloudSetupPage::slotUrlChanged(const QString &url)
 
     if (!url.startsWith(QLatin1String("https://"))) {
         _ui.urlLabel->setPixmap(QPixmap(Theme::hidpiFileName(":/client/resources/lock-http.png")));
-        _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/resources/lock-https.png")));
-        _ui.urlLabel->setToolTip(tr("This url is secure. You can use it."));
+        _ui.urlLabel->setToolTip(tr("This URL is secure. You can use it."));
     }
 }