Add localization settings
This commit is contained in:
parent
14746f47da
commit
0796ce54a9
@ -0,0 +1,19 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Oqtane.Infrastructure.Localization
|
||||
{
|
||||
public static class LocalizationSettings
|
||||
{
|
||||
private const string EnglishCulture = "en-US";
|
||||
|
||||
static LocalizationSettings()
|
||||
{
|
||||
DefaultCulture = EnglishCulture;
|
||||
SupportedCultures = new List<string> { DefaultCulture };
|
||||
}
|
||||
|
||||
public static string DefaultCulture { get; set; }
|
||||
|
||||
public static IList<string> SupportedCultures { get; set; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user