I have a c# .net MVC site, and I have correctly setup localization with resource files to work.
I have the following files which change the content when the culture changes: HelpText.en.resx HelpText.fr.resx
I now have a scenario where a second customer wants to customize some of the text elements. What I thought I could achieve was something like the following:
HelpText.Cust1.en.resx HelpText.Cust1.fr.resx
When the text was not found in the Cust1 resx, it would default back to the original one.
This doesn't seem possible utilizing resx.
How else can I achieve this?