Reputation: 219
I am globalizing my application to accommodate English and Norwegian language. So I have created two files named xx.resx file and xx.nb-NO.resx. After the compilation, I need to give this resource file DLL to someone who knows Norwaegian to edit. How can I achieve this ?
Upvotes: 0
Views: 135
Reputation:
They don't need the dll, just send them the .resx file which is basically just XML they can edit. You'll then need to update and recompile your app/project when they send it back and update your dll or redeploy.
Upvotes: 1