]> git.lyx.org Git - features.git/blob - po/lyx_pot.py
Update translations for 1.6.0 (alpha 2)
[features.git] / po / lyx_pot.py
1 #!/usr/bin/env python
2 # -*- coding: utf-8 -*-
3
4 # file lyx_pot.py
5 # This file is part of LyX, the document processor.
6 # Licence details can be found in the file COPYING.
7 #
8 # \author Bo Peng
9 #
10 # Full author contact details are available in file CREDITS
11
12 # Usage: use
13 #     lyx_pot.py -h
14 # to get usage message
15
16 # This script will extract translatable strings from input files and write
17 # to output in gettext .pot format.
18 #
19 import sys, os, re, getopt
20
21 def relativePath(path, base):
22     '''return relative path from top source dir'''
23     # full pathname of path
24     path1 = os.path.normpath(os.path.realpath(path)).split(os.sep)
25     path2 = os.path.normpath(os.path.realpath(base)).split(os.sep)
26     if path1[:len(path2)] != path2:
27         print "Path %s is not under top source directory" % path
28     path3 = os.path.join(*path1[len(path2):]);
29     # replace all \ by / such that we get the same comments on Windows and *nix
30     path3 = path3.replace('\\', '/')
31     return path3
32
33
34 def writeString(outfile, infile, basefile, lineno, string):
35     string = string.replace('\\', '\\\\').replace('"', '')
36     if string == "":
37         return
38     print >> outfile, '#: %s:%d\nmsgid "%s"\nmsgstr ""\n' % \
39         (relativePath(infile, basefile), lineno, string)
40
41
42 def ui_l10n(input_files, output, base):
43     '''Generate pot file from lib/ui/*'''
44     output = open(output, 'w')
45     Submenu = re.compile(r'^[^#]*Submenu\s+"([^"]*)"')
46     Popupmenu = re.compile(r'^[^#]*PopupMenu\s+"[^"]+"\s+"([^"]*)"')
47     Toolbar = re.compile(r'^[^#]*Toolbar\s+"[^"]+"\s+"([^"]*)"')
48     Item = re.compile(r'[^#]*Item\s+"([^"]*)"')
49     TableInsert = re.compile(r'[^#]*TableInsert\s+"([^"]*)"')
50     for src in input_files:
51         input = open(src)
52         for lineno, line in enumerate(input.readlines()):
53             if Submenu.match(line):
54                 (string,) = Submenu.match(line).groups()
55                 string = string.replace('_', ' ')
56             elif Popupmenu.match(line):
57                 (string,) = Popupmenu.match(line).groups()
58             elif Toolbar.match(line):
59                 (string,) = Toolbar.match(line).groups()
60             elif Item.match(line):
61                 (string,) = Item.match(line).groups()
62             elif TableInsert.match(line):
63                 (string,) = TableInsert.match(line).groups()
64             else:
65                 continue
66             string = string.replace('"', '')
67             if string != "":
68                 print >> output, '#: %s:%d\nmsgid "%s"\nmsgstr ""\n' % \
69                     (relativePath(src, base), lineno+1, string)
70         input.close()
71     output.close()
72
73
74 def layouts_l10n(input_files, output, base):
75     '''Generate pot file from lib/layouts/*.{layout,inc,module}'''
76     out = open(output, 'w')
77     Style = re.compile(r'^Style\s+(.*)')
78     # include ???LabelString???, but exclude comment lines
79     LabelString = re.compile(r'^[^#]*LabelString\S*\s+(.*)')
80     GuiName = re.compile(r'\s*GuiName\s+(.*)')
81     ListName = re.compile(r'\s*ListName\s+(.*)')
82     CategoryName = re.compile(r'\s*Category\s+(.*)')
83     NameRE = re.compile(r'DeclareLyXModule.*{(.*)}')
84     DescBegin = re.compile(r'#+\s*DescriptionBegin\s*$')
85     DescEnd = re.compile(r'#+\s*DescriptionEnd\s*$')
86
87     for src in input_files:
88         readingDescription = False
89         descStartLine = -1
90         descLines = []
91         lineno = 0
92         for line in open(src).readlines():
93             lineno += 1
94             if readingDescription:
95                 res = DescEnd.search(line)
96                 if res != None:
97                     readingDescription = False
98                     desc = " ".join(descLines)
99                     print >> out, '#: %s:%d\nmsgid "%s"\nmsgstr ""\n' % \
100                         (relativePath(src, base), lineno + 1, desc)
101                     continue
102                 descLines.append(line[1:].strip())
103                 continue
104             res = DescBegin.search(line)
105             if res != None:
106                 readingDescription = True
107                 descStartLine = lineno
108                 continue
109             res = NameRE.search(line)
110             if res != None:
111                 string = res.group(1)
112                 string = string.replace('\\', '\\\\').replace('"', '')
113                 if string != "":
114                     print >> out, '#: %s:%d\nmsgid "%s"\nmsgstr ""\n' % \
115                         (relativePath(src, base), lineno + 1, string)
116                 continue
117             res = Style.search(line)
118             if res != None:
119                 string = res.group(1)
120                 string = string.replace('_', ' ')
121                 writeString(out, src, base, lineno, string)
122                 continue
123             res = LabelString.search(line)
124             if res != None:
125                 string = res.group(1)
126                 writeString(out, src, base, lineno, string)
127                 continue
128             res = GuiName.search(line)
129             if res != None:
130                 string = res.group(1)
131                 writeString(out, src, base, lineno, string)
132                 continue
133             res = CategoryName.search(line)
134             if res != None:
135                 string = res.group(1)
136                 writeString(out, src, base, lineno, string)
137                 continue
138             res = ListName.search(line)
139             if res != None:
140                 string = res.group(1)
141                 writeString(out, src, base, lineno, string)
142                 continue
143     out.close()
144
145
146 def qt4_l10n(input_files, output, base):
147     '''Generate pot file from src/frontends/qt4/ui/*.ui'''
148     output = open(output, 'w')
149     pat = re.compile(r'\s*<string>(.*)</string>')
150     prop = re.compile(r'\s*<property.*name.*=.*shortcut')
151     for src in input_files:
152         input = open(src)
153         skipNextLine = False
154         for lineno, line in enumerate(input.readlines()):
155             # skip the line after <property name=shortcut>
156             if skipNextLine:
157                 skipNextLine = False
158                 continue
159             if prop.match(line):
160                 skipNextLine = True
161                 continue
162             # get lines that match <string>...</string>
163             if pat.match(line):
164                 (string,) = pat.match(line).groups()
165                 string = string.replace('&amp;', '&').replace('&lt;', '<').replace('&gt;', '>').replace('"', r'\"')
166                 print >> output, '#: %s:%d\nmsgid "%s"\nmsgstr ""\n' % \
167                     (relativePath(src, base), lineno+1, string) 
168         input.close()
169     output.close()
170
171
172 def languages_l10n(input_files, output, base):
173     '''Generate pot file from lib/language'''
174     output = open(output, 'w')
175     # assuming only one language file
176     reg = re.compile('[\w-]+\s+[\w"]+\s+"([\w \-\(\)]+)"\s+(true|false)\s+[\w-]+\s+\w+\s+"[^"]*"')
177     input = open(input_files[0])
178     for lineno, line in enumerate(input.readlines()):
179         if line[0] == '#':
180             continue
181         # From:
182         #   afrikaans   afrikaans       "Afrikaans"     false  iso8859-15 af_ZA  ""
183         # To:
184         #   #: lib/languages:2
185         #   msgid "Afrikaans"
186         #   msgstr ""
187         if reg.match(line):
188             print >> output, '#: %s:%d\nmsgid "%s"\nmsgstr ""\n' % \
189                 (relativePath(input_files[0], base), lineno+1, reg.match(line).groups()[0])
190         else:
191             print "Error: Unable to handle line:"
192             print line
193             # No need to abort if the parsing fails (e.g. "ignore" language has no encoding)
194             # sys.exit(1)
195     input.close()
196     output.close()
197
198
199 def external_l10n(input_files, output, base):
200     '''Generate pot file from lib/external_templates'''
201     output = open(output, 'w')
202     Template = re.compile(r'^Template\s+(.*)')
203     GuiName = re.compile(r'\s*GuiName\s+(.*)')
204     HelpTextStart = re.compile(r'\s*HelpText\s')
205     HelpTextSection = re.compile(r'\s*(\S.*)\s*$')
206     HelpTextEnd = re.compile(r'\s*HelpTextEnd\s')
207     i = -1
208     for src in input_files:
209         input = open(src)
210         inHelp = False
211         hadHelp = False
212         prev_help_string = ''
213         for lineno, line in enumerate(input.readlines()):
214             if Template.match(line):
215                 (string,) = Template.match(line).groups()
216             elif GuiName.match(line):
217                 (string,) = GuiName.match(line).groups()
218             elif inHelp:
219                 if HelpTextEnd.match(line):
220                     if hadHelp:
221                         print >> output, '\nmsgstr ""\n'
222                     inHelp = False
223                     hadHelp = False
224                     prev_help_string = ''
225                 elif HelpTextSection.match(line):
226                     (help_string,) = HelpTextSection.match(line).groups()
227                     help_string = help_string.replace('"', '')
228                     if help_string != "" and prev_help_string == '':
229                         print >> output, '#: %s:%d\nmsgid ""\n"%s\\n"' % \
230                             (relativePath(src, base), lineno+1, help_string)
231                         hadHelp = True
232                     elif help_string != "":
233                         print >> output, '"%s\\n"' % help_string
234                     prev_help_string = help_string
235             elif HelpTextStart.match(line):
236                 inHelp = True
237                 prev_help_string = ''
238             else:
239                 continue
240             string = string.replace('"', '')
241             if string != "" and not inHelp:
242                 print >> output, '#: %s:%d\nmsgid "%s"\nmsgstr ""\n' % \
243                     (relativePath(src, base), lineno+1, string)
244         input.close()
245     output.close()
246
247
248 Usage = '''
249 lyx_pot.py [-b|--base top_src_dir] [-o|--output output_file] [-h|--help] -t|--type input_type input_files
250
251 where 
252     --base:
253         path to the top source directory. default to '.'
254     --output:
255         output pot file, default to './lyx.pot'
256     --input_type can be
257         ui: lib/ui/*
258         layouts: lib/layouts/*
259         qt4: qt4 ui files
260         languages: file lib/languages
261         external: external templates file
262 '''
263
264 if __name__ == '__main__':
265     input_type = None
266     output = 'lyx.pot'
267     base = '.'
268     #
269     optlist, args = getopt.getopt(sys.argv[1:], 'ht:o:b:',
270         ['help', 'type=', 'output=', 'base='])
271     for (opt, value) in optlist:
272         if opt in ['-h', '--help']:
273             print Usage
274             sys.exit(0)
275         elif opt in ['-o', '--output']:
276             output = value
277         elif opt in ['-b', '--base']:
278             base = value
279         elif opt in ['-t', '--type']:
280             input_type = value
281     if input_type not in ['ui', 'layouts', 'modules', 'qt4', 'languages', 'external'] or output is None:
282         print 'Wrong input type or output filename.'
283         sys.exit(1)
284     if input_type == 'ui':
285         ui_l10n(args, output, base)
286     elif input_type == 'layouts':
287         layouts_l10n(args, output, base)
288     elif input_type == 'qt4':
289         qt4_l10n(args, output, base)
290     elif input_type == 'external':
291         external_l10n(args, output, base)
292     else:
293         languages_l10n(args, output, base)
294