Our system is multi-language, but localization for grids was only working to English.Then, we added Kendo.Mvc.resources.dll to our projects, but then, grids buttons/messages/etc are only in English and this other language.
How can make it work to more languages?
we have this configured:
Thanks
How can make it work to more languages?
we have this configured:
<% var culture = System.Threading.Thread.CurrentThread.CurrentCulture.ToString(); %>
<
script
src
=
"<%= this.ResolveUrl("
~/Scripts/kendo/2014.2.903/cultures/kendo.culture." + culture + ".min.js") %>" type="text/javascript"></
script
>
<
script
type
=
"text/javascript"
>
kendo.culture("<%= culture %>");
</
script
>
Thanks