Browse Source

Don't create fuzzy translation

Cqoicebordel 10 years ago
parent
commit
5e26ce63be
1 changed files with 1 additions and 1 deletions
  1. 1 1
      utils/update-translations.sh

+ 1 - 1
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