django translation template {% trans “something” %}

前端 未结 4 1603
你的背包
你的背包 2021-01-05 00:29

Ok I have been searching like crazy for this I think simple problem.

I use Django 1.4

The problem is that django won\'t translate a simple {% trans \"work\"

4条回答
  •  谎友^
    谎友^ (楼主)
    2021-01-05 00:48

    In Django 1.4 the locale directory at project root is not longer supported. You should add it to LOCALE_PATHS setting, which is empty by default. Django Settings.

    However the management commands involved in locale generation, seems to work, so I don't know if you already did it.

提交回复
热议问题