diff options
author | asciimoo <asciimoo@gmail.com> | 2014-02-02 22:23:57 +0100 |
---|---|---|
committer | asciimoo <asciimoo@gmail.com> | 2014-02-02 22:23:57 +0100 |
commit | 474f6a861d1be5a874deefd5d60dd45b40db0a03 (patch) | |
tree | 1dd1ff9c3e050d34dcb4db40875a84afd7d55fbd /utils | |
parent | 881c2cbd335606f476dcfeb0f7edfe39064088db (diff) | |
download | searxng-474f6a861d1be5a874deefd5d60dd45b40db0a03.tar.gz searxng-474f6a861d1be5a874deefd5d60dd45b40db0a03.zip |
[enh] utils - translation updater script added
Diffstat (limited to 'utils')
-rwxr-xr-x | utils/update-translations.sh | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/utils/update-translations.sh b/utils/update-translations.sh new file mode 100755 index 000000000..bac7d3c4c --- /dev/null +++ b/utils/update-translations.sh @@ -0,0 +1,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 -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/' |