[Globalize3](https://github.com/svenfuchs/globalize3) is a popular [Ruby on Rails](http://rubyonrails.org/) extension that aids development of the global-ready web applications.
1
vote
0answers
333 views
Ruby on Rails with Globalize3: find by translated field makes record readonly
I´m using rails 3.0.7 with the globalize3 gem.
I have the model "Country" with traslated field "title".
In the rails console, try to find the record by its translated title like this:
gr = ...
1
vote
1answer
359 views
Relation “translations” does not exist after migrating to Rails 3.2.1
I migrated from Rails 3.1.3 to 3.2.1 and got the following error when loading the home page:
PGError: ERROR: relation "translations" does not exist
LINE 4: WHERE a.attrelid = ...
0
votes
1answer
198 views
Globalize3 - two translations in one view
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 ...
0
votes
1answer
169 views
Can you implement custom fallbacks for Globalize3?
I'd like to have some custome fallbacks for Globalize3 on Rails.
I know you can set
config.i18n.fallbacks = true
and have untranslated text fallback to its default locale, but I would rather have ...