1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21 """convert .rc files to Gettext PO localization files"""
22
23 import sys
24 from translate.storage import po
25 from translate.storage import rc
26
28 """Convert a .rc file to a .po file for handling the translation."""
30 self.charset = charset
31
33 """converts a .rc file to a .po file..."""
34 output_store = po.pofile()
35 output_header = output_store.init_headers(charset="UTF-8", encoding="8bit")
36 output_header.addnote("extracted from %s" % input_store.filename, "developer")
37 for input_unit in input_store.units:
38 output_unit = self.convert_unit(input_unit, "developer")
39 if output_unit is not None:
40 output_store.addunit(output_unit)
41 output_store.removeduplicates(duplicatestyle)
42 return output_store
43
44 - def merge_store(self, template_store, input_store, blankmsgstr=False, duplicatestyle="msgctxt"):
45 """converts two .rc files to a .po file..."""
46 output_store = po.pofile()
47 output_header = output_store.init_headers(charset="UTF-8", encoding="8bit")
48 output_header.addnote("extracted from %s, %s" % (template_store.filename, input_store.filename), "developer")
49 input_store.makeindex()
50 for template_unit in template_store.units:
51 origpo = self.convert_unit(template_unit, "developer")
52
53 template_unit_name = "".join(template_unit.getlocations())
54 if template_unit_name in input_store.locationindex:
55 translatedrc = input_store.locationindex[template_unit_name]
56 translatedpo = self.convert_unit(translatedrc, "translator")
57 else:
58 translatedpo = None
59
60 if origpo is not None:
61 if translatedpo is not None and not blankmsgstr:
62 origpo.target = translatedpo.source
63 output_store.addunit(origpo)
64 elif translatedpo is not None:
65 print >> sys.stderr, "error converting original rc definition %s" % origrc.name
66 output_store.removeduplicates(duplicatestyle)
67 return output_store
68
70 """Converts a .rc unit to a .po unit. Returns None if empty
71 or not for translation."""
72 if input_unit is None:
73 return None
74
75 output_unit = po.pounit(encoding="UTF-8")
76 output_unit.addlocation("".join(input_unit.getlocations()))
77 output_unit.source = input_unit.source.decode(self.charset)
78 output_unit.target = ""
79 return output_unit
80
81 -def convertrc(input_file, output_file, template_file, pot=False, duplicatestyle="msgctxt", charset=None, lang=None, sublang=None):
82 """reads in input_file using rc, converts using rc2po, writes to output_file"""
83 input_store = rc.rcfile(input_file, lang, sublang)
84 convertor = rc2po(charset=charset)
85 if template_file is None:
86 output_store = convertor.convert_store(input_store, duplicatestyle=duplicatestyle)
87 else:
88 template_store = rc.rcfile(template_file, lang, sublang)
89 output_store = convertor.merge_store(template_store, input_store, blankmsgstr=pot, duplicatestyle=duplicatestyle)
90 if output_store.isempty():
91 return 0
92 output_file.write(str(output_store))
93 return 1
94
96 from translate.convert import convert
97 formats = {"rc": ("po", convertrc), ("rc", "rc"): ("po", convertrc),
98 "nls": ("po", convertrc), ("nls", "nls"): ("po", convertrc)}
99 parser = convert.ConvertOptionParser(formats, usetemplates=True, usepots=True, description=__doc__)
100 DEFAULTCHARSET = "cp1252"
101 parser.add_option("", "--charset", dest="charset", default=DEFAULTCHARSET,
102 help="charset to use to decode the RC files (default: %s)" % DEFAULTCHARSET, metavar="CHARSET")
103 DEFAULTLANG = "LANG_ENGLISH"
104 parser.add_option("-l", "--lang", dest="lang", default=DEFAULTLANG,
105 help="LANG entry (default: %s)" % DEFAULTLANG, metavar="LANG")
106 DEFAULTSUBLANG = "SUBLANG_DEFAULT"
107 parser.add_option("", "--sublang", dest="sublang", default=DEFAULTSUBLANG,
108 help="SUBLANG entry (default: %s)" % DEFAULTSUBLANG, metavar="SUBLANG")
109 parser.add_duplicates_option()
110 parser.passthrough.append("pot")
111 parser.passthrough.append("charset")
112 parser.passthrough.append("lang")
113 parser.passthrough.append("sublang")
114 parser.run(argv)
115
116 if __name__ == '__main__':
117 main()
118