4 Answers, 1 is accepted
0
Hello Pascal,
You should be able to change the culture of the scheduler (along with the rest of the Kendo UI widgets on the page) using the kendo.culture method. See this topic in the online documentation for more info.
Best regards,
Sebastian
Telerik
You should be able to change the culture of the scheduler (along with the rest of the Kendo UI widgets on the page) using the kendo.culture method. See this topic in the online documentation for more info.
Best regards,
Sebastian
Telerik
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
0
Pascal
Top achievements
Rank 1
answered on 12 Nov 2013, 10:16 AM
Sorry, it was my mistake, i put the
<script type="text/javascript">
kendo.culture("fr-FR");
</script>
in
$(document).ready(function()
Now, it works, days are in french, but Taoday button, Month, Day are still in english
<script type="text/javascript">
kendo.culture("fr-FR");
</script>
in
$(document).ready(function()
Now, it works, days are in french, but Taoday button, Month, Day are still in english
0
HI again Pascal,
If you want to localize the scheduler messages, you can do that via the messages API option.
Best regards,
Sebastian
Telerik
If you want to localize the scheduler messages, you can do that via the messages API option.
Best regards,
Sebastian
Telerik
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
0
Accepted
Pascal
Top achievements
Rank 1
answered on 12 Nov 2013, 02:31 PM
Thx,
i'm using PHP Wrapper
$scheduler->messages( array('today' => 'Aujourd\'hui'));
It works, but i didn't found in the APi how to change message for addWindowTitle, editWindowTitle ....
I found the solution:
$scheduler- ->messages( array('today' => 'Aujourd\'hui',
'editor' => array('editorTitle' => 'Titre'))
)
Thx
i'm using PHP Wrapper
$scheduler->messages( array('today' => 'Aujourd\'hui'));
It works, but i didn't found in the APi how to change message for addWindowTitle, editWindowTitle ....
I found the solution:
$scheduler- ->messages( array('today' => 'Aujourd\'hui',
'editor' => array('editorTitle' => 'Titre'))
)
Thx