Rails 2.3.5 model name translation problem in error messages
- by Jason Nerer
Hi Rails'ers,
I encountered some problem while trying to translate my model's names and attributes in a Rails 2.3.5 app.
I have the following model:
class BillingPlan < ActiveRecord::Base
validates_presence_of :billing_option_id
belongs_to :order
belongs_to :user
belongs_to :billing_option
end
When validation fails, my models…