I am implementing the localization for a Blazor WebAssembly app. and everything works fine with one .resx file. However, I am wondering if it is possible to use multiple .resx for same language, I tried to look in the documentation but it is somehow not mentioned anywhere, and all tutotial or documentation end-up calling the unique resource with:
@inject IStringLocalizer<LocalizationRes> _L
So, is it possible to use multiple .resx for the same language?if yes, how the IStringLocalizer should be used in that case ?
Thank you