From 872ad1fc6836123e57f720cb919b037733024f31 Mon Sep 17 00:00:00 2001
From: Yann Leboulanger <asterix@lagaule.org>
Date: Thu, 2 Jun 2005 10:21:44 +0000
Subject: [PATCH] no need to print the progress while msgmerge'ing

---
 scripts/update_translations.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/update_translations.py b/scripts/update_translations.py
index 23886a991b..d041d86cb8 100644
--- a/scripts/update_translations.py
+++ b/scripts/update_translations.py
@@ -9,7 +9,7 @@ def visit(arg, dirname, names):
 			path_to_po = os.path.join(dirname, 'gajim.po')
 			pos = path_to_po.find('po/') + 3 #3 = len('po/')
 			name = path_to_po[pos:pos+2]
-			os.system('msgmerge -U ../po/'+name+'/LC_MESSAGES/gajim.po ../gajim.pot')
+			os.system('msgmerge -q -U ../po/'+name+'/LC_MESSAGES/gajim.po ../gajim.pot')
 			print name, 'has now:'
 			os.system('msgfmt --statistics ' + path_to_po)
 
-- 
GitLab