Sitefinity - Read localized resource labels in MVC widget
Explains how to get localized labels in Sitefinity MVC widgets.
commit 90f3c9c · authored · 1 min read
In your Razor View,
@Html.Resource("ResourceLabel", "ResourceName")In the above code, replace ResourceLabel with the key and ResourceName with the type, you used to create the label in the Sitefinity CMS. Make sure Telerik.Sitefinity.Frontend.Mvc.Helpers namespace is imported in the view. i.e
@using Telerik.Sitefinity.Frontend.Mvc.Helpers;Sample usage
<li><a href="/">@Html.Resource("Home", "PageResources")</a></li>