Reputation: 907
I've got a winform application which uses it's own mechanism for localization. It doesn't use Satellite assemblies and I am not sure why. Are there any reasons that Satellite assemblies not suitable for winforms application localization?
Upvotes: 0
Views: 1163
Reputation: 18290
Using Satellite Resource Assemblies is a common approach for developing world-ready applications. To learn more about localization, refer to Localizing Applications in MSDN.
check DevExpress documentation about this and various windows applications are localized using Satellite Assembly
Have you checked these on documentation:
Localizing DevExpress .NET Windows Forms Controls
Localizing Windows Forms
Improving Performance of Localized Forms
There is a book named .NET Internationalization: The Developer's Guide to Building Global Windows and Web Applications
in this context..
Upvotes: 1
Reputation: 18662
In most cases Localization via Satellite Assemblies is the best possible option. This is a standard practice and it should be followed unless you have good reasons not to.
The good reasons for creating your own solution:
For the real reason why the application uses non-standard approach, you probably need to ask the original developer (or somebody else who might know the answer). From my experience it would be one of the reasons listed above, quite often the third one.
Upvotes: 1
Reputation: 17485
I did following steps.
This way i used in many application.
Also you have run application in specific culture.
Upvotes: 1