New to Kendo UI for jQuery? Download free 30-day trial

Localization

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: "Video/video1.mp4"
        }
    });
</script>

See Also

In this article