0
votes

We're working on some Ruby on Rails web application which is currently in English but should be translated to more languages. We deploy new version of application to production every 2 weeks. Translators are a separate team.

We have a special page in admin area for making translations. Dictionaries are stored as YAML-files. We can let translator edit dictionaries in production and open language for visitors then it will be ready. Another way is to let translators to work on staging server and merge translations before deployment to productions.

Do somebody know a good process to synchronize work of developers and translators?

Thanks in advance.

2
add ruby in the title, pleasesorin
I'm working on RoR application but the question was not about something RoR specific.Konstantin Tikhonov

2 Answers

3
votes

37signals launched Tolk, a tool they used to translate Basecamp into several languages. I've not used it myself, but seems a handy tool to automate some parts of the process. It may be worth giving it a look.

0
votes

Did not you try http://www.gnu.org/software/gettext/ ? If you go with that, translators and developers can work parallel. Translators can use POEDIT to find the text in application and make the translation.