aboutsummaryrefslogtreecommitdiffstats
path: root/src/ui/keypair_details/KeyPairDetailTab.cpp
diff options
context:
space:
mode:
authorSaturneric <[email protected]>2021-05-30 16:58:08 +0000
committerSaturneric <[email protected]>2021-05-30 16:58:08 +0000
commit1075b243061f08db5276b979a2619bcc27b05a61 (patch)
treeae78f746cf4e3ee86de0df433098b56b899b99e8 /src/ui/keypair_details/KeyPairDetailTab.cpp
parentNew page and function for generating subkeys. (diff)
downloadGpgFrontend-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.cpp2
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();
}