From kde-commits Wed Jan 28 10:54:47 2009 From: Michael Zanetti Date: Wed, 28 Jan 2009 10:54:47 +0000 To: kde-commits Subject: Re: KDE/kdenetwork/kopete/plugins/otr Message-Id: <200901281154.47477.michael_zanetti () gmx ! net> X-MARC-Message: https://marc.info/?l=kde-commits&m=123314026413324 Yay! Long live copy & paste! Thanks for fixing! Michael On Tuesday 27 January 2009 23:05:10 Albert Astals Cid wrote: > SVN commit 917479 by aacid: > > Fix typo found by Enrique Matías Sánchez > > > M +4 -4 authenticationwizard.cpp > > > --- trunk/KDE/kdenetwork/kopete/plugins/otr/authenticationwizard.cpp > #917478:917479 @@ -293,21 +293,21 @@ > if(question != NULL || rbQA->isChecked()){ > if(initiate){ > kDebug() << "initiate"; > - lFinal->setText(i18n("The authetication with %1 was completed > successfully. The conversation is now secure.", > OtrlChatInterface::self()->formatContact(session->members().first()->contac >tId()))); + lFinal->setText(i18n("The authentication with %1 was > completed successfully. The conversation is now secure.", > OtrlChatInterface::self()->formatContact(session->members().first()->contac >tId()))); } else { > kDebug() << "not initiate"; > if(trust){ > - lFinal->setText(i18n("The authetication with %1 was completed > successfully. The conversation is now secure.", > OtrlChatInterface::self()->formatContact(session->members().first()->contac >tId()))); + lFinal->setText(i18n("The authentication with %1 was > completed successfully. The conversation is now secure.", > OtrlChatInterface::self()->formatContact(session->members().first()->contac >tId()))); } else { > lFinal->setText(i18n("%1 has successfully authenticated you. > You may want to authenticate this contact as well by asking your own > question.", > OtrlChatInterface::self()->formatContact(session->members().first()->contac >tId()))); } > } > } else { > - lFinal->setText(i18n("The authetication with %1 was completed > successfully. The conversation is now secure.", > OtrlChatInterface::self()->formatContact(session->members().first()->contac >tId()))); + lFinal->setText(i18n("The authentication with %1 was > completed successfully. The conversation is now secure.", > OtrlChatInterface::self()->formatContact(session->members().first()->contac >tId()))); } > } else { > currentPage()->setTitle(i18n("Authentication failed")); > - lFinal->setText(i18n("The authetication with %1 failed. To make sure > you aren't talking to an imposer, try again using the manual fingerprint > verification method. The conversation is now insecure.", > OtrlChatInterface::self()->formatContact(session->members().first()->contac >tId()))); + lFinal->setText(i18n("The authentication with %1 failed. To > make sure you aren't talking to an imposer, try again using the manual > fingerprint verification method. The conversation is now insecure.", > OtrlChatInterface::self()->formatContact(session->members().first()->contac >tId()))); } > } > }