cid#1640468 Dereference after null check
[LibreOffice.git] / solenv / bin / uiex
blobd76a2d45120718e2a55cb549690dfc68932907c9
1 #!/usr/bin/env python3
3 import polib
4 import binascii
5 import getopt
6 import sys
7 import os.path
8 from subprocess import check_output
10 try:
11     myopts, args = getopt.getopt(sys.argv[1:], "i:o:")
12 except getopt.GetoptError as e:
13     print(" Syntax: uiex -i FileIn -o FileOut")
14     print(" FileIn:   Source files (*.ui)")
15     print(" FileOut:  Destination file (*.*)")
16     sys.exit(2)
18 for o, a in myopts:
19     if o == '-i':
20         ifile = a
21     elif o == '-o':
22         ofile = a
24 with open(ofile, "a") as output:
25     input = check_output(["xgettext", "--add-comments", "--no-wrap", ifile, "-o", "-"], encoding="UTF-8")
26     po = polib.pofile(input)
27     if len(po) != 0:
28         print("", file=output)
29         for entry in po:
30             # skip 'stock' entries like "cancel", "help", "ok", etc
31             # l10ntools/source/localize.cxx will insert one entry for each stock per .po
32             if entry.msgctxt == "stock":
33                 continue
34             try:
35                 keyid = entry.msgctxt + '|' + entry.msgid
36             except Exception:
37                 print(f"There is a problem with the translatable string labeled \"{entry.msgid}\". Likely no context attribute has been specified.")
38                 sys.exit(2)
39             print('#. ' + polib.genKeyId(keyid), file=output)
40             for i, occurrence in enumerate(entry.occurrences):
41                 entry.occurrences[i] = os.path.relpath(occurrence[0], os.environ['SRCDIR']), occurrence[1]
42             print(entry, file=output)