[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.

learn more… | top users | synonyms

4
votes
3answers
141 views

How to make localized Paperclip attachments with Globalize3?

I have a project using Paperclip gem for attachments and Globalize3 for attribute translation. Records need to have a different attachment for each locale. I though about moving Paperclip attributes ...
3
votes
0answers
100 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| ...
2
votes
1answer
285 views

Simple search on a Globalize3 table in Rails

I am looking to implement a simple search function while using the globalize3 gem for Ruby on Rails. Since the translations of the model are stored in a separate table, the code below doesn't work as ...
2
votes
1answer
424 views

Seeding translation table that has no model, rails app

I am using the Globalize 3 gem as seen in Ryan Bates railscasts, and everything works fine. I need to know how to seed the data though. Currently, I created a table called monthly_post_translations ...
2
votes
1answer
341 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 ...
2
votes
1answer
349 views

i18n search using tire and Globalize3

i have a site that uses globalize3 gem (https://github.com/svenfuchs/globalize3) and i'm currently adding the Tire gem to make site search. How do i do to Index a table translations depending on the ...
1
vote
2answers
1k views

globalize3 configuration I18n.locale variable

take a look into my model and my migration i only have one attribute to test the globalize3 gem class Car < ActiveRecord::Base attr_accessible :name translates :name end my migration ...
1
vote
1answer
86 views

What's the difference between Globalize.with_locale and I18n.with_locale?

I found both methods to work but I don't want strange surprises: what' the difference between them? Can I use one or another without problems?
1
vote
1answer
162 views

Globalize3 - Error on migration when trying to add translations to an existing model

I'm trying to use Globalize3 as a simple way to provide translations to a model called EventCategory. Unfortunately, when I'm running the migration through rake db:migrate, I have the following ...
1
vote
1answer
29 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
1answer
78 views

Use globalize3 (with_translation) with 2 models in a query (include)

Using Globalize3 I am trying to load the following models including translations in a single query: products (with product_translations) properties (with property_translations) When I try the ...
1
vote
1answer
82 views

Loading specific translations with Globalize3

Is it possible to load a specific translation with Globalize 3? For instance, I have a Post which is translatable and shows on the front end in the correct locale as it should. However, I want to ...
1
vote
2answers
74 views

What gem should I use in order to have all the translations in the DB?

I've played a bit with globalize and rails 3, but from what I'm able to tell, globalize only works for ActiveRecord instances. I'd also like to be able to have the translations for other static pages ...
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 = ...
1
vote
2answers
166 views

Are duplicate translations necessary for same strings in Globalize3?

I was hoping to utilize Globalize3 to translate models in a project I'm building. However, trying it out it looks like each model, say Post like: class Post < ActiveRecord::Base translates ...
1
vote
1answer
32 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
0answers
28 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
72 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
69 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
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 ...
1
vote
1answer
174 views

Ruby with nested form and globalize3

I've had a problem with our web application, since Wednesday. I've been trying to fix it, but I have run out of ideas. So, I've created a mini Ruby on Rails application that reproduces my problem to ...
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
0answers
331 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
2answers
238 views

globalize3 and easy_globalize3_accessors validation

I'm using gems: globalize3 and easy_globalize3_accessors. I have a problem with validations. For example, I have Post model: class Post translates :title, :content globalize_accessors :locales ...
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
186 views

Locale fallback from country to language without having to define each individually

I am localizing an app with the default rails I18n with globalize3 as the back-end. Is it possible to set a locale with a country code (ie :fr-CA) to fallback to its specific language (:fr) before ...
0
votes
3answers
418 views

Jquery datapicker localization using globalize plugin

Is it possible localize jquery datapicker using globalize plugin (https://github.com/jquery/globalize)? I tried in this way // get a date format var dt = Globalize.culture().calendar.patterns.d; ...
0
votes
1answer
170 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 ...
0
votes
1answer
15 views

How can I create_or_update in seeds.rb for translations?

I now have the following in my seeds.rb os = OrderStatus.find(1) os.translations.create(:status => "In aanmaak", :locale => "nl") os.translations.create(:status => "Creating", :locale => ...
0
votes
1answer
377 views

Rails `update_attributes` Undefined method `first` for nil:NilClass

I'm trying to use update_attributes on a record, but it fails and I can't figure out why, I must be missing something obvious as I've used that method plenty of times. I'm trying to seed data for a ...
0
votes
1answer
213 views

globalize3 translating gem: What do I do about attributes that don't need translation (in writing migration)?

The github page for the globalize3 gem, https://github.com/svenfuchs/globalize3, clearly outlines how to prep a model's migration with string and text attributes that you would want multiple ...
0
votes
1answer
111 views

How to seed a model (using the seed-fu gem) that has been translated using the globalize3 gem (Rails)

In a Ruby on Rails app, how would one seed a model (using the seed-fu gem) that has been translated using the globalize3 gem? I tried seeding both the table and translated table with the code below, ...
0
votes
1answer
109 views

How to improve setting and getting temp variables around a block of code?

I am using Ruby on Rails v3.2.2 and globalize3 v0.2.0 ruby-gems. Since I would like to update translation data for an object (so to store proper data by using globalize3) I am using the following code ...
0
votes
1answer
411 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 ...
0
votes
1answer
47 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
48 views

Model has_many OtherModel but localized, so different OtherModel for same Model based on locale: how?

I'm having hard time with this, it's not a direct problem of implementation but I don't understand which is the right way to do it, I have two options, but first, these are my models: class Boat < ...
0
votes
1answer
40 views

Rails force all translations

I am using globalize3 with rails_admin thanks to this gist. What bugs me, is that the user can add as many translations as he wants. Moreover, he isn't forced to translate the content in every single ...
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
1answer
68 views

Is it “advisable” / “the right way” to store all possible translations?

I am using Ruby on Rails v3.2.2 and the Globalize3 v0.2.0 gem. At this time I am using Globalize3 in order to translate country, region and city names in two languages but I plan to use it to ...
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 ...
0
votes
1answer
224 views

Rails: Globalize3 and batch_translations

I'm using rails 3.2.8, globalize3 and batch_translations to translate specific content for an little cms and shop system. I integrated it without problems for one translation on one model. So ...
0
votes
1answer
177 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
126 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
194 views

Annotating Rails models that have Globalize3 translation tables

Is it possible to use the annotate (2.4.1.beta) gem to output globalize3 (0.2.0) translated properties in the models that they translate? If I have a Post creation migration generated like so class ...
0
votes
1answer
240 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 ...
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 ...