Hi!
I am using Rails3.0.0.rc and get an error which do not occur on
Rails2.3.5
In my model I have:
validates :title, :presence => true, :uniqueness => true
when I start up the console and enter:
x=Blog.new
x.valid? --> false
x.errors --> OrderedHash{:title => [“can’t be blank”]}
x.title=“an_existing_title”
x.valid? --> false
x.errors --> OrderedHash{:title=> [“translation missing: en,
activerecord, errors, models, blog, attributes, title, taken”]}
In Rails2.3.5 this error does not occur. (“title has already been
taken”)
Is this an i18n error or is this a rails3.0.0.rc error?