Hey people,
I’m having a problem translating messages inside a model, e.g. I used to
have it like this:
validates_uniqueness_of :username, :message => “Username in use already”
which worked fine but now I wanna internationalize my application and
thought it’d work like everywhere else in my application and I did
following:
validates_uniqueness_of :username, :message => (t :username_in_use)
and I get: method_missing': undefined method
t’
Is it not possible to translate text inside a model? If it is… how do
I do it the right way?