views:

344

answers:

3

Hi All

I've seen many websites AND programs that access the google translation service. I'm trying to create a little app where there are basically 2 TextBox controls and a Button, where you can select a language to translate from and to... But how do I access the API?? I've not found anything so far. Or if anybody knows of any other translation service that i could connect to, I'd appreciate it

Thank you

+3  A: 

Take a look at this explanation at google.

Oliver
Thanks for that Oliver :) +1
lucifer
+2  A: 

Send WebRequest to

http://www.google.com/translate_t?hl=en&ie=UTF8&text={0}&langpair={1}

, where 0 = your text to translate, and 1 = language pair separated by "|" delimiter

Gopher
Hmmm... Perfect, thank you Gopher :)
lucifer
A: 

Use Google Translation API for .NET

Emad Mokhtar