Resource file format - ResourceName.culture.resx
Create a resource file in the App_GlobalResources folder called Main.resx. This is for the default culture (i.e. invariant)
Then create a resource file Main.en-US.resx
All resources for culture in the USA will live here, etc.
Main.resx Main.en.resx Main.en-US-resx Main.en-AU.resx Main.fr.resx Main.fr-FR.resx
and etc.
To access this from a web page, use the syntax
<%$ Resources:Main, Email %>
Do not worry about the culture, the system will work. It will exactly match the first (en-US), and then work with these cultures parent (en), the parent parent (Invariant).
Change the name "Main" to suit your needs.
source share