Try your search with a different keyword or use * as a wildcard.
@using Nop.Core
@inject Nop.Services.Localization.ILocalizationService localizationService
@inject IStoreContext storeContext
@inject IWebHelper webHelper
@inject IWorkContext workContext
@{
var link = Url.RouteUrl("NewsRSS", new { languageId = (await workContext.GetWorkingLanguageAsync()).Id }, webHelper.GetCurrentRequestProtocol());
var storeName = await localizationService.GetLocalizedAsync(await storeContext.GetCurrentStoreAsync(), x => x.Name);
}