JSF Internationalization
- JSF has full support for Java I18n
- Backing beans can load messages through standard
ResourceBundle loading techniques
- faces-config entries allow for internationalization in the View
- JSF detects the browser locale and loads the corresponding
resource bundle (if available)
<!-- JSF 1.2 allows for resource bundles to be declared in faces config
JSF Resource bundle declaration
ICESOFT TECHNOLOGIES INC.
www.icefaces.org
<!-- JSF 1.2 allows for resource bundles to be declared in faces config instead of <f:loadBundle />--> <resource-bundle> <base-name>Msgs</base-name> <var>msgs</var> </resource-bundle> <h:outputText styleClass="propertyLabel" value="#{msgs['component.title']}" />