Changeset 3463 for branches/gajim_0.8.2
- Timestamp:
- 09/06/05 17:25:59 (3 years ago)
- Files:
-
- 1 modified
-
branches/gajim_0.8.2/scripts/translations.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/gajim_0.8.2/scripts/translations.py
r3027 r3463 19 19 path_to_po = os.path.join(dirname, 'gajim.po') 20 20 pos = path_to_po.find('po/') + 3 #3 = len('po/') 21 name = path_to_po[pos:pos+2] 21 endpos = path_to_po.find('/', pos) 22 name = path_to_po[pos:endpos] 22 23 if update: # update an existing po file) 23 24 os.system('msgmerge -q -U ../po/'+name+'/LC_MESSAGES/gajim.po ../po/gajim.pot')
