I use gem globalize3.
I want to get a translation posts in two languages​​, first in English and then in Russian in one index view. And I want to post that is not in English, was located below in Russian after the English posts. My problem is that since I have a default locale :en, and if:
@posts = Post.with_translations(:en)
I get posts in english as I need, if:
@posts_ru = Post.with_translations(:ru)
I get posts in english too..Probably because the default locale English
How I can get @posts in english and then in russian together in one index view? please help me! thanks in advance!
@posts_en = Post.translations.where(:locale => "en"); @posts_ru = Post.translations.where(:locale => "ru"). Otherwise, group queries and sort. – apneadiving Aug 27 '12 at 13:03