-
Notifications
You must be signed in to change notification settings - Fork 88
Open
Labels
Milestone

Description
Hi again!
I'm having an issue with Cultures and WinForms.
I have created a WinForms application with "Default" and "es-MX" culture.
Launching with "es-MX" culture by setting it inside Main.
NetSparkle doesn't shows up with the desired culture and as far as I can see in the resources it has been translated to "es-MX".
public static void Main(string[] args)
{
var culture = CultureInfo.GetCultureInfo("es-MX");
CultureInfo.DefaultThreadCurrentCulture = culture;
CultureInfo.DefaultThreadCurrentUICulture = culture;
...
Help would be appreciated.
Thanks.