翻译时停用语言回退(Python Django i18n)

时间:2017-02-28 15:03:59

标签: python django internationalization translation

我有一个i18nized Python Django应用程序。它目前使用两种语言;德语(DE)和法语(FR)。

我把所有的钥匙(.po - /。mo-files)翻译成德语,但是对于法语,有些人不见了。

在Django设置中,我将'de'指定为LANGUAGE_CODE

我可以从一种语言切换到另一种语言,没有问题。路由工作正常,我需要的所有其他功能都由Django Middleware处理。

但是,在我从德语切换到法语的当前场景中,法语中缺少的所有键都会回退到德语值。但我希望他们只是默认他们的密钥。

E.g。
当前情景
Sortiment(法语版) - > Assortiment
Gratis Lieferung(不提供法语版) - > Gratis Lieferung

预期情景
Sortiment(法语版) - > Assortiment
Gratis Lieferung(不提供法语版) - > free.shipping.info

解决这个问题的清洁解决方案是什么?我在Django文档中找不到任何内容。我想在不使用其他插件的情况下解决这个问题。

我能提出的一个解决方案就是在法语翻译中添加所有缺失的键,并将其值也作为键,但这感觉不对。

E.g。在django.po

msgid "searchsuggest.placeholder"
msgstr "searchsuggest.placeholder"

另一种可能的解决方案是不在LANGUAGE_CODE中设置settings.py,因为我希望它能用于法语,例如我转到mypage.com/fr/,所有翻译的键都显示正确的对应值,而未翻译的键只显示为键(参见'预期的场景')。但是当我这样做时,德语版只显示键,没有值。例如。我转到mypage.com/(德语应该隐含),这就是我所看到的:

assortment.menu.title
free.shipping.info

更多信息

我的urls.py

urlpatterns = i18n_patterns(
    # app endpoints
    url(r'^$', home, name='home'),
    url(r'^cart', include('app.cart.urls')),
    url(r'^', include('app.infra.url.urls')),
    prefix_default_language=False,
)

我的settings.py

TIME_ZONE = 'UTC'
LANGUAGE_CODE = 'de'
LANGUAGES = [
    ('de', _('German')),
    ('fr', _('French')),
]
LOCALE_PATHS = [
    ../a/dir
]
USE_I18N = True
USE_L10N = True
USE_TZ = True

# And somewhere I use this
'django.middleware.locale.LocaleMiddleware',

我的jinja模板全局翻译功能:

from django.utils.translation import ugettext as _
from jinja2.ext import Extension

class ViewExtension(Extension):
    def __init__(self, environment):
        super(ViewExtension, self).__init__(environment)
        environment.globals['trans'] = trans

# defaults back to german if not found
def trans(translation_key, **kwargs):
    translation = _(translation_key) % kwargs

    if translation == translation_key:
        # this only happens if my LANGUAGE_CODE is not set
        translation_logger.warning(f'Missing translation key "{translation_key}".')

    return translation

1 个答案:

答案 0 :(得分:0)

如果有人为此提供“正确”的解决方案,我仍然很高兴,但我最终用shell脚本解决了这个问题:

#!/bin/bash

# A simple script to make sure that all translation files contain all the msgids.
# If a msgid previously didn't exist in a file, it will be created with the msgstr set to the same as the msgid.

SCRIPTPATH=`dirname $0`
MSGIDS=`find $SCRIPTPATH -name "*.po" -type f -print0 | xargs grep -h msgid | sort | uniq | awk '{print $2}'`

find $SCRIPTPATH -name "*.po" -type f | while read FILE; do
    current_msgids=`grep -h msgid $FILE | awk '{print $2}'`
    for msg in $MSGIDS; do
        [[ $current_msgids =~ (^|[[:space:]])"$msg"($|[[:space:]]) ]] || printf "\nmsgid $msg\nmsgstr $msg\n" >> $FILE
    done
done

我刚刚在Makefile中运行compilemessages之前已经包含了这个脚本。