diff --git a/distributionlistdialog.cpp b/distributionlistdialog.cpp index 4cf3f8d9f..5d7fdf32f 100644 --- a/distributionlistdialog.cpp +++ b/distributionlistdialog.cpp @@ -205,7 +205,7 @@ void DistributionListDialog::slotUser1() if ( ab->findDistributionListByName( name ) ) { #endif KMessageBox::information( this, - i18nc( "@info", "Distribution list with the given name %1 " + i18nc( "@info", "Distribution list with the given name %1 " "already exists. Please select a different name.", name ) ); return; } diff --git a/kmmainwidget.cpp b/kmmainwidget.cpp index 46ea5a55a..44e0f2305 100644 --- a/kmmainwidget.cpp +++ b/kmmainwidget.cpp @@ -1357,7 +1357,7 @@ void KMMainWidget::slotRemoveFolder() } else { str = i18n("Are you sure you want to delete the empty folder " - "%1 and all its subfolders? Those subfolders might " + "%1 and all its subfolders? Those subfolders might " "not be empty and their contents will be discarded as well. " "

Beware that discarded messages are not saved " "into your Trash folder and are permanently deleted.

", @@ -1366,13 +1366,13 @@ void KMMainWidget::slotRemoveFolder() } else { if ( !mFolder->child() || mFolder->child()->isEmpty() ) { str = i18n("Are you sure you want to delete the folder " - "%1, discarding its contents? " + "%1, discarding its contents? " "

Beware that discarded messages are not saved " "into your Trash folder and are permanently deleted.

", Qt::escape( mFolder->label() ) ); } else { - str = i18n("Are you sure you want to delete the folder %1 " + str = i18n("Are you sure you want to delete the folder %1 " "and all its subfolders, discarding their contents? " "

Beware that discarded messages are not saved " "into your Trash folder and are permanently deleted.

", diff --git a/recipientseditor.cpp b/recipientseditor.cpp index 2179b17ed..99e7ea3d9 100644 --- a/recipientseditor.cpp +++ b/recipientseditor.cpp @@ -820,9 +820,13 @@ void SideWidget::updateTotalToolTip() } } - text += i18nc("@info:tooltip", "To:") + to; - if ( !cc.isEmpty() ) text += i18nc("@info:tooltip", "CC:") + cc; - if ( !bcc.isEmpty() ) text += i18nc("@info:tooltip", "BCC:") + bcc; + text += i18nc("@info:tooltip %1 list of emails", "To:%1", to); + if ( !cc.isEmpty() ) { + text += i18nc("@info:tooltip %1 list of emails", "CC:%1", cc); + } + if ( !bcc.isEmpty() ) { + text += i18nc("@info:tooltip %1 list of emails", "BCC:%1", bcc); + } text.append( "
" ); mTotalLabel->setToolTip( text );