update-translations.sh 563B

1234567891011121314151617
  1. #!/bin/sh
  2. # script to easily update translation language files
  3. # add new language:
  4. # pybabel init -i messages.pot -d searx/translations -l en
  5. SEARX_DIR='searx'
  6. pybabel extract -F babel.cfg -o messages.pot $SEARX_DIR
  7. for f in `ls $SEARX_DIR'/translations/'`; do
  8. pybabel update -i messages.pot -d $SEARX_DIR'/translations/' -l $f
  9. # TODO - need to fix category translations
  10. sed -i 's/#~ //' $SEARX_DIR'/translations/'$f'/LC_MESSAGES/messages.po'
  11. done
  12. echo '[!] update done, edit .po files if required and run pybabel compile -d searx/translations/'