I've injected a RichTextField onto the BlogPost model in settings.py and am trying to get model translation to work with it. I created an app that is otherwise completely empty, and put a translation.py in there, following the format of http://mezzanine.readthedocs.io/en/latest/multi-lingual-sites.html. I've put this app right below mezzanine.blog in INSTALLED_APPS, and I tried it at the very bottom of the list, too, just in case.
When I try to run sync_translation_fields or anything else via manage.py, I get a series of errors: ERRORS: blog.BlogPost._meta_title_en: (models.E006) The field '_meta_title_en' clashes with the field '_meta_title_en' from model 'blog.blogpost'. blog.BlogPost._meta_title_zh: (models.E006) The field '_meta_title_zh' clashes with the field '_meta_title_zh' from model 'blog.blogpost'. blog.BlogPost.content_en: (models.E006) The field 'content_en' clashes with the field 'content_en' from model 'blog.blogpost'. blog.BlogPost.content_zh: (models.E006) The field 'content_zh' clashes with the field 'content_zh' from model 'blog.blogpost'. blog.BlogPost.description_en: (models.E006) The field 'description_en' clashes with the field 'description_en' from model 'blog.blogpost'. blog.BlogPost.description_zh: (models.E006) The field 'description_zh' clashes with the field 'description_zh' from model 'blog.blogpost'. blog.BlogPost.title_en: (models.E006) The field 'title_en' clashes with the field 'title_en' from model 'blog.blogpost'. blog.BlogPost.title_zh: (models.E006) The field 'title_zh' clashes with the field 'title_zh' from model 'blog.blogpost'. These errors don't occur if I comment out my own translation.py, so something is up there. Custom apps' translate.py seem to work fine, too. Please see the following GIST for https://gist.github.com/OneTwoPublic/abfd95e92cf87224e06fc8bec60af821 Thanks again -- You received this message because you are subscribed to the Google Groups "Mezzanine Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
