mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-04 14:20:05 +00:00
lyx_pot.py: Do not strip blanks in HelpText.
This fixes a thinko introduced in [c5ef7cfc/lyxgit] Fixes: #9054.
This commit is contained in:
parent
28705e8933
commit
ad203a33d5
@ -500,7 +500,7 @@ def external_l10n(input_files, output, base):
|
|||||||
Template = re.compile(r'^Template\s+(.*)', re.IGNORECASE)
|
Template = re.compile(r'^Template\s+(.*)', re.IGNORECASE)
|
||||||
GuiName = re.compile(r'\s*GuiName\s+(.*)', re.IGNORECASE)
|
GuiName = re.compile(r'\s*GuiName\s+(.*)', re.IGNORECASE)
|
||||||
HelpTextStart = re.compile(r'\s*HelpText\s', re.IGNORECASE)
|
HelpTextStart = re.compile(r'\s*HelpText\s', re.IGNORECASE)
|
||||||
HelpTextSection = re.compile(r'\s*(\S.*\S)\s*$')
|
HelpTextSection = re.compile(r'\s*(\S.*)\s*$')
|
||||||
HelpTextEnd = re.compile(r'\s*HelpTextEnd\s', re.IGNORECASE)
|
HelpTextEnd = re.compile(r'\s*HelpTextEnd\s', re.IGNORECASE)
|
||||||
i = -1
|
i = -1
|
||||||
for src in input_files:
|
for src in input_files:
|
||||||
|
Loading…
Reference in New Issue
Block a user