美文网首页
django多语言

django多语言

作者: cabbywang | 来源:发表于2019-04-12 11:38 被阅读0次
    python manage.py makemessages -l zh_hans  # 生成需要翻译的文件
    python manage.py compilemessages  # 编译翻译文件, 翻译才能生效
    

    问题描述:
    django项目在makemigrations时出现IOError: No translation files found for default language zh_hans.的报错
    解决办法:

    • django的setting文件中,LANGUAGE_CODE = 'zh-hans'
    • python manage.py makemessages -l zh_hans
      需要注意的是: 一个是zh-hans, 一个是zh_hans, 中间的符号不一样

    参考文章: https://stackoverflow.com/questions/42407516/oserror-no-translation-files-found-for-default-language-zh-hans

    相关文章

      网友评论

          本文标题:django多语言

          本文链接:https://www.haomeiwen.com/subject/vxaqwqtx.html