Skip to content

Instantly share code, notes, and snippets.

@jessenaiman
Created June 12, 2013 20:43
Show Gist options
  • Save jessenaiman/5768941 to your computer and use it in GitHub Desktop.
Save jessenaiman/5768941 to your computer and use it in GitHub Desktop.
Saving localized data only saves the french
csv_data.each do |row|
riding = Riding.new
riding.riding_id = row[0]
riding.title = row[1]
riding.save
I18n.locale = :fr
riding.title = row[2]
riding.save
end
@jessenaiman
Copy link
Author

I get this in the title field rather than localized data:

title: {"fr"=>"ALGOMA--MANITOULIN"}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment