mirror of
https://github.com/searxng/searxng.git
synced 2024-11-05 04:40:11 +01:00
b8cd326464
Split the utils directory into: * searx_extra contains update scripts, standalone_searx.py * utils contains the files to build and setup searx.
16 lines
451 B
Bash
Executable File
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/'
|