I've been using the Grid of the Telerik MVC Extensions with great success, it's a great component. But now I need it's text to be in spanish.
Looking for in the source code, I've only found that I can enable Globalization like this
Html.ScriptRegistrar().Globalization(true);
But all this line does is inserting some jQuery that tells the grid how to display the numbers and dates (dd/MM/yyyy or MM/dd/yyyy for example). I'm thinking to make my own version of the Filtering script to insert spanish strings, and then, I'll exchange the english version for the spanish version dynamically.
Have you found another solution for this?