We have a requirement to white label our application, where certain strings (notably the application name) will be different depending on the brand.
Many years ago, I'd had experience using resource files for localization, so it seemed like a good fit. So I followed this Microsoft tutorial: https://www.tutorialspoint.com/wpf/wpf_localization.htm
It works well when the resource files are named with cultures (Resources.en.resx and Resources.ru-RU.rex).
However, I'm not using resource files for localization, but rather for white labelling, so I instead want to name my files Resources.Brand1.resx and Resources.Brand2.resx).
I need to be able to specify when the application starts up which resource file to use, and I can't change the culture to achieve this. Ideally, the brand name will be read from a configuration file or database.
I've seen suggestions of creating a custom culture on the client's machine, but that's not an option for me because this is a product, not a bespoke application, and hence we won't have access to the clients' machines and we can't rely on users having admin rights when it's being installed or executed.
I've also seen applications that allow users to change UI languages on the fly, independent of their machine's culture, and I assume these applications use resource files "behind the scenes".
So this can't be that hard, but obviously I don't know what to search for, or I'm missing something really obvious. ;)
Is there a way to dynamically change the resource file that's being used by an application at runtime, that doesn't depend on culture?
Overriding the culture is not that hard.
What we do:
I would try to inherit from
CultureInfo
and use my own one. And then find out if you can override a property that defines the file name for the resource file. Maybe "Name" or something like that.[EDIT] But be aware that you will lose "real" localization for ever.