├── .coveragerc ├── .github └── workflows │ └── tests.yml ├── .gitignore ├── .gitlab-ci.yml ├── .travis.yml ├── AUTHORS ├── LICENSE ├── README.rst ├── demoproject ├── bookshelf │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── forms.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ └── models.py ├── demoproject │ ├── __init__.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py └── manage.py ├── docs ├── .gitignore ├── Makefile ├── admin.rst ├── conf.py ├── forms.rst ├── images │ └── example.png ├── index.rst ├── make.bat ├── quickstart.rst ├── rest_framework.rst └── strings.rst ├── i18nfield ├── __init__.py ├── admin.py ├── fields.py ├── forms.py ├── rest_framework.py ├── strings.py └── utils.py ├── requirements_dev.txt ├── requirements_docs.txt ├── setup.cfg ├── setup.py └── tests ├── __init__.py ├── conftest.py ├── settings.py ├── test_admin.py ├── test_fields.py ├── test_forms.py ├── test_rest_framework.py ├── test_strings.py ├── test_utils.py └── testapp ├── __init__.py ├── apps.py ├── forms.py ├── migrations ├── 0001_initial.py └── __init__.py └── models.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelm/django-i18nfield/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelm/django-i18nfield/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelm/django-i18nfield/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelm/django-i18nfield/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelm/django-i18nfield/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelm/django-i18nfield/HEAD/AUTHORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelm/django-i18nfield/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelm/django-i18nfield/HEAD/README.rst -------------------------------------------------------------------------------- /demoproject/bookshelf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demoproject/bookshelf/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelm/django-i18nfield/HEAD/demoproject/bookshelf/admin.py -------------------------------------------------------------------------------- /demoproject/bookshelf/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelm/django-i18nfield/HEAD/demoproject/bookshelf/apps.py -------------------------------------------------------------------------------- /demoproject/bookshelf/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelm/django-i18nfield/HEAD/demoproject/bookshelf/forms.py -------------------------------------------------------------------------------- /demoproject/bookshelf/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelm/django-i18nfield/HEAD/demoproject/bookshelf/migrations/0001_initial.py -------------------------------------------------------------------------------- /demoproject/bookshelf/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demoproject/bookshelf/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelm/django-i18nfield/HEAD/demoproject/bookshelf/models.py -------------------------------------------------------------------------------- /demoproject/demoproject/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demoproject/demoproject/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelm/django-i18nfield/HEAD/demoproject/demoproject/settings.py -------------------------------------------------------------------------------- /demoproject/demoproject/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelm/django-i18nfield/HEAD/demoproject/demoproject/urls.py -------------------------------------------------------------------------------- /demoproject/demoproject/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelm/django-i18nfield/HEAD/demoproject/demoproject/wsgi.py -------------------------------------------------------------------------------- /demoproject/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelm/django-i18nfield/HEAD/demoproject/manage.py -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | _build/ 2 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelm/django-i18nfield/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/admin.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelm/django-i18nfield/HEAD/docs/admin.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelm/django-i18nfield/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/forms.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelm/django-i18nfield/HEAD/docs/forms.rst -------------------------------------------------------------------------------- /docs/images/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelm/django-i18nfield/HEAD/docs/images/example.png -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelm/django-i18nfield/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelm/django-i18nfield/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/quickstart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelm/django-i18nfield/HEAD/docs/quickstart.rst -------------------------------------------------------------------------------- /docs/rest_framework.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelm/django-i18nfield/HEAD/docs/rest_framework.rst -------------------------------------------------------------------------------- /docs/strings.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelm/django-i18nfield/HEAD/docs/strings.rst -------------------------------------------------------------------------------- /i18nfield/__init__.py: -------------------------------------------------------------------------------- 1 | version = '1.11.0' 2 | -------------------------------------------------------------------------------- /i18nfield/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelm/django-i18nfield/HEAD/i18nfield/admin.py -------------------------------------------------------------------------------- /i18nfield/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelm/django-i18nfield/HEAD/i18nfield/fields.py -------------------------------------------------------------------------------- /i18nfield/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelm/django-i18nfield/HEAD/i18nfield/forms.py -------------------------------------------------------------------------------- /i18nfield/rest_framework.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelm/django-i18nfield/HEAD/i18nfield/rest_framework.py -------------------------------------------------------------------------------- /i18nfield/strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelm/django-i18nfield/HEAD/i18nfield/strings.py -------------------------------------------------------------------------------- /i18nfield/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelm/django-i18nfield/HEAD/i18nfield/utils.py -------------------------------------------------------------------------------- /requirements_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelm/django-i18nfield/HEAD/requirements_dev.txt -------------------------------------------------------------------------------- /requirements_docs.txt: -------------------------------------------------------------------------------- 1 | -r requirements_dev.txt 2 | django==5.2.* 3 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelm/django-i18nfield/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelm/django-i18nfield/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelm/django-i18nfield/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelm/django-i18nfield/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tests/test_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelm/django-i18nfield/HEAD/tests/test_admin.py -------------------------------------------------------------------------------- /tests/test_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelm/django-i18nfield/HEAD/tests/test_fields.py -------------------------------------------------------------------------------- /tests/test_forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelm/django-i18nfield/HEAD/tests/test_forms.py -------------------------------------------------------------------------------- /tests/test_rest_framework.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelm/django-i18nfield/HEAD/tests/test_rest_framework.py -------------------------------------------------------------------------------- /tests/test_strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelm/django-i18nfield/HEAD/tests/test_strings.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelm/django-i18nfield/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tests/testapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testapp/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelm/django-i18nfield/HEAD/tests/testapp/apps.py -------------------------------------------------------------------------------- /tests/testapp/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelm/django-i18nfield/HEAD/tests/testapp/forms.py -------------------------------------------------------------------------------- /tests/testapp/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelm/django-i18nfield/HEAD/tests/testapp/migrations/0001_initial.py -------------------------------------------------------------------------------- /tests/testapp/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelm/django-i18nfield/HEAD/tests/testapp/models.py --------------------------------------------------------------------------------