I am searching for a server-side application (not a service, we need to host this ourselves) that can take a given string and translate it to another language. Open-source, paid, doesn't matter.

Can anyone provide some recommendations?

link|improve this question

58% accept rate
Which source language(s) to which target language(s)? – larsmans Jan 20 '11 at 16:26
English -> ... Whatever is available. Spanish, French, Chinese, Swedish, etc... I work with projects that have involved dozens of different languages. – tambler Jan 20 '11 at 16:30
Any reason why you don't just maintain languages files with all the strings pre-translated? – Spencer Hakim Jan 20 '11 at 17:13
We are translating live data that is supplied by users of the application. – tambler Jan 20 '11 at 18:03
shopping recommendations are not on topic blog.stackoverflow.com/2010/11/qa-is-hard-lets-go-shopping – Jeff Atwood Jan 21 '11 at 8:02
feedback

closed as off topic by Jeff Atwood Jan 21 '11 at 8:02

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

1 Answer

Open Source Translation Packages

Here are some state-of-the-art open-source machine translation packages:

Training Data

To use each of the packages above, you'll need training data. If you're translating between many European languages you can use Phillip Koehn's Europarl parallel corpus. If you're interested in a European Union (EU) language that's not in the Europarl parallel corpus, you can gather the data by crawling the proceedings of the European parliament. All the EU proceedings are translated into each of the EU languages and made available for free online, which makes them a very good source of machine translation training data.

You can get training data for non-European languages from the Linguistics Data Consortium (LDC) catalog (e.g., Chinese-to-English).

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.