Transifex Python Toolkit
Project description
Transifex Python Toolkit
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.
Upgrade to v2
If you are upgrading from the 1.x.x
version, please read this migration guide, as there are breaking changes in place.
Quick starting guide
- 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
License
Licensed under Apache License 2.0, see LICENSE
file.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file transifex-python-3.5.0.tar.gz
.
File metadata
- Download URL: transifex-python-3.5.0.tar.gz
- Upload date:
- Size: 129.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.18
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a60d136774f27142f58f25507d45bef5ff9791554daae8ea7c23b625a917f4ef |
|
MD5 | 43c16c1b40bf008f982e915dbcf223cb |
|
BLAKE2b-256 | cd1115792cc64ad1661b7db85a40b28e6b8b03b28a1dbe3f956b622eb55307fc |