How can I translate a Django website entirely?

78 Views Asked by At

I have a Django project. How can I translate the entire website? It's worth noting that additional data can be added to the database later, so I want to translate all the existing data in the database, including information added later.


1

There are 1 best solutions below

4
On

You can enable Internationalization in the settings file of your Django app. And do the data in your models, you can use django modeltranslation library to do that. I hope this gives you the answer.