From 240d3de894fa365fac855e6b2db1eae2e38ae0eb Mon Sep 17 00:00:00 2001 From: Marcos Pinto Date: Fri, 27 Jul 2007 08:17:30 +0000 Subject: [PATCH] --- src/core.py | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/src/core.py b/src/core.py index 8f7e2b4bd..d8d89b717 100644 --- a/src/core.py +++ b/src/core.py @@ -82,14 +82,14 @@ PREF_FUNCTIONS = { "use_utpex" : deluge_core.use_utpex, } -STATE_MESSAGES = (_("Queued"), - _("Checking"), - _("Connecting"), - _("Downloading Metadata"), - _("Downloading"), - _("Finished"), - _("Seeding"), - _("Allocating")) +STATE_MESSAGES = (N_("Queued"), + N_("Checking"), + N_("Connecting"), + N_("Downloading Metadata"), + N_("Downloading"), + N_("Finished"), + N_("Seeding"), + N_("Allocating")) # Exceptions class DelugeError(Exception): @@ -893,3 +893,4 @@ class Manager: def set_priv(self, unique_ID, on_off): return deluge_core.set_priv(unique_ID, on_off) +