I'm trying to set my controller to save multiple languages with an object like this:
{ text: { fr: "francais", en: "English" } }
In your controller ex: (models_controller.rb)
def create
model = Model.new model_save_param
model.save
end
def model_save_params
translations_attributes: params[:model][:text].map { |locale, translation| {locale: locale, text: translation} }
end
In your model ex: (model.rb)
translates :text
accepts_nested_attributes_for :translations
Or, there is a Gem Globalize Accessor that can do the job