Transifex Python Toolkit is a collection of tools that allow you to easily localize your Django and Python applications using Transifex. The toolkit features fetching translations over the air (OTA) to your apps.
This project adheres to the Contributor Covenant code of conduct. To contribute to Transifex Python Toolkit, please check out the contribution guidelines.
If you are upgrading from the 1.x.x
version, please read this migration guide, as there are breaking changes in place.
- Install toolkit in your code
$ pip install transifex-python
- Add a provided TOKEN and SECRET in your config, connecting your application with a Transifex project
- Add internationalization commands in your code
<!-- Django app template example -->
{% load transifex %}
<p>{% t "Hello!" %}</p>
<p>{% t "I want to be translated." %}</p>
# Django view sample
from transifex.native.django import t
output = {
"msg1": t("Welcome aboard!"),
"msg2": t("It's great to have you here!"),
}
return JsonResponse(output)
- Push strings to your connected Transifex project
./manage.py transifex push
- When translations are added in your Transifex project are automatically made available
To learn more about using Transifex Python toolkit check:
- Quickstart guide for Django web application
- Quickstart guide for Python application
- For a general overview visit Transifex Native overview
- For some common questions & answers check our Transifex Native community
Licensed under Apache License 2.0, see LICENSE
file.