I download the GoogleTranslateAPI.dll file and added the reference of it to my project. Now i took a textbox and wrote 'John' in it and took a label and want to be written 'John' in it but in 'French' language. So i wrote in the button_click event....
private void button1_Click(object sender, EventArgs e)
{
string TT = Txt1.Text;
Label1.Text=Google.API.Translate.Translator.Translate(TT, Google.API.Translate.Language.English,Google.API.Translate.Language.French);
}
This gives an error saying "TRANSLATE FAILED"... Can anyone tell what i did wrong ?? This is a desktop application and will run off line.
Dev..