1 | | When using manage.py makemessages -d djangojs, it no longer works (for me) as makemessages now completely ignores media and static dirs, what's place where javscript is usually stored. This has been introduced as fix for issue #23010. |
| 1 | makemessages ignores any in-app paths that begin with static because of this line: |
| 2 | https://github.com/django/django/blob/master/django/core/management/commands/makemessages.py#L233 |
| 3 | |
| 4 | it should ignore something like "<path>/*" but not "<path>*" |
| 5 | |
| 6 | reproducible: |
| 7 | https://github.com/blodone/django_static_broken |