owncloudsetuppage.cpp: adapt to string change from master: url -> URL

Signed-off-by: Michael Schuster <michael@schuster.ms>
This commit is contained in:
Michael Schuster 2020-03-01 05:32:59 +01:00
Родитель a92a764c2a
Коммит 29e02d0579
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 00819E3BF4177B28
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -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."));
}
}