mirror of
https://github.com/oqtane/oqtane.framework.git
synced 2025-05-18 02:24:22 +00:00
19 lines
469 B
C#
19 lines
469 B
C#
using System.Collections.Generic;
|
|
using Oqtane.Shared;
|
|
|
|
namespace Oqtane.Infrastructure.Localization
|
|
{
|
|
public static class LocalizationSettings
|
|
{
|
|
static LocalizationSettings()
|
|
{
|
|
DefaultCulture = Constants.DefaultCulture;
|
|
SupportedCultures = new List<string> { DefaultCulture };
|
|
}
|
|
|
|
public static string DefaultCulture { get; set; }
|
|
|
|
public static List<string> SupportedCultures { get; }
|
|
}
|
|
}
|