Skip to content

iske/transifex-python

 
 

Repository files navigation

Build Status codecov

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.

  1. Install toolkit in your code $ pip install transifex-python
  2. Add a provided TOKEN and SECRET in your config, connecting your application with a Transifex project
  3. 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)
  1. Push strings to your connected Transifex project ./manage.py transifex push
  2. When translations are added in your Transifex project are automatically made available

To learn more about using Transifex Python toolkit check:

License

Licensed under Apache License 2.0, see LICENSE file.

About

Transifex Python Toolkit

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 99.8%
  • Makefile 0.2%