11 lines
289 B
C#
11 lines
289 B
C#
|
|
using CalendarServer.Features.Language.Models;
|
||
|
|
|
||
|
|
namespace CalendarServer.Features.Language.Services;
|
||
|
|
|
||
|
|
public interface ILocalizationService
|
||
|
|
{
|
||
|
|
string Get(string key, string? culture = null);
|
||
|
|
string CurrentCulture { get; }
|
||
|
|
IEnumerable<SupportedCulture> GetSupportedCultures();
|
||
|
|
}
|