diff options
author | nils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2014-01-03 22:23:23 +0000 |
---|---|---|
committer | nils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2014-01-03 22:23:23 +0000 |
commit | 7b516ff4cf154dee119b24d4bed40c5646f5f10f (patch) | |
tree | 64eaf7a12f05fd881e7e766c7244f1164a103f89 /keymgmt.cpp | |
parent | branch 0.3.3 (diff) | |
parent | changed digest algo to sha512 (described under http://www.apache.org/dev/open... (diff) | |
download | gpg4usb-7b516ff4cf154dee119b24d4bed40c5646f5f10f.tar.gz gpg4usb-7b516ff4cf154dee119b24d4bed40c5646f5f10f.zip |
moved branch 0.3.2-1 to 0.3.3
git-svn-id: http://cpunk.de/svn/src/gpg4usb/branches/0.3.3@1084 34ebc366-c3a9-4b3c-9f84-69acf7962910
Diffstat (limited to 'keymgmt.cpp')
-rwxr-xr-x | keymgmt.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/keymgmt.cpp b/keymgmt.cpp index 8bfc8c5..e8b7d94 100755 --- a/keymgmt.cpp +++ b/keymgmt.cpp @@ -66,7 +66,7 @@ KeyMgmt::KeyMgmt(GpgME::GpgContext *ctx, QWidget *parent ) : QMainWindow(parent void KeyMgmt::createActions() { closeAct = new QAction(tr("&Close Key Management"), this); - closeAct->setShortcut(QKeySequence::Quit); + closeAct->setShortcut(tr("Ctrl+Q")); closeAct->setIcon(QIcon(":exit.png")); closeAct->setToolTip(tr("Close Key Management")); connect(closeAct, SIGNAL(triggered()), this, SLOT(close())); @@ -219,8 +219,8 @@ void KeyMgmt::deleteKeysWithWarning(QStringList *uidList) } int ret = QMessageBox::warning(this, tr("Deleting Keys"), - "<b>"+tr("Are you sure that you want to delete the following keys?")+"</b><br/><br/>"+keynames+ - +"<br/>"+tr("The action can not be undone."), + tr("<b>Are you sure that you want to delete the following keys?.</b><br/><br/>")+keynames+ + tr("<br/>The action can not be undone."), QMessageBox::No | QMessageBox::Yes); if (ret == QMessageBox::Yes) { |