[Django]-Django 1.10 Translation

4👍

The error occurred because of the htmlcov folder which was generated while running the coverage script.

Removed that folder and executed the following commands to generate the ‘.po’ files.

./manage.py makemessages -l fi

and the following command to generate the ‘.mo’ files.

./manage.py compilemessages

👤glider

Leave a comment