gettext 验证消息的问题
我有一条验证消息,
self.errors.add_to_base(_("country cannot be deleted #{self.country_name}"))
这不起作用。
但简单的消息就像
self.errors.add_to_base(_("country cannot be deleted"))
工作正常一样。
我正在将此消息转换为西班牙语。
有什么想法或解决方案吗?
I have a validation message
self.errors.add_to_base(_("country cannot be deleted #{self.country_name}"))
this is not working.
But simple messages like
self.errors.add_to_base(_("country cannot be deleted"))
working fine.
I am converting this messages to spanish.
Any idea or solution?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我相信您需要在调用 gettext 时使用一个参数,然后将其插入您想要传入的值。例如
更多信息 此处。
I believe you need to use a parameter in the call to gettext and then interpolate that with the value you want to pass in. E.g.
More information here.