English 中文(简体)
Translation of labels
原标题:

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?

问题回答

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.

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.).





相关问题
How does gettext handle dynamic content?

In php (or maybe gettext in general), what does gettext do when it sees a variable to dynamic content? I have 2 cases in mind. 1) Let s say I have <?=$user1?> poked John <?=$user2?>. ...

Explain the Need for Mutexes in Locales, Please

Reading the question Why doesn’t C++ STL support atoi(const string& ) like functions?, I encountered a comment which warned that GCC (at least) has a bug that can slow down multi-threaded ...

How does Vistalizer work

How does Vistalizer manage to override the language limit in Windows Vista Home edition. Which api s does it use to allow installation of Multiple language packages.

Localized exceptions (within a Struts2 app)

I am developing a Struts 2 application with support for multiple languages. If one of the domain objects needs to throw an exception, how can it do so in such a way that the error message is no ...

Rails Globalize plugin help

Has anyone gotten the Globalize plugin to work Rails 2.3.2 or later? If so, could you direct me to some useful info?

热门标签