This example shows the localize Telerik Editor for ASP.NET MVC.
You can use any of the following ways to localize the editor:
UICulture property of the Page directive:
<%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage" UICulture="de-DE" %>
CurrentUICulture property of the CurrentThread in the action method:
public ActionResult Index()
{
System.Threading.Thread.CurrentThread.CurrentUICulture = new System.Globalization.CultureInfo("de-DE");
}
Localizable method of the editor:
<%= Html.Telerik().Editor()
.Name("Editor")
.Localizable("de-DE")
%>