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
wilder-work
Tom Albers 21 years ago
parent 8f929e05ea
commit 66f189b0f1
  1. 5
      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 );

Loading…
Cancel
Save