Reputation: 1627
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
Upvotes: 1
Views: 302
Reputation: 9431
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:
This one is great!
Upvotes: 1
Reputation: 248
I am guessing your talking about localization. I have found this very hard to do after the fact. We used Multi Language Software to help us add it to existing projects. It is an ok tool. I have struggled with it sometimes but not to much. If anything it can help you come up with a plan to do it better.
Upvotes: 0