From ce67343b7ed41cf74c5d8c2bfdd5ff1159ca82d7 Mon Sep 17 00:00:00 2001 From: Andrew Coles Date: Wed, 24 Mar 2004 13:02:11 +0000 Subject: [PATCH] Corrected typo; some rewording to make grammatical sense. svn path=/trunk/kdepim/; revision=298281 --- filterlogdlg.cpp | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/filterlogdlg.cpp b/filterlogdlg.cpp index 65abda417..06fd9af08 100644 --- a/filterlogdlg.cpp +++ b/filterlogdlg.cpp @@ -75,11 +75,11 @@ FilterLogDialog::FilterLogDialog( QWidget * parent ) this, SLOT(slotSwitchLogRuleEvaluation(void)) ); QWhatsThis::add( mLogRuleEvaluationBox, i18n( "You can control the feedback in the log concerning the " - "evaluation of the filter rules of applied filters. " - "Having this option checked will give detailed feedback " - "for each single filter rule. Alternativly, only " + "evaluation of the filter rules of applied filters: " + "having this option checked will give detailed feedback " + "for each single filter rule; alternatively, only " "feedback about the result of the evaluation of all rules " - "of a single filter is given." ) ); + "of a single filter will be given." ) ); mLogActiveBox = new QCheckBox( i18n("&Log filter activities"), page ); mLogActiveBox->setChecked( FilterLog::instance()->isLogging() ); @@ -102,12 +102,11 @@ FilterLogDialog::FilterLogDialog( QWidget * parent ) connect( mLogMemLimitSpin, SIGNAL(valueChanged(int)), this, SLOT(slotChangeLogMemLimit(int)) ); QWhatsThis::add( mLogMemLimitSpin, - i18n( "Collecting log data means an appropriate memory consumption " - "to be able to temporarily store those data. Here you can " - "limit the maximum amount of memory to be used for storing " - "log data. If the collected log data exceeds this limit, " - "the oldest data will be discarded until the limit is no " - "longer exceeded. " ) ); + i18n( "Collecting log data uses memory to temporarily store the " + "log data; here you can limit the maximum amount of memory " + "to be used: if the size of the collected log data exceeds " + "this limit then the oldest data will be discarded until " + "the limit is no longer exceeded. " ) ); connect(FilterLog::instance(), SIGNAL(logEntryAdded(QString)), this, SLOT(slotLogEntryAdded(QString)));