4
votes
3answers
136 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 ...
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
39 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 ...
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
1answer
79 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 ...
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
372 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
212 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
2answers
234 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
109 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, ...
2
votes
1answer
279 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 ...
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 ...
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
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 ...
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
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 ...