views:

69

answers:

2

I already have one application running (in English language).

I want to translate those application text to some native langauges with my program.
It it possible to change it?

+1  A: 

Absolutely. The part of the library you'll be interested in is System.Globalization. Beyond that, it will depend on the platform (ASP.NET, Windows Forms, etc.).

Andy West
+2  A: 

You may want to take a look at I18N (internationalization) resources related to VB.net. Typically when a program is designed to be used amongst many different cultures/languages the interfaces are designed to use resources rather than hard coding the text. This allows for the interface language to be seperated from the logic. It also makes the job easier for the translators. They get handed the resource files, and they return the resource file with all the correct translations.

monksy