I'm using using the following code in my model to insert a link into a validation error message:
class Bar < ActiveRecord::Base
has_many :foos
validate :mode_matcher
def mode_matcher
self.foos.each do |f|
errors[:base] << mode_mismatch(foo) unless foo.mode == "http"
end
end
def mode_mismatch(f)
foo_path = Rails.application.routes.url_helpers.foo_path(f)
"Foo <a href='#{foo_path}'>#{f.name}</a> has the wrong mode.".html_safe
end
It works well but I know that the recommended way of doing this is through a locale file. I'm having trouble with that because I'm validating an attribute of another model, so the following doesn't work:
en:
activerecord:
errors:
models:
bar:
attributes:
foo:
mode_mismatch: "Foo %{link} has the wrong mode."
What's the correct way to do this?
ActiveModel looks up validation errors in several scopes.
Foo
andBar
can share the same error message formode_mismatch
if you include it atactiverecord.errors.messages
instead ofactiverecord.errors.models
:Using that locale string with the
link
interpolation then becomes a matter of