FaceletUI.display-label=Facelet Core FaceletUI.description=The tags in this library add templating component.display-label=component component.description=Adds a new UIComponent into the view's component tree. The new component will be the parent of the tag's component children. Text outside the tag is removed before view rendering similar to composition. composition.display-label=composition composition.description=

Inserts a composite component that ignores content around it:

\

This text will be removed
\ <ui:composition>
\ #{el.text}
\ <h:inputText  value="\#{some.value}"/>
\ </ui:composition>
\ This text will be removed

debug.display-label=debug debug.description=Saves the component tree and EL variables in a view. Accessible by hitting the hotkey (CTRL-SHIFT-D by default). decorate.display-label=decorate decorate.description=

Inserts a composite component that keeps the content around it:

\

This text will NOT be removed
\ <ui:composition>
\ #{el.text}
\ <h:inputText  value="\#{some.value}"/>
\ </ui:composition>
\ This text will NOT be removed

define.display-label=define define.description=Defines a template area that can be used instances using insert. fragment.display-label=fragment fragment.description=Adds a new UIComponent into the view's component tree. The new component will be the parent of the tag's component children. Text outside the tag is kept, similar to decorate. include.display-label=include include.description=Includes another facelet. insert.display-label=insert insert.description=Insert a named template area created using the define tag. param.display-label=param param.description=Declares a new EL variable on the facelet page. remove.display-label=remove remove.description=Removes its content from the rendered view. repeat.display-label=repeat repeat.description=Repeatedly renders its content by iterating through the List returned from the value attribute. Intended as a JSF-safe replacement for c:forEach. binding.description=A method binding of the form of the form \#{bean.binding} where 'binding' has the signature UIComponent binding(), that returns the component instance to use. If not present, Facelets will automatically instantiate one. define_name.description=The name of a template area. This name is referenced in instance documents using the insert tag hotkey.description=The key in combination with CTRL-SHIFT to use to launch the debug viewer id.description=Assign a unique idea to generated component. If not present, Facelets will automatically generate one. insert_name.description=The name of a template area to insert (defined in the template using the define tag). If not specified, the entire template will be inserted. param_name.description=The name of the new EL variable to declare param_value.description=The literal or EL value to assign to the new variable repeat_value.description=The EL expression used to derive the list of items to repeat over repeat_var.description=The name of the EL variable to use as the iterator repeat_varStatus.description=The name of the exported request scoped variable for the status of the iteration. repeat_offset.description=The offset from the beginning of the collection from which to start the iteration. repeat_size.description=Starting from first, the iteration will process every other by step value. repeat_step.description=The name of the exported request scoped variable for the status of the iteration. src.description=The path, absolute or relative to the original request, to another Facelet to include. May be EL. e.g. 'headerPage.xhtml' template.description=A uri that points to the template to use. e.g. /WEB-INF/templates/mytemplate.xhtml name.description=The name of the component rendered.description=Flag indicating whether or not the component should be rendered