Wijmo UI for the Web
Custom Calendar Strings
Wijmo User Guide > Concepts > Localization and Globalization > Custom Calendar Strings

The strings in the Calendar widget that are localizable are handled using the following options.

You can localize or customize these strings using code like the following.

Custom String Script
Copy Code
$(document).ready(function () {
    $("#calendar1").wijcalendar(
         {
             prevTooltip: "Précédent",
             nextTooltip: "Suivant",
             quickPrevTooltip: "Rapide Précédent",
             quickNextTooltip: "Rapide Suivant",
             prevPreviewTooltip: "Avant-première Précédent",
             nextPreviewTooltip: "Avant-première Suivant"
          });
});
See Also

Widgets