Hi Alberto,
Seems to be working.
Make sure your Translate method checks the TranslateOff property though.
here's some sample code, which adds an "i" to the front of every thing. This goes in Webhandler, before the parent call.
if not omitted(2) and p_web.translateoff = 0
loc:string = 'i' & p_string
ReturnValue = PARENT.Translate(loc:String,p_AllowHtml)
RETURN ReturnValue
end
Obviously you replace the 2nd line with your translation code.
Cheers
Bruce