如何在 Django 中翻译表单?
我想翻译 django 形式。如何翻译字段标签?
我尝试了 field.label=ugettext_lazy(field.label)
,但是标签没有填充在 django.po 文件中
我可能错误地理解了 ugettext_lazy 的概念,我想
简单来说我想要要放入 django.po 文件中的字段标签。
使用 ugettext
和 {% trans %}
标签完成的其他翻译运行良好
我已经能够通过设置 verbose_name 但当我在表单字段中尝试这样做时,我得到一个
TypeError
I want to translate a django form. How do I translate the labels of the fields?
I tried field.label=ugettext_lazy(field.label)
, but the labels are not getting populated in django.po file
I may have gotten the concept of ugettext_lazy wrong, I think
In simple terms I want the field labels to be put into django.po file.
The other translations done using ugettext
and {% trans %}
tag are working well
I have been able to translate the fields based on a model by setting verbose_name
but when I try that for a form field I get a TypeError
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
我会精确地说:
它可能会引发错误,因为表单无法很好地管理像这样的代理对象
_(u'First name'),渲染结果是一个void形式。
我在 python2.x 和 django 1.3/1.4 上对此进行了测试,
原因是由于最初由不同操作系统和库创建的已编译 .po 消息(它可能取决于 python、django、os.libraries 版本)。
当您遇到此错误时,您必须重新创建本地化消息。
I will precise that :
It's likely to raise an error because forms cannot manage well a proxy object like
_(u'First name'), and the result in rendering is a void form.
I tested this on python2.x and django 1.3/1.4
The reason is due to the compiled .po messages initially created by different o.s. and libraries (it can depend by python,django,os. libraries versions).
When you have this error you must re-create the localized messages.
作为替代方法,您可以将脚本添加到 template.html
As an alternative way, you can add script to your template.html
您应该使用 gettext_lazy() 和标签在 forms.CharField() 中,如下所示:
You should use gettext_lazy() and label in forms.CharField() as shown below: