1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/searx_ynh.git synced 2024-09-03 20:16:30 +02:00
searx_ynh/sources/utils/update-translations.sh

16 lines
443 B
Bash
Raw Normal View History

2014-05-10 11:56:19 +02:00
#!/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
2015-01-13 17:13:08 +01:00
pybabel update -N -i messages.pot -d $SEARX_DIR'/translations/' -l $f
2014-05-10 11:56:19 +02:00
done
echo '[!] update done, edit .po files if required and run pybabel compile -d searx/translations/'