I have used Globalize2 to create a table and translate the original table.
http://github.com/joshmh/globalize2
Here are my tables:
Threads: id, comment_count
Thread_translations: id, thread_id, title, body
I created a thread via:
Thread.create(:title => "Hello", :body => "Awesome!")
It was successfully created.
But when I wanted to retrieve it...
Thread.all
...it just retrieved the id and comments_count.
How do I retrieve the translated columns too?
Thanks.