summaryrefslogtreecommitdiffstats
path: root/Swift
diff options
context:
space:
mode:
Diffstat (limited to 'Swift')
-rw-r--r--Swift/QtUI/QtLoginWindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Swift/QtUI/QtLoginWindow.cpp b/Swift/QtUI/QtLoginWindow.cpp
index d1fac1e..c27edfb 100644
--- a/Swift/QtUI/QtLoginWindow.cpp
+++ b/Swift/QtUI/QtLoginWindow.cpp
@@ -514,25 +514,25 @@ void QtLoginWindow::resizeEvent(QResizeEvent*) {
}
void QtLoginWindow::moveEvent(QMoveEvent*) {
emit geometryChanged();
}
bool QtLoginWindow::askUserToTrustCertificatePermanently(const std::string& message, const std::vector<Certificate::ref>& certificates) {
QMessageBox dialog(this);
dialog.setText(tr("The certificate presented by the server is not valid."));
dialog.setInformativeText(P2QSTRING(message) + "\n\n" + tr("Would you like to permanently trust this certificate? This must only be done if you know it is correct."));
- dialog.addButton("Show Certificate", QMessageBox::HelpRole);
+ dialog.addButton(tr("Show Certificate"), QMessageBox::HelpRole);
dialog.addButton(QMessageBox::Yes);
dialog.addButton(QMessageBox::No);
dialog.setDefaultButton(QMessageBox::No);
while (true) {
int result = dialog.exec();
if (result == QMessageBox::Yes || result == QMessageBox::No) {
return result == QMessageBox::Yes;
}
// FIXME: This isn't very nice, because the dialog disappears every time. We actually need a real
// dialog with a custom button.
QtMainWindow::openCertificateDialog(certificates, &dialog);
}