vote up 1 vote down star

Can somebody explain to me what is the use of globalization in C#?

Is it used for conversion purposes? I mean I want to convert any English word into a selected language.

So will this globalization or cultureinfo help me?

flag

33% accept rate

4 Answers

vote up 3 vote down

Globalization is a way of allowing the user to customize the application that he or she may be using to fit the standards where they may be. Cusomtization allows for the:

  1. Money Formatting
  2. Time
  3. Date
  4. Text orientation

To be culturally appropriate. The region that is currently set is handled by the OS and passed to your application. Globalization/Internationalization(I18n) also typically motivates the developer to separate the displayed text of the program from the implementation its self.

link|flag
thank you.. I got some idea – Nagu Nov 3 at 7:12
1  
As Adam mentioned, the globalization features do not translate your application text, it just helps with the formatting and selecting which translation available is the best to show. – steven Nov 3 at 7:17
Actually I'm trying to do this by using gooble translater api. But it is working fine with string. I want to convert entire page. How can I do this? Any idea? – Nagu Nov 3 at 7:24
vote up 5 vote down

Globalization is a means of formatting text for specific cultures. E.g. a string representation of the number 1000 may be 1,000.00 for the UK or 1'000,00 for France. It is quite an in depth subject but that is the essential aim. It is NOT a translation service, but it does allow you to determine the culture under which your application is running and therefore allow you to choose the language you want to display. You will have to provide text translation yourself, however, usually be means of resource files.

link|flag
thank you.. I got some idea – Nagu Nov 3 at 7:12
vote up 1 vote down

From MSDN:

System.Globalization - contains classes that define culture-related information, including the language, the country/region, the calendars in use, the format patterns for dates, currency and numbers, and the sort order for strings.

This assembly helps in making your application culture-aware, and is used heavily internally within the .NET framework. For example, when converting from Date to String, Globalization is used to determine what format to use, such as "11/28/2009" or "28-11-2009". Generally this determination is done automatically within the framework without you ever using the assembly directly. However, if you need to, you can use Globalization directly to look up culture-specific information for your own use.

link|flag
vote up 0 vote down

To clear some confusion:

Globalisation: Allowing your program to use locale specific resources loaded from an external resource DLL at runtime. This means putting all your strings in resource files rather than hard coding them into the source code.

Localisation: Adapting your program for a specific locale. This could be translating Strings and making dialog boxes read right-to-left for languages such as Arabic.

Here is a link to creating Satellite DLLs. Its says C++ but it the same principle applies to C#.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.