views:

133

answers:

1

How can i create satellite assemblies in .net 3.5? I have a nativetext.resx file in english and want to create assemblies for french and italian in different folders like

it --> nativetext.resources.dll fr --> nativetext.resources.dll

is there any too like AutoLocalize.exe(am not sure)

+1  A: 

If you are editing a windows forms form, select the choosen form in the designer, set the Localizable property to True, and set the Language property to your choice. Then rewrite the text attributes for the controls. They will be placed in the appropriate resource file and dll-s for each language will be generated.

The forms' language will reflect the OS' MUI setting, or you can change it programatically.

See: MSDN Sample, MSDN Walkthrough, and more (mostly under the "localization" link). This is a complex topic, but simple things can be achieved simply.

Tamás Szelei
it looks helpfull, Please explore more..
Jaswant Agarwal
More "exploration" done :)
Tamás Szelei