Module | Padrino::Contrib::Orm::ActiveRecord::Translate |
In: |
lib/padrino-contrib/orm/active_record/translate.rb
|
This is an extension for ActiveRecord where if I had:
post.description_ru = "I'm Russian" post.description_en = "I'm English" post.description_it = "I'm Italian"
with this extension if I had set:
I18n.locale = :it
calling directly:
post.description
will be a shortcut for:
post.description_it => "I'm Italian"