New to Telerik UI for ASP.NET MVC? 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 server-side API.

    @(Html.Kendo().MediaPlayer()
        .Name("mediaplayer1")
        .Messages(messages =>
        {
            messages.Play("Wiedergabe");
            messages.Pause("Pausieren");
        })
        .Media(m => m
            .Title("Mein Video")
            .Source("Video/video1.mp4")
        )
        .HtmlAttributes(new { style = "height:360px; width:640px" })
    )

See Also

In this article