-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Plupload in Your Language
Currently Plupload is translated into 30+ languages. Since in the Core API there is nothing to translate really, except the error messages, translations on big part cover the widgets (UI and Queue).
We bundle language packs with the Plupload packages - they are available under js/i18n/
folder. Alternatively you can always download them from the GitHub.
To activate the language pack all you need to do is include the corresponding file after the Plupload scripts, e.g.:
...
<script type="text/javascript" src="../../js/plupload.full.min.js"></script>
<script type="text/javascript" src="../../js/jquery.ui.plupload/jquery.ui.plupload.js"></script>
<!-- activate Georgian translation -->
<script type="text/javascript" src="../../js/i18n/ka.js"></script>
...
In case you are not satisfied with the quality of translation, or if there's no translation for your language at all, you can contribute yourself. We've moved our language management facilities to Transifex. After you have a Transifex account you can join a translation team for your language or request a new one. All contributions will be automatically included in the next official release.
Notice:
We used to accept pull requests with translations in the past, but we've deprecated this approach now. Try Transifex instead.