I am using Telerik components for ASP.NET MVC 3. Problem is extension method output differ for current culture. For example if i use en-Us for current culture and everything works ok but if i changed it to tr-TR then some of editor components doesn't work as expected. For example t-insertImage class on div is changing to t-ınsertImage.
//i am changing culture like this.
Thread.CurrentThread.CurrentCulture = new CultureInfo("tr-TR");
Then simply using
@Html.Telerik().Editor().Name("editor")
And now some of editor tools doesnt work. Try insert image.
I tried to Globalization and Encode methods parameters to true and false but still same problem.
How can i fix it ?