Rizla
Rizla

Reputation: 39

Language translator Delphi

I am busy with a project where I have to code a program in Delphi that will translate an English word to another language. What would be the easiest way to approach this? I was thinking about using Microsoft Translator V2 API from Delphi, but it seems very complicated and I am not yet that experienced in Delphi. Any other suggestions?

Thanks in advance :)

Upvotes: 3

Views: 2174

Answers (2)

user532231
user532231

Reputation:

Thanks to RRUZ you can follow this article about Microsoft Translator V2 API implementation for Delphi; inluding the full (even speaking) example.

Upvotes: 5

Chris Thornton
Chris Thornton

Reputation: 15817

If you don't have to be self-contained, you could make a webservice call (soap, etc..) to the cloud (google, etc..). The nature of your app (is it a translation program? or do you just want to provide translation in another app, along with spellcheck, thesaurus, syntax highlight, etc..?) will determine whether this is feasible or not.

Upvotes: 1

Related Questions