So here is the scenario. I have an internationalized application using .NET MVC in English and French using the global resources.
For certain clients using the application, the terminology used to reference an object such as "User" is different. One client might see that User as a "Subscriber" but another client's mental model of the User is a "Lead".
So in my English global resource file, the name and value is simply "User" and now I've failed to satisfy both clients. :)
Is there a way to handle different terminology in the same language using resource files?
I tried to create a new resource file, MyApp.[non-language identifier].resx, but .NET didn't seem to like that at all.
Thanks!