]> git.lyx.org Git - features.git/commitdiff
Make textclass categories and descriptions translatable
authorJuergen Spitzmueller <spitz@lyx.org>
Tue, 9 Oct 2012 05:25:35 +0000 (07:25 +0200)
committerJuergen Spitzmueller <spitz@lyx.org>
Tue, 9 Oct 2012 05:25:35 +0000 (07:25 +0200)
po/lyx_pot.py

index 4ee9f5548babe658a7ba5895872145b2af5fa358..aa678b844c2444cd60a209e4ac57d0a1b0c3c8cd 100755 (executable)
@@ -78,6 +78,8 @@ def ui_l10n(input_files, output, base):
 
 def layouts_l10n(input_files, output, base, layouttranslations):
     '''Generate pot file from lib/layouts/*.{layout,inc,module}'''
+    ClassDescription = re.compile(r'^\s*#\s*\\Declare(LaTeX|DocBook)Class.*\{(.*)\}$', re.IGNORECASE)
+    ClassCategory = re.compile(r'^\s*#\s*\\DeclareCategory\{(.*)\}$', re.IGNORECASE)
     Style = re.compile(r'^\s*Style\s+(.*)\s*$', re.IGNORECASE)
     # match LabelString, EndLabelString, LabelStringAppendix and maybe others but no comments
     LabelString = re.compile(r'^[^#]*LabelString\S*\s+(.*)\s*$', re.IGNORECASE)
@@ -174,6 +176,18 @@ def layouts_l10n(input_files, output, base, layouttranslations):
         lineno = 0
         for line in open(src).readlines():
             lineno += 1
+            res = ClassDescription.search(line)
+            if res != None:
+                string = res.group(2)
+                if not layouttranslations:
+                    writeString(out, src, base, lineno + 1, string)
+                continue
+            res = ClassCategory.search(line)
+            if res != None:
+                string = res.group(1)
+                if not layouttranslations:
+                    writeString(out, src, base, lineno + 1, string)
+                continue
             if readingDescription:
                 res = DescEnd.search(line)
                 if res != None: