Skip to content

Instantly share code, notes, and snippets.

@yujiym
Created October 13, 2013 20:23
Show Gist options
  • Select an option

  • Save yujiym/6967023 to your computer and use it in GitHub Desktop.

Select an option

Save yujiym/6967023 to your computer and use it in GitHub Desktop.
simple_formでnestしたmodelの多言語化対応 ref: http://qiita.com/yujiym/items/b32c1a788aaa34eb8089
class Profile < ActiveRecord::Base
belongs_to :user
# …
end
ja:
simple_form:
# ...
labels:
defaults:
# ...
user:
# ...
profile:
hoge: "ほげ"
huga: "ふが"
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