From 66f189b0f188dacbd5ea2b367aec47208904619b Mon Sep 17 00:00:00 2001 From: Tom Albers Date: Thu, 11 Aug 2005 15:36:23 +0000 Subject: [PATCH] Fix missing i18n. Putting a space at the end of an i18n string is not good, translators will not see it and leave the space out in the translation. svn path=/branches/KDE/3.5/kdepim/; revision=445675 --- imapjob.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/imapjob.cpp b/imapjob.cpp index b644a4909..922520d97 100644 --- a/imapjob.cpp +++ b/imapjob.cpp @@ -191,8 +191,9 @@ void ImapJob::init( JobType jt, QString sets, KMFolderImap* folder, mParentProgressItem, "ImapJobCopyMove"+ProgressManager::getUniqueID(), i18n("Server operation"), - i18n("Source folder: ") + msg_parent->prettyURL() - + " - destination folder: " + mDestFolder->prettyURL(), + i18n("Source folder: %1").arg( msg_parent->prettyURL() ) + + " - " + + i18n("Destination folder: %1").arg( mDestFolder->prettyURL() ), true, account->useSSL() || account->useTLS() ); jd.progressItem->setTotalItems( jd.total );