如何结合两种在鹈鹕上写的本地化定位机制?

时间:2018-09-17 15:11:38

标签: python localization jinja2 babel pelican

我使用两种机制进行本地化站点: 1.我在index.html中使用标准模板标签{{gettext'some_text'}} 2.我编写了自定义jinja扩展名,该扩展名根据网站上使用的语言获取markdown文件的内容。

然后我使用Babel创建messages.pot文件,然后创建Massages.po文件。

我在babel.cfg中有这个babel配置:

[jinja2: theme/templates/index.html]
silent = false

这是我自定义的jinja扩展名-custom_jinja_extension.py:

from jinja2 import nodes
from jinja2.ext import Extension
from markdown import Markdown


class IncludeMarkdownExtension(Extension):
    """
    a set of names that trigger the extension.
    """
    tags = set(['include_markdown'])

    def __init__(self, environment):
        super(IncludeMarkdownExtension, self).__init__(environment)

    def parse(self, parser):
        tag = parser.stream.__next__()
        ctx_ref = nodes.ContextReference()
        if tag.value == 'include_markdown':
            args = [ctx_ref, parser.parse_expression(), nodes.Const(tag.lineno)]
            body = parser.parse_statements(['name:endinclude_markdown'], drop_needle=True)
            callback = self.call_method('convert', args)
        return nodes.CallBlock(callback, [], [], body).set_lineno(tag.lineno)

    def convert(self, context, tagname, linenum, caller):
        """
        Function for converting markdown to html
        :param tagname: name of converting file
        :return: converting html
        """
        for item in context['extra_siteurls']:
            if item == context['main_lang']:
                input_file = open('content/{}/{}'.format('en', tagname))
            else:
                input_file = open('content/{}/{}'.format(context['main_lang'], tagname))
        text = input_file.read()
        html = Markdown().convert(text)
        return html

我使用此模板标签-{% include_markdown 'slide3.md' %}{% endinclude_markdown %} 在我的pelicanconf.py中,我为jinja扩展名添加了这样的字符串:

# Jinja2 extensions
JINJA_ENVIRONMENT = {
    'extensions': [
        'jinja2_markdown.MarkdownExtension',
        'jinja2.ext.i18n',
        'custom_jinja_extension.IncludeMarkdownExtension'
    ]
}

当我运行命令时:

 pybabel extract --mapping babel.cfg --output messages.pot ./

我收到此错误

  

jinja2.exceptions.TemplateSyntaxError:遇到未知标签   'include_markdown'。 Jinja正在寻找以下标签:   'endblock'。需要关闭的最里面的块是“块”。

当我删除所有使用自定义模板标记的gettext时,效果很好。我做错了什么?

1 个答案:

答案 0 :(得分:0)

问题出在路上。 Babel在jinja文件夹的virtualenv中查找jinja扩展名,但是我的自定义jinja扩展名在project文件夹中。 这就是为什么我在终端中运行此命令

export PYTHONPATH=$PYTHONPATH:/local/path/to/the/project/ 并更改我的babel.cfg:

[jinja2: theme/templates/index.html]
extensions=jinja2.ext.i18n, **custom_jinja_extension.IncludeMarkdownExtension**
silent = false

更改后,babel找到了我的自定义扩展名custom_jinja_extension并正确创建了messages.pot文件!