2005-06-02 12:47:44 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# -*- coding: utf-8 -*-
|
2005-07-09 02:05:24 +02:00
|
|
|
# Initially written by Nikos Kouremenos
|
|
|
|
# Dedicated to Yann Le Boulanger
|
|
|
|
# Usage: './translations.py [help] [stats] [update]'
|
2005-06-02 12:47:44 +02:00
|
|
|
|
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
|
|
|
|
stats = False
|
|
|
|
update = False
|
|
|
|
|
|
|
|
def visit(arg, dirname, names):
|
|
|
|
if dirname.find('.svn') != -1:
|
|
|
|
return
|
|
|
|
if dirname.endswith('LC_MESSAGES'):
|
|
|
|
if 'gajim.po' in 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]
|
2005-08-03 01:42:37 +02:00
|
|
|
if update: # update an existing po file)
|
|
|
|
os.system('msgmerge -q -U ../po/'+name+'/LC_MESSAGES/gajim.po ../po/gajim.pot')
|
2005-06-02 12:47:44 +02:00
|
|
|
if stats:
|
|
|
|
print name, 'has now:'
|
|
|
|
os.system('msgfmt --statistics ' + path_to_po)
|
|
|
|
|
|
|
|
def show_help():
|
|
|
|
print sys.argv[0], '[help] [stats] [update]'
|
|
|
|
sys.exit(0)
|
|
|
|
|
|
|
|
def update_pot():
|
2005-08-03 01:42:37 +02:00
|
|
|
# create header for glade strings
|
2005-07-05 19:02:34 +02:00
|
|
|
os.system('intltool-extract --type=gettext/glade ../src/gtkgui.glade')
|
2005-08-03 01:42:37 +02:00
|
|
|
# update the pot
|
|
|
|
os.system('make -C ../po/ all')
|
2005-07-09 02:05:24 +02:00
|
|
|
print 'gajim.pot was updated successfully'
|
2005-06-02 12:47:44 +02:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
if os.path.basename(os.getcwd()) != 'scripts':
|
|
|
|
print 'run me with cwd: scripts'
|
|
|
|
sys.exit()
|
|
|
|
|
|
|
|
path_to_dir = '../po'
|
|
|
|
|
|
|
|
if len(sys.argv) == 2:
|
|
|
|
if sys.argv[1].startswith('h'):
|
|
|
|
show_help()
|
|
|
|
|
|
|
|
param = sys.argv[1]
|
|
|
|
if param == 'stats': # stats only
|
|
|
|
stats = True
|
|
|
|
os.path.walk(path_to_dir, visit, None)
|
|
|
|
elif param == 'update': # update and no stats
|
|
|
|
update_pot()
|
|
|
|
update = True
|
|
|
|
os.path.walk(path_to_dir, visit, None) # update each po & no stats
|
|
|
|
print 'Done'
|
|
|
|
|
2005-07-09 02:05:24 +02:00
|
|
|
elif len(sys.argv) == 1: # update & stats
|
2005-06-02 12:47:44 +02:00
|
|
|
update_pot()
|
|
|
|
update = True
|
|
|
|
stats = True
|
|
|
|
os.path.walk(path_to_dir, visit, None)
|
|
|
|
print 'Done'
|
|
|
|
|
|
|
|
else:
|
|
|
|
show_help()
|
|
|
|
|