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> |