Replaces text in JSP, e.g.
  <html><body>
    Hello!
  </body></html>

with an internationalized JSP custom tag, e.g.
  <html><body>
    <bean:message key="HelloKey"/>
  </body></html>

This built-in template is editable. Along with expressions allowed in a JSP context, you can also use the predefined variables that will be then expanded into the corresponding values.
Predefined variables take the following values:
${PROPERTY_KEY}   Property key name which is specified in the corresponding properties file.
${PROPERTY_VALUE}   Property value which is specified in the corresponding properties file. This is an original JSP text selection value.