Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I started working with Devise. Quite an awesome gem. Reading through a neat exchange I was able to do a lot of interesting message customization.

NOW though, I'm running into an intriguing issue with customizing error messages based on noun gender for I18N purposes. Here, I have an error message containing %{resource}, where resource will sub in my model name (user). In French, the word coming before the %{resource} will vary depending on gender. Is there a way for me to branch out to a particular error message based on the %{resource} gender?

share|improve this question
Would be helpful to see the custom code you're currently using for the error messages. – M. Cypher Jul 31 '11 at 8:56

1 Answer

up vote 1 down vote accepted

You can customize the human-readable model name by implementing the model_name instance method in your user model.

http://api.rubyonrails.org/classes/ActiveModel/Naming.html

The model_name method has to return an object of type ActiveModel::Name

http://api.rubyonrails.org/classes/ActiveModel/Name.html

You can customize this object to fit your i18n needs.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.