Hi all,
I am working on Spring web application and my application is multilingual. I have created the ResourceBundle property files as messages.properties and messages_ar.properties.
In my start page, I have set by default the locale to English. through:
<fmt:setLocale value="en" scope="session"/>
On the same page, I have provided users with access to other language (Arabic) through a link as :
<a href="index.htm?locale=ar">Arabic Version</a>
And I load the form texts, page title and other common elements from the properties file through the spring message tag:
<spring:message code="title"/>
Application works fine for English, but when I select the arabic version, the values from meaages_ar.properties is not loaded. What is my mistake or how can it be loaded and the application be made multilingual.
Thanks in advance for the help. Regards, Abdel Olakara