Can't switch language environment in Django

前端 未结 2 1898
走了就别回头了
走了就别回头了 2020-12-28 10:29

I have file locale/es/LC_MESSAGES/django.mo (and .po), ran makemessages and compilemessages. Definitely all messages are translated

in settings.py have:



        
2条回答
  •  臣服心动
    2020-12-28 10:50

    I use this in my settings :

    TIME_ZONE = 'Europe/Paris'
    LANGUAGE_CODE = 'fr-FR'
    SITE_ID = 1
    USE_I18N = True
    

    So you should use something like 'es-ES'

提交回复
热议问题