0.0
No commit activity in last 3 years
No release in over 3 years
Automatically create translated locales files of a rails project from source locales. Translations are 'bulk' translations from google, and might be reviewed but that's a easy first step'. Create your locales files with your own language and run the task with targettd languages. Example: > rake i18n:translate['en','fr;es']. See more on github
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

 Project Readme

Overview¶ ↑

Rake task which creates translated locales files of a rails project from source locales.

Translations are ‘bulk’ translations from google, and might be reviewed but that’s a easy first step.

Create your locales files with your own language and run the task with targeted languages.

It uses the gem ‘easy_translator’ which use google translations api.

Code Quality Metrics¶ ↑

<img src=“https://codeclimate.com/badge.png” />

Installation¶ ↑

gem install i18n_translator

and require the gem in your rails project

gem 'i18n_translator'

Usage¶ ↑

rake i18n:translate['en','fr;es'].

Separate targets languages symbols with semicolons.

/!\ Don’t put space after the coma for rake tasks parameters.

With no additional argument, it will translate and create locales for all your source locales.

If you want to just do the work with only one locale source, pass an additional path to file source argument to rake tasks :

rake i18n:translate['en','fr;es','config/locales/user/en.yml'].

Convention¶ ↑

The source locale is supposed to be named <lang>.yml where lang is the language symbol (fr, en , es … and so on)

Example¶ ↑

  • config

  • locales

  • models

  • user

  • en.yml

  • book

  • en.yml

Will generate :

  • config

  • locales

  • models

  • user

  • en.yml

  • fr.yml

  • es.yml

  • book

  • en.yml

  • fr.yml

  • es.yml

Dependencies¶ ↑

  • rake

  • easy_translator

TO-DOs¶ ↑

Add options to be more flexible ; ie pass a translator lambda to use other translator.

Issues¶ ↑

Sometimes phrases with interpolations are not double quoted

Licence¶ ↑

MIT Licence