Is there a way to localize field in the popup editor of a grid.
I've try to use the legacy way but it does not work.
I've tried using appropriate resource file
...@inject IViewLocalizer Localizer@using Microsoft.AspNetCore.Mvc.Localization... <div> <label class="control-label">@Localizer["idsResidents"]</label> </div>Or
...@inject IViewLocalizer Localizer@using Microsoft.AspNetCore.Mvc.Localization... <div> <label class="control-label">@Localizer["idsResidents"].Value</label> </div>