diff options
author | nils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2012-03-07 21:25:52 +0000 |
---|---|---|
committer | nils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2012-03-07 21:25:52 +0000 |
commit | 2344929c3914aabf9c7bc2e05fcb290412871c9a (patch) | |
tree | 08b18cca8214c70cd418625c23d4ecb62435937e /gpgcontext.cpp | |
parent | set maximum keysize of elgamal subkey to 65536 (diff) | |
download | gpg4usb-2344929c3914aabf9c7bc2e05fcb290412871c9a.tar.gz gpg4usb-2344929c3914aabf9c7bc2e05fcb290412871c9a.zip |
added missing tr in password dialog
git-svn-id: http://cpunk.de/svn/src/gpg4usb/branches/0.3.2@851 34ebc366-c3a9-4b3c-9f84-69acf7962910
Diffstat (limited to 'gpgcontext.cpp')
-rw-r--r-- | gpgcontext.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gpgcontext.cpp b/gpgcontext.cpp index 3b21514..7aaf35b 100644 --- a/gpgcontext.cpp +++ b/gpgcontext.cpp @@ -481,7 +481,7 @@ gpgme_error_t GpgContext::passphrase(const char *uid_hint, if (!gpgHint.isEmpty()) { // remove UID, leave only username & email gpgHint.remove(0, gpgHint.indexOf(" ")); - passwordDialogMessage += "<b>Enter Password for</b><br>\n" + gpgHint + "\n"; + passwordDialogMessage += "<b>"+tr("Enter Password for")+"</b><br>" + gpgHint + "<br>"; } if (mPasswordCache.isEmpty()) { |