Victor Lam
Victor Lam

Reputation: 3710

Any suggestion for Ruby on Rails multilingual translation management?

I am developing a Ruby on Rails application with multilingual support. Now I have 4 languages, each have a separate yml file. I found this is inconvenience that when I add a new translation, I need to add all the lines manually to each yml file.

Does any good translation management tools can help me on this?

Thanks everyone. :)

Upvotes: 3

Views: 1702

Answers (5)

shingara
shingara

Reputation: 46914

Tolk can help you to do that: http://github.com/tolk/tolk

Upvotes: 2

Antoine C
Antoine C

Reputation: 131

Here are some links that I've gathered

Free (gems)

Paid (apps)

Upvotes: 9

Aaron Gibralter
Aaron Gibralter

Reputation: 4853

There's https://github.com/berk/tr8n but it looks pretty hard core and it focuses more on the front end crowdsourcing component.

Upvotes: 0

Slobodan Kovacevic
Slobodan Kovacevic

Reputation: 6888

You can try using Translate to edit YML files.

Upvotes: 1

Dmitry Polushkin
Dmitry Polushkin

Reputation: 3393

Personally I'm using http://99translations.com/ Easy to use for non-programmers, eg. translators and free for the open source projects.

Another service https://webtranslateit.com/ is growing and in active development (blog is updating frequently). They have also free plan, on which you can store up to 500 strings, even for non open source project.

Both have API, for which they have rake task to update translations on your local machine and also on their server. Actually never used, but I think it's good when you have > than 1000 strings and updates are frequent.

Upvotes: 2

Related Questions