Django翻译(“ en”)无法正常工作

时间:2018-08-05 17:51:58

标签: python django python-3.x python-2.7 django-templates

我希望能够从.po文件中以任何语言编辑页面上的任何文本。

在波兰语中,我替换了文本没有任何问题,但是在英语中,该文本与模板中的文本相同。

如您所见,英文为“ home”,应为“ Welcome”

EN DJANGO .PO文件

#: .\app\templates\app\layout.html:24
msgid "home"
msgstr "Welcome"

enter image description here

PL DJANGO .PO文件

#: .\app\templates\app\layout.html:24
msgid "home"
msgstr "Strona główna"

enter image description here

Settings.py

LANGUAGE_CODE = 'pl'
TIME_ZONE = 'UTC'
USE_I18N = True    
LANGUAGES = (
    ('en', _('English')),
    ('pl', _('Polish')),

0 个答案:

没有答案