Multilingual Support in C#


The computer is now in use in almost all parts of the world so much work is in progress to give support to languages other than English. Many major languages of the world like Arabic, Hindi and Chinese are not written in Roman Script, so special features are provided for dealing with these languages. This article will tell how to implement multilingual application using C#. Our Example Script will be Arabic. But it can be generalized to any major language of the world. 



To display different languages and script, one has to install support for the script. Windows 2000 has support for displaying many scripts. Script is the writing style of language .For example, English and many western languages are written in Roman Script. Arabic, Farsi, Urdu are written in Arabic Script. Hindi, Bengali, Tamil are written in Indic Script. Every script has its own features. Arabic Script is written from left to right and characters changes their shape according to the context.

To install support for Arabic or any other Script. Open Control Panel --> Regional Options --> Language Setting for the System and check your desired Script(Arabic in our case). After checking Arabic click on OK and Arabic Script support is installed on our computer and you can have input locale in Arabic, Farsi and Urdu.

For input, keyboard for Arabic, Farsi and Other languages can be installed from Control Panel ---> Keyboard --> Input Locale --> Add.

So it is the configuration for displaying multilingual text. Now we will start C# IDE and explore its features. Throughout the article we will only concentrate on the code written for multilingual features. The code for form creation, adding controls to form and event handling will be generated by the IDE and will not be discussed.

FIRST EXAMPLE OF MESSAGE BOX

Create a Windows Application. Place a button in the centre of form. Set the name and text properties of the button to btnMessage and "Show Message" respectively. For displaying Message Box, add following code to the Click event of btnMessage.

protected
void btnMessage_Click (object sender, System.EventArgs e)
{
MessageBox.Show("English Text Example","English Title");
}



On Pressing F5, Form will be displayed and on clicking Show Message. Message Box will be displayed.

Now for displaying Arabic text, type message and title using Arabic characters. The Message is " Urdu Text Example" and "Urdu Title" in Urdu Language. 





The message box displayed by clicking Show Message Button.

The Message box displays Urdu Text(in Arabic Script). but it has some problems. Arabic Script is written from Right to Left(The rightmost character is first character of string, and leftmost is the last character of string). So the text must be right aligned. In the above example both Title and Message are left aligned. Also the Title must be at right and the Close Button should be at left in a RightToLeft Scheme. This can be done by using style attributes as third parameter of MessageBox.Show method. Style Attributes are used to change the visual style and options of Message Box. For Example, for displaying a Cancel button with OK button, MessageBox.OKCancel is used as

MessageBox.Show("Message","Title",MessageBox.OKCancel);

For RightToLeft MessageBox, RTLReading field is used. And for right aligning the text, RightAlign field is used. So in our new example these two are ORed and passed to Show method of MessageBox(you can OR multipe fields to give their style to MessageBox). 





In above examples, we use Windows 2000 support to insert Arabic (Urdu) characters to the code. But if the development environment does not have support for writing multilingual characters, then this work can be done by code. The character datatype of C# stores characters as Unicode character. So we can declare variables of character and string type and assign characters and words of different languages to these variables.


Similar Articles