From 4d6ccb75d0c1fc3c071f02d7dafc18a10c50284b Mon Sep 17 00:00:00 2001 From: Marcos Pinto Date: Fri, 27 Jul 2007 07:17:06 +0000 Subject: [PATCH] fix progress text translations --- src/core.py | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/core.py b/src/core.py index 61f70ca6e..8f7e2b4bd 100644 --- a/src/core.py +++ b/src/core.py @@ -55,7 +55,7 @@ import re import shutil import statvfs import time - +import gettext from common import N_, PRIORITY_NORMAL import deluge_core import pref @@ -82,14 +82,14 @@ PREF_FUNCTIONS = { "use_utpex" : deluge_core.use_utpex, } -STATE_MESSAGES = (N_("Queued"), - N_("Checking"), - N_("Connecting"), - N_("Downloading Metadata"), - N_("Downloading"), - N_("Finished"), - N_("Seeding"), - N_("Allocating")) +STATE_MESSAGES = (_("Queued"), + _("Checking"), + _("Connecting"), + _("Downloading Metadata"), + _("Downloading"), + _("Finished"), + _("Seeding"), + _("Allocating")) # Exceptions class DelugeError(Exception):