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