I made this changes in my application so Translate procedure in WebHandler now looks like this:
p_web.Translate PROCEDURE(<String p_String>,Long p_AllowHtml=0)
ReturnValue ANY
RetString STRING(1000)
CODE
! Start of "NetTalk Method Executable Code Section"
! [Priority 2500]
case p_string
of 'Alert'
RetString = 'Poruka'
of 'First'
RetString = 'Prva'
of 'Previous'
RetString = 'Sledeća'
of 'Last'
RetString = 'Poslednja'
of 'Confirm'
RetString = 'Potvrdite'
of 'Are you sure you want to cancel the changes?'
RetString = 'Sigurno odustajete od izmena?'
of 'Cancel'
RetString = 'Prekid'
of 'No'
RetString = 'Ne'
ELSE
RetString = p_String
END
omit('dovde')
! Parent Call
ReturnValue = PARENT.Translate(p_String,p_AllowHtml)
!dovde
ReturnValue = PARENT.Translate(clip(RetString),p_AllowHtml)
and result is Ok.
Best regards,
Djole