searxng/searx_extra/update/update_translations.sh
Alexandre Flament b8cd326464 Add searx_extra package
Split the utils directory into:
* searx_extra contains update scripts, standalone_searx.py
* utils contains the files to build and setup searx.
2021-03-04 11:59:14 +01:00

16 lines
451 B
Bash
Executable file

#!/bin/sh
# script to easily update translation language files
# add new language:
# pybabel init -i messages.pot -d searx/translations -l en
SEARX_DIR='searx'
pybabel extract -F babel.cfg -o messages.pot "$SEARX_DIR"
for f in `ls "$SEARX_DIR"'/translations/'`; do
pybabel update -N -i messages.pot -d "$SEARX_DIR"'/translations/' -l "$f"
done
echo '[!] update done, edit .po files if required and run pybabel compile -d searx/translations/'