VB.NET - difference between Globalization and Localization

Explain the difference between Globalization and Localization.

Globalization:

- It refers to the application of culture-specific format to existing data.

- It allows your web application to be useful for different people in different parts of the world who speaks different languages.

- It is the process of internationalizing application code which supports localized user interfaces and regional data for all users.

- It involves making design and programming decisions function for multiple cultures which is not based on culture-specific assumptions.

Localization:

- It refers to providing new culture-specific resources and retrieving the appropriate resources based on the culture setting.

- It is the process of translating an application's resources into localized versions for each culture that the application will support.

- It provides information about a specific culture.
VB.NET - What is strong name?
VB.NET - What is strong name? - Create Key file with the strong name utility (sn.exe).....
VB.NET - Retrieve resources at run time
VB.NET - Retrieve resources at run time - Create an instance of the ResourceManager class using the assembly that contains the desired resource.....
VB.NET - Retrieve information from the configuration file at run time
VB.NET - Retrieve information from the configuration file at run time - To retrieve information from the configuration file......
Post your comment