ACP
ACP

Reputation: 35268

Is it possible to change a textbox's text which is in english to tamil in C#

Question

How do I translate text a user types from English to another language? What APIs exist for this?

Background

When a user types in text into a TextBox on my ASP.NET page, I want it to be automatically translated into Tamil.

Upvotes: 0

Views: 2691

Answers (3)

ram
ram

Reputation: 11626

@Pandiya: I believe you are talking about transliteration and not translation. Your intended output should be something like this ??. A search gave me this which pointed me to this software

Upvotes: 1

Skizz
Skizz

Reputation: 71070

Google provides a service to translate text:

AJAX Language API for Transliteration

Upvotes: 3

Alex
Alex

Reputation: 13229

The only thing I know of that could do this is Microsoft's translator, however it does not appear that Tamil is a supported language as of yet.

Upvotes: 0

Related Questions