summaryrefslogtreecommitdiff
path: root/utils/update-translations.sh
blob: 2f9ab218fc5427c7581514cc791cc46b38a8860a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/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
    # TODO - need to fix category translations
    sed -i 's/#~ //' $SEARX_DIR'/translations/'$f'/LC_MESSAGES/messages.po'
done

echo '[!] update done, edit .po files if required and run pybabel compile -d searx/translations/'