[SCM] Kingston update notifier (update-notifier-kde) branch, master, updated. 862db1d11ceb303e2f3cb2fcab3ad7ebbdd74453

Pino Toscano pino-guest at alioth.debian.org
Wed May 12 21:29:02 UTC 2010


The following commit has been merged in the master branch:
commit b1270c8198e78366fff0630f7a665747042ad1a7
Author: Pino Toscano <pino at kde.org>
Date:   Wed May 12 23:24:06 2010 +0200

    i18n: make the two contexts a bit more generic
---
 src/notifier.cpp |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/notifier.cpp b/src/notifier.cpp
index 4388f4e..d9bd4ca 100644
--- a/src/notifier.cpp
+++ b/src/notifier.cpp
@@ -68,7 +68,7 @@ void notifier_t::show_update_notification(const QString& title, const QString& m
   note->setText(message);
   note->setPixmap(KIcon(iconname).pixmap(QSize(32,32)));
   note->setComponentData(*m_component_data);
-  note->setActions(QStringList() << i18nc("Reboot later", "Later"));
+  note->setActions(QStringList() << i18nc("Do the proposed action (upgrade, reboot, etc) later", "Later"));
   connect(note,SIGNAL(activated()),note,SLOT(close()));
   note->sendEvent();
   return;
@@ -80,7 +80,7 @@ void notifier_t::notify_reboot() {
   note->setText(i18n("In order to complete this upgrade, you need to reboot your system"));
   note->setPixmap(KIcon("system-reboot").pixmap(QSize(32,32)));
   note->setComponentData(*m_component_data);
-  note->setActions(QStringList() << i18nc("Reboot later", "Later"));
+  note->setActions(QStringList() << i18nc("Do the proposed action (upgrade, reboot, etc) later", "Later"));
   connect(note,SIGNAL(closed()),m_reboot_nagger,SLOT(start()));
   connect(note,SIGNAL(action1Activated()),m_reboot_nagger,SLOT(start()));
   note->sendEvent();

-- 
Kingston update notifier (update-notifier-kde)



More information about the pkg-kde-commits mailing list