Django 翻译不适用于我的情况

Django translation not working in my case

这个问题被问了很多遍,我觉得不好意思:

django - how to make translation work?

django internationalization and translations issue

How to setup up Django translation in the correct way?

http://askbot.org/en/question/8948/weve-edited-djangopo-files-but-translations-do-not-work-why/

我想要英语(默认)和斯洛文尼亚语。我的设置是这样的:

MIDDLEWARE_CLASSES = (
    'django.contrib.sessions.middleware.SessionMiddleware',
    'django.middleware.locale.LocaleMiddleware',
    'django.middleware.common.CommonMiddleware',
)
LANGUAGE_CODE = 'en-us'
TIME_ZONE = 'Europe/Belgrade'
USE_I18N = True
USE_L10N = True
USE_TZ = True
from django.utils.translation import ugettext_lazy as _
LANGUAGES = (
  ('si', _('Slovenian')),
  ('en-us', _('English')),
)
LOCALE_PATHS = (
    os.path.join(BASE_DIR, 'locale'),
)

Urls.py:

urlpatterns = i18n_patterns('',
    url(r'^', include('analytics.urls')),
    url(r'^login', RedirectView.as_view(url='/admin/login', permanent=False)),
    url(r'^admin/', include(admin.site.urls)),
)

模板:

<div class="time_range">{% trans "Time range:" %}</div>

我将消息编译为 .po 文件,现在根据文档,人们希望它开始工作。但我没有运气。如果我访问带有 /si/ 前缀的 url,我仍然会看到英文字符串。

我不确定这是否重要,但在我的国际化申请中我有:

LANGUAGES = (
    ("nl", "Nederlands"),
    ("en", "English"),
    )   

即,字符串周围没有 _()。您的代码片段没有显示您如何定义 _the documentation 表示您必须将其别名为 ugettext_lazy()。也许这会有所作为。

如果您向演示问题的最小 Django 应用程序提供源代码(例如,在 github 上),也会更容易帮助您。

创建 .po 文件后,还有两个步骤:

  1. 翻译 .po 文件中的消息
  2. 运行 ./manage.py compilemessages 把你的.po文件编译成.mo文件

引用Django translation documentationAfter you create your message file – and each time you make changes to it – you’ll need to compile it into a more efficient form, for use by gettext. Do this with the django-admin compilemessages utility.