├── .gitignore ├── CONTRIBUTING.md ├── MANIFEST.in ├── README.md ├── djangotransifex ├── __init__.py ├── api.py ├── app_settings.py ├── exceptions.py ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ └── tx.py ├── models.py ├── version.txt └── views.py ├── requirements-dev.txt ├── requirements.txt ├── setup.cfg ├── setup.py ├── test_project ├── __init__.py ├── manage.py ├── settings.py └── urls.py ├── tests ├── __init__.py ├── conftest.py └── test_api.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakul/django-transifex/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakul/django-transifex/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakul/django-transifex/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakul/django-transifex/HEAD/README.md -------------------------------------------------------------------------------- /djangotransifex/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakul/django-transifex/HEAD/djangotransifex/__init__.py -------------------------------------------------------------------------------- /djangotransifex/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakul/django-transifex/HEAD/djangotransifex/api.py -------------------------------------------------------------------------------- /djangotransifex/app_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakul/django-transifex/HEAD/djangotransifex/app_settings.py -------------------------------------------------------------------------------- /djangotransifex/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakul/django-transifex/HEAD/djangotransifex/exceptions.py -------------------------------------------------------------------------------- /djangotransifex/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangotransifex/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangotransifex/management/commands/tx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakul/django-transifex/HEAD/djangotransifex/management/commands/tx.py -------------------------------------------------------------------------------- /djangotransifex/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakul/django-transifex/HEAD/djangotransifex/models.py -------------------------------------------------------------------------------- /djangotransifex/version.txt: -------------------------------------------------------------------------------- 1 | 0.1.10 2 | -------------------------------------------------------------------------------- /djangotransifex/views.py: -------------------------------------------------------------------------------- 1 | # Create your views here. 2 | -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakul/django-transifex/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | django 2 | python-transifex>=0.1.7 -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakul/django-transifex/HEAD/setup.py -------------------------------------------------------------------------------- /test_project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_project/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakul/django-transifex/HEAD/test_project/manage.py -------------------------------------------------------------------------------- /test_project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakul/django-transifex/HEAD/test_project/settings.py -------------------------------------------------------------------------------- /test_project/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakul/django-transifex/HEAD/test_project/urls.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakul/django-transifex/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakul/django-transifex/HEAD/tests/test_api.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakul/django-transifex/HEAD/tox.ini --------------------------------------------------------------------------------