From 70a1c1c4907a6f0770a73a58af4f85f534f02e34 Mon Sep 17 00:00:00 2001 From: Andrew Coles Date: Sun, 3 May 2009 10:24:57 +0000 Subject: [PATCH] Proof-reading. svn path=/trunk/KDE/kdepim/; revision=962768 --- customtemplates.cpp | 4 ++-- kmfilteraction.cpp | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/customtemplates.cpp b/customtemplates.cpp index 464a334f7..524cd64ed 100644 --- a/customtemplates.cpp +++ b/customtemplates.cpp @@ -109,9 +109,9 @@ CustomTemplates::CustomTemplates( QWidget *parent, const char *name ) SLOT( slotHelpLinkClicked( const QString& ) ) ); const QString toToolTip = i18n( "Additional recipients of the message when forwarding" ); - const QString ccToolTip = i18n( "Additional recipients who get a copy of the message when forwarding" ); + const QString ccToolTip = i18n( "Additional recipients who are sent a copy of the message when forwarding." ); const QString toWhatsThis = i18n( "When using this template for forwarding, the default recipients are those you enter here. This is a comma-separated list of mail addresses." ); - const QString ccWhatsThis = i18n( "When using this template for forwarding, the recipients you enter here will by default get a copy of this message. This is a comma-separated list of mail addresses." ); + const QString ccWhatsThis = i18n( "When using this template for forwarding, the recipients you enter here will be sent a copy of the message by default. This is a comma-separated list of mail addresses." ); // We only want to set the tooltip/whatsthis to the lineedit, not the complete widget, // so we use the name here to find the lineedit. This is similar to what KMFilterActionForward diff --git a/kmfilteraction.cpp b/kmfilteraction.cpp index 5dfd8592e..28ae154a8 100644 --- a/kmfilteraction.cpp +++ b/kmfilteraction.cpp @@ -1520,7 +1520,7 @@ QWidget* KMFilterActionForward::createParamWidget( QWidget* parent ) const KLineEdit *lineEdit = addressEdit->findChild( "addressEdit" ); Q_ASSERT( lineEdit ); - lineEdit->setToolTip( i18n( "The addressee the message will be forwarded to" ) ); + lineEdit->setToolTip( i18n( "The addressee to whom the message will be forwarded." ) ); lineEdit->setWhatsThis( i18n( "The filter will forward the message to the addressee entered here." ) ); QComboBox *templateCombo = new QComboBox( addressAndTemplate ); @@ -1622,7 +1622,7 @@ const QString KMFilterActionForward::argsAsString() const const QString KMFilterActionForward::displayString() const { if ( mTemplate.isEmpty() ) - return i18n( "Forward to %1 with default template ", mParameter ); + return i18n( "Forward to %1 with default template", mParameter ); else return i18n( "Forward to %1 with template %2", mParameter, mTemplate ); }