New to Telerik UI for ASP.NET Core? 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" })
    )
    <kendo-mediaplayer name="mediaplayer1"
        style = "height:360px; width:640px">
        <messages play="Wiedergabe" pause="Pausieren"/>
        <media title="Mein Video" source="Video/video1.mp4" />
    </kendo-mediaplayer>

See Also

In this article