Added a django extract for .csv files

The CSV files from the overview panels were mostly not 
translated when using the pseudo translation tool. We 
inspected the django.pot files and the messages from the CSV 
files were not present.

This patch updates the babel-django config file to ensure that 
*.csv files are included for translation extraction.

We tried to update the babel-django config file with one 
django extraction line which included both the html file 
descriptor and the csv file descriptor separated by a comma 
but testing showed this did not work properly.  We could only 
get this to work with two separate extraction lines.

Change-Id: I04b3a1f49c7c680a4f3dfdc336183749404973ec
Closes-Bug: #1496080
This commit is contained in:
Tony Dunbar 2015-09-15 14:18:47 -05:00
parent 3915c85565
commit 114da86135
1 changed files with 1 additions and 0 deletions

View File

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