I have a project where localization is working fine, except in _Layout.cshtml
What should I name the resource file when using _Layout.cshtml? (Views.Shared._Layout.en.resx don't work)
_Layout.cshtml:
@using Microsoft.AspNetCore.Http.Extensions @using Microsoft.AspNetCore.Localization @using Microsoft.AspNetCore.Mvc.Localization @inject Microsoft.ApplicationInsights.AspNetCore.JavaScriptSnippet JavaScriptSnippet @inject IViewLocalizer LayoutLocalizer <!DOCTYPE html><html><head></head><body><div style="margin:38px;margin-top:56px;" class="hidden-sm-down"><h2>@LayoutLocalizer["WelcomeHeader"] <b class="text_border_darkblue">MyTitle</b></h2><div style="text-align:center;margin-top:42px;"> @LayoutLocalizer["WelcomeSub"]</div></div></body></html>