New to Telerik UI for ASP.NET Core? Start a free 30-day trial
Localization
Updated over 6 months ago
The Calendar provides options for localizing its user interface by utilizing its Culture property.
To enable the desired culture, add a reference to the script file before the Calendar is initialized and include the desired culture in the settings of the helper.
Razor
    <script src="https://kendo.cdn.telerik.com/2022.2.621/js/cultures/kendo.culture.de-DE.min.js"></script>
    @(Html.Kendo().Calendar()
        .Name("calendar")
        .Culture("de-DE")
    )