mirror of
https://github.com/wagtail/wagtail.git
synced 2024-11-22 11:07:57 +01:00
23af4e4251
It wasn't an effective rule for weeding out inactive translations - a 20% coverage of wagtailadmin is better than 100% coverage of wagtailsites. (minimum-perc=1 is required because otherwise it'll pull in languages with no coverage at all, which includes a lot of junk)
21 lines
796 B
Bash
Executable File
21 lines
796 B
Bash
Executable File
# Delete old translation files (except "en" which is the source translation)
|
|
find ../wagtail -iname *.po ! -iwholename */en/* -delete
|
|
|
|
# Fetch new translations from transifex
|
|
tx pull -a --minimum-perc=1
|
|
|
|
# Clean the PO files using msgattrib
|
|
# This removes the following:
|
|
# - Blank, fuzzy and obsolete translations
|
|
# - The line numbers above each translation
|
|
# These things are only needed by translators (which they won't be seen by) and make the translation updates difficult to check
|
|
find ../wagtail -iname *.po ! -iwholename */en/* -exec msgattrib --translated --no-fuzzy --no-obsolete --no-location -o {} {} \;
|
|
|
|
# Run compilemessages on each app
|
|
for d in $(find ../wagtail -iname *.po | sed 's|\(.*\)/locale.*|\1|' | sort -u);
|
|
do
|
|
pushd $d
|
|
django-admin compilemessages
|
|
popd
|
|
done
|