diff options
author | Cqoicebordel <Cqoicebordel@users.noreply.github.com> | 2015-01-05 20:55:56 +0100 |
---|---|---|
committer | Cqoicebordel <Cqoicebordel@users.noreply.github.com> | 2015-01-05 20:55:56 +0100 |
commit | 5e26ce63be9a04b3029dd77c94d39fe8f6902fc6 (patch) | |
tree | 15e9f0a6f039d868226d9afbac454dcfa58dd8ea /utils/update-translations.sh | |
parent | cacdb064db434d7775ffa9bf2e88433de3a5e6e8 (diff) | |
download | searxng-5e26ce63be9a04b3029dd77c94d39fe8f6902fc6.tar.gz searxng-5e26ce63be9a04b3029dd77c94d39fe8f6902fc6.zip |
Don't create fuzzy translation
Diffstat (limited to 'utils/update-translations.sh')
-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 |