New to Kendo UI for jQuery? Start a free 30-day trial
Localization
Updated on Jun 9, 2025
You can localize the tooltip texts from the MediaPlayer interface through the messages configuration options.
For a complete list of localizable messages, refer to the MediaPlayer API documentation.
Similar to all Kendo UI widgets, the MediaPlayer allows you to add script files and implement global localization for your application.
<div id="mediaplayer1" style="width:640px; height: 360px;"></div>
<script>
$("#mediaplayer1").kendoMediaPlayer({
autoPlay: true,
messages: {
play: "Wiedergabe",
pause: "Pausieren"
},
media: {
title: "Herbert Grönemeyer - Der Weg",
source: "https://www.youtube.com/watch?v=UbkbVBNYZMc"
}
});
</script>