diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-31 04:15:04 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-31 04:15:04 +0000 |
commit | 6bb29e17ec254094cc1399f3ad2f93f12896b3b7 (patch) | |
tree | c0de79f0b76f2db144b2328d15ffb5f4a41d3847 /kmail/headerstyle.cpp | |
parent | 029d6084e699568256c53a8270cb36ad4f66b935 (diff) | |
download | tdepim-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 'kmail/headerstyle.cpp')
-rw-r--r-- | kmail/headerstyle.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kmail/headerstyle.cpp b/kmail/headerstyle.cpp index 6e459c7aa..437fc3fd5 100644 --- a/kmail/headerstyle.cpp +++ b/kmail/headerstyle.cpp @@ -463,7 +463,7 @@ namespace KMail { TQString spamHTML; - if ( configReader.readBoolEntry( "showSpamtqStatus", true ) ) { + if ( configReader.readBoolEntry( "showSpamStatus", true ) ) { SpamScores scores = SpamHeaderAnalyzer::getSpamScores( message ); for ( SpamScoresIterator it = scores.begin(); it != scores.end(); ++it ) spamHTML += (*it).agent() + " " + @@ -841,7 +841,7 @@ namespace KMail { if ( !spamHTML.isEmpty() ) headerStr.append( TQString( "<div class=\"spamheader\" dir=\"%1\"><b>%2</b> <span style=\"padding-left: 20px;\">%3</span></div>\n") - .tqarg( subjectDir, i18n("Spam tqStatus:"), spamHTML ) ); + .tqarg( subjectDir, i18n("Spam Status:"), spamHTML ) ); headerStr += "</div>\n\n"; return headerStr; |