django-modeltrans icon indicating copy to clipboard operation
django-modeltrans copied to clipboard

Translate Django model fields in a PostgreSQL JSONField

Results 20 django-modeltrans issues
Sort by recently updated
recently updated
newest added

LANGUAGE_OPTIONS = ["all", "browser", "fallback"] "all" option is added so the user can add all system language in one go.

Idea is to add `fallback_readonly` option to Meta options and kwargs so that any form fields of the fallback language are set to read only. This is useful if translators...

First of all I appreciate to make this lovely library. Here is my question. In default settings, I can see all translated fields. ![2018-03-26 15 42 22](https://user-images.githubusercontent.com/541274/37890717-91f15294-310c-11e8-9ada-8ddb3c43aa36.png) But when I...

Traceback looks like this: ``` Traceback (most recent call last): File "/Users/jieter/.virtualenvs/meetnetten/lib/python3.6/site-packages/django/core/paginator.py", line 85, in count return self.object_list.count() File "/Users/jieter/.virtualenvs/meetnetten/lib/python3.6/site-packages/django/db/models/query.py", line 387, in count print(repr(self)) File "/Users/jieter/.virtualenvs/meetnetten/lib/python3.6/site-packages/django/db/models/query.py", line 248, in...

Lookups are tranformed when the queryset definition is executed, which might be unexpected behavior with querysets. An problematic use case might be defining the choices for a [`ModelChoiceField`](https://docs.djangoproject.com/en/2.0/ref/forms/fields/#django.forms.ModelChoiceField). ```python from...

@pjburon This clearly is a different issue, so created a new one. originally reported in #34 This Queryset ```python Blog.objects.filter( Q(category__slug_i18n=slug) | Q(category__parent__slug_i18n=slug), is_active=active ) ``` Results for `language =...

requires stable and unique names for annotations.

Refs #118, #119 After implementing #119, I took a stab at `FileField` support. I knew that `FileField` only stores a string in the database, but I didn't fully understand how...

I have a use case where I would like to store localized fields that are not `CharField` or `TextField` fields. I'd like to start with adding JSONField, which seems to...

Bumps [actions/setup-python](https://github.com/actions/setup-python) from 5.1.1 to 5.2.0. Release notes Sourced from actions/setup-python's releases. v5.2.0 What's Changed Bug fixes: Add .zip extension to Windows package downloads for Expand-Archive Compatibility by @​priyagupta108 in...

dependencies
github_actions