kopia lustrzana https://github.com/wagtail/wagtail
11 wiersze
284 B
Bash
11 wiersze
284 B
Bash
|
# 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
|
||
|
popd
|
||
|
done
|