[FIX] removed unwanted parsing of transalte() blocks in rml python code

bzr revid: cbi@openerp.com-20121001085948-bgixbde1y3a8ka1a
This commit is contained in:
Chris Biersbach 2012-10-01 10:59:48 +02:00
parent 1d7b6d3e35
commit a528390071
1 changed files with 1 additions and 5 deletions

View File

@ -520,14 +520,10 @@ def trans_parse_rml(de):
if isinstance(m, SKIPPED_ELEMENT_TYPES) or not m.text:
continue
string_list = [s.replace('\n', ' ').strip() for s in re.split('\[\[.+?\]\]', m.text)]
string_list2 = [s.replace('\n', ' ').replace('translate(', '')[:-1].strip('"\'') for s in re.findall('translate\(.+?\)', m.text)]
for s in string_list:
if s:
res.append(s.encode("utf8"))
for s in string_list2:
if s:
res.append(s.encode("utf8"))
res.extend(trans_parse_rml(n))
res.extend(trans_parse_rml(n))
return res
def trans_parse_view(de):