Click here to Skip to main content
15,884,978 members
Articles / Programming Languages / C#
Tip/Trick

When to go for localization

Rate me:
Please Sign up or sign in to vote.
0.00/5 (No votes)
28 Mar 2010CPOL 8.1K   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)


Written By
Software Developer
Australia Australia
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
-- There are no messages in this forum --