This repository has been archived on 2025-05-14. You can view files and clone it, but cannot push or open issues or pull requests.
2020-09-29 17:30:56 +03:00

20 lines
500 B
C#

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; }
}
}