aboutsummaryrefslogtreecommitdiffstats
path: root/src/gpg/result_analyse/SignResultAnalyse.cpp
diff options
context:
space:
mode:
authorSaturn&Eric <[email protected]>2021-12-07 08:37:54 +0000
committerGitHub <[email protected]>2021-12-07 08:37:54 +0000
commitcc89ad54ab3dd4aeb3ed7afeed59a80b6e61649c (patch)
tree865d2298d836c8eb36584b5d268325bca4a66a78 /src/gpg/result_analyse/SignResultAnalyse.cpp
parentMerge pull request #26 from saturneric/develop (diff)
parentFix Bugs on KeyUploadDialog (diff)
downloadGpgFrontend-cc89ad54ab3dd4aeb3ed7afeed59a80b6e61649c.tar.gz
GpgFrontend-cc89ad54ab3dd4aeb3ed7afeed59a80b6e61649c.zip
Merge pull request #28 from saturneric/develop
Diffstat (limited to 'src/gpg/result_analyse/SignResultAnalyse.cpp')
-rw-r--r--src/gpg/result_analyse/SignResultAnalyse.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/gpg/result_analyse/SignResultAnalyse.cpp b/src/gpg/result_analyse/SignResultAnalyse.cpp
index 770594ca..a65c4a9d 100644
--- a/src/gpg/result_analyse/SignResultAnalyse.cpp
+++ b/src/gpg/result_analyse/SignResultAnalyse.cpp
@@ -76,8 +76,9 @@ void GpgFrontend::SignResultAnalyse::do_analyse() {
<< gpgme_pubkey_algo_name(new_sign->pubkey_algo) << std::endl;
stream << " " << _("Hash Algo") << ": "
<< gpgme_hash_algo_name(new_sign->hash_algo) << std::endl;
- stream << " " << _("Date & Time") << ": "
- << boost::posix_time::to_iso_string(
+ stream << " " << _("Date") << "(" << _("UTC") << ")"
+ << ": "
+ << boost::posix_time::to_iso_extended_string(
boost::posix_time::from_time_t(new_sign->timestamp))
<< std::endl;