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

The strings in the Upload widget that are localizable are handled using the localization option. You can localize or customize these strings using code like the following.

Custom String Script
Copy Code
<script type="text/javascript">
  $(document).ready(function () {
      $("#upload").wijupload({
          localization: {
              uploadAll: "Télécharger Tous",
              cancelAll: "Annuler Tout",
              upload: "Télécharger",
              cancel: "Annuler",
              uploadFiles: "Télécharger des Fichiers"
           }
      });
  });
</script>
See Also

Widgets