Click here to Skip to main content
15,895,192 members
Please Sign up or sign in to vote.
4.00/5 (1 vote)
Dear All,

I want to create the windows application for converting the english text to any other languages like chinese,arabic,russian & French etc , Can Anyone give me an idea to use the third party dll except google translate API.

Using Google.API.Translate;

String text="Thank you"
TranslateClient client = new TranslateClient("");
client.Translate(text,Language.English,Language.English);
But it is not accepting the input parameters as Language it needs the input parameters string(even i mentioned in "Language.English" this also but it throws error ,but example given in the documentation is file client.Translate(text,Language.English,Language.English); this only.So please help me to sort out this problem.
Thanks & Regards,
G Mariappan
Posted
Updated 3-Jan-14 1:46am
v2
Comments
Richard MacCutchan 3-Jan-14 7:20am    
Use Google to search for other translators.
Richard MacCutchan 3-Jan-14 8:58am    
Where did you find the documentation?

See my article Google Translator[^].

/ravi
 
Share this answer
 
If you want to use Google's APIs, here[^] is an article showing how to implement it.

For any other API providers, you can search the web and choose as per your needs.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900