summaryrefslogtreecommitdiffstats
path: root/solenv/bin/hrcex
blob: 9d3a2788d4ba6cd6a5d60e0a6d7913d2ad16b37e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/usr/bin/python

import polib
import binascii
import getopt
import sys
import os.path
from subprocess import check_output

try:
    myopts, args = getopt.getopt(sys.argv[1:], "i:o:")
except getopt.GetoptError as e:
    print(" Syntax: hrcex -i FileIn -o FileOut")
    print(" FileIn:   Source files (*.ui)")
    print(" FileOut:  Destination file (*.*)")
    sys.exit(2)

for o, a in myopts:
    if o == '-i':
        ifile = a
    elif o == '-o':
        ofile = a

with open(ofile, "a") as output:
    input = check_output(["xgettext", "-C", "--add-comments", "--keyword=NC_:1c,2", "--keyword=NNC_:1c,2,3", "--from-code=UTF-8", "--no-wrap", ifile, "-o", "-"])
    po = polib.pofile(input)
    if len(po) != 0:
        print >> output, ""
        for entry in po:
            keyid = entry.msgctxt + '|' + entry.msgid
            print >> output, '#. ' + polib.genKeyId(keyid)
            for i, occurrence in enumerate(entry.occurrences):
                entry.occurrences[i] = os.path.relpath(occurrence[0], os.environ['SRCDIR']), occurrence[1]
            print >> output, entry