diff options
| author | Adam Tauber <asciimoo@gmail.com> | 2015-01-09 04:15:57 +0100 |
|---|---|---|
| committer | Adam Tauber <asciimoo@gmail.com> | 2015-01-09 04:15:57 +0100 |
| commit | d6b1ff08ad2ad3af8ef50c3611a18c633a78249e (patch) | |
| tree | f139bab9b9262327390d3d0da4c6c1efd073f20e /utils | |
| parent | 299a80a1eb2eecb80f5c50da261a9eab1900b572 (diff) | |
| parent | e4681da20f4dc2024609454771aa005bc05ba3f3 (diff) | |
Merge branch 'master' of github.com:asciimoo/searx
Diffstat (limited to 'utils')
| -rwxr-xr-x | utils/update-translations.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/update-translations.sh b/utils/update-translations.sh index bac7d3c4c..2f9ab218f 100755 --- a/utils/update-translations.sh +++ b/utils/update-translations.sh @@ -9,7 +9,7 @@ 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 + 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 |