django internationalization and translations issue

前端 未结 7 1710
傲寒
傲寒 2020-12-09 18:52

I have a problem with django translations.

Problem 1 - I updated string in django.po file, but the change does not appear on the webpage.

Problem 2 - I have

7条回答
  •  有刺的猬
    2020-12-09 19:15

    Had a same/similar issue with translations not showing up. Setting the LOCALE_PATHS fixed the issue:

    # settings.py
    USE_I18N = True
    USE_L10N = True
    
    LOCALE_PATHS = (
      '/path/to/djangoapp/locale',
    )
    

提交回复
热议问题