mirror of
https://github.com/bitwarden/server.git
synced 2025-04-28 00:02:26 -05:00

* Added PreValidate endpoint on Account controller * Fixed IHttpClientFactory implementation * Core localization and org sproc fix * Pass culture, fixed sso middleware bug
13 lines
377 B
C#
13 lines
377 B
C#
using Microsoft.Extensions.Localization;
|
|
|
|
namespace Bit.Core.Services
|
|
{
|
|
public interface II18nService
|
|
{
|
|
LocalizedString GetLocalizedHtmlString(string key);
|
|
LocalizedString GetLocalizedHtmlString(string key, params object[] args);
|
|
string Translate(string key, params object[] args);
|
|
string T(string key, params object[] args);
|
|
}
|
|
}
|