Matthias Wronka created TOBAGO-1541:
---------------------------------------
Summary: Use ResourceBundles should support parameters
Key: TOBAGO-1541
URL: https://issues.apache.org/jira/browse/TOBAGO-1541
Project: MyFaces Tobago
Issue Type: New Feature
Components: Core
Reporter: Matthias Wronka
Working with resourceBundles for i18n in JSF-Views should support parameters
for formatted messages similar to <h:outputFormat> as described here:
http://www.mkyong.com/jsf2/jsf-2-0-and-resource-bundles-example/
The solution could look like this:
bundle.properties:
myStringWithParameters=Parameter 1 is {0}, parameter 2 {1}.
<tc:out value="#{bundle.myStringWithParameters" format="true>
<f:param value="First value" />
<f:param value="Second value" />
</tc:out>
The output should be (surprise): "Parameter 1 is First value, parameter 2
Second value."
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)