Ruby on Rails Sunday, August 1, 2010

All,
Has anyone seen this - I am getting the following deprecation warning when running my functional tests under rails 2.3.8 (just moved an app from 2.3.4 up to 2.3.8 in prep to move to Rails 3 --- if you think this problem is solved in Rails 3 then let me know):

The {{key}} interpolation syntax in I18n messages is deprecated. Please use %{key} instead.

I have isolated the problem to the following line in my model --- when I do not add this error everything is fine:

errors.add_to_base("Uploaded file must be present") if !self.uploaded_file_content


Also tried this but same result:

errors.add(:uploaded_file_content, "Uploaded file must be present") if !self.uploaded_file_content


The irony is on this app I have no use for i18n. Would be also just as glad to turn it off, but of course that would only be a band-aid.

Thanks in advance!

David

--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.

No comments:

Post a Comment