Click here to Skip to main content
15,886,362 members
Articles / Programming Languages / C#

Localize Application using Google Translator

Rate me:
Please Sign up or sign in to vote.
3.57/5 (8 votes)
25 Jan 2010CPOL1 min read 38.3K   948   20   9
Commonly we used to store translated phrases, text in resource files .resx or in database, it can be tedious job to store huge resources, In my example, I am going to use Google Translator - it is a little tricky but can be helpful.
GoogleTranslator

Introduction

Since everyone wants their application to be presented according to the user's culture, location, etc, in this example I used the Google Translator, calling GoogleTranslator by HttpRequest and reading the Translated string from the Response stream.

Background

This code will click many ideas in your mind as to how you can use resources already available in the market using HttpRequest and Response.

Using the Code

In the below code, I translate from English Language to the required language. You can change it to the desired culture. Just replace 'en' with the desired culture name.

C#
private string Translate(string text, string l)
{
string translated = null;
HttpWebRequest hwr = (HttpWebRequest)HttpWebRequest.Create
	("http://translate.google.com/translate_s?hl=en&clss=&q=" + 
	text.Replace(" ", "+") + "&tq=&sl=en&tl=" + l);
HttpWebResponse res = (HttpWebResponse)hwr.GetResponse();
StreamReader sr = new StreamReader(res.GetResponseStream());
string html = sr.ReadToEnd();
int rawlength1 = html.IndexOf("<span id=otq><b>");
string rawStr1 = html.Substring(rawlength1);
int rawlength2 = rawStr1.IndexOf("</b>");
string rawstr2 = rawStr1.Substring(0, rawlength2);
translated = rawstr2.Replace("<span id=otq><b>", "");
tbStringToTranslate.Text = text;
return translated;
}        

Points of Interest

I have written this code to localize my application texts, Labels...... I too used to store translated stings in my DataBase. This makes me use this code as I don't need to feed translated data in database whenever a required text to translate is passed to it. First look in DB, if not found it gets it from Google Translator and feeds in DB. I don't even require to maintain resource files for different cultures because I get the Current culture from System.Globalization.CultureInfo.CurrentCulture and pass it to Translate();

History

  • 25th January, 2010: Initial post

License

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


Written By
Software Developer (Senior) Wave Infotech Solution PVT L.T.D
India India
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralUse the Google API instead Pin
Grant Frisken1-Feb-10 16:39
Grant Frisken1-Feb-10 16:39 
GeneralRe: Use the Google API instead Pin
T21027-Oct-10 0:22
T21027-Oct-10 0:22 
GeneralRe: Use the Google API instead Pin
Grant Frisken7-Oct-10 0:36
Grant Frisken7-Oct-10 0:36 
GeneralRe: Use the Google API instead Pin
bernard joseph14-Apr-11 20:55
bernard joseph14-Apr-11 20:55 
GeneralMy vote of 1 Pin
Steve Hansen26-Jan-10 22:35
Steve Hansen26-Jan-10 22:35 
GeneralAhum... Real-Time Multilingual WPF Demo Pin
2sky26-Jan-10 22:33
2sky26-Jan-10 22:33 
GeneralToo light Pin
Bizounours25-Jan-10 23:00
Bizounours25-Jan-10 23:00 
GeneralDo not use it in production Pin
Remi BOURGAREL25-Jan-10 21:34
Remi BOURGAREL25-Jan-10 21:34 
GeneralGreat! But... one little problem Pin
Anthony Daly25-Jan-10 8:04
Anthony Daly25-Jan-10 8:04 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.