Tagged Questions
1
vote
1answer
28 views
Globalize3 order records by translated attributes and taking fallbacks into consideration
Im having troubles with awesome Globalize3 gem. For now I`m having two languages :en and :ru. And :ru falls back to :en like this
#/config/initializers/globalize.rb
Globalize.fallbacks = {:ru => ...
1
vote
0answers
70 views
Unexpected behavior in Rails3.2 ActiveRecord finder methods and Globalize3
I have complex Model query with globalized fields, containing:
1) scalar-fields:
select("field1, field3, joined1.field1, count(1), ...")
2) inner joins:
joins(:book =>[{:article => :writer}, ... ])
...
0
votes
1answer
176 views
Sort ActiveRecord query response by Globalize3 translation on an association using locale
I have two models and three tables total which are involved. Unfortunately, some renaming of the models from the original table names has occurred, so pardon the confusion.:
Symptom ...
0
votes
1answer
409 views
Rails Globalize3 Get all objects regardless of locale
I have an Article model and I would like to retrieve all entries regardless of their locale.
Article.all returns only the original objects (those stored in the articles table) without their ...