Correct django template pattern in babel-django.cfg

The current recommended file pattern "templates/**.html" does not
match Django templates in subdirectories.
This needs to be "**/templates/**.html".

Change-Id: I7414e9d973be98e5ee6d6277cf750ded40bc6c7a
Closes-Bug: #1747453
This commit is contained in:
Akihiro Motoki 2018-02-06 01:05:56 +09:00
parent 93fd0f5b2f
commit 5c990707ea
1 changed files with 2 additions and 2 deletions

View File

@ -2,5 +2,5 @@
django = django_babel.extract:extract_django
[python: **.py]
[django: templates/**.html]
[django: **/templates/**.csv]
[django: **/templates/**.html]
[django: **/templates/**.csv]