Gettext python金字塔utf8

时间:2012-12-01 04:50:40

标签: python utf-8 pyramid gettext

我有一个项目使用gettext将英语翻译成日语但是。 这是我的代码.py文件 import gettext

t=gettext.translation('noname','advbus/locale', languages=['ja'])
_=t.gettext
print _("Hello")

和文件.po

msgid "Hello"
msgstr "今日は"

我将.po文件编译为.mop文件,但它今天不显示は。(utf8) 当我运行.py文件时,它运行正常。但不对,我的意思是它不能显示unicode(今æ-¥ã?¯) 我尝试为文件.mo文件设置utf8。但错误

  File "C:\env\Scripts\pserve-script.py", line 8, in <module>
    load_entry_point('pyramid==1.4a1', 'console_scripts', 'pserve')()
  File "C:\env\lib\site-packages\pyramid-1.4a1-py2.7.egg\pyramid\scripts\pserve.py", line 47, in main
    return command.run()
  File "C:\env\lib\site-packages\pyramid-1.4a1-py2.7.egg\pyramid\scripts\pserve.py", line 290, in run
    relative_to=base, global_conf=vars)
  File "C:\env\lib\site-packages\pyramid-1.4a1-py2.7.egg\pyramid\scripts\pserve.py", line 318, in loadapp
    return loadapp(app_spec, name=name, relative_to=relative_to, **kw)
  File "C:\env\lib\site-packages\paste\deploy\loadwsgi.py", line 247, in loadapp
    return loadobj(APP, uri, name=name, **kw)
  File "C:\env\lib\site-packages\paste\deploy\loadwsgi.py", line 272, in loadobj
    return context.create()
  File "C:\env\lib\site-packages\paste\deploy\loadwsgi.py", line 710, in create
    return self.object_type.invoke(self)
  File "C:\env\lib\site-packages\paste\deploy\loadwsgi.py", line 146, in invoke
    return fix_call(context.object, context.global_conf, **context.local_conf)
  File "C:\env\lib\site-packages\paste\deploy\util.py", line 56, in fix_call
    val = callable(*args, **kw)
  File "C:\env\advbus\advbus\__init__.py", line 195, in main
    config.scan()
  File "C:\env\lib\site-packages\pyramid-1.4a1-py2.7.egg\pyramid\config\__init__.py", line 946, in scan
    ignore=ignore)
  File "C:\env\lib\site-packages\venusian-1.0a7-py2.7.egg\venusian\__init__.py", line 197, in scan
    __import__(modname)
  File "C:\env\advbus\advbus\hello.py", line 3, in <module>
    t=gettext.translation('noname','advbus/locale', languages=['ja'])
  File "C:\env\lib\gettext.py", line 478, in translation
    t = _translations.setdefault(key, class_(fp))
  File "C:\env\lib\gettext.py", line 180, in __init__
    self._parse(fp)
  File "C:\env\lib\gettext.py", line 281, in _parse
    raise IOError(0, 'Bad magic number', filename)
IOError: [Errno 0] Bad magic number: 'advbus/locale\\ja\\LC_MESSAGES\\noname.mo'

这是我的subscriber.py文件,我在互联网上贪图

    from pyramid.i18n import get_localizer, TranslationStringFactory

def add_renderer_globals(event):
    request = event['request']
    event['_'] = request.translate
    event['localizer'] = request.localizer

tsf = TranslationStringFactory('YOUR_GETTEXT_DOMAIN')

def add_localizer(event):
    request = event.request
    localizer = get_localizer(request)
    def auto_translate(*args, **kwargs):
        return localizer.translate(tsf(*args, **kwargs))
    request.localizer = localizer
    request.translate = auto_translate

2 个答案:

答案 0 :(得分:1)

来自Bad magic number的错误消息gettext.py指向格式不正确的.mo文件。阅读您自己的Python gettext.py副本,或查看this Apple-hosted copy of gettext.py

我猜测.po到.mo的编译器工作不正常。向我们展示你的.po编译过程,也许我们可以进一步提供帮助。

答案 1 :(得分:0)

"Project-Id-Version: adv 0.0\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2012-12-01 11:41+0700\n"
"PO-Revision-Date: 2012-12-01 09:58+0700\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: ja <LL@li.org>\n"
"Plural-Forms: nplurals=1; plural=0\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 0.9.6\n"

#: advbus/hello.py:5
msgid "Hello"
msgstr "今日は"

这是我的.po文件 还有我的.mo文件 ä»SAE-¥一 字符串不对 我尝试运行.py文件,它可以工作,但字符串相同今æ-¥ã¯ 所以我为.mo文件设置了utf-8,字符串显示在.mo文件上确定。 但是当我运行.py文件时,上面有错误