I would like to force the scheduler to be shown in Danish, I have managed to get the Months, day names shown in Dansih (Javascript), but the other texts (Today, Show buisness hours, and others) on the site is still shown in English.
I have included the Kendo.Mvc.resources.dll for da-DK.
Thanks very much in advance :-)
I have included the Kendo.Mvc.resources.dll for da-DK.
Thanks very much in advance :-)
6 Answers, 1 is accepted
0
Hi Peter,
Currently the Danish resource file contains the original English Scheduler messages as there are no native Danish speakers on our side. For more information about how to modify the build-in resource files you can check the following help article:
Another option is to use the "Messages" option of the Scheduler as demonstrated below:
Also it would be great if you send us back the updated resource file - we will include it in next official release of UI for ASP.NET MVC.
Regards,
Vladimir Iliev
Telerik
Currently the Danish resource file contains the original English Scheduler messages as there are no native Danish speakers on our side. For more information about how to modify the build-in resource files you can check the following help article:
Another option is to use the "Messages" option of the Scheduler as demonstrated below:
@(Html.Kendo().Scheduler<Kendo.Mvc.Examples.Models.Scheduler.TaskViewModel>()
.Name(
"scheduler"
)
.Messages(messages => messages.AllDay(
"hele dagen"
))
Also it would be great if you send us back the updated resource file - we will include it in next official release of UI for ASP.NET MVC.
Regards,
Vladimir Iliev
Telerik
Check out the Telerik Platform - the only platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native mobile apps.
0

Peter
Top achievements
Rank 1
answered on 20 Mar 2015, 01:48 PM
Hi Vladimir
Thanks very much for you answer :-)
Is it possible to translate "day, Work Week, week, ..." with "messages" or something simular?
Thanks very much in advance.
Thanks very much for you answer :-)
Is it possible to translate "day, Work Week, week, ..." with "messages" or something simular?
Thanks very much in advance.
0
Accepted
Hi Peter,
If you need to change the titles of the views you can use the Scheduler Views builders as follows:
Regards,
Vladimir Iliev
Telerik
If you need to change the titles of the views you can use the Scheduler Views builders as follows:
@(Html.Kendo().Scheduler<Kendo.Mvc.Examples.Models.Scheduler.TaskViewModel>()
.Name(
"scheduler"
)
.Views(views =>
{
views.DayView(day => day.Title(
"TEXT SIMMILAR TO DAY"
));
views.WorkWeekView(workWeekView => {
workWeekView.Selected(
true
);
workWeekView.Title(
"TEXT SIMMILAR TO WORK WEEK"
);
Regards,
Vladimir Iliev
Telerik
Check out the Telerik Platform - the only platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native mobile apps.
0

Peter
Top achievements
Rank 1
answered on 24 Mar 2015, 09:36 AM
Hi Vladimir
Thanks very much for your help!
/Peter
Thanks very much for your help!
/Peter
0

Peter
Top achievements
Rank 1
answered on 29 Mar 2015, 01:28 PM
Hi Vladimir
I can't fin the content for the delete confirm box. I have found the title for the delete confirm box, but not the content. Isn't it possible to translate the content?
Thanks very much in advance.
/Peter
I can't fin the content for the delete confirm box. I have found the title for the delete confirm box, but not the content. Isn't it possible to translate the content?
Thanks very much in advance.
/Peter
0
Accepted
Hello Peter,
Please check the example below of how to translate the desired messages:
Regards,
Vladimir Iliev
Telerik
Please check the example below of how to translate the desired messages:
@(Html.Kendo().Scheduler<MeetingViewModel>()
.Name(
"scheduler"
)
.Messages(m => m
.DeleteWindowTitle(
"DELETE WINDOW TITLE"
)
.Destroy(
"CUSTOM DESTROY"
)
.Cancel(
"CUSTOM CANCEL"
))
.Editable(editable => {
editable
.Confirmation(
"CUSTOM CONFITMATION MESSAGE"
);
})
Regards,
Vladimir Iliev
Telerik
See What's Next in App Development. Register for TelerikNEXT.