JSP MessageTag retrieves a localized message from a resource bundle. The locale
is calculated from the HTTP Accept-Language header and the most appropriate
Windchill supported locale is used. If the language argument is supplied,
the locale is calculated from this and the optional country and variant
arguments.
Example:
<%@ taglib uri="http://www.windchill.com/taglib/util" prefix="util" %>
<a href="home.jsp"><util:message rb="wt.clients.util.UtilRB" key="26"/></a>
For English-US: <a href="home.jsp">Windchill Home</a>
For French-Canadian: <a href="home.jsp">Page d'accueil Windchill</a>
For German: <a href="home.jsp">Windchill Startseite</a>
|
Tag Attributes |
rb |
required |
Base resource bundle containing the message.
|
key |
required |
Key associated with the requested message.
|
language |
optional |
Set language code for desired locale, which will either be the empty string or a lowercase ISO 639 code. In the absence of this argument, the Accept-Language header will be used in the retrieval of an acceptible locale.
|
country |
optional |
Set the country/region code for desired locale, which will either be the
empty string or an uppercase ISO 3166 2-letter code.
|
variant |
optional |
Set the variant code for desired locale.
|