From 182cedcd4518280291beaea0c10f893296a44df3 Mon Sep 17 00:00:00 2001 From: David Faure Date: Mon, 26 Apr 2004 12:20:16 +0000 Subject: [PATCH] Added missing arg() which was leading to "%1 Folder is read-only" in the statusbar. svn path=/trunk/kdepim/; revision=306504 --- kmheaders.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kmheaders.cpp b/kmheaders.cpp index 0182ddec8..d89681033 100644 --- a/kmheaders.cpp +++ b/kmheaders.cpp @@ -1526,7 +1526,7 @@ void KMHeaders::setFolderInfoStatus () str = i18n( "1 message, %1.", "%n messages, %1.", mFolder->count() ) .arg( str ); if ( mFolder->isReadOnly() ) - str = i18n("%1 = n messages, m unread.", "%1 Folder is read-only."); + str = i18n("%1 = n messages, m unread.", "%1 Folder is read-only.").arg( str ); KMBroadcastStatus::instance()->setStatusMsg(str); }