Reputation: 329
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.
Upvotes: 0
Views: 269
Reputation: 18043
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.
Upvotes: 3
Reputation: 7564
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.
Upvotes: 0