Click here to Skip to main content
Licence CPOL
First Posted 3 Feb 2010
Views 27,523
Downloads 1,126
Bookmarked 65 times

.NET Resource (.resx file) Translator

A .NET resource (.resx file) translator. English to any other language.

1

2
1 vote, 4.8%
3
7 votes, 33.3%
4
13 votes, 61.9%
5
4.66/5 - 21 votes
1 removed
μ 4.57, σa 1.06 [?]

Main Window

Introduction

Apart from the default language of the application (generally English), your software should support different languages since people prefer using software with a native language interface. For the worldwide distribution of an application, you need to translate the user interface to as many languages as possible. When you do that, you can say the application is Globalized.

The first step to globalize an application is setting the Localizable property of the Windows Form to true. When you create a Forms based Windows application, there is a resource (.resx) file associated with each form. This resource file is specific to a language which contains all locale specific details of that form.

In this article, we will discuss how to generate a different language resource file from the default English resource file.

Background

I have posted an article on Globalization/Internationalization too. Before reading this article, please read: Globalization, Internationalization (I18N), and Localization using C# and .NET 2.0.

Using the Code

The text translation is based on the translation provided by the Google Translator website (http://translate.google.com).

Although the Google Translator API classes are available here, you can refer to the source file attached to this article. These APIs will work perfectly as long as the interface or the format of the Google Translator website will not change.

Here, we have the Translator class which basically uses the Google Translator API to translate the text. Create an instance of the TranslateClient class and call the Translate method with the appropriate parameters.

/// <summary>
/// Translates the given text in the given language.
/// </summary>
/// <param name="targetLanguage">Target language.</param>
/// <param name="value">Text to be translated.</param>
/// <returns>Translated value of the given text.</returns>
public static string Translate(Language targetLanguage, string text)
{
    TranslateClient client = new TranslateClient("www.google.co.in");
    // Get the translated value.
    string translatedValue = 
      client.Translate(text, Language.English, targetLanguage);
    Trace.WriteLine(string.Format("Given Text is {0} " + 
         "and Target Language is {1}. Result - {2}.",
         text, targetLanguage.Name, translatedValue));
    return translatedValue;
}

Once the given text is translated in the target language, the only work left is creating a .resx file and adding the text into that file. The code given below performs this task:

/// <summary>
/// Translates the given resx in the specified language. new language resx
/// file will be created in the same folder and with the same name suffixed with
/// the locale name.
/// </summary>
/// <param name="targetLanguage">Language in which text to be translated.</param>
/// <param name="resxFilePath">Source resx file path</param>
public static void Write(Language targetLanguage, 
       string resxFilePath, bool onlyTextStrings)
{
    if (string.IsNullOrEmpty(resxFilePath))
    {
        throw new ArgumentNullException(resxFilePath, 
          "Resx file path cannot be null or empty");
    }
    if (targetLanguage == null)
    {
        throw new ArgumentNullException(targetLanguage, 
                  "Target Language cannot be null");
    }
    using (ResXResourceReader resourceReader = new ResXResourceReader(resxFilePath))
    {
        //string locale = targetLanguage.ToString().Substring(0, 2).ToLower();
        string locale = targetLanguage.Value.ToLower();
        #region Create locale specific directory.
        //string outputFilePath = Path.Combine(Path.GetDirectoryName(ResxFilePath),
            locale);
        //if (!Directory.Exists(outputFilePath))
        //{
        // Directory.CreateDirectory(outputFilePath);
        //} 
        #endregion
        // Create the required file name with locale.
        string outputFilePath = Path.GetDirectoryName(resxFilePath);
        string outputFileName = Path.GetFileNameWithoutExtension(resxFilePath);
        outputFileName += "." + locale + ".resx";
        outputFilePath = Path.Combine(outputFilePath, outputFileName);
        // Create a resx writer.
        using (ResXResourceWriter resourceWriter = new ResXResourceWriter(outputFilePath))
        {
            foreach (DictionaryEntry entry in resourceReader)
            {
                string key = entry.Key as string;
                // Check if the Key is UI Text element.
                if (!String.IsNullOrEmpty(key))
                {
                    if (onlyTextStrings)
                    {
                        if (!key.EndsWith(".Text"))
                        {
                            continue;
                        }
                    }
                    string value = entry.Value as string;
                    // check for null or empty
                    if (!String.IsNullOrEmpty(value))
                    {
                        // Get the translated value.
                        string translatedValue = Translator.Translate(targetLanguage,
                            value);
                        // add the key value pair.
                        resourceWriter.AddResource(key, translatedValue);
                    }
                }
            }
            // Generate resx file.
            resourceWriter.Generate();
        }
    }
}

Since the text translation happens at the Google website, it takes time to fetch the text and get the translated text. I have used the BackgroundWorker class to do this job. The BackgroundWorker initiates the process by Binding the channel and then sending and receiving the text with the specified languages.

The BackgroundWorker class allows you to run an operation on a separate, dedicated thread. Time-consuming operations like downloads and database transactions can cause your user interface (UI) to seem as though it has stopped responding while they are running. When you want a responsive UI and you are faced with long delays associated with such operations, the BackgroundWorker class provides a convenient solution.

private void myStartButton_Click(object sender, EventArgs e)
{
    *                 
    *            
    myBackgroundWorker.RunWorkerAsync(languages);        
    *
    *
}
void myBackgroundWorker_DoWork(object sender, DoWorkEventArgs e)
{
    BackgroundWorker worker = sender as BackgroundWorker;
    Language[] languages = e.Argument as Language[];
    PerformTranslation(languages, worker, e, myOnlyTextCheckBox.Checked);
}

