0
votes
0answers
28 views

Threading misbehaves on Passenger and Nginx

I'm working on a website internationalization module that utilizes fast_gettext for language localization, and I store my translation records in database, not in po files. Since fast_gettext uses ...
2
votes
2answers
401 views

Is there a tool to convert i18n yaml files to gettext po format?

I'd like to convert rails i18n yaml files to gettext po format. I tried https://github.com/pejuko/i18n-translators-tools but it doesn't worked as expected in my case. Any suggestion?
0
votes
1answer
97 views

How to translate one string from one locale into another using FastGettext?

I use FastGettext in my Rails application. I need a particular string translated into every single FastGettext.available_locales in my application. How to do that? PS: I couldn't find the solution ...
2
votes
3answers
273 views

How to delete obsolete translations in gettext

i use gettext for a rails project and every time i start my server i get messages like Warning: obsolete msgid exists. #~ "some tranlation: " Warning: obsolete msgid exists. #~ "some ...
1
vote
1answer
878 views

An example for plural forms in a Yaml translation file for Rails i18n API

Can someone please provide an example on how to use plural forms in a Yaml translation file for Rails i18n API. Basically this is about moving from a gettext based app to Rails. Plural forms for a18n ...
3
votes
2answers
589 views

Very strange thing with Rails 3 and Gettext (fast_gettext), undefined method 'add' for String

I'm running on Rails 3.1.1 and ruby 1.9.2 on Mac OS and just started a new project where I want to use gettext for translations. I followed every step when using fast_gettext described here: ...
5
votes
2answers
290 views

Handling grammatical gender with Gettext

I'm looking for a simple-proper-elegant way to handle grammatical gender with Gettext in a Rails application, the same way plurals are handled with n_() method. This has no interest in english, since ...
1
vote
1answer
184 views

Translates Models(table names, column names) with gettext in rails

How may i translate model name and column name with gettext in rails ?
1
vote
0answers
223 views

Rails and translations in liquid based themes

I would like to return a string from a model, which can be used directly in the liquid-based template. The problem is, that I would like the string to be translated using gettext. I cannot use ...
0
votes
1answer
96 views

gettext problem with validation message

I have a validation message self.errors.add_to_base(_("country cannot be deleted #{self.country_name}")) this is not working. But simple messages like self.errors.add_to_base(_("country cannot ...
0
votes
1answer
233 views

Rails: gettext pot generation task generates empty files

my problem is that in my app I want to generate the gettext .pot file with rake but I'm getting a file with no keys, only the header text ("Some descriptive title. Copyright (C)..."). I'm using the ...
2
votes
3answers
737 views

Very strange problem with Gettext and Haml on Rails / rake updatepo broke

I'm on Rails 2.3.3 and using Haml 2.0.9 for my templates and Gettext-Rails 2.0.4 for the translation. Haml works like a charm and gettext is also working like it should. But I cant get Gettext to ...