From 25e4e92393647b11b92810e774060909edb452bb Mon Sep 17 00:00:00 2001 From: necoro <> Date: Sun, 12 Aug 2007 04:55:24 +0000 Subject: translations --- portato/plugins/notify.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'portato/plugins') diff --git a/portato/plugins/notify.py b/portato/plugins/notify.py index 5e4a577..db024cf 100644 --- a/portato/plugins/notify.py +++ b/portato/plugins/notify.py @@ -12,12 +12,12 @@ def notify (retcode, **kwargs): else: icon = APP_ICON if retcode == 0: - text = "Emerge finished!" + text = _("Emerge finished!") descr = "" urgency = pynotify.URGENCY_NORMAL else: - text = "Emerge failed!" - descr = "Error Code: %d" % retcode + text = _("Emerge failed!") + descr = _("Error Code: %d") % retcode urgency = pynotify.URGENCY_CRITICAL listener.send_notify(base = text, descr = descr, icon = icon, urgency = urgency) -- cgit v1.2.3