If this is merged, the documentation will need to be updated to include new information about how to specify the JS Catalog file. I'd recommend this as the suggested pattern:
The documentation should also mention that the user can specify their own custom path to the catalog with the setting JAVASCRIPT_CATALOG_PATH, e.g:
JAVASCRIPT_CATALOG_PATH = 'mypath/jsi18n'
This is my first ever pull request, let me know if I've done anything wrong!
Just found a problem with this solution:
Works fine running locally, but when running on my server the path changes from /jsi18n/recurrence to /static/jsi18n/recurrence
Related to issue #147
Removed the find_recurrence_i18n_js_catalog function and replaced it with a setting in the two places it's used:
If this is merged, the documentation will need to be updated to include new information about how to specify the JS Catalog file. I'd recommend this as the suggested pattern:
The documentation should also mention that the user can specify their own custom path to the catalog with the setting JAVASCRIPT_CATALOG_PATH, e.g:
JAVASCRIPT_CATALOG_PATH = 'mypath/jsi18n'
This is my first ever pull request, let me know if I've done anything wrong!