I use to send a mail for the user to confirm its registration.
I translate the Subject like:
EmailSubject = p_web.Translate('Doctor Any Place Registration')
My translation routine just look for the string in a table
get the translated string and return the result of p_web.Translate('translatedstring',p_AllowHtml)
What I need the transtale to Return is:
'Registración en Doctor any place'
instead of it I receive:
'Registración en Doctor any place'
I´ve tried with p_AllowHtml=0 and p_AllowHtml=1 and get the same result.
How to get the plain trensleted string?
Thanks