我有一个Django应用程序,我愿意在其中转换Django CMS中出现的应用程序名称。
Models are translated but not app names
搜索后发现,我必须为添加到应用程序中的每个应用程序将verbose_name添加到apps.py中的AppConfig类:
{{extend 'layout.html'}}
{{=BEAUTIFY(response._vars)}}
但是在我发送消息并编译消息后,它不会改变cms中的任何内容。
即使我删除此类也没有任何改变,框架也不会产生作用
Django版本:2.0.3
有任何线索吗?
答案 0 :(得分:0)
尝试:
/yourappname/apps.py:
class ServicesConfig(AppConfig):
name = 'services'
verbose_name = 'Translated text'
更多信息?检查一下
答案 1 :(得分:0)