Ruby on Rails is a great framework, but would you believe it .. it has no built-in support for localized error messages for model level validation.
The problem is that you can internationalize the error messages but not the field name. Which makes for some very weird behavior.
Here is a bit of code to solve the problem. You have to install localization_generator before.
How to have clean internationalized validation error messages in Ruby on Rails?
in the file app/contollers/application.rb
-
require 'localization'
-
-
class ActiveRecord::Errors
-
include Localization