Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles / Languages / C#

When to go for localization

0.00/5 (No votes)
28 Mar 2010CPOL 1  
The best time to apply localization on an application is really at the end of its development. The obvious reason is that it allows you to get decoupling of localization from business modules. Localization should be done on UI side, not in business layer or data layer.If you are...
The best time to apply localization on an application is really at the end of its development.


  • The obvious reason is that it allows you to get decoupling of localization from business modules.

  • Localization should be done on UI side, not in business layer or data layer.

  • If you are facing scenarios where you have to localize something in Business layer, Data layer then that part should be in UI. (It means BL,DL are trying to do work of UI, avoid it.)

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)