I'm trying to localize an application for Arabic (right-to-left) locale. Everything is working ok by simply specifying the Locale in the session. Struts works well and translates everything for me. However, I have one piece of data coming straight from the database that should be displayed exactly as it is stored. One sample of the data is this:
"Parameter.{i}"
This ends up being translated to:
"{Parameter.{i"
It seems that struts thinks "{" is meant to be at the end of a sentence or something. Is there a way to be able to escape this somehow, to force struts to ignore what the actual data is and to simply display it? (Using <bean:write>)
Thanks!
"Parameter.{i}"
This ends up being translated to:
"{Parameter.{i"
It seems that struts thinks "{" is meant to be at the end of a sentence or something. Is there a way to be able to escape this somehow, to force struts to ignore what the actual data is and to simply display it? (Using <bean:write>)
Thanks!