(translation.E004) You have provided a value for the LANGUAGE_CODE setting that is not in the LANGUA

Posted dhcn

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了(translation.E004) You have provided a value for the LANGUAGE_CODE setting that is not in the LANGUA相关的知识,希望对你有一定的参考价值。

     django3.0开始LANGUAGE_CODE前面必须配相应的LANGUAGES配置如下:

from django.utils.translation import gettext_lazy as _
LANGUAGES = [
    (zh-Hans, _(Chinese)),
]

LANGUAGE_CODE = zh-Hans

 

以上是关于(translation.E004) You have provided a value for the LANGUAGE_CODE setting that is not in the LANGUA的主要内容,如果未能解决你的问题,请参考以下文章