Tag Archives: i18n

New rake task for the Tranlsate plugin: Google Translate

We just pushed the latest addition to the Translate plugin which adds a new rake task: “rake translate:google FROM=sv TO=en”. This will translate all keys in sv.yaml using Google Translate into english and store them in en.yaml.
This is a very convinient way of testing your application in a translated state, and look for strings [...]

Rake Tasks for the Translate Plugin

We’ve added two Rake tasks to the Translate plugin. The lost_in_translation rake task helps find I18n keys in lookups in your code that are missing from your default locale YAML file (i.e. config/locales/sv.yml in our case). The merge_keys Rake task is used in conjunction with Sven Fuchs’s Rails I18n Textmate bundle to move extracted keys [...]

Translate: New Rails I18n Plugin with a Nice Web UI

Here at Newsdesk we are in the midst of internationalizing a fairly big Ruby on Rails application. Sven Fuchs’s I18n Textmate bundle has been a great help in extracting thousands of texts away from our source code and into YAML files. As we were getting ready to start the actual translation work we figured that [...]