diff options
author | nils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2012-03-05 21:42:16 +0000 |
---|---|---|
committer | nils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2012-03-05 21:42:16 +0000 |
commit | 0b1aa3ebe241fc68593541a985298efae43950a3 (patch) | |
tree | db82187dfff048c4142281a571f88b038506ba27 | |
parent | fix sign and verify bug with utf8, which was already fixed in 0.3.1.1 (diff) | |
download | gpg4usb-0b1aa3ebe241fc68593541a985298efae43950a3.tar.gz gpg4usb-0b1aa3ebe241fc68593541a985298efae43950a3.zip |
added missing tr in key management
git-svn-id: http://cpunk.de/svn/src/gpg4usb/branches/0.3.2@834 34ebc366-c3a9-4b3c-9f84-69acf7962910
-rwxr-xr-x | keymgmt.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/keymgmt.cpp b/keymgmt.cpp index 690de89..ae8fd46 100755 --- a/keymgmt.cpp +++ b/keymgmt.cpp @@ -142,8 +142,8 @@ void KeyMgmt::createToolBars() toolButton->setMenu(importKeyMenu); toolButton->setPopupMode(QToolButton::InstantPopup); toolButton->setIcon(QIcon(":key_import.png")); - toolButton->setToolTip("Import key"); - toolButton->setText("Import key from"); + toolButton->setToolTip(tr("Import key")); + toolButton->setText(tr("Import key from"); toolButton->setToolButtonStyle(Qt::ToolButtonTextUnderIcon); keyToolBar->addWidget(toolButton); |