自定义验证错误消息的国际化

发布于 2024-12-06 15:19:54 字数 273 浏览 1 评论 0原文

我需要将我的 ActiveRecord 模型中的自定义验证消息国际化。目前,我正在使用类似这样的东西,它可以工作:

validates_uniqueness_of :name, :message => lambda { I18n.t(:family_name_in_use) }

我知道 Rails 内置了验证消息翻译,但由于我无法进入这里的原因,我无法使用它们。还有比 lambda 更好的解决方案吗?我正在使用 Rails 2.3.8,如果这很重要的话。

I need to have custom validation messages in my ActiveRecord models internationalized. Currently, I'm using something like this, which works:

validates_uniqueness_of :name, :message => lambda { I18n.t(:family_name_in_use) }

I know Rails has validation message translations builtin, but for reasons I can't go into here, I can't use those. Is there a nicer solution than this lambda thing? I'm using Rails 2.3.8, if that matters.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

不及他 2024-12-13 15:19:54

您可以使用内置解决方案 https://github.com/ svenfuchs/rails-i18n/blob/master/rails/locale/ro.yml
您可以添加数据库属性的翻译,如下所示:

ro:
  activerecord:
    models:
      user: utilizator
    attributes:
      profile:
        name: "afişare Nume"
        phone: "telefon"

You can use builtin solution https://github.com/svenfuchs/rails-i18n/blob/master/rails/locale/ro.yml
And you can add translation of database attributes like this:

ro:
  activerecord:
    models:
      user: utilizator
    attributes:
      profile:
        name: "afişare Nume"
        phone: "telefon"
梦归所梦 2024-12-13 15:19:54

我最终坚持使用 lambda 解决方案。

I ultimately stuck with the lambda solution.

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