S
sippyuconn
Hi
I have a multi-language APP
en-US, es-ES, it-IT
I usually change Languages and Locales by using the CultureInfo
to switch Languages
System.Globalization.CultureInfo myCI = new
System.Globalization.CultureInfo("es-ES");
My issue is - what if the user wants to View App in english and use the
Regional Options on a PC in say Spain ???
If I change the CultureInfo to en-US then they can view APP in English (
English satelite assemblies) but date and numbers will be in US format
If I change the CultureInfo to es-ES then date and numbers will be in Spain
format which is correct but the APP language will be Spainish ( Spainish
satelite assemblies)
What I want is to change the Language of the App thru a setting
en-US,es-ES,it-IT but the regional settings be pulled from what is set in
Control Panel -> Regional Options
Thanks
I have a multi-language APP
en-US, es-ES, it-IT
I usually change Languages and Locales by using the CultureInfo
to switch Languages
System.Globalization.CultureInfo myCI = new
System.Globalization.CultureInfo("es-ES");
My issue is - what if the user wants to View App in english and use the
Regional Options on a PC in say Spain ???
If I change the CultureInfo to en-US then they can view APP in English (
English satelite assemblies) but date and numbers will be in US format
If I change the CultureInfo to es-ES then date and numbers will be in Spain
format which is correct but the APP language will be Spainish ( Spainish
satelite assemblies)
What I want is to change the Language of the App thru a setting
en-US,es-ES,it-IT but the regional settings be pulled from what is set in
Control Panel -> Regional Options
Thanks