We are developing an Asp.net MVC 3 application. One of the requirements of clients is that localization must be implemented using XML files. The client is going to update them from time to time.
The structure should be as follows:
<lang> <item key="moduleName">Admin</item> <item key="yes">Yes</item> <item key="no">No</item> </lang>
What is the best way to implement this?
Could you point me to any good solution?
source share