allow main culture to change with localisation preferences

vnext
Paul Schneider 6 years ago
parent 8f7861bb36
commit aacee449ea
1 changed files with 6 additions and 2 deletions

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

Loading…