Signed-off-by: rakekniven <mark.ziegler@rakekniven.de>
This commit is contained in:
rakekniven 2020-02-05 06:55:51 +01:00 коммит произвёл GitHub
Родитель 1988511c55
Коммит da66b3956e
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
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/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."));
}
}