I have a requirement to create internationalization with regular text files (perhaps simple xml). The file needs to be modifiable from a text editor and that changes in it do not require recompilation of the code.
Is there a suggested solution (.net framework’s or 3rd party) for such a thing?
Thank you
UPDATE:
I am talking about localization, sorry. What I require is to have a text file, which can be translated and used by application without the need for VisualStudio or recompilation. You change a text file, and it all works.
–MB
I don’t know of any existing solutions, however you can rather easily create your own ResourceProvider.
Here are some good links to get you going:
http://weblogs.asp.net/thangchung/archive/2010/06/25/extending-resource-provider-for-soring-resources-in-the-database.aspx
This one is great!