Your prospect of getting a reply would be significantly higher if you included relevant information about how your application is configured, where/how you store your translations, which encodings you use, etc.
Remember that you are asking people to help you for free.
So, how do you store the Spanish translation, what encoding do you store it in, and what is the encoding of your servlet or JSP (assuming that is what you use)?
There could be so many reasons for incorrect display (and by the way, the example you provide is not very good - it would help if you could show what you expect to see vs. what you actually see).
hi,
Thank you for teaching me such procedure.
Actually,what i am doing is i have 3 flags US,Spain,Brazil.The locale of the application is
changed when i click any flag.upto this point ,its working fine.Now,I give a facility to add any
property file in the application on execution time.and doing the relevant flag display etc.
Now, when i click that new flag the locale is not displayed correctly.
I used google translator for translation,and UTF-8 encoding.for example,
in spanish language LOGIN is CONEXI覰 ,but it is displaying as CONEXIi1/2.
Thanx,
thirupathi
You still have not said what kind of code you use to display the properties file, but I assume it's JSPs.
It looks as if 8859-1 encoding is being used somewhere because you have not specified UTF-8 for all the required parameters.
Post the relevant part of your code (where you specify meta charset, page contentType, etc.), then I might be able to be more specific.
There are also a number of threads in this forum that deal with the same kind of problem, you might want to look at those.