[FIX]:added missing of parsing of 'help' attribute while synchronizing translations

bzr revid: nch@tinyerp.com-20110421093400-aigxqul71iw2avph
This commit is contained in:
Naresh (OpenERP) 2011-04-21 15:04:00 +05:30
parent dc6973b41e
commit dce1a9ab59
1 changed files with 3 additions and 1 deletions

View File

@ -503,6 +503,8 @@ def trans_parse_view(de):
res.append(de.text.encode("utf8"))
if de.get("string"):
res.append(de.get('string').encode("utf8"))
if de.get("help"):
res.append(de.get('help').encode("utf8"))
if de.get("sum"):
res.append(de.get('sum').encode("utf8"))
if de.get("confirm"):
@ -993,7 +995,7 @@ def resetlocale():
def load_language(cr, lang):
"""Loads a translation terms for a language.
Used mainly to automate language loading at db initialization.
:param lang: language ISO code with optional _underscore_ and l10n flavor (ex: 'fr', 'fr_BE', but not 'fr-BE')
:type lang: str
"""