Eduardo Sanfiorenzo

Results 2 issues of Eduardo Sanfiorenzo

adds singleton SharedResourceLocalizer services to access IStringLocalizer from Razor identity pages for correct localization. resolves: aspnetcorehero/Boilerplate#34

Identity pages are not being correctly localized. Since they are Razor pages they are not [compatible](https://docs.microsoft.com/en-us/aspnet/core/blazor/globalization-localization?view=aspnetcore-5.0&pivots=webassembly#localization-1) with the MVC `@localizer` which uses [IViewService](https://docs.microsoft.com/en-us/dotnet/api/microsoft.aspnetcore.mvc.localization.iviewlocalizer?view=aspnetcore-5.0) which inherits from [IHtmlLocalizer](https://docs.microsoft.com/en-us/dotnet/api/microsoft.aspnetcore.mvc.localization.ihtmllocalizer?view=aspnetcore-5.0) This prevents the...