gettext 验证消息的问题

发布于 2024-09-14 14:30:25 字数 295 浏览 3 评论 0原文

我有一条验证消息,

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

青衫儰鉨ミ守葔 2024-09-21 14:30:25

我相信您需要在调用 gettext 时使用一个参数,然后将其插入您想要传入的值。例如

self.errors.add_to_base(_("country cannot be deleted %{country}") % { :country => self.country_name})

更多信息 此处

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.

self.errors.add_to_base(_("country cannot be deleted %{country}") % { :country => self.country_name})

More information here.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文