Reputation: 5323
I am trying to develop an application able to translate a word in different languages. What are the option (based on free dictionnaries is possible) for a cocoa application?
Thanks and regards,
Upvotes: 0
Views: 83
Reputation: 243156
I'd probably go with something simple and investigate using a webservice to do it for me, like http://translate.google.com. Then my code would be to simply package up the text, send it off to the servers, and wait for a response (which is how Google's API works).
Upvotes: 0