mirror of
https://github.com/bitwarden/server.git
synced 2025-07-02 00:22:50 -05:00

* Revert "Add git blame entry (#2226)" This reverts commit239286737d
. * Revert "Turn on file scoped namespaces (#2225)" This reverts commit34fb4cca2a
.
32 lines
1.3 KiB
C#
32 lines
1.3 KiB
C#
using System.Reflection;
|
|
using Bit.Core.Resources;
|
|
using Microsoft.AspNetCore.Mvc.Localization;
|
|
using Microsoft.Extensions.Localization;
|
|
|
|
namespace Bit.Core.Services
|
|
{
|
|
public class I18nViewLocalizer : IViewLocalizer
|
|
{
|
|
private readonly IStringLocalizer _stringLocalizer;
|
|
private readonly IHtmlLocalizer _htmlLocalizer;
|
|
|
|
public I18nViewLocalizer(IStringLocalizerFactory stringFactory,
|
|
IHtmlLocalizerFactory htmlFactory)
|
|
{
|
|
var assemblyName = new AssemblyName(typeof(SharedResources).GetTypeInfo().Assembly.FullName);
|
|
_stringLocalizer = stringFactory.Create("SharedResources", assemblyName.Name);
|
|
_htmlLocalizer = htmlFactory.Create("SharedResources", assemblyName.Name);
|
|
}
|
|
|
|
public LocalizedHtmlString this[string name] => _htmlLocalizer[name];
|
|
public LocalizedHtmlString this[string name, params object[] args] => _htmlLocalizer[name, args];
|
|
|
|
public IEnumerable<LocalizedString> GetAllStrings(bool includeParentCultures) =>
|
|
_stringLocalizer.GetAllStrings(includeParentCultures);
|
|
|
|
public LocalizedString GetString(string name) => _stringLocalizer[name];
|
|
public LocalizedString GetString(string name, params object[] arguments) =>
|
|
_stringLocalizer[name, arguments];
|
|
}
|
|
}
|