Once you hit the Start Translation button on the UI, the BackgroundWorker starts the text translation. In case you want to abort the background process, call the CancelAsync() method and then check for the CancellationPending flag on the BackgoundWorker instance, and set DoWorkEventArgs - e.Cancel to true.

/// <summary>
/// Perform translation for each selected language for all selected resx files.
/// </summary>
/// <param name="languages">selected languages.</param>
/// <param name="worker">BackgroundWorker instance.</param>
/// <param name="e">DoWorkEventArgs.</param>
/// <param name="onlyTextStrings">true; to convert only '.Text' keys valus.</param>
private void PerformTranslation(Language[] languages, 
        BackgroundWorker worker, DoWorkEventArgs e, bool onlyTextStrings)
{
    int totalProgress = 0;
    foreach (string file in mySelectedFiles)
    {
        foreach (Language targetLanguage in languages)
        {
            if (worker.CancellationPending)
            {
                e.Cancel = true;
            }
            else
            {
                ResxWriter.Write(targetLanguage, file, onlyTextStrings);
                totalProgress++;
                worker.ReportProgress(totalProgress);
            }
        }
    }
}

There could be two types of .resx files. When you set the Localizable property to true, the entire information of the form (specific to a locale) is moved to the .resx file, including location, size, etc. This is an auto generated resource file which contains the entries other than the UI text strings. Another option could be a user defined resource file, which contains only strings.

In the Resx Translator application UI, you can select the 'Convert only .Text key' checkbox in order to convert only strings of the auto generated .resx files. Translating entries other than strings can cause some serious errors. In the case of the user defined resource file, you can leave this option.

There are two components in this application - the Translator and the Config UIs. In the Translator UI, you can browse and select the .resx files. In the Config UI, you can select the languages in which you want to translate your English .resx files.

Once the translation starts, the progress bar and the status bar will indicate the whole process. Hope this tool will help you to generate resource files in different languages. ;)

Points of Interest

Keep an eye on the Google Translator API website if this application stops translating the text. Download the latest GoogleTranslatorAPI.dll and then run this application.

History

  • 08/02/2010 - Added details of APIs.
  • 04/02/2010 - Uploaded source code.
  • 04/02/2010 - Initial post.

License

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

About the Author

Kumar, Ravikant INDIA Bangalore

Software Developer (Senior)
Philips
India India

Member

Follow on Twitter Follow on Twitter
Have been working with computers since the early 00's. Since then I've been building, fixing, configuring, installing, coding and designing with them. At present I mainly code windows applications in C#, WCF, WPF and SQL. I'm very interested in Design Patterns and try and use these generic principles in all new projects to create truly n-tier architectures. Also I like to code for making the User Interface very attractive...

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralMy vote of 5 Pinmembermanoj kumar choubey1:04 2 Feb '12  
Questiongoogle translate is not free anymore, Pinmemberwei1000006:20 14 Jan '12  
AnswerRe: google translate is not free anymore, PinmemberHexadigm Systems6:55 27 Jan '12  
GeneralMy vote of 4 PinmemberRajeshkumar Chavada20:35 27 Nov '11  
QuestionWhen One File Translate then error generate PinmemberRajeshkumar Chavada20:34 27 Nov '11  
AnswerRe: When One File Translate then error generate PinmemberKumar, Ravikant INDIA Bangalore22:30 5 Dec '11  
Question"индусcкий код" Pinmembersoad17152:58 15 Nov '11  
QuestionGoogle translate API v2 Pinmemberpnduffy12:06 11 Oct '11  
AnswerRe: Google translate API v2 PinmemberKumar, Ravikant INDIA Bangalore22:43 16 Nov '11  
GeneralGetting error in VS2008 PinmemberMizan Rahman2:48 23 May '11  
GeneralRe: Getting error in VS2008 Pinmemberinvaders@earthling.net14:21 10 Jan '12  
GeneralRe: Getting error in VS2008 PinmemberKumar, Ravikant INDIA Bangalore22:58 12 Jan '12  
GeneralTranslate Language using resource file to my web site. PinmemberMember 47502132:16 3 May '11  
GeneralRe: Translate Language using resource file to my web site. PinmemberKumar, Ravikant India Bangalore1:03 9 May '11  
Generalthanks for sharing - have 5 PinmemberPranay Rana19:54 30 Jan '11  
GeneralMy vote of 4 Pinmemberdfigure6:23 29 Dec '10  
GeneralDealing with legacy code pages Pinmemberdfigure6:20 29 Dec '10  
GeneralMessage Removed PinmemberChesnokov Yuriy22:53 26 Dec '10  
GeneralRe: My vote of 2 PinmemberKumar, Ravikant India Bangalore23:48 26 Dec '10  
QuestionRe: My vote of 2 PinmemberChesnokov Yuriy0:51 27 Dec '10  
AnswerRe: My vote of 2 PinmemberKumar, Ravikant India Bangalore19:29 27 Dec '10  
QuestionPoor exception handling and code layout, how do you handle ResXResourceReader exceptions? PinmemberChesnokov Yuriy22:51 26 Dec '10  
GeneralA really helpful tool PinmemberJax00000099999991:05 20 Aug '10  
GeneralGoogle API Access Notice Pinmemberpeterfoo4:54 10 Aug '10  
GeneralRe: Google API Access Notice PinmemberKumar, Ravikant India Bangalore7:33 10 Aug '10  

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

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

Permalink | Advertise | Privacy | Mobile
Web03 | 2.5.120206.1 | Last Updated 9 Feb 2010
Article Copyright 2010 by Kumar, Ravikant INDIA Bangalore
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid