1 import web 2 3 4 -def i18n(function): 5 def new_f(*args, **kwargs): 6 function.func_globals['_'] = web.ctx.gettext 7 return function(*args, **kwargs) 8 return new_f 9