In C#, I can build resx files for various languages/cultures using the standing ISO naming convention (i.e., Strings.resx, Strings.en-GB.resx, Strings.fr.resx). When I compile, I get a corresponding folders for each of the culture-specific resx files. My dilemma is with the naming convention used.
MS uses "the format languagecode2-country/regioncode2, where languagecode2 is a lowercase two-letter code derived from ISO 639-1 and country/regioncode2 is an uppercase two-letter code derived from ISO 3166."
Because of some interactions with other components in my company that I have little control over, I need use an underscore (_), like this: languagecode2_country/regioncode2. For example, instead of "en-GB", I need "en_GB". The goal is to get my app to look for the resource file in a folder named en_GB whenever the culture on system is set to "en-GB".
Is this possible? I haven't found an ISO specification for the separator, so if that's out there, I may be able to use that as ammo to fix the real problem and follow the standard among the other components I am using.
Note, when I access a localized resource within the app, I do so via an auto-generated property in thedesigner.cs file, so I can't just replace "en-GB" with "en_GB".
