From e4e32519d211c4c75949c16be619d3e7b3056166 Mon Sep 17 00:00:00 2001 From: David Paleino Date: Sun, 6 May 2012 21:25:10 +0200 Subject: [PATCH] Don't use fuzzy matching when updating translations --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 4675714..9134128 100755 --- a/setup.py +++ b/setup.py @@ -444,7 +444,7 @@ class update_translations(Command): def run(self): for pofile in glob('po/*.po'): lang = pofile.replace('po/', '').replace('.po', '') - os.system('pybabel update -o %s -i po/wicd.pot -D wicd -l %s' % (pofile, lang)) + os.system('pybabel update -N -o %s -i po/wicd.pot -D wicd -l %s' % (pofile, lang)) class compile_translations(Command): description = 'compile po-files to binary mo'