allow main culture to change with localisation preferences

This commit is contained in:
Paul Schneider 2018-12-11 11:07:17 +00:00
commit d6515fa50c

View file

@ -112,12 +112,16 @@ namespace Yavsc
{
var supportedCultures = new[]
{
new CultureInfo("en")
new CultureInfo("en"),
new CultureInfo("fr"),
new CultureInfo("pt")
};
var supportedUICultures = new[]
{
new CultureInfo("fr"),
new CultureInfo("en")
new CultureInfo("en"),
new CultureInfo("pt")
};
// You must explicitly state which cultures your application supports.