From e0e08d44892947bb98876acdd12ce49473fb9819 Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Thu, 6 Oct 2011 08:25:16 +0200 Subject: [PATCH] [magneto] set notification applet title to "System Updates" --- magneto/src/magneto/gtk/interfaces.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/magneto/src/magneto/gtk/interfaces.py b/magneto/src/magneto/gtk/interfaces.py index 356ec33c4..94c326626 100644 --- a/magneto/src/magneto/gtk/interfaces.py +++ b/magneto/src/magneto/gtk/interfaces.py @@ -146,7 +146,7 @@ class Magneto(MagnetoCore): def do_show(): if ((title, text) == self.last_alert) and not force: return False - pynotify.init("XY") + pynotify.init(_("System Updates")) n = pynotify.Notification(title, text) if urgency == 'critical': n.set_urgency(pynotify.URGENCY_CRITICAL)