mirror of
https://github.com/akuker/RASCSI.git
synced 2024-11-22 16:33:17 +00:00
19 lines
441 B
Bash
Executable File
19 lines
441 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
cd "$(dirname "$0")"
|
|
# Check for the existence of a python venv in the current dir
|
|
if ! test -e venv; then
|
|
echo "No python venv detected. Please run start.sh first."
|
|
exit 1
|
|
fi
|
|
|
|
source venv/bin/activate
|
|
|
|
pybabel extract -F babel.cfg -o messages.pot src
|
|
pybabel update -i messages.pot -d src/translations
|
|
|
|
echo
|
|
echo "Translation stats:"
|
|
find . -name \*.po -print -execdir msgfmt --statistics messages.po \;
|