mirror of https://github.com/zulip/zulip.git
13 lines
306 B
Bash
Executable File
13 lines
306 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# See https://zulip.readthedocs.io/en/latest/translating/internationalization.html
|
|
# for background on this subsystem.
|
|
|
|
set -e
|
|
set -x
|
|
|
|
./manage.py makemessages --all
|
|
tx pull -a -f --mode=onlytranslated --minimum-perc=5 "$@"
|
|
./manage.py compilemessages
|
|
./tools/i18n/process-mobile-i18n
|