Reputation: 7722
I am looking for the best way to implement a winform with different languages, but i don't want to use the resources files of Visual Studio because you always have to recompile.
I have found the following solution to use XML files without compilation: http://www.codeproject.com/KB/miscctrl/xml_localization.aspx
I find it is OK, users can edit the xml and in the future they could provide my application with translations.
Do you know a better way for this?
Upvotes: 2
Views: 1078
Reputation: 11316
Instead of defining your own XML-based internalization system you could go the standard way by using one such as Translation Memory eXchange format.
Upvotes: 1