Browse Source

Replace prefix "$" in parameter names.

pull/227/head
Joachim Bauch 10 years ago
parent
commit
c430b5e5e3
  1. 1
      src/i18n/helpers/checkHTML.py

1
src/i18n/helpers/checkHTML.py

@ -27,6 +27,7 @@ def main(templates, output_folder=None): @@ -27,6 +27,7 @@ def main(templates, output_folder=None):
html = unicode(html, "UTF-8")
html = re.sub(r"\|(\w|:|\"|\')+", "", html)
html = html.replace(", $", ", ")
if output_folder:
tf = os.path.join(output_folder, os.path.split(fn)[1])

Loading…
Cancel
Save