Hans,
you might check out MSDN Library's wisdom regarding "Winres.exe".
This tool will enable third party localizors to create localized .resx-files (e.g. "MyForm.nb-NO.resx") based upon a .resx-file
belonging to the neutral culture which you will hand over to them (e.g. "MyForm.resx").
However, mind a distinct drawback of using Winres.exe:
The localized .resx-files created by the third party localizors using Winres.exe can NOT be used directly by (or edited from within)
the IDE.
To embed the .resx-files created by Winres.exe you will have to convert them to .resources-files (via Resgen.exe) and afterwards
link or embed the resulting .resources-files via the Assembly Linker (al.exe) to your satellite assemblies (which is a challenge of
its own).
Thus, mind the alternative:
Handing over the neutral strings in any form to your localizors, taking the resulting localized strings and creating the respective
.resx-files by yourself from within the IDE.
Best regards
Rolf
> Hi!
>
[quoted text clipped - 18 lines]
> ---------------
> (Have fun programming with ... C#)
Hans [DiaGraphIT] - 19 Oct 2005 08:42 GMT
Hi Rolf!
Thank you for quick reply. I will try it out as soon as posible :-)
/Hans
> Hans,
>
[quoted text clipped - 43 lines]
> > ---------------
> > (Have fun programming with ... C#)