docs | |
---|---|
tests | |
package |
A small library which adds "translate" and "blocktranslate" template tags and modifies makemessages to work with them.
- Free software: BSD 3-Clause License
pip install django-translation-aliases
Add django_translation_aliases to your INSTALLED_APPS:
INSTALLED_APPS = ( ... 'django_translation_aliases', )
This will add the translate and blocktranslate template tags to the i18n library so that you can use them in your templates:
{% load i18n %} {% translate "This message" %} {% blocktranslate trimmer %} Another message {% endblocktranslate %}
https://django-translation-aliases.readthedocs.io/
To run the all tests run:
tox
Note, to combine the coverage data from all the tox environments run:
Windows | set PYTEST_ADDOPTS=--cov-append tox |
---|---|
Other | PYTEST_ADDOPTS=--cov-append tox |