From kde-commits Sat Aug 15 10:52:58 2009 From: Albert Astals Cid Date: Sat, 15 Aug 2009 10:52:58 +0000 To: kde-commits Subject: branches/KDE/4.3/kdeplasma-addons/applets/weatherstation Message-Id: <1250333578.043280.18132.nullmailer () svn ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=125033358316165 SVN commit 1011647 by aacid: backport i18n fix, approved by the i18n teams M +1 -1 weatherstation.cpp --- branches/KDE/4.3/kdeplasma-addons/applets/weatherstation/weatherstation.cpp #1011646:1011647 @@ -160,7 +160,7 @@ if (m_showToolTip) { Plasma::ToolTipContent ttc(data["Place"].toString(), - i18n("Last updated: ") + KGlobal::locale()->formatDateTime(QDateTime::currentDateTime(), KLocale::FancyLongDate)); + i18n("Last updated: %1", KGlobal::locale()->formatDateTime(QDateTime::currentDateTime(), KLocale::FancyLongDate))); Plasma::ToolTipManager::self()->setContent(this, ttc); } }