We've decided that with Chrome's page translation support, it's too much work to keep up with the translation of the entire site for the benefit received. So, I need to remove/uninstall django-modeltranslation app and am wondering what's the recommended path forward? When the app was added, tables in the database were modified to add a new field for each language. However, those are not listed in the model so I can't just modify the model...
Asked
Active
Viewed 391 times
2 Answers
0
If you are using pip you can uninstall it :
pip uninstall django-modeltranslation
Remove modeltranslation from installed apps in your settings.py and to remove database tables for this app you can run this command:
./manage.py reset modeltranslation
That's all !

Mounir
- 11,306
- 2
- 27
- 34
0
Current state of django and modeltranslations:
- Remove "modeltranslation" from
INSTALLED_APPS
python manage.py makemigrations
python manage.py migrate
Don't forget to replace translated fields calls in code!

Piotr Pęczek
- 410
- 7
- 14