Connecting Tech Pros Worldwide Help | Site Map

how to convert text, from english to other language using asp.net

Newbie
 
Join Date: Dec 2007
Posts: 2
#1: Dec 6 '07
hi friends
i will type any text in textbox. and chose any language that text will converted in that language example like english to french..

how to convert text like this anyone help me..........
Frinavale's Avatar
Site Moderator
 
Join Date: Oct 2006
Location: The Great White North
Posts: 5,081
#2: Dec 6 '07

re: how to convert text, from english to other language using asp.net


Quote:

Originally Posted by rajendiran

hi friends
i will type any text in textbox. and chose any language that text will converted in that language example like english to french..

how to convert text like this anyone help me..........

You are going to need a very large resource files that contain every word that is valid to be translated....

When the user enters the information, you should search the resource containing your translated words for a result.

You're going to have to take into consideration that most users can't spell either...so you're going to have to implement some sort of spell checker....for each language.

Check out the .NET version of Resource Files and see if they could possibly help you with your project.

Otherwise you're going to have to create your own data source to serve as a resource...maybe use your own customized XML format, or a database....

Aside from the implementation of your project...you're going to end up spending a lot of money on translations...and a lot of time creating the resource files...I suggest starting with 2 or 3 languages and then re-examining whether this project is feasible.

Good luck

-Frinny
Reply