I know, by applying kendo.culture() to kendoDatePicker control will set the localization to control and changes the name of month and day accordingly. But how can we change the name of month and day of datepicker control for language which does not have specified culture manually.
For e.g: I have a requirement to display datePicker for Belaurs which have culture (be-BY) and language as Russian. Kendo does not have a language package for the same. Is there any way for me to set the translation manually? .
When I checked the language pack of Kendo, Kendo provides "localization" property for controls like Upload, grid etc, where we can manually set the translated text to get them displayed (as shown below). Is there any option like that for "datePicker" ?
From : https://github.com/telerik/kendo-ui-core/blob/master/src/messages/kendo.messages.de-DE.js ;Line # 359<
br
>
if
(kendo.ui.Upload) {
kendo.ui.Upload.prototype.options.localization =
$.extend(
true
, kendo.ui.Upload.prototype.options.localization,{
"cancel"
:
"Beenden"
,
"dropFilesHere"
:
"Dateien hier fallen lassen zum Hochladen"
,
"remove"
:
"Löschen"
,
"retry"
:
"Wiederholen"
,
"select"
:
"Wählen Sie..."
,
"statusFailed"
:
"nicht erfolgreich"
,
"statusWarning"
:
"Warnung"
,
"statusUploaded"
:
"hochgeladen"
,
"statusUploading"
:
"hochladen"
,
"uploadSelectedFiles"
:
"Dateien hochladen"
,
"headerStatusUploaded"
:
"Hochgeladen"
,
"headerStatusUploading"
:
"Hochladen..."
});
}
There been many article and questions on Kendo control localization, but could not find answer to this particular scenario.