From kde-i18n-doc Thu Dec 31 12:18:24 2009 From: Rolf Eike Beer Date: Thu, 31 Dec 2009 12:18:24 +0000 To: kde-i18n-doc Subject: KDE/kdelibs/kio/kssl Message-Id: <1262261904.048844.20009.nullmailer () svn ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-i18n-doc&m=126226202727928 SVN commit 1068142 by dakon: fix typo in context CCMAIL:kde-i18n-doc@kde.org M +1 -1 ksslinfodialog.cpp --- trunk/KDE/kdelibs/kio/kssl/ksslinfodialog.cpp #1068141:1068142 @@ -220,7 +220,7 @@ } d->ui.trusted->setText(trusted); - QString vp = i18nc("%1 is the effective data of the certificate, %2 is the expiry date", "%1 to %2"); + QString vp = i18nc("%1 is the effective date of the certificate, %2 is the expiry date", "%1 to %2"); vp = vp.arg(KGlobal::locale()->formatDateTime(cert.effectiveDate())); vp = vp.arg(KGlobal::locale()->formatDateTime(cert.expiryDate())); d->ui.validityPeriod->setText(vp);