I am using the filtering from column menu for a grid and I have to support some other languages. I wanted to use the default translation that is provided with the kendo instalation, however I saw that not everything is translated.
What I have noticed was that the filtermenu in messages has also a title that is basically the same text as the info
messages: {
info:
'Show items with value that:'
,
title:
'Show items with value that:'
,
}
but on the translation files the title is not translated
if
(kendo.ui.FilterMenu) {
kendo.ui.FilterMenu.prototype.options.messages =
$.extend(
true
, kendo.ui.FilterMenu.prototype.options.messages,{
"info"
:
"Mostrar filas con valor que:"
,
....
}
I know how to implement the translation but I would like to register this as a request to be solved.