I'm trying to find an API or anything that I can query programmatically that, given a word in one language, gives me all the possible translations for that word in another language. For example, the English word "trunk" has many translations in Russian - there's one word for an elephant's trunk, another for a car trunk, another for the suitcase variety, and so on.
Anyone know of any such API? The only thing I've seen so far are the straight up translators (google, babelfish, and dozens of others) but these all just give you one guess at the translation, where as I'd like to see all possibilities.
As Crusty explained consicely below:
Note how the results are in an array, meaning for one word in english, we can get back multiple translations in spanish.
Anyone know of any such API? The only thing I've seen so far are the straight up translators (google, babelfish, and dozens of others) but these all just give you one guess at the translation, where as I'd like to see all possibilities.
As Crusty explained consicely below:
Translater english;
string[]results = english.toSpanish("Hello");
Note how the results are in an array, meaning for one word in english, we can get back multiple translations in spanish.