django-multilingual-ng
django-multilingual-ng copied to clipboard
THIS PROJECT IS *NOT* SUPPORTED AND SHOULD NOT BE USED UNLESS YOU KNOW EXACTLY WHAT YOU'RE DOING!!!
When I try to save a Queryset containing multilingual data in Django cache, I get PicklingError For example: Request Method: GET Request URL: http://somewhere/ Django Version: 1.2.3 Exception Type: PicklingError...
The translated fields don't appear in the right order in the admin, i.e. the order they were specified in the model. This is because they are retrieved from a dictionary....
Hi, When I put for example "title" field into Translation class, I can't use it in some Model.Meta option like: ordering, unique_together etc.. Error: "ordering" refers to "title", a field...
In `multilingual.translation.fill_translation_cache`, there's a check if the attribute `_trans_code_XX` exists (XX being the language code). But this attribute is actually called `_trans_language_code_XX`, so the test is always false and the...
When accessing the admin-site for flatpages (creation and modification) i get the following error: ``` FieldError at /admin/flatpages/multilingualflatpage/add/ Unknown field(s) (content, title) specified for MultilingualFlatPage ``` Additional Information in the...
Being very novice to buildout I feel that we can safely set Django version for tests to 1.2.3. All tests pass with that version.
It seems that {% csrf_token %} isn't generated when using multilingual pages.
Hello, I spot some bugs with `MultilingualModelQueryset` and `order_by` method. - Create a model with a `DateTimeField` - In the administration class, add `date_hierarchy` for this field - Add some...
Hi, i ran into a problem with Django F objects and multilingual-ng, we have the follow models: Django: 1.3 pre-alpha and 1.2.1 release multilingual-ng: 0.1.45 models.py: # ================================================================== from django.contrib.auth.models...