libreoffice-online/loleaflet/util/po2json.py
Andras Timar 0bfd359a7c loleaflet: create destination file's directory with po2json.py
... because the Makefile did not work on SLED11SP4 (?!)

Change-Id: I4e7468149f1c5461aeeb05d3a68e62cda1e329e5
Reviewed-on: https://gerrit.libreoffice.org/39778
Reviewed-by: Michael Meeks <michael.meeks@collabora.com>
Tested-by: Michael Meeks <michael.meeks@collabora.com>
2017-07-31 19:42:32 +02:00

61 lines
1.5 KiB
Python
Executable file

#!/usr/bin/python
#
# convert .po to .json
#
import json
import optparse
import os
import polib
import re
import string
import sys
import errno
parser = optparse.OptionParser(usage="usage: %prog [options] pofile...")
parser.add_option("--quiet", action="store_false", default=True, dest="verbose", help="don't print status messages to stdout")
parser.add_option("-o", type="string", default="", dest="destfile", help="output file name (if there is exactly one input file)")
(options, args) = parser.parse_args()
if args == None or len(args) == 0:
print("ERROR: you must specify at least one po file to translate");
sys.exit(1)
if options.destfile != '' and len(args) != 1:
print("ERROR: when -o is provided, there has to be exactly 1 input file")
sys.exit(1)
paramFix = re.compile("(\\(([0-9])\\))")
for srcfile in args:
destfile = os.path.splitext(srcfile)[0] + ".json"
if options.destfile != '':
destfile = options.destfile
if options.verbose:
print("INFO: converting %s to %s" % (srcfile, destfile))
xlate_map = {}
po = polib.pofile(srcfile, autodetect_encoding=False, encoding="utf-8", wrapwidth=-1)
for entry in po.translated_entries():
if entry.msgstr == '':
continue
xlate_map[entry.msgid] = entry.msgstr;
if not os.path.exists(os.path.dirname(destfile)):
try:
os.makedirs(os.path.dirname(destfile))
except OSError as exc: # Guard against race condition
if exc.errno != errno.EEXIST:
raise
dest = open(destfile, "w")
dest.write(json.dumps(xlate_map, sort_keys = True));
dest.close()