Hello, I am working in internationalization.
Can anybody help me how to set up for support different char types?? At least Spanish and German.
I am using Rich faces, this is my configurationfile faces-config.xml
<application>
<locale-config>
<default-locale>en</default-locale>
<supported-locale>fr</supported-locale>
<supported-locale>de</supported-locale>
<supported-locale>es</supported-locale>
</locale-config>
<resource-bundle>
<base-name>messages.Messages</base-name>
<var>msg</var>
</resource-bundle>
</application>
In the pages .xhtml I load the bundle
<f:loadBundle basename="messages.Messages" var="msg1"/>
and also load the charset:
<meta charset="utf-8" />
Where must I include needed unicode? Thansk in advance