Hello,
Not something important, but I wonder why the command
python manage.py makemessages -a
never works for me.
E.g. I have two locales defined: en and fr.
I always need to update them explicitly:
python manage.py makemessages -l en -l fr
as the --all option never works for me.
Does anyone have an idea why?
This is my relevant part of settings.py:
LOCALE_PATHS = (
os.path.join(BASE_DIR, "locale"),
)
Do I need another setting for -all to work?
Thank you.