Categories:
.NET (961)
C (387)
C++ (185)
CSS (84)
DBA (8)
General (31)
HTML (48)
Java (641)
JavaScript (220)
JSP (109)
JUnit (31)
MySQL (297)
Networking (10)
Oracle (562)
Perl (48)
Perl (9)
PHP (259)
PL/SQL (140)
RSS (51)
Software QA (28)
SQL Server (5)
Struts (20)
Unix (2)
Windows (3)
XHTML (199)
XML (59)
Other Resources:
What’s the difference between localization and globalization
What’s the difference between localization and globalization?
✍: Guest
Below are the definition’s which is taken from the Microsoft glossary.
Globalization: It is the process of developing a program core whose features and code
design are not solely based on a single language or locale.
Localization: The process of adapting a program for a specific local market, which includes
translating the user interface, resizing dialog boxes, customizing features (if necessary),
and testing results to ensure that the program still works.
You can visualize globalization as more of architecture decisions. While localization is
adapting your content to local market. Localization phase occurs before globalization
phase.
2007-11-01, 5013👍, 0💬
Popular Posts:
Write down the equivalent pointer expression for referring the same element a[i][j][k][l]? a[i] == *...
When does the compiler not implicitly generate the address of the first element of an array? Wheneve...
In which event are the controls fully loaded ? Page_load event guarantees that all controls are full...
Can a variable be both const and volatile? Yes. The const modifier means that this code cannot chang...
When should the register modifier be used? Does it really help? The register modifier hints to the c...