Torsten: > I am using i18n tag lib and wonder, if it is possible to get the key > itself returned from the message tag, whenever the key is not found in the > resource file. > So this way it would be easy to see, which key is missing in the resource > files, since your output still contains clear keys. > > Any hint appreciated, thanks in advance,
The <fmt:message> I18N tag in JSTL supports this feature: Any key that can not be mapped to a localized message causes a message to be logged to the servlet context, and an error message of the form "???<key>???" (where <key> is the name of the undefined key) to be output to the current JspWriter object. See http://jakarta.apache.org/taglibs/doc/standard-doc/standard-ea3/I18N_FunctionalD escription_6_EA3.html for more details. Jan -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
