diff options
-rw-r--r-- | TODO | 3 | ||||
-rw-r--r-- | mainwindow.cpp | 5 |
2 files changed, 5 insertions, 3 deletions
@@ -67,6 +67,9 @@ Release 0.3.3 - Refresh key from keyserver [DONE] - Upload key to keyserver - show message if verify has no valid signature +- exclude translators list from about dialog [DONE] +- prevent utf8 encoding for comments on keygeneration +- set maximum keysize to 16384 Release 0.3.4 - Catch bad passphrase message diff --git a/mainwindow.cpp b/mainwindow.cpp index 52f91a8..9f78a08 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -636,12 +636,11 @@ void MainWindow::about() "<b>Developer:</b><br>" "Bene, Heimer, Juergen, Nils, Ubbo<br><br>" "<b>Translation:</b><br>" - "Viriato/Phol (es), <br>Serse (it), Russell (my),<br>Alessandro (pt_br), Kirill (ru), Tom (vi)" - "<br><br>" + "%1<br><br>" "If you have any questions or suggestions have a look<br/>" "at our <a href=\"http://gpg4usb.cpunk.de/contact.php\">" "contact page</a> or send a mail to our<br/> mailing list at" - " <a href=\"mailto:[email protected]\">[email protected]</a>.") + " <a href=\"mailto:[email protected]\">[email protected]</a>.").arg("Viriato/Phol (es), <br>Serse (it), Russell (my),<br>Alessandro (pt_br), Kirill (ru), Tom (vi)") + tr("<br><br> Built with Qt ") + qVersion() + tr(" and GPGME ") + GpgME::GpgContext::getGpgmeVersion() +"</center>"); |