So here is the script. I have an internationalized application using .NET MVC in English and French using global resources.
For certain customers using the application, the terminology used to refer to the object, such as "User", is different. One client can see the User as a “Subscriber”, but another client mental model of the user is the “Leader”.
So, in my English global resource file, the name and value is simply “User”, and now I could not satisfy both clients. :)
Is there a way to handle different terms in one language using resource files?
I tried to create a new MyApp resource file. [non-linguistic identifier] .resx, but .NET did not seem to like it.
Thank!
source
share