I'm using DNN 4.3.6 and I support multiple language on my site. I'm having problems supporting en-GB as a locale on my English/Spanish site. I have looked at a couple of similar posts on this site but I can't seem find a solution.
When I select English (UK) from the language dropdown, then the date formats etc convert to English but the framework text remains in Spanish. I expected that with my fallback language set to en-US then these resource files would be used with the en-GB settings.
Can I achieve this or am I really going to have to create a .en-GB.resx set?
My locales.xml file reads as follows:-
<language name="English (United States)" key="en-US" fallback="" />
<language name="English (United Kingdom)" key="en-GB" fallback="en-US" />
<language name="Español (España)" key="es-ES" fallback="en-US" />
I also have en-US disabled in Host-Languages (so only UK and ES appear in the dropdown).
My web-config file has the following:-
<globalization
culture="en-GB"
uiCulture="en"
requestEncoding="UTF-8"
responseEncoding="UTF-8"
fileEncoding="UTF-8"/>
I have the default resx files and a set of .es-ES.resx files.
I normally use the language selector from Apollo, but I have tested it with the dnn selector and the results are the same.
Many thanks for any input