I have a website in Django. All the static text in the website ( include the admin ) is available in 3 different languages and the user can switch between them. I also have a model in the website called Product with the fields name and description.
This is how the product would be saved within the database:
- product_name = Headphones
- product_description = Ordinary headphones
Is there any way/ library that can automatically translate the field values for each Product object depending on the language chosen?