0
0
mirror of https://github.com/wagtail/wagtail.git synced 2024-11-24 19:17:48 +01:00
wagtail/scripts/rebuild-translation-sources.sh
Stefan Hammer 46977d6442 Ignore common places for tests from makemessages
This also replaces some of the existing tweaks, which avoided strings
getting parsed by makemessages.
2022-06-12 15:34:39 +10:00

16 lines
441 B
Bash
Executable File

# Delete old translation sources
find ../wagtail -iname *.po -iwholename */en/* -delete
# Run makemessages on each app
for d in $(find ../wagtail -iwholename */locale/* | sed 's|\(.*\)/locale.*|\1|' | sort -u);
do
pushd $d
django-admin makemessages --locale=en --ignore=test/* --ignore=tests/* --ignore=tests.py
popd
done
# Extract translatable strings from JavaScript
pushd ../client
node extract-translatable-strings.js
popd