I am using Devise in my Rails app and I wonder why it downcases all my model names in its error messages: Source code on Github
Is there any way to override this?
In German, for example, nouns start with capital letters, e.g. "Benutzer" is correct, but "benutzer" is wrong.
I have this in my devise.de.yml
:
de:
activerecord:
models:
user: "Benutzer"
However, Devise still renders Benutzer
in small letters:
Konnte benutzer nicht speichern
This is wrong!
How can I fix this?
Thanks for any help...