mirror of
https://github.com/oqtane/oqtane.framework.git
synced 2025-05-30 00:33:05 +00:00
20 lines
500 B
C#
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; }
|
|
}
|
|
}
|