summaryrefslogtreecommitdiffstats
path: root/libkpgp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-31 04:15:04 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-31 04:15:04 +0000
commit6bb29e17ec254094cc1399f3ad2f93f12896b3b7 (patch)
treec0de79f0b76f2db144b2328d15ffb5f4a41d3847 /libkpgp
parent029d6084e699568256c53a8270cb36ad4f66b935 (diff)
downloadtdepim-6bb29e17ec254094cc1399f3ad2f93f12896b3b7.tar.gz
tdepim-6bb29e17ec254094cc1399f3ad2f93f12896b3b7.zip
Fix remaining instances of tqStatus embedded in user visible strings
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1250385 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'libkpgp')
-rw-r--r--libkpgp/kpgpui.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libkpgp/kpgpui.cpp b/libkpgp/kpgpui.cpp
index a52680b19..d3fa21260 100644
--- a/libkpgp/kpgpui.cpp
+++ b/libkpgp/kpgpui.cpp
@@ -542,13 +542,13 @@ TQString KeySelectionDialog::keyInfo( const Kpgp::Key *key ) const
dt.setTime_t( key->creationDate() );
if( remark.isEmpty() ) {
return " " + i18n("creation date and status of an OpenPGP key",
- "Creation date: %1, tqStatus: %2")
+ "Creation date: %1, Status: %2")
.tqarg( KGlobal::locale()->formatDate( dt.date(), true ) )
.tqarg( status );
}
else {
return " " + i18n("creation date, status and remark of an OpenPGP key",
- "Creation date: %1, tqStatus: %2 (%3)")
+ "Creation date: %1, Status: %2 (%3)")
.tqarg( KGlobal::locale()->formatDate( dt.date(), true ) )
.tqarg( status )
.tqarg( remark );