add back the _ alias to the lambda unicode gettext function

This commit is contained in:
Damien Churchill 2009-04-08 08:52:40 +00:00
parent c57900d4f6
commit 908760d3a9
1 changed files with 3 additions and 1 deletions

View File

@ -26,10 +26,12 @@ import gettext
from mako.template import Template as MakoTemplate
from deluge import common
_ = lambda x: gettext.gettext(x).decode("utf-8")
class Template(MakoTemplate):
builtins = {
"_": lambda x: gettext.gettext(x).decode("utf-8"),
"_": _,
"version": common.get_version()
}