allow main culture to change with localisation preferences

This commit is contained in:
2018-12-11 11:07:17 +00:00
parent 8f7861bb36
commit aacee449ea

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.