Normally using StrTranslate function we can translate given text, but when we have a comma in the text it will not translate the string beyond that poiint. It will skip the remaining part of the text.
E.g:-
‘Please translate me, I have a comma’
vldtstr:strTranslate(../../../tns:PROCESSING_INFO/tns:FORMATTING_OPTIONS/tns:LANG_CODE,'en,de','Please translate me, I have a comma,Bitte übersetzen Sie mich, ich habe ein Komma','Please translate me, I have a comma')
Result:
en: Please translate me (missing ‘, I have a comma’)
de: Bitte übersetzen Sie mich (missing ‘, ich habe ein Komma’)