Ticket #4734: make-messages.py.patch

File make-messages.py.patch, 1.6 KB (added by krzysiek.pawlik@…, 17 years ago)

Patch for make-messages.py

  • make-messages.py

    old new  
    103103                        open(os.path.join(dirpath, '%s.py' % file), "wb").write(templatize(src))
    104104                        thefile = '%s.py' % file
    105105                    if verbose: sys.stdout.write('processing file %s in %s\n' % (file, dirpath))
    106                     cmd = 'xgettext %s -d %s -L Python --keyword=gettext_noop --keyword=gettext_lazy --keyword=ngettext_lazy --from-code UTF-8 -o - "%s"' % (
    107                         os.path.exists(potfile) and '--omit-header' or '', domain, os.path.join(dirpath, thefile))
     106                    cmd = 'xgettext -d %s -L Python --keyword=gettext_noop --keyword=gettext_lazy --keyword=ngettext_lazy --from-code UTF-8 -o - "%s"' % (
     107                        domain, os.path.join(dirpath, thefile))
    108108                    (stdin, stdout, stderr) = os.popen3(cmd, 'b')
    109109                    msgs = stdout.read()
    110110                    errors = stderr.read()
     
    116116                        old = '#: '+os.path.join(dirpath, thefile)[2:]
    117117                        new = '#: '+os.path.join(dirpath, file)[2:]
    118118                        msgs = msgs.replace(old, new)
     119                    if os.path.exists(potfile):
     120                        # Strip the header!
     121                        tmpmsg = msgs.split('\n')[17:]
     122                        msgs = '\n'.join(tmpmsg)
    119123                    if msgs:
    120124                        open(potfile, 'ab').write(msgs)
    121125                    if thefile != file:
Back to Top