翻译模型字段'来自 Django 数据库的属性?
我正在尝试创建一个模型,其中的字段具有以下可翻译属性:verbose_name 和选项。我可以通过标记字符串并使用 i18l 中间件轻松地做到这一点。问题是我不想在 po/mo 文件中定义翻译。有没有办法从数据库表中提取这些数据?如果有的话,有什么例子吗?
有一些选项可以提供模型内容翻译。那不是我的情况。我需要翻译数据库中的 verbose_name、choices 和 error_messages。
I'm trying to create a Model that has fields that have the following attributes translatable: verbose_name and choices. I can easily do this by tagging the strings and using the i18l middleware. The problem is that I don't want to define the translation in po/mo files. Is there a way to pull this data from a database table? If so, any examples?
There are some options out there that offer model content translation. That is not my case. I need to translate the verbose_name, choices and error_messages from database.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
那里有很多翻译应用程序。我发现此博客条目其中评论了一些其中。
There are plenty of translation apps out there. I found this blog entry which reviews a few of them.