I\'m trying to translate a Django app. I created some strings with {% trans %} in my templates. However, when I execute the following command in my app folder, I re
{% trans %}
Actually you can configure where the locale folder is. In your settings.py add:
LOCALE_PATHS = ( PROJECT_ROOT + '/website/locale', )
Then create a folder for each of the languages you want to translate:
mkdir -p website/locale/de