Skip to content

GBH/acts_as_localized

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ActsAsLocalized

Gem Version Gem Downloads Build Status

ActsAsLocalized extends ActiveRecord to add localization mechanism for model attributes.

Example

create_table :pictures do |t|
  t.string :title_en
  t.string :title_fr
  t.text :description_en
  t.text :description_fr
end

class Picture < ActiveRecord::Base
  acts_as_localized :title, :description
end

picture = Picture.create!(
  :title_en       => 'Title EN',
  :title_fr       => 'Title FR',
  :description_en => 'Description EN',
  :description_fr => 'Description FR',
)

I18n.locale = :en
picture.title #=> Title EN
picture.title = 'Updated Title EN' # same as `picture.title_en=`

I18n.locale = :fr
picture.title # => Title FR
picture.title = 'Updated Title FR' # same as `picture.title_fr=`

Copyright 2015 Oleg Khabarov

About

Localization accessor mechanism for AR models

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages