diff options
author | Kevin Smith <git@kismith.co.uk> | 2012-12-01 15:24:30 (GMT) |
---|---|---|
committer | Kevin Smith <git@kismith.co.uk> | 2012-12-01 15:24:30 (GMT) |
commit | c06c4d264aca4e252495181a8de01960abad983f (patch) | |
tree | 617df261d04dd0acea3a93f2198361d0de894f25 /Swift/QtUI/QtLoginWindow.cpp | |
parent | 2aaf52c6b175533b3ee9de5d603dfaa152165d04 (diff) | |
download | swift-contrib-c06c4d264aca4e252495181a8de01960abad983f.zip swift-contrib-c06c4d264aca4e252495181a8de01960abad983f.tar.bz2 |
Missing translation string
Change-Id: Id18f8edb422830ef3bce4f1fe7b2524a53e4b74f
Diffstat (limited to 'Swift/QtUI/QtLoginWindow.cpp')
-rw-r--r-- | Swift/QtUI/QtLoginWindow.cpp | 2 |
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 @@ -523,7 +523,7 @@ bool QtLoginWindow::askUserToTrustCertificatePermanently(const std::string& mess 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); |