I have a code igniter application which is in 3 languages. When I have a new key/value pair for a language entry, I do the following:
- define key/value in english
- Go to google translate for other 2 languages
- add key/value to other files
This takes about 2-3 minutes per key. Does anyone have any suggestions on how to speed this up? Are their APIS for google translate?
http://code.google.com/apis/language/translate/v1/using_rest_translate.html
This is the docs for the current iteration of the translate REST API
In theory you could probably write an application that would take an english lang file and generate it into a specified language. Seems it would be very useful/popular.