diff options
author | Saturneric <[email protected]> | 2021-06-08 20:27:52 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2021-06-08 20:27:52 +0000 |
commit | f7982062557831921d73227239b3b871348c77c0 (patch) | |
tree | 4b6b52ce96a91851904787358501c58189c42ffd /src/gpg/result_analyse/DecryptResultAnalyse.cpp | |
parent | Check whether the key can be encrypted before the encryption operation. (diff) | |
download | GpgFrontend-f7982062557831921d73227239b3b871348c77c0.tar.gz GpgFrontend-f7982062557831921d73227239b3b871348c77c0.zip |
Adjust the output of analysis results.
Fix the problem.
Signed-off-by: Saturneric <[email protected]>
Diffstat (limited to 'src/gpg/result_analyse/DecryptResultAnalyse.cpp')
-rw-r--r-- | src/gpg/result_analyse/DecryptResultAnalyse.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gpg/result_analyse/DecryptResultAnalyse.cpp b/src/gpg/result_analyse/DecryptResultAnalyse.cpp index 729d5b59..79c6bc51 100644 --- a/src/gpg/result_analyse/DecryptResultAnalyse.cpp +++ b/src/gpg/result_analyse/DecryptResultAnalyse.cpp @@ -42,7 +42,7 @@ DecryptResultAnalyse::DecryptResultAnalyse(GpgME::GpgContext *ctx, gpgme_error_t bool DecryptResultAnalyse::printReci(QTextStream &stream, gpgme_recipient_t reci) { bool keyFound = true; - stream << QApplication::tr("Signed By: "); + stream << QApplication::tr(">Recipient: "); try { auto key = mCtx->getKeyById(reci->keyid); @@ -57,6 +57,6 @@ bool DecryptResultAnalyse::printReci(QTextStream &stream, gpgme_recipient_t reci } stream << endl; - stream << "Public algo: " << gpgme_pubkey_algo_name(reci->pubkey_algo) << endl; + stream << "Public algo: " << gpgme_pubkey_algo_name(reci->pubkey_algo) << endl << endl; return keyFound; } |