[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.
0
votes
2answers
408 views
Globalize3 english translations in posts or post_translations?
I have an existing site with fields in post.title and post.body. After I installed Globalize3, post.title returns blank. Is there a way that I don't need to migrate the existing information to ...
2
votes
1answer
338 views
How to validate translated data?
I am using Ruby on Rails (3.2.2), globalize3 (0.2.0) and batch_translations (0.1.2) ruby-gems. I would like to validate translated data handled by globalize3 as well as it should be. That is, for ...
1
vote
1answer
29 views
Globalize.with_locale in after_commit callback does not change anything
I'm having troubles with Globalize3 gem when updating cached attribute in after_commit callback.
#In My Model
after_commit :write_localized_caches
private
def write_localized_caches
...
1
vote
1answer
65 views
undefined method `create_translation_table!'
I have a new rails engine and I want to use globalize3. I did this in my lib//engine.rb :
require 'globalize3'
module SimpleCms
class Engine < ::Rails::Engine
end
end
Now, I try to create a ...
0
votes
1answer
46 views
Globalize 3 on production server not working
I am trying to use Globalize3 gem for model translations to Active Record i.e. internationalization for database. After going through the documentation, I was able to implement it successfully on ...
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
119 views
Using dragonfly with globalize
I'm trying to i18n the image_uid attribute in my model so I can have different images with different languages. I'm using globalize3 and dragonfly.
The problem is that is not working at all. It ...
0
votes
1answer
237 views
Globalize3: “Mysql2::Error: Unknown database” when running the 'rake db:seed' task
I am using rails-3.2.2, i18n-0.6.0 and globalize3-0.2.0 ruby-gems. I installed and correctly run Globalized for a my class named Article. However, when I run the rake db:seed task in the Terminal ...
3
votes
0answers
95 views
Globalize3— Save translation to the database
Hey everyone I'm newbie and would love to get some help with saving locale translation to database.
I have this form
= form_for @restaurant do |f|
= f.fields_for :en_info do |restaurant_en|
...
1
vote
0answers
27 views
How to get the translation of the object in a globalize3 with fallback
I wanna get the translation with fallback.
My method is not suitable:
1) Change locale(I18n.locale = :de)
2) Get translations(Place.find(:id))
3) ...
4) Not profit!
UPDATE:
I find solution!
...
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}, ... ])
...
1
vote
0answers
68 views
Any way to temporarily disable I18n fallbacks / Globalize3 translations?
I'm trying to implement fallbacks for translated attributes using Globalize3 and I18n fallbacks. To get fallbacks up and running, I added to my environment.rb file:
#support for locale fallbacks
...
1
vote
0answers
331 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
0answers
330 views
Rails3 & Globalize3 custom translation model
i'm using globalize3 in a rails3 app. I have a model called Book with some attributes to be translated, all working great. I'm trying to write a before_save function to validate changes in the ...
0
votes
0answers
43 views
Switch off I18n/Globalize3 fallbacks per Rails model basis
Is it possible to switch off I18n/Globalize3 fallbacks per Rails model basis? I.e. some models use fallback, some don't.
0
votes
0answers
54 views
How to autocomplete on translated column using rails3-jquery-autocomplete?
I works on autocomplete field based on my current locale, as i used globalize3 gem to translate the title field in a table called Article. so i have a table called Article_translations with field ...
0
votes
0answers
34 views
Rails globalize3 with client_side_validations gem and strip_attribues gem
Is it possible to utilize Globalize3 gem with
1. client_side_validations gem
2. strip_attribues gem
Got a simple model with a single attribute
class Category < ActiveRecord::Base
...
0
votes
0answers
158 views
Rails3: Globalize3 - M to N table with attribute translation
Another Globalize3 problem I can't resolve:
I have Products and AttributeFields. And I have a n-to-m table AttributeFieldInProduct with an extra :value. This value gets translated. Without the ...