Created
October 13, 2013 20:23
-
-
Save yujiym/6967023 to your computer and use it in GitHub Desktop.
simple_formでnestしたmodelの多言語化対応 ref: http://qiita.com/yujiym/items/b32c1a788aaa34eb8089
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class Profile < ActiveRecord::Base | |
| belongs_to :user | |
| # … | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ja: | |
| simple_form: | |
| # ... | |
| labels: | |
| defaults: | |
| # ... | |
| user: | |
| # ... | |
| profile: | |
| hoge: "ほげ" | |
| huga: "ふが" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class User < ActiveRecord::Base | |
| has_many :profiles, dependent: :destroy | |
| accepts_nested_attributes_for :profiles | |
| # … | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment