I have used google translator. And it has horrible grammatical problems. I am looking for some library, or something that is more versatile then that. Does anyone know anything about it? I once heard that pear has a translator package. Does anyone know how efficient it is?

Regards, Krishna Kant Sharma.

link|improve this question

What languages do you want to translate? – Bkkbrad Aug 21 '09 at 12:31
5  
Any translation tool will have horrible grammatical problems. Specially if the two translating languages are extremely different (i.e.: English -> Japanese). But most of the time, it's acurate enough to understand the underlying message. – voyager Aug 21 '09 at 12:33
Yes voyager, you are right. I am just asking that what is the best method two translate text from one language to another. (Not manually :) – Krishna Kant Sharma Aug 21 '09 at 12:42
English to 43 languages – Krishna Kant Sharma Aug 21 '09 at 12:47
Google Translate is among the best automatic translation systems existing today. If it's not good enough for you I don't believe you'll find a system which is. Machine translation has been one of the toughest problems tackled with digital computers since they were invented. – hippietrail Aug 4 '11 at 7:42
feedback

3 Answers

up vote 1 down vote accepted

You will not find any package that can automatically translate a text gramatically correct. Computers simply can't understand text well enough to translate it.

The main problem with automatic translation is understanding the text that is translated, the actual translation part is trivial in comparison and could be done by a computer.

Take for example a simple sentence like "When the going gets tough, the tough gets going.". It has ambigous words, implicit references and cultural undertones, which is very hard to write an algorithm for deciphering.

I once read about a project of developing an independent, unambigous intermediate translation language, which sounded promising. You could translate your text (partly manually) to this intermediate language, which then could be automatically translated into any language. I haven't heard anything more about it, though...

link|improve this answer
1  
This seems intuitive but isn't actually true. The best automatic translators today like Google Translate don't even try to understand the text at all, they use statistics instead. In fact Fred Jelinek (in)famously said "Every time I fire a linguist my system improves" about the machine translation he was working on. – hippietrail Aug 4 '11 at 8:09
@hippietrail: That is only true to a certain level, i.e. statistics can only get translations from horrible to bad, to get a good translation you need to understand the text that you translate. – Guffa Aug 4 '11 at 8:09
1  
I tend to agree but the consensus seems not to agree \-: Though everybody agrees computers will never be able to translate as well as people. "Context" would be the bigger obstacle though. Lack of general knowledge used to be cited as well but I don't see this so much now that large knowledge bases exist and machine translation still sucks. – hippietrail Aug 4 '11 at 8:14
feedback

It's unlikely you'll find a much better solution. There are two primary methods to machine translation - rule based and statistical. Rule based translation has the problem that a great deal of text involves idiomatic expressions, grammar, or vocabulary that are outside the set of rules. Statistical methods can sometimes provide better solutions if there is a large dataset (and large data sets are Google's business), but also has trouble with idiomatic expressions and differences in word order between languages. For more information, check the Wikipedia Article on Machine Translation, and more specifically the articles on Inter-Lingual and Statistical Machine Translation methods.

link|improve this answer
feedback

Try babelfish: http://babelfish.yahoo.com/

link|improve this answer
I have tried that too. Its not that effective. – Krishna Kant Sharma Aug 21 '09 at 12:34
feedback

Your Answer

 
or
required, but never shown

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