google-code-export / django-modeltranslation

Automatically exported from code.google.com/p/django-modeltranslation
BSD 3-Clause "New" or "Revised" License
0 stars 0 forks source link

There is no way to remove original translation #49

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Given en, de languages and simplest model:

class ProductCategory(models.Model):
    name = models.CharField(_('Name'), max_length=80, blank=True)

When I give the value of  'Cat1' to name in default language, both name and 
name_en would be 'Cat1' as expected. 

When I try to set value to an empty string in admin, name would stay 'Cat1'. So 
there is no way to erase it from admin.

Original issue reported on code.google.com by bmihe...@gmail.com on 21 Sep 2010 at 12:28

GoogleCodeExporter commented 9 years ago
Duplicate of issue 47.

Original comment by eschler on 22 Sep 2010 at 1:54