Jake, make sure when changing scripts for Multilanguage that you =
separate leading and trailing blanks and punctuation so that the string =
to be translated is "pure". Also, we must separate the variables out of =
strings so that they become string pieces concatenated with variables. =
Try to make the pure strings single quoted. e.g.
"Thank you, $userid, for using webERP"
becomes
'Thank you' . ', ' . $userid . ', ' . 'for using webERP'
Steve |