Skip to content
Snippets Groups Projects
Commit 872ad1fc authored by Yann Leboulanger's avatar Yann Leboulanger
Browse files

no need to print the progress while msgmerge'ing

parent 479f67a2
No related branches found
No related tags found
No related merge requests found
......@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment