I am creating a wpf application which contains several self contained plugin dlls which are accessed by my main application. Is there any way to provide localization support such that all the localized strings comes from inside the dll?
Example: Main app accesses Plugin1 or Plugin2 using predefined interface according to the scenario. Plugin1 and Plugin2 performs entirely different functions depending on the case and displays corresponding strings from inside the plugin dll. (These strings has to be localized to current culture)
Note: 1. Once setup, main app should not have any changes for a plugin change (obviously) 2. Plugins should not have resources outside
Thanks