/usr/share/pyshared/translate/convert/mozfunny2prop.py is in translate-toolkit 1.10.0-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 | #!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright 2005, 2006 Zuza Software Foundation
#
# This file is part of translate.
#
# translate is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# translate is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, see <http://www.gnu.org/licenses/>.
"""Converts additional Mozilla files to properties files.
"""
import string
from translate.convert import prop2po
from translate.misc.wStringIO import StringIO
def inc2prop(lines):
"""convert a .inc file with #defines in it to a properties file"""
yield "# converted from #defines file\n"
for line in lines:
line = line.decode("utf-8")
if line.startswith("# "):
commented = True
line = line.replace("# ", "", 1)
else:
commented = False
if not line.strip():
yield line
elif line.startswith("#define"):
parts = string.split(line.replace("#define", "", 1).strip(), maxsplit=1)
if not parts:
continue
if len(parts) == 1:
key, value = parts[0], ""
else:
key, value = parts
# special case: uncomment MOZ_LANGPACK_CONTRIBUTORS
if key == "MOZ_LANGPACK_CONTRIBUTORS":
commented = False
if commented:
yield "# "
yield "%s = %s\n" % (key, value)
else:
if commented:
yield "# "
yield line
def it2prop(lines, encoding="cp1252"):
"""convert a pseudo-properties .it file to a conventional properties file"""
yield "# converted from pseudo-properties .it file\n"
# differences: ; instead of # for comments
# [section] titles that we replace with # section: comments
for line in lines:
line = line.decode(encoding)
if not line.strip():
yield line
elif line.lstrip().startswith(";"):
yield line.replace(";", "#", 1)
elif line.lstrip().startswith("[") and line.rstrip().endswith("]"):
yield "# section: " + line
else:
yield line
def funny2prop(lines, itencoding="cp1252"):
hashstarts = len([line for line in lines if line.startswith("#")])
if hashstarts:
for line in inc2prop(lines):
yield line
else:
for line in it2prop(lines, encoding=itencoding):
yield line
def inc2po(inputfile, outputfile, templatefile, encoding=None, pot=False, duplicatestyle="msgctxt"):
"""wraps prop2po but converts input/template files to properties first"""
inputlines = inputfile.readlines()
inputproplines = [line for line in inc2prop(inputlines)]
inputpropfile = StringIO("".join(inputproplines))
if templatefile is not None:
templatelines = templatefile.readlines()
templateproplines = [line for line in inc2prop(templatelines)]
templatepropfile = StringIO("".join(templateproplines))
else:
templatepropfile = None
return prop2po.convertprop(inputpropfile, outputfile, templatepropfile, personality="mozilla", pot=pot, duplicatestyle=duplicatestyle)
def it2po(inputfile, outputfile, templatefile, encoding="cp1252", pot=False, duplicatestyle="msgctxt"):
"""wraps prop2po but converts input/template files to properties first"""
inputlines = inputfile.readlines()
inputproplines = [line for line in it2prop(inputlines, encoding=encoding)]
inputpropfile = StringIO("".join(inputproplines))
if templatefile is not None:
templatelines = templatefile.readlines()
templateproplines = [line for line in it2prop(templatelines, encoding=encoding)]
templatepropfile = StringIO("".join(templateproplines))
else:
templatepropfile = None
return prop2po.convertprop(inputpropfile, outputfile, templatepropfile, personality="mozilla", pot=pot, duplicatestyle=duplicatestyle)
def ini2po(inputfile, outputfile, templatefile, encoding="UTF-8", pot=False, duplicatestyle="msgctxt"):
return it2po(inputfile=inputfile, outputfile=outputfile, templatefile=templatefile, encoding=encoding, pot=pot, duplicatestyle=duplicatestyle)
def main(argv=None):
import sys
lines = sys.stdin.readlines()
for line in funny2prop(lines):
sys.stdout.write(line)
if __name__ == "__main__":
main()
|