Use the Localizer Class
You can use the Localizer object from your custom code or from a JSP file for a new skin.
cim1265
You can use the Localizer object from your custom code or from a JSP file for a new skin.
To localize a new skin
- Add the localized strings to the IMSResources bundles provided withCA Identity Managerand to any custom bundles you have. Assign each localized string to a unique property ID, for example:skin.header.companyName=My Company
- Use the Localizer class to extract a localized string. The string is retrieved from the resource bundle for the locale associated with the Localizer object. For example:<%@ page import="com.netegrity.ims.util.*"%><% Localizer l10n = Localizer.getInstance();%><b><%=l10n.getLocalizedString("skin.header.companyName")%></b>