From 82da9bc665467bb83f7cac5ce1d426af119602e0 Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Tue, 10 Jan 2006 09:07:29 +0000 Subject: [PATCH] translation.py check now check only critical errors --- scripts/dev/translations.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/dev/translations.py b/scripts/dev/translations.py index 0e503cbc2..4f0c60ad7 100755 --- a/scripts/dev/translations.py +++ b/scripts/dev/translations.py @@ -26,7 +26,7 @@ def visit(arg, dirname, names): print name, 'has now:' os.system('msgfmt --statistics ' + path_to_po) if check: - os.system('msgfmt -c --check-accelerators="_" ' + path_to_po) + os.system('msgfmt -c ' + path_to_po) else: print 'PROBLEM: cannot find gajim.po in', dirname