├── .flake8 ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── README.md └── workflows │ └── main.yml ├── .gitignore ├── LICENSE ├── MANIFEST.in ├── beautifier.py ├── config.py ├── create.py ├── docs ├── Makefile ├── _static │ ├── admin.png │ ├── custom.css │ └── translation.svg ├── conf.py ├── contribution.rst ├── donation.rst ├── glossary.rst ├── guide │ ├── admin.rst │ ├── context.rst │ ├── index.rst │ ├── languages.rst │ ├── models.rst │ └── querysets.rst ├── howto │ ├── custom_admins.rst │ ├── index.rst │ └── rest_framework.rst ├── index.rst ├── installation.rst ├── make.bat ├── reference │ ├── admin.rst │ ├── context.rst │ ├── forms.rst │ ├── index.rst │ ├── languages.rst │ ├── management │ │ ├── commands │ │ │ ├── index.rst │ │ │ └── synctranslations.rst │ │ └── index.rst │ ├── models.rst │ ├── query.rst │ ├── querysets.rst │ └── utils.rst └── releases │ ├── 1.0.0.rst │ ├── 1.0.1.rst │ ├── 1.0.2.rst │ ├── 1.1.0.rst │ ├── 1.1.1.rst │ ├── 1.1.2.rst │ └── index.rst ├── requirements_dev.txt ├── sample ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── serializers.py ├── urls.py ├── utils.py └── views.py ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── apps.py ├── test_admin.py ├── test_case.py ├── test_context.py ├── test_forms.py ├── test_languages.py ├── test_management │ ├── __init__.py │ └── test_commands │ │ ├── __init__.py │ │ └── test_synctranslations.py ├── test_models.py ├── test_query.py ├── test_querysets.py ├── test_utils.py └── test_views.py └── translations ├── __init__.py ├── admin.py ├── apps.py ├── context.py ├── forms.py ├── languages.py ├── management ├── __init__.py └── commands │ ├── __init__.py │ └── synctranslations.py ├── migrations ├── 0001_initial.py ├── 0002_auto_20180920_1245.py └── __init__.py ├── models.py ├── query.py ├── querysets.py └── utils.py /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/.github/README.md -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /beautifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/beautifier.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/config.py -------------------------------------------------------------------------------- /create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/create.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/docs/_static/admin.png -------------------------------------------------------------------------------- /docs/_static/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/docs/_static/custom.css -------------------------------------------------------------------------------- /docs/_static/translation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/docs/_static/translation.svg -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contribution.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/docs/contribution.rst -------------------------------------------------------------------------------- /docs/donation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/docs/donation.rst -------------------------------------------------------------------------------- /docs/glossary.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/docs/glossary.rst -------------------------------------------------------------------------------- /docs/guide/admin.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/docs/guide/admin.rst -------------------------------------------------------------------------------- /docs/guide/context.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/docs/guide/context.rst -------------------------------------------------------------------------------- /docs/guide/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/docs/guide/index.rst -------------------------------------------------------------------------------- /docs/guide/languages.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/docs/guide/languages.rst -------------------------------------------------------------------------------- /docs/guide/models.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/docs/guide/models.rst -------------------------------------------------------------------------------- /docs/guide/querysets.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/docs/guide/querysets.rst -------------------------------------------------------------------------------- /docs/howto/custom_admins.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/docs/howto/custom_admins.rst -------------------------------------------------------------------------------- /docs/howto/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/docs/howto/index.rst -------------------------------------------------------------------------------- /docs/howto/rest_framework.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/docs/howto/rest_framework.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/reference/admin.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/docs/reference/admin.rst -------------------------------------------------------------------------------- /docs/reference/context.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/docs/reference/context.rst -------------------------------------------------------------------------------- /docs/reference/forms.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/docs/reference/forms.rst -------------------------------------------------------------------------------- /docs/reference/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/docs/reference/index.rst -------------------------------------------------------------------------------- /docs/reference/languages.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/docs/reference/languages.rst -------------------------------------------------------------------------------- /docs/reference/management/commands/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/docs/reference/management/commands/index.rst -------------------------------------------------------------------------------- /docs/reference/management/commands/synctranslations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/docs/reference/management/commands/synctranslations.rst -------------------------------------------------------------------------------- /docs/reference/management/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/docs/reference/management/index.rst -------------------------------------------------------------------------------- /docs/reference/models.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/docs/reference/models.rst -------------------------------------------------------------------------------- /docs/reference/query.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/docs/reference/query.rst -------------------------------------------------------------------------------- /docs/reference/querysets.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/docs/reference/querysets.rst -------------------------------------------------------------------------------- /docs/reference/utils.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/docs/reference/utils.rst -------------------------------------------------------------------------------- /docs/releases/1.0.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/docs/releases/1.0.0.rst -------------------------------------------------------------------------------- /docs/releases/1.0.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/docs/releases/1.0.1.rst -------------------------------------------------------------------------------- /docs/releases/1.0.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/docs/releases/1.0.2.rst -------------------------------------------------------------------------------- /docs/releases/1.1.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/docs/releases/1.1.0.rst -------------------------------------------------------------------------------- /docs/releases/1.1.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/docs/releases/1.1.1.rst -------------------------------------------------------------------------------- /docs/releases/1.1.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/docs/releases/1.1.2.rst -------------------------------------------------------------------------------- /docs/releases/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/docs/releases/index.rst -------------------------------------------------------------------------------- /requirements_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/requirements_dev.txt -------------------------------------------------------------------------------- /sample/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/sample/admin.py -------------------------------------------------------------------------------- /sample/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/sample/apps.py -------------------------------------------------------------------------------- /sample/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/sample/migrations/0001_initial.py -------------------------------------------------------------------------------- /sample/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/sample/models.py -------------------------------------------------------------------------------- /sample/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/sample/serializers.py -------------------------------------------------------------------------------- /sample/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/sample/urls.py -------------------------------------------------------------------------------- /sample/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/sample/utils.py -------------------------------------------------------------------------------- /sample/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/sample/views.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/tests/apps.py -------------------------------------------------------------------------------- /tests/test_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/tests/test_admin.py -------------------------------------------------------------------------------- /tests/test_case.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/tests/test_case.py -------------------------------------------------------------------------------- /tests/test_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/tests/test_context.py -------------------------------------------------------------------------------- /tests/test_forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/tests/test_forms.py -------------------------------------------------------------------------------- /tests/test_languages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/tests/test_languages.py -------------------------------------------------------------------------------- /tests/test_management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_management/test_commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_management/test_commands/test_synctranslations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/tests/test_management/test_commands/test_synctranslations.py -------------------------------------------------------------------------------- /tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/tests/test_models.py -------------------------------------------------------------------------------- /tests/test_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/tests/test_query.py -------------------------------------------------------------------------------- /tests/test_querysets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/tests/test_querysets.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/tests/test_views.py -------------------------------------------------------------------------------- /translations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /translations/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/translations/admin.py -------------------------------------------------------------------------------- /translations/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/translations/apps.py -------------------------------------------------------------------------------- /translations/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/translations/context.py -------------------------------------------------------------------------------- /translations/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/translations/forms.py -------------------------------------------------------------------------------- /translations/languages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/translations/languages.py -------------------------------------------------------------------------------- /translations/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /translations/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /translations/management/commands/synctranslations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/translations/management/commands/synctranslations.py -------------------------------------------------------------------------------- /translations/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/translations/migrations/0001_initial.py -------------------------------------------------------------------------------- /translations/migrations/0002_auto_20180920_1245.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/translations/migrations/0002_auto_20180920_1245.py -------------------------------------------------------------------------------- /translations/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /translations/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/translations/models.py -------------------------------------------------------------------------------- /translations/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/translations/query.py -------------------------------------------------------------------------------- /translations/querysets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/translations/querysets.py -------------------------------------------------------------------------------- /translations/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbmokhtari/django-translations/HEAD/translations/utils.py --------------------------------------------------------------------------------