diff options
author | Saturneric <[email protected]> | 2021-05-30 16:58:08 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2021-05-30 16:58:08 +0000 |
commit | 1075b243061f08db5276b979a2619bcc27b05a61 (patch) | |
tree | ae78f746cf4e3ee86de0df433098b56b899b99e8 /src/ui/keypair_details/KeyPairDetailTab.cpp | |
parent | New page and function for generating subkeys. (diff) | |
download | GpgFrontend-1075b243061f08db5276b979a2619bcc27b05a61.tar.gz GpgFrontend-1075b243061f08db5276b979a2619bcc27b05a61.zip |
Write a text logo for never expiring.
Adjust the UI of the key details interface.
Signed-off-by: Saturneric <[email protected]>
Diffstat (limited to 'src/ui/keypair_details/KeyPairDetailTab.cpp')
-rw-r--r-- | src/ui/keypair_details/KeyPairDetailTab.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/keypair_details/KeyPairDetailTab.cpp b/src/ui/keypair_details/KeyPairDetailTab.cpp index 441fae77..cf690626 100644 --- a/src/ui/keypair_details/KeyPairDetailTab.cpp +++ b/src/ui/keypair_details/KeyPairDetailTab.cpp @@ -43,7 +43,7 @@ KeyPairDetailTab::KeyPairDetailTab(GpgME::GpgContext *ctx, const GpgKey &key, QW keySizeVal = QString::number(key.length); if (key.expires.toTime_t() == 0) { - keyExpireVal = tr("Never"); + keyExpireVal = tr("Never Expired"); } else { keyExpireVal = key.expires.toString(); } |