summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorCqoicebordel <Cqoicebordel@users.noreply.github.com>2015-01-05 20:55:56 +0100
committerCqoicebordel <Cqoicebordel@users.noreply.github.com>2015-01-05 20:55:56 +0100
commit5e26ce63be9a04b3029dd77c94d39fe8f6902fc6 (patch)
tree15e9f0a6f039d868226d9afbac454dcfa58dd8ea /utils
parentcacdb064db434d7775ffa9bf2e88433de3a5e6e8 (diff)
Don't create fuzzy translation
Diffstat (limited to 'utils')
-rwxr-xr-xutils/update-translations.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/update-translations.sh b/utils/update-translations.sh
index bac7d3c4..2f9ab218 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