Hi there,
according to your docs page about localizing datasources - say you want to localize a field. You do this:
In my case, what this means is that i have to introduce the "title" node and the fmt:message contents, for each field, in every datasource, even though the "name" attribute of the field is always the same as the "key" in the fmt:message
Wouldn't it be neat if you could just use the "name" attribute value to look up the localized title if the title field is missing, or something like that?
according to your docs page about localizing datasources - say you want to localize a field. You do this:
Code:
<fmt:bundle basename="com.isomorphic.test.i18n" /> ... <field name="itemName"> <title><fmt:message key="itemName"/></title> </field>
Wouldn't it be neat if you could just use the "name" attribute value to look up the localized title if the title field is missing, or something like that?
Comment