How to add own resource localization for a .dll (e.g. for AvalonDock)
0
Acoording to an answer it is possible to add your own resource localisation for a library (AvalonDock): AvalonDock supports localisation using the standard resource mechanism. The binary download already contains English, Italian and German translations. You can add your own. How do I do that? What I have tried: Add NuGet the Extended.Wpf.Toolkit package create a of copy one of the AvalonDock official examples add new a Resources.resx add one of the keys in the documentation, Document_Close : "It works!" However, nothing gets translated. I have tried bunch of other variations: adding a .resx for unknown language, setting culture to the language and changing namespace of the .resx to Xceed.Wpf.AvalonDock.Properties .
c# wpf loca...