Я играю с webpy и у меня небольшая проблема.Я не могу переключаться между языками.Может быть, моя идея неверна.Я определил языковой словарь во внешнем файле Python.
class hello:
def GET(self, url):
web.header('Content-Type', 'text/html; charset=utf-8', unique=True)
l = accept_lang(web.ctx.env)
if l in lg.aviable:
return lg.hu['hello'] # < here have the problem
else:
return lg.en["hello"]
lang.py
aviable = ['hu','en', 'de']
hu = { "hello": 'Helló Világ' }
en = { "hello": 'Hello World' }
de = { "hello": 'Hallo Welt' }