Fix the fix of description parsing

This commit is contained in:
Juergen Spitzmueller 2017-02-16 10:28:11 +01:00
parent 65ad858b0f
commit ac064cf0f4

View File

@ -95,7 +95,7 @@ def layouts_l10n(input_files, output, base, layouttranslations):
InsetLayout = re.compile(r'^InsetLayout\s+\"?(.*)\"?\s*$', re.IGNORECASE)
FlexCheck = re.compile(r'^Flex:(.*)', re.IGNORECASE)
CaptionCheck = re.compile(r'^Caption:(.*)', re.IGNORECASE)
DescBegin = re.compile(r'^\s*#\s+DescriptionBegin\s*$', re.IGNORECASE)
DescBegin = re.compile(r'^\s*#\s*DescriptionBegin\s*$', re.IGNORECASE)
DescEnd = re.compile(r'^\s*#\s*DescriptionEnd\s*$', re.IGNORECASE)
Category = re.compile(r'^\s*#\s*Category:\s+(.*\S)\s*$', re.IGNORECASE)
I18nPreamble = re.compile(r'^\s*((Lang)|(Babel))Preamble\s*$', re.IGNORECASE)