diff --git a/impl/pom.xml b/impl/pom.xml index 7d30c58787..38b0b67d98 100644 --- a/impl/pom.xml +++ b/impl/pom.xml @@ -46,7 +46,7 @@ - + jakarta.servlet @@ -208,7 +208,7 @@ **/LogStrings*.properties - + src/main/resources true @@ -298,7 +298,7 @@ org.glassfish.jakarta.faces ${project.version} - Mojarra JSF Implementation ${project.version} + Mojarra Faces Implementation ${project.version} Eclipse Faces Implementation (jakarta.faces/3.0) ${project.version} Jakarta Server Faces diff --git a/impl/src/main/java/com/sun/faces/application/annotation/RuntimeAnnotationHandler.java b/impl/src/main/java/com/sun/faces/application/annotation/RuntimeAnnotationHandler.java index f4fe0648a4..7e55b7c272 100644 --- a/impl/src/main/java/com/sun/faces/application/annotation/RuntimeAnnotationHandler.java +++ b/impl/src/main/java/com/sun/faces/application/annotation/RuntimeAnnotationHandler.java @@ -26,7 +26,7 @@ interface RuntimeAnnotationHandler { /** *

- * Apply the {@link java.lang.annotation.Annotation}(s). The act of doing so should affect the JSF runtime in some + * Apply the {@link java.lang.annotation.Annotation}(s). The act of doing so should affect the Faces runtime in some * fashion (see the spec for the specific annotation types). *

* diff --git a/impl/src/main/java/com/sun/faces/config/ConfigManager.java b/impl/src/main/java/com/sun/faces/config/ConfigManager.java index 5f5da589eb..aa4ec521cf 100644 --- a/impl/src/main/java/com/sun/faces/config/ConfigManager.java +++ b/impl/src/main/java/com/sun/faces/config/ConfigManager.java @@ -102,7 +102,7 @@ /** *

- * This class manages the initialization of each web application that uses JSF. + * This class manages the initialization of each web application that uses Faces. *

*/ public class ConfigManager { @@ -210,7 +210,7 @@ public static void removeInstance(ServletContext servletContext) { /** *

- * This method bootstraps JSF based on the parsed configuration resources. + * This method bootstraps Faces based on the parsed configuration resources. *

* * @param servletContext the ServletContext for the application that requires initialization diff --git a/impl/src/main/java/com/sun/faces/context/AjaxExceptionHandlerImpl.java b/impl/src/main/java/com/sun/faces/context/AjaxExceptionHandlerImpl.java index 16ea960856..21ac29bea9 100644 --- a/impl/src/main/java/com/sun/faces/context/AjaxExceptionHandlerImpl.java +++ b/impl/src/main/java/com/sun/faces/context/AjaxExceptionHandlerImpl.java @@ -44,7 +44,7 @@ /** *

- * A specialized implementation of {@link ExceptionHandler} for JSF 2.0 that handles exceptions by writing error + * A specialized implementation of {@link ExceptionHandler} for Faces that handles exceptions by writing error * information to the partial response. *

* diff --git a/impl/src/main/java/com/sun/faces/context/ExceptionHandlerImpl.java b/impl/src/main/java/com/sun/faces/context/ExceptionHandlerImpl.java index 6b0f9a0007..46b8edc3ad 100644 --- a/impl/src/main/java/com/sun/faces/context/ExceptionHandlerImpl.java +++ b/impl/src/main/java/com/sun/faces/context/ExceptionHandlerImpl.java @@ -40,7 +40,7 @@ /** *

- * The default implementation of {@link ExceptionHandler} for JSF 2.0. + * The default implementation of {@link ExceptionHandler} for Faces. *

* *

diff --git a/impl/src/main/java/com/sun/faces/context/ExternalContextImpl.java b/impl/src/main/java/com/sun/faces/context/ExternalContextImpl.java index fe51211e62..3e92bd35a9 100644 --- a/impl/src/main/java/com/sun/faces/context/ExternalContextImpl.java +++ b/impl/src/main/java/com/sun/faces/context/ExternalContextImpl.java @@ -122,7 +122,7 @@ public ExternalContextImpl(ServletContext sc, ServletRequest request, ServletRes boolean enabled = ContextParamUtils.getValue(servletContext, SendPoweredByHeader, Boolean.class); if (enabled) { - ((HttpServletResponse) response).addHeader("X-Powered-By", "JSF/2.3"); + ((HttpServletResponse) response).addHeader("X-Powered-By", "Faces/3.0"); } distributable = ContextParamUtils.getValue(servletContext, ContextParam.EnableDistributable, Boolean.class); diff --git a/impl/src/main/java/com/sun/faces/context/flash/FlashELResolver.java b/impl/src/main/java/com/sun/faces/context/flash/FlashELResolver.java index f8e747aba1..e671711852 100644 --- a/impl/src/main/java/com/sun/faces/context/flash/FlashELResolver.java +++ b/impl/src/main/java/com/sun/faces/context/flash/FlashELResolver.java @@ -52,7 +52,7 @@ *

    *

    *

    - * Consider three JSF views: viewA, viewB, and viewC. The user first views viewA, then clicks a button and is shown + * Consider three Faces views: viewA, viewB, and viewC. The user first views viewA, then clicks a button and is shown * viewB, where she clicks a button and is shown viewC. If values are stored into the flash during the rendering or * postback phases of viewA, they are available to during the rendering phase of viewB, but are not available during the * rendering or postback phases of viewC. In other words, values stored into the flash on "this" request are accessible @@ -67,7 +67,7 @@ *

    *

  • *

    - * Using an EL Expression, such as using #{flash.foo} as the value of an attribute in a JSP page. + * Using an Expression Language Expression, such as using #{flash.foo} as the value of an attribute in a Jakarta Server Pages page. *

    *
  • *

    diff --git a/impl/src/main/java/com/sun/faces/el/ChainTypeCompositeELResolver.java b/impl/src/main/java/com/sun/faces/el/ChainTypeCompositeELResolver.java index dfb63e0fd9..a2edc0d022 100644 --- a/impl/src/main/java/com/sun/faces/el/ChainTypeCompositeELResolver.java +++ b/impl/src/main/java/com/sun/faces/el/ChainTypeCompositeELResolver.java @@ -28,7 +28,7 @@ import jakarta.faces.context.FacesContext; /** - * Maintains an ordered composite list of child ELResolver for JSF. + * Maintains an ordered composite list of child ELResolver for Faces. * */ public final class ChainTypeCompositeELResolver extends FacesCompositeELResolver { diff --git a/impl/src/main/java/com/sun/faces/el/DemuxCompositeELResolver.java b/impl/src/main/java/com/sun/faces/el/DemuxCompositeELResolver.java index 5c238051c4..8cb89c2d36 100644 --- a/impl/src/main/java/com/sun/faces/el/DemuxCompositeELResolver.java +++ b/impl/src/main/java/com/sun/faces/el/DemuxCompositeELResolver.java @@ -25,7 +25,7 @@ import jakarta.el.ELResolver; /** - * Maintains an ordered composite list of child ELResolver for JSF. + * Maintains an ordered composite list of child ELResolver for Faces. * */ public class DemuxCompositeELResolver extends FacesCompositeELResolver { diff --git a/impl/src/main/java/com/sun/faces/el/ELContextListenerImpl.java b/impl/src/main/java/com/sun/faces/el/ELContextListenerImpl.java index 077c2d5489..cec107e9b6 100644 --- a/impl/src/main/java/com/sun/faces/el/ELContextListenerImpl.java +++ b/impl/src/main/java/com/sun/faces/el/ELContextListenerImpl.java @@ -40,14 +40,14 @@ public void contextCreated(ELContextEvent ece) { return; } ELContext source = (ELContext) ece.getSource(); - // Register FacesContext with JSP + // Register FacesContext with Jakarta Server Pages source.putContext(FacesContext.class, context); ExpressionFactory exFactory = ELUtils.getDefaultExpressionFactory(context); if (null != exFactory) { source.putContext(ExpressionFactory.class, exFactory); } - // dispatch the event to any JSF applications interested in + // dispatch the event to any Faces applications interested in // the event. ELContextListener[] listeners = context.getApplication().getELContextListeners(); if (listeners == null) { diff --git a/impl/src/main/java/com/sun/faces/el/FacesCompositeELResolver.java b/impl/src/main/java/com/sun/faces/el/FacesCompositeELResolver.java index e64f67bd38..e20d9df3cb 100644 --- a/impl/src/main/java/com/sun/faces/el/FacesCompositeELResolver.java +++ b/impl/src/main/java/com/sun/faces/el/FacesCompositeELResolver.java @@ -20,18 +20,18 @@ import jakarta.el.ELResolver; /** - * Maintains an ordered composite list of child ELResolver for JSF. + * Maintains an ordered composite list of child ELResolver for Faces. * */ public abstract class FacesCompositeELResolver extends CompositeELResolver { /** *

    - * JSP indicates this CompositeELResolver instance is the JSP chain, specified in section 5.6.1 of the spec. + * JSP indicates this CompositeELResolver instance is the Jakarta Server Pages chain, specified in section 5.6.1 of the spec. *

    * *

    - * Faces indicates this CompositeELResolver instance is the JSF chain, specified in section 5.6.2 of the spec. + * Faces indicates this CompositeELResolver instance is the Faces chain, specified in section 5.6.2 of the spec. *

    */ public enum ELResolverChainType { diff --git a/impl/src/main/java/com/sun/faces/ext/component/WholeBeanValidator.java b/impl/src/main/java/com/sun/faces/ext/component/WholeBeanValidator.java index 5603ae7bbc..b12978176d 100644 --- a/impl/src/main/java/com/sun/faces/ext/component/WholeBeanValidator.java +++ b/impl/src/main/java/com/sun/faces/ext/component/WholeBeanValidator.java @@ -95,7 +95,7 @@ public void validate(FacesContext context, UIValidateWholeBean component, Object copyBeanAndPopulateWithCandidateValues(context, wholeBeanVE, wholeBean, copierType, validationCandidate), component.getValidationGroupsArray(), wholeBeanVE); - // If there are any violations, transform them into a JSF validator exception + // If there are any violations, transform them into a Faces validator exception if (violations != null && !violations.isEmpty()) { ValidatorException toThrow; diff --git a/impl/src/main/java/com/sun/faces/facelets/tag/jsf/core/CoreLibrary.java b/impl/src/main/java/com/sun/faces/facelets/tag/jsf/core/CoreLibrary.java index 9953853338..fac802739e 100644 --- a/impl/src/main/java/com/sun/faces/facelets/tag/jsf/core/CoreLibrary.java +++ b/impl/src/main/java/com/sun/faces/facelets/tag/jsf/core/CoreLibrary.java @@ -37,7 +37,7 @@ import jakarta.faces.validator.RequiredValidator; /** - * For Tag details, see JSF Core + * For Tag details, see Faces Core * taglib * documentation. * diff --git a/impl/src/main/java/com/sun/faces/facelets/tag/jstl/core/SetHandler.java b/impl/src/main/java/com/sun/faces/facelets/tag/jstl/core/SetHandler.java index e52ce7806b..8ebcb86ce2 100644 --- a/impl/src/main/java/com/sun/faces/facelets/tag/jstl/core/SetHandler.java +++ b/impl/src/main/java/com/sun/faces/facelets/tag/jstl/core/SetHandler.java @@ -102,7 +102,7 @@ public void apply(FaceletContext ctx, UIComponent parent) throws IOException { scopeStr = scope.getValue(ctx); } if (scopeStr.equals("page")) { - throw new TagException(tag, "page scope does not exist in JSF, consider using view scope instead."); + throw new TagException(tag, "page scope does not exist in Faces, consider using view scope instead."); } if (scopeStr.equals("request") || scopeStr.equals("session") || scopeStr.equals("application") || scopeStr.equals("view")) { scopeStr = scopeStr + "Scope"; diff --git a/impl/src/main/java/com/sun/faces/facelets/util/Classpath.java b/impl/src/main/java/com/sun/faces/facelets/util/Classpath.java index 62cbd7ff4c..ac2bbce3b3 100644 --- a/impl/src/main/java/com/sun/faces/facelets/util/Classpath.java +++ b/impl/src/main/java/com/sun/faces/facelets/util/Classpath.java @@ -41,7 +41,7 @@ public final class Classpath { // discard any urls that begin with rar: and sar: // or end with their counterparts - // as these should not be looked at for JSF related content. + // as these should not be looked at for Faces related content. private static final String[] PREFIXES_TO_EXCLUDE = { "rar:", "sar:" }; private static final String[] EXTENSIONS_TO_EXCLUDE = { ".rar", ".sar" }; diff --git a/impl/src/main/java/com/sun/faces/flow/FlowDiscoveryCDIExtension.java b/impl/src/main/java/com/sun/faces/flow/FlowDiscoveryCDIExtension.java index c1507a8dee..19d1c76a9a 100644 --- a/impl/src/main/java/com/sun/faces/flow/FlowDiscoveryCDIExtension.java +++ b/impl/src/main/java/com/sun/faces/flow/FlowDiscoveryCDIExtension.java @@ -49,7 +49,7 @@ * Use AfterBeanDiscovery to add a custom Context. This is necessary * because it was the only way I found that actually worked that let me * pass in the results of the scanning into something I could invoke in - * when processing the JSF PostConstructApplicationEvent. + * when processing the Faces PostConstructApplicationEvent. * * Use ProcessBean to build up a tuple for each bean annotated with * @FlowDefinition { definingClass, flow-id, defining-document-id }. A @@ -57,7 +57,6 @@ * FlowDiscoveryCDIContext. * */ - public class FlowDiscoveryCDIExtension implements Extension { // Log instance for this class diff --git a/impl/src/main/java/com/sun/faces/lifecycle/ELResolverInitPhaseListener.java b/impl/src/main/java/com/sun/faces/lifecycle/ELResolverInitPhaseListener.java index a1608054d8..3910284775 100644 --- a/impl/src/main/java/com/sun/faces/lifecycle/ELResolverInitPhaseListener.java +++ b/impl/src/main/java/com/sun/faces/lifecycle/ELResolverInitPhaseListener.java @@ -36,7 +36,7 @@ /** *

    - * This class is used to register the JSF ELResolver stack with the JSP container. + * This class is used to register the Faces ELResolver stack with the Jakarta Server Pages container. *

    * *

    diff --git a/impl/src/main/java/com/sun/faces/mgbean/BeanManager.java b/impl/src/main/java/com/sun/faces/mgbean/BeanManager.java index 7aa44d5a6f..ce8c6febf2 100644 --- a/impl/src/main/java/com/sun/faces/mgbean/BeanManager.java +++ b/impl/src/main/java/com/sun/faces/mgbean/BeanManager.java @@ -46,7 +46,7 @@ /** *

    - * Main interface for dealing with JSF managed beans + * Main interface for dealing with Faces managed beans *

    */ public class BeanManager implements SystemEventListener { diff --git a/impl/src/main/java/com/sun/faces/push/WebsocketFacesListener.java b/impl/src/main/java/com/sun/faces/push/WebsocketFacesListener.java index 239ca0355e..e61a1cb8e3 100644 --- a/impl/src/main/java/com/sun/faces/push/WebsocketFacesListener.java +++ b/impl/src/main/java/com/sun/faces/push/WebsocketFacesListener.java @@ -36,7 +36,7 @@ /** *

    - * This JSF listener for {@link UIViewRoot} ensures that the necessary JavaScript code to open or close the + * This Faces listener for {@link UIViewRoot} ensures that the necessary JavaScript code to open or close the * WebSocket is properly rendered depending on rendered and connected attributes. * * @author Bauke Scholtz diff --git a/impl/src/main/java/com/sun/faces/renderkit/ApplicationObjectInputStream.java b/impl/src/main/java/com/sun/faces/renderkit/ApplicationObjectInputStream.java index 02ca87c7c1..0ce70cab3e 100644 --- a/impl/src/main/java/com/sun/faces/renderkit/ApplicationObjectInputStream.java +++ b/impl/src/main/java/com/sun/faces/renderkit/ApplicationObjectInputStream.java @@ -25,7 +25,7 @@ /** * An ObjectInputStream that can deserialize objects relative to the current application's class loader. In particular, - * this class works around deserialization problems when the JSF JARs are shared (i.e. the classloader has no access to + * this class works around deserialization problems when the Faces JARs are shared (i.e. the classloader has no access to * application objects). */ public class ApplicationObjectInputStream extends ObjectInputStream { diff --git a/impl/src/main/java/com/sun/faces/renderkit/ByteArrayGuard.java b/impl/src/main/java/com/sun/faces/renderkit/ByteArrayGuard.java index f44ebede2d..0ee688fbf6 100644 --- a/impl/src/main/java/com/sun/faces/renderkit/ByteArrayGuard.java +++ b/impl/src/main/java/com/sun/faces/renderkit/ByteArrayGuard.java @@ -54,7 +54,7 @@ *

    * *

    - * Original author Inderjeet Singh, J2EE Blue Prints Team. Modified to suit JSF needs. + * Original author Inderjeet Singh, J2EE Blue Prints Team. Modified to suit Faces needs. *

    */ public final class ByteArrayGuard { @@ -169,7 +169,7 @@ public byte[] decrypt(FacesContext facesContext, byte[] bytes) { } catch (NoSuchAlgorithmException | NoSuchPaddingException | InvalidKeyException | InvalidAlgorithmParameterException | IllegalStateException | IllegalBlockSizeException | BadPaddingException e) { System.err.println("ERROR: Decrypting:" + e.getCause()); - return null; // Signal to JSF runtime + return null; // Signal to Faces runtime } } diff --git a/impl/src/main/java/com/sun/faces/renderkit/ClientSideStateHelper.java b/impl/src/main/java/com/sun/faces/renderkit/ClientSideStateHelper.java index 39c6f8aaa5..5294e2636e 100644 --- a/impl/src/main/java/com/sun/faces/renderkit/ClientSideStateHelper.java +++ b/impl/src/main/java/com/sun/faces/renderkit/ClientSideStateHelper.java @@ -272,7 +272,7 @@ protected Object doGetState(FacesContext ctx, String stateString) { throw new FacesException(cnfe); } catch (InvalidClassException ice) { /* - * Thrown when the JSF runtime is trying to deserialize a client-side state that has been saved with a previous version + * Thrown when the Faces runtime is trying to deserialize a client-side state that has been saved with a previous version * of Mojarra. Instead of blowing up, force a ViewExpiredException. */ return null; diff --git a/impl/src/main/java/com/sun/faces/renderkit/RenderKitUtils.java b/impl/src/main/java/com/sun/faces/renderkit/RenderKitUtils.java index 095f64f799..99af5d009d 100644 --- a/impl/src/main/java/com/sun/faces/renderkit/RenderKitUtils.java +++ b/impl/src/main/java/com/sun/faces/renderkit/RenderKitUtils.java @@ -129,7 +129,7 @@ public class RenderKitUtils { * IMPLEMENTATION NOTE: This must be kept in sync with the array in UIComponentBase$AttributesMap and * HtmlComponentGenerator. * - * Hopefully JSF 2.0 will remove the need for this. + * Hopefully Faces X will remove the need for this. */ private static final String OPTIMIZED_PACKAGE = "jakarta.faces.component."; @@ -137,7 +137,7 @@ public class RenderKitUtils { * IMPLEMENTATION NOTE: This must be kept in sync with the Key in UIComponentBase$AttributesMap and * HtmlComponentGenerator. * - * Hopefully JSF 2.0 will remove the need for this. + * Hopefully Faces X will remove the need for this. */ private static final String ATTRIBUTES_THAT_ARE_SET_KEY = UIComponentBase.class.getName() + ".attributesThatAreSet"; diff --git a/impl/src/main/java/com/sun/faces/spi/ConfigurationResourceProvider.java b/impl/src/main/java/com/sun/faces/spi/ConfigurationResourceProvider.java index 0fc76149f9..f0d5be065e 100644 --- a/impl/src/main/java/com/sun/faces/spi/ConfigurationResourceProvider.java +++ b/impl/src/main/java/com/sun/faces/spi/ConfigurationResourceProvider.java @@ -40,7 +40,7 @@ public interface ConfigurationResourceProvider { Collection getResources(ServletContext context); /** - * Parameter to force the XML validation of the JSF configuration files returned by getResources. + * Parameter to force the XML validation of the Faces configuration files returned by getResources. * * @param uri the URI for which Mojarra asks if validation is needed. Should always be one as returned by getResources * @param globalValidateXml the global (application level) value of the validateXml parameter diff --git a/impl/src/main/java/com/sun/faces/spi/HighAvailabilityEnabler.java b/impl/src/main/java/com/sun/faces/spi/HighAvailabilityEnabler.java index 37fd516025..28c278c6f9 100644 --- a/impl/src/main/java/com/sun/faces/spi/HighAvailabilityEnabler.java +++ b/impl/src/main/java/com/sun/faces/spi/HighAvailabilityEnabler.java @@ -19,7 +19,7 @@ import jakarta.servlet.ServletContext; /** - * This interface is for JSF to check if the app server has HA enabled. + * This interface is for Faces to check if the app server has HA enabled. * * @author sheetalv */ diff --git a/impl/src/main/java/com/sun/faces/spi/InjectionProvider.java b/impl/src/main/java/com/sun/faces/spi/InjectionProvider.java index 48eb5bf66f..1be2a982d8 100644 --- a/impl/src/main/java/com/sun/faces/spi/InjectionProvider.java +++ b/impl/src/main/java/com/sun/faces/spi/InjectionProvider.java @@ -18,8 +18,8 @@ /** *

    - * This interface defines an integration point for Java EE vendors. Each vendor will need to provide an implementation - * of this interface which will provide the JSF implementation the necessary hooks to perform resource injection. + * This interface defines an integration point for Jakarta EE vendors. Each vendor will need to provide an implementation + * of this interface which will provide the Faces implementation the necessary hooks to perform resource injection. *

    * *

    diff --git a/impl/src/main/java/com/sun/faces/taglib/FacesValidator.java b/impl/src/main/java/com/sun/faces/taglib/FacesValidator.java index 550e5f7cb7..b86ea2cb3f 100644 --- a/impl/src/main/java/com/sun/faces/taglib/FacesValidator.java +++ b/impl/src/main/java/com/sun/faces/taglib/FacesValidator.java @@ -61,105 +61,105 @@ public abstract class FacesValidator extends TagLibraryValidator { private static final String JSTL_NEW_CORE_URI = "http://java.sun.com/jsp/jstl/core"; - // Prefix for JSF HTML tags + // Prefix for Faces HTML tags protected String JSF_HTML_PRE = null; public String getJSF_HTML_PRE() { return JSF_HTML_PRE; } - // Prefix for JSF CORE tags + // Prefix for Faces CORE tags protected String JSF_CORE_PRE = null; public String getJSF_CORE_PRE() { return JSF_CORE_PRE; } - // Prefix for JSTL CORE tags + // Prefix for Jakarta Standard Tag CORE tags protected String JSTL_CORE_PRE = null; public String getJSTL_CORE_PRE() { return JSTL_CORE_PRE; } - // QName for JSTL conditional tag + // QName for Jakarta Standard Tag conditional tag protected String JSTL_IF_QN = ":if"; public String getJSTL_IF_QN() { return JSTL_IF_QN; } - // Local Name for JSTL conditional tag + // Local Name for Jakarta Standard Tag conditional tag protected String JSTL_IF_LN = "if"; public String getJSTL_IF_LN() { return JSTL_IF_LN; } - // QName for JSTL conditional tag + // QName for Jakarta Standard Tag conditional tag protected String JSTL_CHOOSE_QN = ":choose"; public String getJSTL_CHOOSE_QN() { return JSTL_CHOOSE_QN; } - // Local Name for JSTL conditional tag + // Local Name for Jakarta Standard Tag conditional tag protected String JSTL_CHOOSE_LN = "choose"; public String getJSTL_CHOOSE_LN() { return JSTL_CHOOSE_LN; } - // QName for JSTL iterator tag + // QName for Jakarta Standard Tag iterator tag protected String JSTL_FOREACH_QN = ":forEach"; public String getJSTL_FOREACH_QN() { return JSTL_FOREACH_QN; } - // Local Name for JSTL iterator tag + // Local Name for Jakarta Standard Tag iterator tag protected String JSTL_FOREACH_LN = "forEach"; public String getJSTL_FOREACH_LN() { return JSTL_FOREACH_LN; } - // QName for JSTL iterator tag + // QName for Jakarta Standard Tag iterator tag protected String JSTL_FORTOKENS_QN = ":forTokens"; public String getJSTL_FORTOKENS_QN() { return JSTL_FORTOKENS_QN; } - // Local Name for JSTL iterator tag + // Local Name for Jakarta Standard Tag iterator tag protected String JSTL_FORTOKENS_LN = "forTokens"; public String getJSTL_FORTOKENS_LN() { return JSTL_FORTOKENS_LN; } - // QName for JSF Form tag + // QName for Faces Form tag protected String JSF_FORM_QN = ":form"; public String getJSF_FORM_QN() { return JSF_FORM_QN; } - // Local Name for JSF Form tag + // Local Name for Faces Form tag protected String JSF_FORM_LN = "form"; public String getJSF_FORM_LN() { return JSF_FORM_LN; } - // QName for JSF subview tag + // QName for Faces subview tag protected String JSF_SUBVIEW_QN = ":subview"; public String getJSF_SUBVIEW_QN() { return JSF_SUBVIEW_QN; } - // Local Name for JSF subview tag + // Local Name for Faces subview tag protected String JSF_SUBVIEW_LN = "subview"; public String getJSF_SUBVIEW_LN() { @@ -198,7 +198,7 @@ public void release() { // Validation entry point /** - * Validate a JSP page. Return an an array of Validation Messages if a validation failure occurs. Return null on + * Validate a Jakarta Server Pages page. Return an an array of Validation Messages if a validation failure occurs. Return null on * success. * * @param prefix Value of directive prefix argument. @@ -211,7 +211,7 @@ public synchronized ValidationMessage[] validate(String prefix, String uri, Page ValidationMessage[] result = null; try { -// get a handler + // get a handler DefaultHandler h = getSAXHandler(); // if the subclass doesn't want validation to ocurr @@ -227,11 +227,11 @@ public synchronized ValidationMessage[] validate(String prefix, String uri, Page SAXParser p = f.newSAXParser(); p.parse(page.getInputStream(), h); -//on validation failure generate error message + // on validation failure generate error message if (failed) { result = vmFromString(getFailureMessage(prefix, uri)); } else { -//success + // success result = null; } diff --git a/impl/src/main/java/com/sun/faces/taglib/jsf_core/CoreValidator.java b/impl/src/main/java/com/sun/faces/taglib/jsf_core/CoreValidator.java index 98431299c1..148b92d93d 100644 --- a/impl/src/main/java/com/sun/faces/taglib/jsf_core/CoreValidator.java +++ b/impl/src/main/java/com/sun/faces/taglib/jsf_core/CoreValidator.java @@ -24,8 +24,8 @@ /** *

    - * A TagLibrary Validator class to allow a TLD to mandate that JSF tag must have an id if it is a child or sibling of a - * JSTL conditional or iteration tag + * A TagLibrary Validator class to allow a TLD to mandate that Faces tag must have an id if it is a child or sibling of a + * Jakarta Standard Tag conditional or iteration tag *

    * * @author Justyna Horwat @@ -136,7 +136,7 @@ protected String getFailureMessage(String prefix, String uri) { private class CoreValidatorHandler extends DefaultHandler { /** - * Parse the starting element. If it is a specific JSTL tag make sure that the nested JSF tags have IDs. + * Parse the starting element. If it is a specific Jakarta Standard Tag tag make sure that the nested Faces tags have IDs. * * @param ns Element name space. * @param ln Element local name. diff --git a/impl/src/main/java/com/sun/faces/taglib/jsf_core/IdTagParserImpl.java b/impl/src/main/java/com/sun/faces/taglib/jsf_core/IdTagParserImpl.java index 66df995616..4f55d7ffae 100644 --- a/impl/src/main/java/com/sun/faces/taglib/jsf_core/IdTagParserImpl.java +++ b/impl/src/main/java/com/sun/faces/taglib/jsf_core/IdTagParserImpl.java @@ -39,7 +39,7 @@ public class IdTagParserImpl implements TagParser { // ********************************************************************* // Validation and configuration state (protected) - private boolean siblingSatisfied; // is there a JSF sibling? + private boolean siblingSatisfied; // is there a Faces sibling? private int requiresIdCount; // nested count private StringBuffer requiresIdList; // list of failing tags private boolean failed; diff --git a/impl/src/main/java/com/sun/faces/taglib/jsf_core/ViewTag.java b/impl/src/main/java/com/sun/faces/taglib/jsf_core/ViewTag.java index f801d9b777..24830e5afa 100644 --- a/impl/src/main/java/com/sun/faces/taglib/jsf_core/ViewTag.java +++ b/impl/src/main/java/com/sun/faces/taglib/jsf_core/ViewTag.java @@ -51,12 +51,11 @@ import jakarta.servlet.jsp.tagext.BodyTag; /** - * All JSF component tags must be nested within a f:view tag. This tag corresponds to the root of the UIComponent tree. + * All Faces component tags must be nested within a f:view tag. This tag corresponds to the root of the UIComponent tree. * It does not have a Renderer. It exists mainly to provide a guarantee that all faces components reside inside of this * tag. * */ - public class ViewTag extends UIComponentELTag { // diff --git a/impl/src/main/java/com/sun/faces/util/BeanValidation.java b/impl/src/main/java/com/sun/faces/util/BeanValidation.java index d84fea6606..65d89af477 100644 --- a/impl/src/main/java/com/sun/faces/util/BeanValidation.java +++ b/impl/src/main/java/com/sun/faces/util/BeanValidation.java @@ -30,7 +30,7 @@ import jakarta.validation.ValidatorFactory; /** - * Various utility methods for use with the BeanValidation API in JSF. + * Various utility methods for use with the Jakarta Bean Validation API in Jakarta Faces. * */ public class BeanValidation { diff --git a/impl/src/main/java/com/sun/faces/util/ByteArrayGuardAESCTR.java b/impl/src/main/java/com/sun/faces/util/ByteArrayGuardAESCTR.java index 6f7a679fcc..b58655c529 100644 --- a/impl/src/main/java/com/sun/faces/util/ByteArrayGuardAESCTR.java +++ b/impl/src/main/java/com/sun/faces/util/ByteArrayGuardAESCTR.java @@ -50,7 +50,7 @@ *

    * *

    - * Original author Inderjeet Singh, J2EE Blue Prints Team. Modified to suit JSF needs. + * Original author Inderjeet Singh, J2EE Blue Prints Team. Modified to suit Faces needs. *

    */ public final class ByteArrayGuardAESCTR { diff --git a/impl/src/main/java/com/sun/faces/util/Util.java b/impl/src/main/java/com/sun/faces/util/Util.java index da5721be19..75efdcb855 100644 --- a/impl/src/main/java/com/sun/faces/util/Util.java +++ b/impl/src/main/java/com/sun/faces/util/Util.java @@ -64,9 +64,6 @@ import javax.xml.xpath.XPathExpressionException; import javax.xml.xpath.XPathFactory; -import org.xml.sax.InputSource; -import org.xml.sax.SAXException; - import com.sun.faces.RIConstants; import com.sun.faces.application.ApplicationAssociate; import com.sun.faces.config.WebConfiguration; @@ -195,7 +192,7 @@ public static String generateCreatedBy(FacesContext facesContext) { /** *

    - * Factory method for creating the varius JSF listener instances that may be referenced by type or + * Factory method for creating the various Faces listener instances that may be referenced by type or * binding. *

    *

    @@ -1074,7 +1071,7 @@ private static String getMappingForRequest(ExternalContext externalContext, Stri * Not to be confused with {@link Util#isExactMapped(String)}, which checks if a string representing a mapping, not a * resource, is an exact mapping. *

    - * This should be replaced by the Servlet 4 mapping API when/if that becomes available and JSF/Mojarra can depend on it. + * This should be replaced by the Servlet 4 mapping API when/if that becomes available and Faces/Mojarra can depend on it. * * @param viewId the view id to test * @return true if the FacesServlet is exact mapped to the given viewId, false otherwise @@ -1089,7 +1086,7 @@ public static boolean isViewIdExactMappedToFacesServlet(String viewId) { * Not to be confused with {@link Util#isExactMapped(String)}, which checks if a string representing a mapping, not a * resource, is an exact mapping. *

    - * This should be replaced by the Servlet 4 mapping API when/if that becomes available and JSF/Mojarra can depend on it. + * This should be replaced by the Servlet 4 mapping API when/if that becomes available and Faces/Mojarra can depend on it. * * @param externalContext the external context for this request * @param resource the resource to test @@ -1105,7 +1102,7 @@ public static boolean isResourceExactMappedToFacesServlet(ExternalContext extern } public static String getFirstWildCardMappingToFacesServlet(ExternalContext externalContext) { - // If needed, cache this after initialization of JSF + // If needed, cache this after initialization of Faces Object context = externalContext.getContext(); if (context instanceof ServletContext) { return getFacesServletMappings((ServletContext) context).stream().filter(mapping -> mapping.contains("*")).findFirst().orElse(null); diff --git a/impl/src/main/java/jakarta/faces/validator/BeanValidator.java b/impl/src/main/java/jakarta/faces/validator/BeanValidator.java index 36e15ca70c..ba031f2a44 100644 --- a/impl/src/main/java/jakarta/faces/validator/BeanValidator.java +++ b/impl/src/main/java/jakarta/faces/validator/BeanValidator.java @@ -210,7 +210,7 @@ public String getValidationGroups() { *

    * Let valueExpression be the return from calling {@link UIComponent#getValueExpression} on the argument * component, passing the literal string “value” (without the quotes) as an argument. If this - * application is running in an environment with a Unified EL Implementation for Java EE6 or later, obtain the + * application is running in an environment with Jakarta Expression Language, obtain the * ValueReference from valueExpression and let valueBaseClase be the return from calling * ValueReference.getBase() and valueProperty be the return from calling * ValueReference.getProperty(). If an earlier version of Jakarta Expression Language is present, use the diff --git a/impl/src/main/java/jakarta/faces/view/ViewScoped.java b/impl/src/main/java/jakarta/faces/view/ViewScoped.java index 7f50ca4faf..28bd5d4281 100644 --- a/impl/src/main/java/jakarta/faces/view/ViewScoped.java +++ b/impl/src/main/java/jakarta/faces/view/ViewScoped.java @@ -31,7 +31,7 @@ * jakarta.inject.Named} is found on a class, the runtime must place the bean in a CDI scope such that it remains active * as long as {@link jakarta.faces.application.NavigationHandler#handleNavigation} does not cause a navigation to a view * with a viewId that is different than the viewId of the current view. Any injections and notifications required by CDI - * and the Java EE platform must occur as usual at the expected time. + * and the Jakarta EE platform must occur as usual at the expected time. *

    * *
    diff --git a/impl/src/main/javadoc/jakarta/faces/component/search/package.html b/impl/src/main/javadoc/jakarta/faces/component/search/package.html index 538e4a281b..60531505f7 100644 --- a/impl/src/main/javadoc/jakarta/faces/component/search/package.html +++ b/impl/src/main/javadoc/jakarta/faces/component/search/package.html @@ -114,10 +114,9 @@

    Extending the Capabilities of the Component Search Facility

    Creation of the SearchExpressionContext

    -

    As with other factories in JSF, the FactoryFinder is - used by the system to create instances of - the SearchExpressionContext which holds state during the - operation of this API.

    +

    As with other factories in Faces, the FactoryFinder is used by the system to create instances of + the SearchExpressionContext which holds state during the operation of this API. +

    Adding new SearchKewordResolvers

    diff --git a/impl/src/main/resources/META-INF/html_basic.tld b/impl/src/main/resources/META-INF/html_basic.tld index 2eee237977..a9febee27f 100644 --- a/impl/src/main/resources/META-INF/html_basic.tld +++ b/impl/src/main/resources/META-INF/html_basic.tld @@ -874,7 +874,7 @@ return (a()==false) ? false : b();

    where #USER_FUNCTION# is the user's JavaScript and - #JSF_FUNCTION# is the JavaScript rendered by JSF. The choice + #JSF_FUNCTION# is the JavaScript rendered by Faces. The choice function should operate such that if the user's JavaScript returns true, then the rendered JavaScript will also execute.

    diff --git a/impl/src/main/resources/META-INF/resources/jakarta.faces/jsf-uncompressed.js b/impl/src/main/resources/META-INF/resources/jakarta.faces/jsf-uncompressed.js index c94c5db8da..f6954fa537 100644 --- a/impl/src/main/resources/META-INF/resources/jakarta.faces/jsf-uncompressed.js +++ b/impl/src/main/resources/META-INF/resources/jakarta.faces/jsf-uncompressed.js @@ -18,9 +18,9 @@ */ /** - @project JSF JavaScript Library + @project Faces JavaScript Library @version 2.2 - @description This is the standard implementation of the JSF JavaScript Library. + @description This is the standard implementation of the Faces JavaScript Library. */ // Detect if this is already loaded, and if loaded, if it's a higher version @@ -2748,9 +2748,9 @@ if (!((jsf && jsf.specversion && jsf.specversion >= 23000 ) && * unique within this view, but must not be included in the * view state. This requirement is simply to satisfy XML * correctness in parity with what is done in the - * corresponding non-partial JSF view. Locate and update + * corresponding non-partial Faces view. Locate and update * the jakarta.faces.ViewState value for all - * JSF forms covered in the render target + * Faces forms covered in the render target * list whose ID starts with the same * <VIEW_ROOT_CONTAINER_CLIENT_ID> value. @@ -2775,9 +2775,9 @@ if (!((jsf && jsf.specversion && jsf.specversion >= 23000 ) && * unique within this view, but must not be included in the * view state. This requirement is simply to satisfy XML * correctness in parity with what is done in the - * corresponding non-partial JSF view. Locate and update + * corresponding non-partial Faces view. Locate and update * the jakarta.faces.ClientWindow value for all - * JSF forms covered in the render target + * Faces forms covered in the render target * list whose ID starts with the same * <VIEW_ROOT_CONTAINER_CLIENT_ID> value. diff --git a/impl/src/main/resources/com/sun/faces/LogStrings.properties b/impl/src/main/resources/com/sun/faces/LogStrings.properties index 0cfae30c76..1072e74154 100644 --- a/impl/src/main/resources/com/sun/faces/LogStrings.properties +++ b/impl/src/main/resources/com/sun/faces/LogStrings.properties @@ -43,8 +43,8 @@ jsf.config.webconfig.enventry.clientencrypt=JSF1024: Client state encryption: DI jsf.config.webconfig.param.deprecated=JSF1025: [{0}] Context initialization parameter ''{1}'' is deprecated. The option will still be configured, but please use ''{2}'' in the future. jsf.config.webconfig.param.deprecated.no_replacement=JSF1025: [{0}] Context initialization parameter ''{1}'' is deprecated and will have no effect. jsf.config.webconfig.option.notconfigured=JSF1026: [{0}] Configuration option ''{1}'' not configured -jsf.lifecycle.initphaselistener.resolvers_not_registered=JSF1027: [{0}] The ELResolvers for JSF were not registered with the JSP container. -jsf.lifecycle.initphaselistener.resolvers_registered=JSF1028: [{0}] The ELResolvers for JSF successfully registered with the JSP container. +jsf.lifecycle.initphaselistener.resolvers_not_registered=JSF1027: [{0}] The ELResolvers for Faces were not registered with the Jakarta Server Pages container. +jsf.lifecycle.initphaselistener.resolvers_registered=JSF1028: [{0}] The ELResolvers for Faces successfully registered with the Jakarta Server Pages container. jsf.spi.injection.provider_not_implemented=JSF1029: The specified InjectionProvider implementation ''{0}'' does not implement the InjectionProvider interface. jsf.spi.injection.provider_not_found=JSF1030: The specified InjectionProvider implementation ''{0}'' cannot be loaded. jsf.spi.injection.provider_cannot_instantiate=JSF1031: The specified InjectionProvider ''{0}'' cannot be instantiated. @@ -92,7 +92,7 @@ jsf.application.resource.unable_to_create_compression_directory=JSF1065: Unable jsf.application.publish.event.base_type_mismatch=JSF1066: Source object {0} is not an instance of provided base type {1}. Event search will not occur. jsf.config.web_resource_not_found=JSF1067: Resource {0} specified by the {1} configuration option cannot be found. The resource will be ignored. jsf.cannot_instantiate_component_error=JSF1068: Cannot instantiate component with component-type {0} -jsf.application.legacy_facelet_viewhandler_detected=JSF1069: Disabling the JSF 2.0 Facelets ViewHandler as an older FaceletViewHandler, {0}, has been explicitly configured. \ +jsf.application.legacy_facelet_viewhandler_detected=JSF1069: Disabling the Faces Facelets ViewHandler as an older FaceletViewHandler, {0}, has been explicitly configured. \ If this is not desired behavior, remove the older FaceletViewHandler and library from your application. jsf.navigation_invalid_query_string=JSF1070: Invalid query string in navigation outcome {0} # the following three messages are duplicated in jakarta.faces.LogStrings.properties diff --git a/impl/src/main/resources/com/sun/faces/LogStrings_de.properties b/impl/src/main/resources/com/sun/faces/LogStrings_de.properties index 17a123d2f5..3149d9f6ad 100644 --- a/impl/src/main/resources/com/sun/faces/LogStrings_de.properties +++ b/impl/src/main/resources/com/sun/faces/LogStrings_de.properties @@ -43,8 +43,8 @@ jsf.config.webconfig.enventry.clientencrypt=JSF1024: Clientstatusverschl\u00fcss jsf.config.webconfig.param.deprecated=JSF1025: [{0}] Kontextinitialisierungs-Parameter ''{1}'' wurde abgelehnt. Die Option wird trotzdem konfiguriert, aber bitte verwenden Sie in Zukunft ''{2}''. jsf.config.webconfig.param.deprecated.no_replacement=JSF1025: [{0}] Kontextinitialiasierungsparameter ''{1}'' wurde abgelehnt und wird nicht wirksam. jsf.config.webconfig.option.notconfigured=JSF1026: [{0}] Konfigurationsoption ''{1}'' wurde nicht konfiguriert -jsf.lifecycle.initphaselistener.resolvers_not_registered=JSF1027: [{0} Die ELResolvers f\u00fcr JSF wurden nicht im JSP-Container registriert. -jsf.lifecycle.initphaselistener.resolvers_registered=JSF1028: [{0}] Die ELResolvers f\u00fcr JSF wurden erfolgreich im JSP-Container registriert. +jsf.lifecycle.initphaselistener.resolvers_not_registered=JSF1027: [{0} Die ELResolvers f\u00fcr Faces wurden nicht im JSP-Container registriert. +jsf.lifecycle.initphaselistener.resolvers_registered=JSF1028: [{0}] Die ELResolvers f\u00fcr Faces wurden erfolgreich im JSP-Container registriert. jsf.spi.injection.provider_not_implemented=JSF1029: Die angegebene InjectionProvider-Implementierung ''{0}'' implementiert nicht die InjectionProvider-Schnittstelle. jsf.spi.injection.provider_not_found=JSF1030: Die angegebene InjectionProvider-Implementierung ''{0}'' kann nicht geladen werden. jsf.spi.injection.provider_cannot_instantiate=JSF1031: Der angegebene InjectionProvider ''{0}'' kann nicht instanziiert werden. diff --git a/impl/src/main/resources/com/sun/faces/LogStrings_es.properties b/impl/src/main/resources/com/sun/faces/LogStrings_es.properties index ea252958ed..0fbf5af701 100644 --- a/impl/src/main/resources/com/sun/faces/LogStrings_es.properties +++ b/impl/src/main/resources/com/sun/faces/LogStrings_es.properties @@ -43,8 +43,8 @@ jsf.config.webconfig.enventry.clientencrypt=JSF1024: cifrado de estado de client jsf.config.webconfig.param.deprecated=JSF1025: [{0}] el par\u00e1metro de inicializaci\u00f3n del contexto''{1}'' se ha desaprobado. La opci\u00f3n se configurar\u00e1, en lo sucesivo utilice ''{2}''. jsf.config.webconfig.param.deprecated.no_replacement=JSF1025: [{0}] el par\u00e1metro de inicializaci\u00f3n del contexto''{1}'' se ha desaprobado y no tendr\u00e1 efecto. jsf.config.webconfig.option.notconfigured=JSF1026: [{0}] opci\u00f3n de configuraci\u00f3n ''{1}'' no configurada -jsf.lifecycle.initphaselistener.resolvers_not_registered=JSF1027: [{0}] los ELResolvers para JSF no se han registrado con el contenedor JSP. -jsf.lifecycle.initphaselistener.resolvers_registered=JSF1028: [{0}] los ELResolvers para JSF se han registrado con \u00e9xito con el contenedor JSP. +jsf.lifecycle.initphaselistener.resolvers_not_registered=JSF1027: [{0}] los ELResolvers para Faces no se han registrado con el contenedor JSP. +jsf.lifecycle.initphaselistener.resolvers_registered=JSF1028: [{0}] los ELResolvers para Faces se han registrado con \u00e9xito con el contenedor JSP. jsf.spi.injection.provider_not_implemented=JSF1029: la implementaci\u00f3n especificada de InjectionProvider ''{0}'' no implementa la interfaz de InjectionProvider. jsf.spi.injection.provider_not_found=JSF1030: la implementaci\u00f3n especificada de InjectionProvider ''{0}'' no se puede cargar. jsf.spi.injection.provider_cannot_instantiate=JSF1031: no se puede crear una instancia de la implementaci\u00f3n InjectionProvider ''{0}'' especificada. @@ -92,7 +92,7 @@ jsf.application.resource.unable_to_create_compression_directory=JSF1065: no se p jsf.application.publish.event.base_type_mismatch=JSF1066: el objeto de origen {0} no es una instancia del tipo de base proporcionado {1}. No se producir\u00e1 la b\u00fasqueda de eventos. jsf.config.web_resource_not_found=JSF1067: no se encuentra el recurso {0} especificado por la opci\u00f3n de configuraci\u00f3n {1}. Se ignorar\u00e1 este recurso. jsf.cannot_instantiate_component_error=JSF1068: no se puede crear una instancia para el componente con component-type {0} -jsf.application.legacy_facelet_viewhandler_detected=JSF1069: se han desactivado FaceletsViewHandler JSF 2.0 ya que se ha configurado expl\u00edcitamente un FaceletViewHandler, {0} m\u00e1s antiguo. Este comportamiento no es el deseado, elimine de la aplicaci\u00f3n el FaceletViewHandler m\u00e1s antiguo y la biblioteca. +jsf.application.legacy_facelet_viewhandler_detected=JSF1069: se han desactivado FaceletsViewHandler Faces 2.0 ya que se ha configurado expl\u00edcitamente un FaceletViewHandler, {0} m\u00e1s antiguo. Este comportamiento no es el deseado, elimine de la aplicaci\u00f3n el FaceletViewHandler m\u00e1s antiguo y la biblioteca. jsf.navigation_invalid_query_string=JSF1070: cadena de consulta no v\u00e1lida en el resultado de navegaci\u00f3n {0} # the following three messages are duplicated in jakarta.faces.LogStrings.properties jsf.context.exception.handler.log_before=JSF1071: se ha interceptado {0} durante el procesamiento beforePhase() de {1} : UIComponent-ClientId={2}, Mensaje={3} diff --git a/impl/src/main/resources/com/sun/faces/LogStrings_fr.properties b/impl/src/main/resources/com/sun/faces/LogStrings_fr.properties index ceaf26e63e..cb00d14bab 100644 --- a/impl/src/main/resources/com/sun/faces/LogStrings_fr.properties +++ b/impl/src/main/resources/com/sun/faces/LogStrings_fr.properties @@ -43,8 +43,8 @@ jsf.config.webconfig.enventry.clientencrypt=JSF1024 : Cryptage de l\u2019\u00e9t jsf.config.webconfig.param.deprecated=JSF1025 : [{0}] le param\u00e8tre d\u2019initialisation du contexte \u00ab{1}\u00bb est d\u00e9sapprouv\u00e9. Cette option sera toujours configur\u00e9e, mais \u00e0 l\u2019avenir, utilisez \u00ab{2}\u00bb. jsf.config.webconfig.param.deprecated.no_replacement=JSF1025 : [{0}] le param\u00e8tre d\u2019initialisation du contexte \u00ab{1}\u00bb est d\u00e9sapprouv\u00e9 et n\u2019aura aucun effet. jsf.config.webconfig.option.notconfigured=JSF1026: [{0}] L\u2019option de configuration \u00ab{1}\u00bb n\u2019est pas configur\u00e9e. -jsf.lifecycle.initphaselistener.resolvers_not_registered=JSF1027 : [{0}] Les objets ELResolvers de JSF n\u2019ont pas \u00e9t\u00e9 enregistr\u00e9s avec le conteneur JSP. -jsf.lifecycle.initphaselistener.resolvers_registered=JSF1028 : [{0}] Les objets ELResolvers de JSF ont bien \u00e9t\u00e9 enregistr\u00e9s avec le conteneur JSP. +jsf.lifecycle.initphaselistener.resolvers_not_registered=JSF1027 : [{0}] Les objets ELResolvers de Faces n\u2019ont pas \u00e9t\u00e9 enregistr\u00e9s avec le conteneur JSP. +jsf.lifecycle.initphaselistener.resolvers_registered=JSF1028 : [{0}] Les objets ELResolvers de Faces ont bien \u00e9t\u00e9 enregistr\u00e9s avec le conteneur JSP. jsf.spi.injection.provider_not_implemented=JSF1029 : L\u2019impl\u00e9mentation sp\u00e9cifi\u00e9e d\u2019InjectionProvider \u00ab{0}\u00bb n\u2019impl\u00e9mente pas l\u2019interface InjectionProvider. jsf.spi.injection.provider_not_found=JSF1030 : Impossible de charger l\u2019impl\u00e9mentation sp\u00e9cifi\u00e9e d\u2019InjectionProvider \u00ab{0}\u00bb jsf.spi.injection.provider_cannot_instantiate=JSF1031 : Impossible d\u2019instancier l\u2019InjectionProvider sp\u00e9cifi\u00e9 \u00ab{0}\u00bb @@ -92,7 +92,7 @@ jsf.application.resource.unable_to_create_compression_directory=JSF1065: Impossi jsf.application.publish.event.base_type_mismatch=JSF1066 : L\u2019objet source {0} n\u2019est pas une instance du type de base fourni {1}. La recherche d\u2019\u00e9v\u00e9nements ne sera pas r\u00e9alis\u00e9e. jsf.config.web_resource_not_found=JSF1067 : La ressource {0} sp\u00e9cifi\u00e9e par l\u2019option de configuration {1} est introuvable. Cette ressource sera ignor\u00e9e. jsf.cannot_instantiate_component_error=JSF1068 : Impossible d\u2019instancier un composant dont le type est {0} -jsf.application.legacy_facelet_viewhandler_detected=JSF1069 : Le ViewHandler de Facelets JSF 2.0 a \u00e9t\u00e9 d\u00e9sactiv\u00e9 car un FaceletViewHandler plus ancien, {0}, a \u00e9t\u00e9 configur\u00e9 explicitement. Ce comportement n\u2019est pas d\u00e9sir\u00e9. Retirez l\u2019ancien FaceletViewHandler et sa biblioth\u00e8que de votre application. +jsf.application.legacy_facelet_viewhandler_detected=JSF1069 : Le ViewHandler de Facelets Faces 2.0 a \u00e9t\u00e9 d\u00e9sactiv\u00e9 car un FaceletViewHandler plus ancien, {0}, a \u00e9t\u00e9 configur\u00e9 explicitement. Ce comportement n\u2019est pas d\u00e9sir\u00e9. Retirez l\u2019ancien FaceletViewHandler et sa biblioth\u00e8que de votre application. jsf.navigation_invalid_query_string=JSF1070 : Cha\u00eene de requ\u00eate non valide dans le r\u00e9sultat de navigation {0} # the following three messages are duplicated in jakarta.faces.LogStrings.properties jsf.context.exception.handler.log_before=JSF1071 : {0} intercept\u00e9 durant le traitement beforePhase() de {1} : UIComponent-ClientId={2}, Message={3} diff --git a/impl/src/main/resources/com/sun/faces/LogStrings_pt_BR.properties b/impl/src/main/resources/com/sun/faces/LogStrings_pt_BR.properties index 6094e45c90..e579267583 100644 --- a/impl/src/main/resources/com/sun/faces/LogStrings_pt_BR.properties +++ b/impl/src/main/resources/com/sun/faces/LogStrings_pt_BR.properties @@ -43,8 +43,8 @@ jsf.config.webconfig.enventry.clientencrypt=JSF1024: Criptografia de estado de c jsf.config.webconfig.param.deprecated=JSF1025: [{0}] O par\u00e2metro de inicializa\u00e7\u00e3o de contexto ''{1}'' est\u00e1 desaprovado. A op\u00e7\u00e3o continuar\u00e1 configurada, mas use ''{2}'' no futuro. jsf.config.webconfig.param.deprecated.no_replacement=JSF1025: [{0}] O par\u00e2metro de iniciali\u00e7\u00e3o de contexto ''{1}'' est\u00e1 desaprovado e n\u00e3o ter\u00e1 efeito. jsf.config.webconfig.option.notconfigured=JSF1026: [{0}] A op\u00e7\u00e3o de configura\u00e7\u00e3o ''{1}'' n\u00e3o est\u00e1 configurada -jsf.lifecycle.initphaselistener.resolvers_not_registered=JSF1027: [{0}] Os ELResolvers para JSF n\u00e3o foram registrados com o cont\u00eainer JSP. -jsf.lifecycle.initphaselistener.resolvers_registered=JSF1028: [{0}] Os ELResolvers para JSF foram registrados com o cont\u00eainer JSP. +jsf.lifecycle.initphaselistener.resolvers_not_registered=JSF1027: [{0}] Os ELResolvers para Faces n\u00e3o foram registrados com o cont\u00eainer JSP. +jsf.lifecycle.initphaselistener.resolvers_registered=JSF1028: [{0}] Os ELResolvers para Faces foram registrados com o cont\u00eainer JSP. jsf.spi.injection.provider_not_implemented=JSF1029: A implementa\u00e7\u00e3o do InjectionProvider especificado ''{0}'' n\u00e3o implementa a interface do InjectionProvider. jsf.spi.injection.provider_not_found=JSF1030: A implementa\u00e7\u00e3o do InjectionProvider especificado ''{0}'' n\u00e3o pode ser carregada. jsf.spi.injection.provider_cannot_instantiate=JSF1031: O InjectionProvider especificado ''{0}'' n\u00e3o pode ser instanciado. @@ -92,7 +92,7 @@ jsf.application.resource.unable_to_create_compression_directory=JSF1065: N\u00e3 jsf.application.publish.event.base_type_mismatch=JSF1066: O objeto de origem {0} n\u00e3o \u00e9 uma inst\u00e2ncia do tipo de base fornecido {1}. A pesquisa de evento n\u00e3o ser\u00e1 realizada. jsf.config.web_resource_not_found=JSF1067: O recurso {0} especificado pela op\u00e7\u00e3o de configura\u00e7\u00e3o {1} n\u00e3o p\u00f4de ser encontrado. O recurso ser\u00e1 ignorado. jsf.cannot_instantiate_component_error=JSF1068: N\u00e3o \u00e9 poss\u00edvel criar inst\u00e2ncia para o componente com o component-type {0} -jsf.application.legacy_facelet_viewhandler_detected=JSF1069: Desativar os Facelets do JSF 2.0 ViewHandler como um FaceletViewHandler antigo, {0}, foi explicitamente configurado. Se este n\u00e3o for um comportamento desejado, remova o FaceletViewHandler antigo e a biblioteca do seu aplicativo. +jsf.application.legacy_facelet_viewhandler_detected=JSF1069: Desativar os Facelets do Faces 2.0 ViewHandler como um FaceletViewHandler antigo, {0}, foi explicitamente configurado. Se este n\u00e3o for um comportamento desejado, remova o FaceletViewHandler antigo e a biblioteca do seu aplicativo. jsf.navigation_invalid_query_string=JSF1070: Seq\u00fc\u00eancia de consulta inv\u00e1lida no resultado da navega\u00e7\u00e3o {0} # the following three messages are duplicated in jakarta.faces.LogStrings.properties jsf.context.exception.handler.log_before=JSF1071: {0} obtido durante o processamento de beforePhase() de {1}: UIComponent-ClientId={2}, Message={3} diff --git a/impl/src/main/resources/com/sun/faces/LogStrings_zh_CN.properties b/impl/src/main/resources/com/sun/faces/LogStrings_zh_CN.properties index b83048fdfb..129dd76dff 100644 --- a/impl/src/main/resources/com/sun/faces/LogStrings_zh_CN.properties +++ b/impl/src/main/resources/com/sun/faces/LogStrings_zh_CN.properties @@ -43,8 +43,8 @@ jsf.config.webconfig.enventry.clientencrypt=JSF1024\uff1a \u5ba2\u6237\u673a\u72 jsf.config.webconfig.param.deprecated=JSF1025\uff1a[{0}] \u4e0a\u4e0b\u6587\u521d\u59cb\u5316\u53c2\u6570 ''{1}'' \u5df2\u8fc7\u65f6\u3002\u4ecd\u5c06\u914d\u7f6e\u8be5\u9009\u9879\uff0c\u4f46\u4ee5\u540e\u8bf7\u4f7f\u7528 ''{2}''\u3002 jsf.config.webconfig.param.deprecated.no_replacement=JSF1025\uff1a[{0}] \u4e0a\u4e0b\u6587\u521d\u59cb\u5316\u53c2\u6570 ''{1}'' \u5df2\u8fc7\u65f6\uff0c\u4e0d\u8d77\u4f5c\u7528\u3002 jsf.config.webconfig.option.notconfigured=JSF1026\uff1a[{0}] \u914d\u7f6e\u9009\u9879 ''{1}'' \u672a\u914d\u7f6e -jsf.lifecycle.initphaselistener.resolvers_not_registered=JSF1027\uff1a[{0}] \u672a\u5728 JSP \u5bb9\u5668\u4e2d\u6ce8\u518c JSF \u7684 ELResolver\u3002 -jsf.lifecycle.initphaselistener.resolvers_registered=JSF1028\uff1a[{0}] \u5df2\u5728 JSP \u5bb9\u5668\u4e2d\u6210\u529f\u6ce8\u518c JSF \u7684 ELResolver\u3002 +jsf.lifecycle.initphaselistener.resolvers_not_registered=JSF1027\uff1a[{0}] \u672a\u5728 JSP \u5bb9\u5668\u4e2d\u6ce8\u518c Faces \u7684 ELResolver\u3002 +jsf.lifecycle.initphaselistener.resolvers_registered=JSF1028\uff1a[{0}] \u5df2\u5728 JSP \u5bb9\u5668\u4e2d\u6210\u529f\u6ce8\u518c Faces \u7684 ELResolver\u3002 jsf.spi.injection.provider_not_implemented=JSF1029\uff1a\u6307\u5b9a\u7684 InjectionProvider \u5b9e\u73b0 ''{0}'' \u672a\u5b9e\u73b0 InjectionProvider \u63a5\u53e3\u3002 jsf.spi.injection.provider_not_found=JSF1030\uff1a\u6307\u5b9a\u7684 InjectionProvider \u5b9e\u73b0 ''{0}'' \u65e0\u6cd5\u88c5\u5165\u3002 jsf.spi.injection.provider_cannot_instantiate=JSF1031\uff1a\u6307\u5b9a\u7684 InjectionProvider ''{0}'' \u65e0\u6cd5\u5b9e\u4f8b\u5316\u3002 @@ -92,7 +92,7 @@ jsf.application.resource.unable_to_create_compression_directory=JSF1065\uff1a\u6 jsf.application.publish.event.base_type_mismatch=JSF1066\uff1a\u6e90\u5bf9\u8c61 {0} \u4e0d\u662f\u6240\u63d0\u4f9b\u7684\u57fa\u7c7b\u578b {1} \u7684\u5b9e\u4f8b\u3002\u4e0d\u4f1a\u8fdb\u884c\u4e8b\u4ef6\u641c\u7d22\u3002 jsf.config.web_resource_not_found=JSF1067\uff1a\u65e0\u6cd5\u627e\u5230 {1} \u914d\u7f6e\u9009\u9879\u6307\u5b9a\u7684\u8d44\u6e90 {0}\u3002\u6b64\u8d44\u6e90\u5c06\u88ab\u5ffd\u7565\u3002 jsf.cannot_instantiate_component_error=JSF1068\uff1a\u65e0\u6cd5\u5b9e\u4f8b\u5316\u7ec4\u4ef6\u7c7b\u578b\u4e3a {0} \u7684\u7ec4\u4ef6 -jsf.application.legacy_facelet_viewhandler_detected=JSF1069\uff1a\u5df2\u660e\u786e\u914d\u7f6e\u7981\u6b62\u5c06 JSF 2.0 Facelets ViewHandler \u7528\u4f5c\u8f83\u65e7\u7684 FaceletViewHandler {0}\u3002\u5982\u679c\u6b64\u884c\u4e3a\u4e0d\u662f\u6240\u9700\u7684\u884c\u4e3a\uff0c\u8bf7\u4ece\u5e94\u7528\u7a0b\u5e8f\u4e2d\u5220\u9664\u8f83\u65e7\u7684 FaceletViewHandler \u548c\u5e93\u3002 +jsf.application.legacy_facelet_viewhandler_detected=JSF1069\uff1a\u5df2\u660e\u786e\u914d\u7f6e\u7981\u6b62\u5c06 Faces 2.0 Facelets ViewHandler \u7528\u4f5c\u8f83\u65e7\u7684 FaceletViewHandler {0}\u3002\u5982\u679c\u6b64\u884c\u4e3a\u4e0d\u662f\u6240\u9700\u7684\u884c\u4e3a\uff0c\u8bf7\u4ece\u5e94\u7528\u7a0b\u5e8f\u4e2d\u5220\u9664\u8f83\u65e7\u7684 FaceletViewHandler \u548c\u5e93\u3002 jsf.navigation_invalid_query_string=JSF1070\uff1a\u5bfc\u822a\u7ed3\u679c {0} \u4e2d\u7684\u67e5\u8be2\u5b57\u7b26\u4e32\u65e0\u6548 # the following three messages are duplicated in jakarta.faces.LogStrings.properties jsf.context.exception.handler.log_before=JSF1071\uff1a\u5728 {1} \u7684 beforePhase() \u5904\u7406\u8fc7\u7a0b\u4e2d\u6355\u6349\u5230 {0}\uff1aUIComponent-ClientId={2}\uff0cMessage={3} diff --git a/impl/src/main/resources/com/sun/faces/LogStrings_zh_HK.properties b/impl/src/main/resources/com/sun/faces/LogStrings_zh_HK.properties index 5ce91cedf3..8f90331a0c 100644 --- a/impl/src/main/resources/com/sun/faces/LogStrings_zh_HK.properties +++ b/impl/src/main/resources/com/sun/faces/LogStrings_zh_HK.properties @@ -92,7 +92,7 @@ jsf.application.resource.unable_to_create_compression_directory=JSF1065\uff1a\u7 jsf.application.publish.event.base_type_mismatch=JSF1066\uff1a\u4f86\u6e90\u7269\u4ef6 {0} \u4e0d\u662f\u6240\u63d0\u4f9b\u4e4b\u57fa\u5e95\u985e\u578b {1} \u7684\u5be6\u4f8b\u3002\u4e8b\u4ef6\u641c\u5c0b\u5c07\u4e0d\u6703\u57f7\u884c\u3002 jsf.config.web_resource_not_found=JSF1067\uff1a\u627e\u4e0d\u5230 {1} \u914d\u7f6e\u9078\u9805\u6307\u5b9a\u7684\u8cc7\u6e90 {0}\u3002\u6b64\u8cc7\u6e90\u5c07\u88ab\u5ffd\u7565\u3002 jsf.cannot_instantiate_component_error=JSF1068\uff1a\u7121\u6cd5\u5be6\u4f8b\u5316\u5143\u4ef6\u985e\u578b\u70ba {0} \u7684\u5143\u4ef6 -jsf.application.legacy_facelet_viewhandler_detected=JSF1069\uff1a\u505c\u7528 JSF 2.0 Facelets ViewHandler\uff0c\u56e0\u5df2\u660e\u78ba\u914d\u7f6e\u4f7f\u7528\u820a\u7248 FaceletViewHandler {0}\u3002\u5982\u679c\u9019\u4e0d\u662f\u6240\u8981\u7684\u904b\u4f5c\u65b9\u5f0f\uff0c\u8acb\u5f9e\u61c9\u7528\u7a0b\u5f0f\u79fb\u9664\u820a\u7248 FaceletViewHandler \u548c\u7a0b\u5f0f\u5eab\u3002 +jsf.application.legacy_facelet_viewhandler_detected=JSF1069\uff1a\u505c\u7528 Faces 2.0 Facelets ViewHandler\uff0c\u56e0\u5df2\u660e\u78ba\u914d\u7f6e\u4f7f\u7528\u820a\u7248 FaceletViewHandler {0}\u3002\u5982\u679c\u9019\u4e0d\u662f\u6240\u8981\u7684\u904b\u4f5c\u65b9\u5f0f\uff0c\u8acb\u5f9e\u61c9\u7528\u7a0b\u5f0f\u79fb\u9664\u820a\u7248 FaceletViewHandler \u548c\u7a0b\u5f0f\u5eab\u3002 jsf.navigation_invalid_query_string=JSF1070\uff1a\u700f\u89bd\u7d50\u679c {0} \u4e2d\u6709\u7121\u6548\u7684\u67e5\u8a62\u5b57\u4e32 # the following three messages are duplicated in jakarta.faces.LogStrings.properties jsf.context.exception.handler.log_before=JSF1071\uff1a\u5728 {1} \u7684 beforePhase() \u8655\u7406\u671f\u9593\u622a\u7372 {0}\uff1aUIComponent-ClientId={2}\uff0c\u8a0a\u606f={3} diff --git a/impl/src/main/resources/com/sun/faces/facelets/tag/jsf/html/package.html b/impl/src/main/resources/com/sun/faces/facelets/tag/jsf/html/package.html index 50167a048f..683c298897 100644 --- a/impl/src/main/resources/com/sun/faces/facelets/tag/jsf/html/package.html +++ b/impl/src/main/resources/com/sun/faces/facelets/tag/jsf/html/package.html @@ -22,6 +22,6 @@ Tag Library for http://java.sun.com/jsf/html. -See JSF HTML Tag Javadocs for attributes/functionality. +See Faces HTML Tag Javadocs for attributes/functionality. diff --git a/impl/src/main/resources/com/sun/faces/metadata/taglib/composite.taglib.xml b/impl/src/main/resources/com/sun/faces/metadata/taglib/composite.taglib.xml index 10f07c932f..4b898ce9cb 100644 --- a/impl/src/main/resources/com/sun/faces/metadata/taglib/composite.taglib.xml +++ b/impl/src/main/resources/com/sun/faces/metadata/taglib/composite.taglib.xml @@ -72,7 +72,7 @@

    This declares that any Facelets2 file in the resource -library called ezcomp can be used as a regular JSF UI +library called ezcomp can be used as a regular Faces UI component in a view with the above namespace declaration by using the "ez" prefix. For example, placing a file called foo.xhtml in a resource library called ezcomp @@ -84,7 +84,7 @@ would make that file accessible like this.

    The implementation must also support declaring the - namespace of the tag library in a JSF VDL tag library descriptor. + namespace of the tag library in a Faces VDL tag library descriptor. This descriptor file is optional and is useful for component vendors that do not want to use the default XML namespace. This version of the proposal currently uses the facelet taglib descriptor syntax. For diff --git a/impl/src/main/resources/com/sun/faces/metadata/taglib/facelets_jsf_core.taglib.xml b/impl/src/main/resources/com/sun/faces/metadata/taglib/facelets_jsf_core.taglib.xml index add2349e8e..5898458092 100644 --- a/impl/src/main/resources/com/sun/faces/metadata/taglib/facelets_jsf_core.taglib.xml +++ b/impl/src/main/resources/com/sun/faces/metadata/taglib/facelets_jsf_core.taglib.xml @@ -1296,7 +1296,7 @@ for @NamedEvent.

    evaluates to a boolean that will -determine if the rendered markup for the item receives normal JSF HTML +determine if the rendered markup for the item receives normal Faces HTML escaping or not. If not specified, the runtime must behave as if the value were true.

    @@ -1986,7 +1986,7 @@ of POJOs. validations for this class-level validation have passed.

    Class-level bean validation must operate on a - sufficiently populated bean instance. This differs from JSF + sufficiently populated bean instance. This differs from Faces field-level validation, which prevents beans from being populated with invalid values. To accomodate this difference, the candidate bean must be copied, @@ -2354,8 +2354,8 @@ public class BackingBean implements PasswordHolder, Cloneable { The use of - this element has been deprecated in Facelets for JSF 2.0 and - beyond. Create and register a child UIOutput component + this element has been deprecated in Facelets for Faces. + Create and register a child UIOutput component associated with the closest parent UIComponent custom action, which renders nested body content.

    ]]>
    @@ -2507,7 +2507,7 @@ public class BackingBean implements PasswordHolder, Cloneable {

    This action component specifies an application-specific command (or action), using an EL - method expression, to be invoked during one of the JSF + method expression, to be invoked during one of the Faces lifecycle phases, by default Invoke Application.

    diff --git a/impl/src/main/resources/com/sun/faces/metadata/taglib/facelets_passthrough_elements.taglib.xml b/impl/src/main/resources/com/sun/faces/metadata/taglib/facelets_passthrough_elements.taglib.xml index d586b82f31..5c7fe67886 100644 --- a/impl/src/main/resources/com/sun/faces/metadata/taglib/facelets_passthrough_elements.taglib.xml +++ b/impl/src/main/resources/com/sun/faces/metadata/taglib/facelets_passthrough_elements.taglib.xml @@ -24,9 +24,9 @@ The presence of an
    - attribute from this namespace on an otherwise non-JSF aware
    + attribute from this namespace on an otherwise non-Faces aware
    markup element indicates that the markup element must be treated
    - as a JSF component that will be rendered equivalently to what is
    + as a Faces component that will be rendered equivalently to what is
    specified directly in the Facelet page, with the added benefit
    of being associated with a server side UIComponent
    instance. diff --git a/impl/src/main/resources/com/sun/faces/metadata/taglib/html_basic.taglib.xml b/impl/src/main/resources/com/sun/faces/metadata/taglib/html_basic.taglib.xml index 104d46adea..4c5762c018 100644 --- a/impl/src/main/resources/com/sun/faces/metadata/taglib/html_basic.taglib.xml +++ b/impl/src/main/resources/com/sun/faces/metadata/taglib/html_basic.taglib.xml @@ -2116,7 +2116,7 @@ var b=function(){#JSF_FUNCTION#}; return (a()==false) ? false : b();</code></p> <p>where #USER_FUNCTION# is the user's JavaScript and - #JSF_FUNCTION# is the JavaScript rendered by JSF. The choice + #JSF_FUNCTION# is the JavaScript rendered by Faces. The choice function should operate such that if the user's JavaScript returns true, then the rendered JavaScript will also execute.</p> <p>If the "styleClass" attribute is specified, render its diff --git a/impl/src/main/resources/com/sun/faces/metadata/taglib/jstl-core.taglib.xml b/impl/src/main/resources/com/sun/faces/metadata/taglib/jstl-core.taglib.xml index 3deb87f306..0f2fe9d7c0 100644 --- a/impl/src/main/resources/com/sun/faces/metadata/taglib/jstl-core.taglib.xml +++ b/impl/src/main/resources/com/sun/faces/metadata/taglib/jstl-core.taglib.xml @@ -24,7 +24,7 @@ JSTL 1.2 core library

    -

    The pre JSF 2.0 version of Facelets incorrectly declared the taglib +

    The pre Faces version of Facelets incorrectly declared the taglib uri to be http://xmlns.jcp.org/jstl/core. For backwards compatibility implementations must correctly handle inclusions with the incorrect uri, and the correct uri, declared here.

    diff --git a/impl/src/main/resources/com/sun/faces/metadata/taglib/ui.taglib.xml b/impl/src/main/resources/com/sun/faces/metadata/taglib/ui.taglib.xml index ff12a53e2a..d66f75cb4a 100644 --- a/impl/src/main/resources/com/sun/faces/metadata/taglib/ui.taglib.xml +++ b/impl/src/main/resources/com/sun/faces/metadata/taglib/ui.taglib.xml @@ -27,16 +27,16 @@

    The tags in this library add templating — a powerful view composition - technique — to JSF. Templating is so useful that there + technique — to Faces. Templating is so useful that there are entire frameworks, such as Tiles and SiteMesh, that are built around the concept of templating. So what is templating, how can you benefit from it, and how does this tag library implement it?

    -

    If you've used JSP before, you've probably used jsp:include. +

    If you've used Jakarta Server Pages before, you've probably used jsp:include. The prototypical example for jsp:include is a header on each page in a web - application. One JSP page, say header.jsp, + application. One Jakarta Server Pages page, say header.jsp, encapsulates the header content, and the header is included by each page. You encapsulate and reuse content, so that changes to one file, header.jsp, affect the @@ -214,11 +214,11 @@

    - At runtime, JSF synthesizes the two previous XHTML pages to create a - single JSF view by inserting the + At runtime, Faces synthesizes the two previous XHTML pages to create a + single Faces view by inserting the pieces defined in the composition into the template (that template is layout.xhtml, which is the first - listing above). JSF also disregards everything outside of the composition + listing above). Faces also disregards everything outside of the composition tag so that we don't wind up with two body elements in the view. Also, note that we use the ui:include @@ -304,7 +304,7 @@ By encapsulating the layout, we can reuse that layout among multiple compositions. Just like ui:include lets us encapsulate and reuse - conent, JSF compositions let us encapsulate and reuse + conent, Faces compositions let us encapsulate and reuse layout, so that changes to a single layout can affect multiple views. Fundamentally, that's what this tag library is all about. @@ -321,7 +321,7 @@

    This tag is the same as - ui:composition, except for two things: JSF creates a + ui:composition, except for two things: Faces creates a component and adds it directly to the tree, and there's no associated template.

    @@ -340,9 +340,9 @@

    - The identifier of the component that JSF inserts into the + The identifier of the component that Faces inserts into the component tree. If an identifier is - not explicitly specified by the page author, JSF will assign an + not explicitly specified by the page author, Faces will assign an identifier based on the algorithm that it uses for all components.

    @@ -360,7 +360,7 @@

    Binds the component to a backing bean property, as specified in - the JSF specification. The + the Faces specification. The Java language type of this property must be a class that extends jakarta.faces.component.UIComponent. The scope of the bean on which this property resides must be no wider than @@ -399,7 +399,7 @@ Defines a composition that optionally uses a template, as outlined in the description of the ui tag library. Multiple compositions can use the same template, thus -encapsulating and reusing layout. JSF disregards everything outside of +encapsulating and reusing layout. Faces disregards everything outside of the composition, which lets developers embed compositions in well-formed XHTML pages that can be viewed in an XHTML viewer, such as Dreamweaver or a browser, without including extraneous elements such as @@ -416,7 +416,7 @@ or a browser, without including extraneous elements such as

  •  
  •   <body>
  •  
  • -
  •     THIS LINE, AND EVERYTHING ABOVE IT IS DISREGARDED BY JSF
  • +
  •     THIS LINE, AND EVERYTHING ABOVE IT IS DISREGARDED BY Faces
  •     <ui:composition template="/layout.xhtml">
  •  
  • @@ -430,7 +430,7 @@ or a browser, without including extraneous elements such as
  •       </ui:define>
  •          
  •     </ui:composition>
  • -
  •     THIS LINE, AND EVERYTHING BELOW IT IS DISREGARDED BY JSF
  • +
  •     THIS LINE, AND EVERYTHING BELOW IT IS DISREGARDED BY Faces
  •  
  •   </body>
  • @@ -477,7 +477,7 @@ starting with "/". namely the current state of the component tree and the scoped variables in the application, when the component is rendered. If the user presses CTRL + SHIFT + d, - JSF opens a window that shows the debugging information captured by + Faces opens a window that shows the debugging information captured by the debug component.

    @@ -516,7 +516,7 @@ starting with "/".

    Defines a single character, that, pressed in conjunction with - CTRL and SHIFT, will display the JSF debug window. + CTRL and SHIFT, will display the Faces debug window. By default, the hotkey is 'd'. The value for the hotkey attribute cannot be an EL expression.

    @@ -618,7 +618,7 @@ you might want to decorate a list of items, like this:
  • </ui:decorate>
  • -Because JSF does not disregard everything outside of the ui:decorate tag, ui:decorate can +Because Faces does not disregard everything outside of the ui:decorate tag, ui:decorate can be used to decorate pieces of a page. @@ -656,7 +656,7 @@ starting with "/". class="changed_modified_2_2">The fragment tag is identical to the component tag, except that ui:fragment, unlike - ui:component, JSF does not disregard all content + ui:component, Faces does not disregard all content outside of the tag.

    @@ -669,9 +669,9 @@ starting with "/".
    - The identifier of the component that JSF inserts into the + The identifier of the component that Faces inserts into the component tree. If an identifier is - not explicitly specified by the page author, JSF will assign an + not explicitly specified by the page author, Faces will assign an identifier based on the algorithm that it uses for all components.
    @@ -687,7 +687,7 @@ starting with "/".

    Binds the component to a backing bean property, as specified - in the JSF specification. The + in the Faces specification. The Java language type of this property must be a class that extends jakarta.faces.component.UIComponent. The scope of the bean on which this property resides must be no wider than @@ -734,10 +734,10 @@ starting with "/". XHTML, and XHTML pages that have either a composition tag or a component tag.

    You supply a filename, through - ui:include's src attribute for JSF + ui:include's src attribute for Faces to include. That filename is relative to the XHTML file that was rendered as a result of the last request. So, for - example, if JSF loaded the view login.xhtml, + example, if Faces loaded the view login.xhtml, and that file included pageDecorations/header.xhtml, and pageDecorations/header.xhtml included diff --git a/impl/src/main/resources/com/sun/faces/resources/Messages.properties b/impl/src/main/resources/com/sun/faces/resources/Messages.properties index f295642dc4..6d183a7aaf 100644 --- a/impl/src/main/resources/com/sun/faces/resources/Messages.properties +++ b/impl/src/main/resources/com/sun/faces/resources/Messages.properties @@ -25,7 +25,7 @@ com.sun.faces.CANT_INSTANTIATE_CLASS=Can''t instantiate class: ''{0}''. com.sun.faces.CANT_INTROSPECT_CLASS=Can''t introspect class: ''{0}'' com.sun.faces.CANT_PARSE_FILE=Can''t parse file: ''{0}'': Error at line {1} column {2}: {3}. com.sun.faces.CHILD_NOT_OF_EXPECTED_TYPE=Expected a child component type of ''{0}'' for component type ''{1}({2})''. Found ''{3}''. -com.sun.faces.COMMAND_LINK_NO_FORM_MESSAGE=: This link is disabled as it is not nested within a JSF form. +com.sun.faces.COMMAND_LINK_NO_FORM_MESSAGE=: This link is disabled as it is not nested within a Faces form. com.sun.faces.COMMAND_NOT_NESTED_WITHIN_FORM=One or more UICommand instances found within the view that weren't nested within a UIForm. The actions associated with these commands will not be invoked. com.sun.faces.COMPONENT_NOT_FOUND_ERROR=Component Not Found for identifier: ''{0}''. com.sun.faces.COMPONENT_NOT_FOUND_IN_VIEW_WARNING=Unable to find component with ID ''{0}'' in view. @@ -84,7 +84,7 @@ com.sun.faces.MANAGED_BEAN_PROPERTY_HAS_NO_SETTER_ERROR=Property ''{0}'' for man com.sun.faces.MANAGED_BEAN_PROPERTY_INCORRECT_ARGS_ERROR=Property ''{0}'' for managed bean ''{1}'' accepts more than one argument com.sun.faces.MANAGED_BEAN_UNABLE_TO_SET_PROPERTY_ERROR=Unable to set property ''{0}'' for managed bean ''{1}'' com.sun.faces.MANAGED_BEAN_PROBLEMS_ERROR=Unable to create managed bean ''{0}''. The following problems were found: -com.sun.faces.MANAGED_BEAN_PROBLEMS_STARTUP_ERROR=JSF will be unable to create managed bean ''{0}'' when it is requested. The following problems where found: +com.sun.faces.MANAGED_BEAN_PROBLEMS_STARTUP_ERROR=Faces will be unable to create managed bean ''{0}'' when it is requested. The following problems where found: com.sun.faces.MANAGED_BEAN_UNKNOWN_PROCESSING_ERROR=Unexpected error processing managed bean ''{0}'' com.sun.faces.MANAGED_BEAN_PROPERTY_UNKNOWN_PROCESSING_ERROR=Unexpected error processing managed property ''{0}'' com.sun.faces.MANAGED_BEAN_INVALID_SCOPE=Scope ''{0}'' is not one of ''view'', ''request'', ''session'', ''application'', nor does it represent a ValueExpression (#{...}) @@ -128,7 +128,7 @@ com.sun.faces.SUPPORTS_COMPONENT_ERROR=Argument Error: ''{0}'' is not supported com.sun.faces.TYPECONVERSION_ERROR=Conversion Error setting value ''{0}'' for ''{1}''. com.sun.faces.VALIDATION_COMMAND_ERROR=Validation error. ''{0}'' must have value or image attribute. com.sun.faces.VALIDATION_EL_ERROR=Validation error. Expression invalid for:''{0}'' -com.sun.faces.VALIDATION_ID_ERROR=Validation error. The following JSF tags are required to contain IDs:''{0}'' +com.sun.faces.VALIDATION_ID_ERROR=Validation error. The following Faces tags are required to contain IDs:''{0}'' com.sun.faces.CANNOT_CONVERT=Unable to resolve a Converter instance using either converterId ''{0}'' or binding ''{1}''. com.sun.faces.CANNOT_VALIDATE=Unable to resolve a Validator instance using either validatorId ''{0}'' or binding ''{1}''. com.sun.faces.verifier.CLASS_NOT_FOUND=[{0}:{1}] Class does not exist diff --git a/impl/src/main/resources/com/sun/faces/resources/Messages_de.properties b/impl/src/main/resources/com/sun/faces/resources/Messages_de.properties index b8e524d003..2e4ddf38aa 100644 --- a/impl/src/main/resources/com/sun/faces/resources/Messages_de.properties +++ b/impl/src/main/resources/com/sun/faces/resources/Messages_de.properties @@ -25,7 +25,7 @@ com.sun.faces.CANT_INSTANTIATE_CLASS=Klasse ''{0}'' kann nicht instanziiert werd com.sun.faces.CANT_INTROSPECT_CLASS=Klasse ''{0}'' kann sich nicht selbst pr\u00fcfen. com.sun.faces.CANT_PARSE_FILE=Datei ''{0}'' kann nicht analysiert werden. Fehler in Zeile {1} Spalte {2}: {3}. com.sun.faces.CHILD_NOT_OF_EXPECTED_TYPE=Untergeordneten Komponententyp von ''{0}'' f\u00fcr Komponententyp ''{1}({2})'' erwartet. ''{3}'' gefunden. -com.sun.faces.COMMAND_LINK_NO_FORM_MESSAGE=: Dieser Link ist deaktiviert, da er nicht in ein JSF-Formular eingebettet ist. +com.sun.faces.COMMAND_LINK_NO_FORM_MESSAGE=: Dieser Link ist deaktiviert, da er nicht in ein Faces-Formular eingebettet ist. com.sun.faces.COMMAND_NOT_NESTED_WITHIN_FORM=Eine oder mehrere UICommand-Instanzen in der Ansicht gefunden, die nicht in einer UIForm eingebettet waren. Die mit diesen Befehlen verkn\u00fcpften Aktionen werden nicht aufgerufen. com.sun.faces.COMPONENT_NOT_FOUND_ERROR=Komponente f\u00fcr Kennung ''{0}'' nicht gefunden. com.sun.faces.COMPONENT_NOT_FOUND_IN_VIEW_WARNING=Komponente mit ID ''{0}'' kann nicht in Ansicht gefunden werden. @@ -84,7 +84,7 @@ com.sun.faces.MANAGED_BEAN_PROPERTY_HAS_NO_SETTER_ERROR=Eigenschaft ''{0}'' f\u0 com.sun.faces.MANAGED_BEAN_PROPERTY_INCORRECT_ARGS_ERROR=Eigenschaft ''{0}'' f\u00fcr verwalteten Bean ''{1}'' akzeptiert mehr als ein Argument. com.sun.faces.MANAGED_BEAN_UNABLE_TO_SET_PROPERTY_ERROR=Eigenschaft ''{0}'' f\u00fcr verwalteten Bean ''{1}" kann nicht festgelegt werden. com.sun.faces.MANAGED_BEAN_PROBLEMS_ERROR=Verwalteter Bean ''{0}'' kann nicht erstellt werden. Die folgenden Probleme wurden gefunden: -com.sun.faces.MANAGED_BEAN_PROBLEMS_STARTUP_ERROR=JSF kann auf Anforderung nicht den verwalteten Bean ''{0}'' erstellen. Die folgenden Probleme wurden gefunden: +com.sun.faces.MANAGED_BEAN_PROBLEMS_STARTUP_ERROR=Faces kann auf Anforderung nicht den verwalteten Bean ''{0}'' erstellen. Die folgenden Probleme wurden gefunden: com.sun.faces.MANAGED_BEAN_UNKNOWN_PROCESSING_ERROR=Unerwarteter Fehler beim Verarbeiten von verwaltetem Bean ''{0}'' com.sun.faces.MANAGED_BEAN_PROPERTY_UNKNOWN_PROCESSING_ERROR=Unerwarteter Fehler beim Verarbeiten der verwalteten Eigenschaft ''{0}'' com.sun.faces.MANAGED_BEAN_INVALID_SCOPE=Bereich ''{0}'' geh\u00f6rt nicht zur Anwendung ''''Ansicht'''', ''''Anforderung'''', ''''Sitzung'''', ''''Anwendung'''', und stellt keine ValueExpression (#{...}) dar. @@ -128,7 +128,7 @@ com.sun.faces.SUPPORTS_COMPONENT_ERROR=Argumentfehler: ''{0}'' wird f\u00fcr die com.sun.faces.TYPECONVERSION_ERROR=Konvertierungsfehler beim Festlegen von Wert ''{0}'' f\u00fcr ''{1}''. com.sun.faces.VALIDATION_COMMAND_ERROR=\u00dcberpr\u00fcfungsfehler ''{0}'' muss \u00fcber das Wert- oder Bildattribut verf\u00fcgen. com.sun.faces.VALIDATION_EL_ERROR=\u00dcberpr\u00fcfungsfehler Ausdruck ung\u00fcltig f\u00fcr:''{0}'' -com.sun.faces.VALIDATION_ID_ERROR=\u00dcberpr\u00fcfungsfehler Die folgenden JSF-Tags m\u00fcssen IDs enthalten:''{0}'' +com.sun.faces.VALIDATION_ID_ERROR=\u00dcberpr\u00fcfungsfehler Die folgenden Faces-Tags m\u00fcssen IDs enthalten:''{0}'' com.sun.faces.CANNOT_CONVERT=Converter-Instanz kann mit converterId ''{0}'' oder Verbindung ''{1}'' nicht aufgel\u00f6st werden. com.sun.faces.CANNOT_VALIDATE=Validator-Instanz kann mit validatorId ''{0}'' oder Verbindung ''{1}'' nicht aufgel\u00f6st werden. com.sun.faces.verifier.CLASS_NOT_FOUND=[{0}:{1}] Klasse ist nicht vorhanden. diff --git a/impl/src/main/resources/com/sun/faces/resources/Messages_en.properties b/impl/src/main/resources/com/sun/faces/resources/Messages_en.properties index cd930fbbf9..94c9c09d40 100644 --- a/impl/src/main/resources/com/sun/faces/resources/Messages_en.properties +++ b/impl/src/main/resources/com/sun/faces/resources/Messages_en.properties @@ -25,7 +25,7 @@ com.sun.faces.CANT_INSTANTIATE_CLASS=Can''t instantiate class: ''{0}''. com.sun.faces.CANT_INTROSPECT_CLASS=Can''t introspect class: ''{0}'' com.sun.faces.CANT_PARSE_FILE=Can''t parse file: ''{0}'': Error at line {1} column {2}: {3}. com.sun.faces.CHILD_NOT_OF_EXPECTED_TYPE=Expected a child component type of ''{0}'' for component type ''{1}({2})''. Found ''{3}''. -com.sun.faces.COMMAND_LINK_NO_FORM_MESSAGE=: This link is disabled as it is not nested within a JSF form. +com.sun.faces.COMMAND_LINK_NO_FORM_MESSAGE=: This link is disabled as it is not nested within a Faces form. com.sun.faces.COMMAND_NOT_NESTED_WITHIN_FORM=One or more UICommand instances found within the view that weren't nested within a UIForm. The actions associated with these commands will not be invoked. com.sun.faces.COMPONENT_NOT_FOUND_ERROR=Component Not Found for identifier: ''{0}''. com.sun.faces.COMPONENT_NOT_FOUND_IN_VIEW_WARNING=Unable to find component with ID ''{0}'' in view. @@ -84,7 +84,7 @@ com.sun.faces.MANAGED_BEAN_PROPERTY_HAS_NO_SETTER_ERROR=Property ''{0}'' for man com.sun.faces.MANAGED_BEAN_PROPERTY_INCORRECT_ARGS_ERROR=Property ''{0}'' for managed bean ''{1}'' accepts more than one argument com.sun.faces.MANAGED_BEAN_UNABLE_TO_SET_PROPERTY_ERROR=Unable to set property ''{0}'' for managed bean ''{1}'' com.sun.faces.MANAGED_BEAN_PROBLEMS_ERROR=Unable to create managed bean ''{0}''. The following problems were found: -com.sun.faces.MANAGED_BEAN_PROBLEMS_STARTUP_ERROR=JSF will be unable to create managed bean ''{0}'' when it is requested. The following problems where found: +com.sun.faces.MANAGED_BEAN_PROBLEMS_STARTUP_ERROR=Faces will be unable to create managed bean ''{0}'' when it is requested. The following problems where found: com.sun.faces.MANAGED_BEAN_UNKNOWN_PROCESSING_ERROR=Unexpected error processing managed bean ''{0}'' com.sun.faces.MANAGED_BEAN_PROPERTY_UNKNOWN_PROCESSING_ERROR=Unexpected error processing managed property ''{0}'' com.sun.faces.MANAGED_BEAN_INVALID_SCOPE=Scope ''{0}'' is not one of ''view'', ''request'', ''session'', ''application'', nor does it represent a ValueExpression (#{...}) @@ -128,7 +128,7 @@ com.sun.faces.SUPPORTS_COMPONENT_ERROR=Argument Error: ''{0}'' is not supported com.sun.faces.TYPECONVERSION_ERROR=Conversion Error setting value ''{0}'' for ''{1}''. com.sun.faces.VALIDATION_COMMAND_ERROR=Validation error. ''{0}'' must have value or image attribute. com.sun.faces.VALIDATION_EL_ERROR=Validation error. Expression invalid for:''{0}'' -com.sun.faces.VALIDATION_ID_ERROR=Validation error. The following JSF tags are required to contain IDs:''{0}'' +com.sun.faces.VALIDATION_ID_ERROR=Validation error. The following Faces tags are required to contain IDs:''{0}'' com.sun.faces.CANNOT_CONVERT=Unable to resolve a Converter instance using either converterId ''{0}'' or binding ''{1}''. com.sun.faces.CANNOT_VALIDATE=Unable to resolve a Validator instance using either validatorId ''{0}'' or binding ''{1}''. com.sun.faces.verifier.CLASS_NOT_FOUND=[{0}:{1}] Class does not exist diff --git a/impl/src/main/resources/com/sun/faces/resources/Messages_es.properties b/impl/src/main/resources/com/sun/faces/resources/Messages_es.properties index 32b2324d93..8b73da6569 100644 --- a/impl/src/main/resources/com/sun/faces/resources/Messages_es.properties +++ b/impl/src/main/resources/com/sun/faces/resources/Messages_es.properties @@ -25,7 +25,7 @@ com.sun.faces.CANT_INSTANTIATE_CLASS=No se puede crear la instancia de clase: '' com.sun.faces.CANT_INTROSPECT_CLASS=No se puede crear la introspecci\u00f3n de clase: ''{0}'' com.sun.faces.CANT_PARSE_FILE=No se puede analizar el archivo: ''{0}'': error en l\u00ednea {1} columna {2}: {3}. com.sun.faces.CHILD_NOT_OF_EXPECTED_TYPE=Se esperaba un componente secundario con el tipo ''{0}'' para el tipo de componente ''{1}({2})''. Encontrado ''{3}''. -com.sun.faces.COMMAND_LINK_NO_FORM_MESSAGE=: Este v\u00ednculo est\u00e1 deshabilitado, ya que no se ha anidado en un formulario JSF. +com.sun.faces.COMMAND_LINK_NO_FORM_MESSAGE=: Este v\u00ednculo est\u00e1 deshabilitado, ya que no se ha anidado en un formulario Faces. com.sun.faces.COMMAND_NOT_NESTED_WITHIN_FORM=Se han encontrado una o varias instancias UICommand dentro de la vista que no se han anidado dentro de UIForm. No se invocar\u00e1n las acciones asociadas a estos comandos. com.sun.faces.COMPONENT_NOT_FOUND_ERROR=No se ha encontrado el componente para el identificador: ''{0}''. com.sun.faces.COMPONENT_NOT_FOUND_IN_VIEW_WARNING=No se encuentra el componente con ID ''{0}'' en la vista. @@ -84,7 +84,7 @@ com.sun.faces.MANAGED_BEAN_PROPERTY_HAS_NO_SETTER_ERROR=La propiedad ''{0}'' par com.sun.faces.MANAGED_BEAN_PROPERTY_INCORRECT_ARGS_ERROR=La propiedad ''{0}'' para el bean administrado ''{1}'' acepta m\u00e1s de un argumento com.sun.faces.MANAGED_BEAN_UNABLE_TO_SET_PROPERTY_ERROR=No se puede definir la propiedad ''{0}'' para el bean administrado ''{1}'' com.sun.faces.MANAGED_BEAN_PROBLEMS_ERROR=No se puede crear el bean administrado ''{0}''. Se han encontrado los problemas siguientes: -com.sun.faces.MANAGED_BEAN_PROBLEMS_STARTUP_ERROR=JSF no podr\u00e1 crear el bean administrado ''{0}'' cuando se solicite. Se han encontrado los problemas siguientes: +com.sun.faces.MANAGED_BEAN_PROBLEMS_STARTUP_ERROR=Faces no podr\u00e1 crear el bean administrado ''{0}'' cuando se solicite. Se han encontrado los problemas siguientes: com.sun.faces.MANAGED_BEAN_UNKNOWN_PROCESSING_ERROR=Error inesperado al procesar el bean administrado ''{0}'' com.sun.faces.MANAGED_BEAN_PROPERTY_UNKNOWN_PROCESSING_ERROR=Error inesperado al procesar la propiedad administrada ''{0}'' com.sun.faces.MANAGED_BEAN_INVALID_SCOPE=El \u00e1mbito de ''{0}'' no es ''view'', ''request'', ''session'', ''application'' ni representa un ValueExpression (#{...}) @@ -128,7 +128,7 @@ com.sun.faces.SUPPORTS_COMPONENT_ERROR=Error de argumento: no se admite ''{0}'' com.sun.faces.TYPECONVERSION_ERROR=Error de conversi\u00f3n al definir el valor ''{0}'' para ''{1}''. com.sun.faces.VALIDATION_COMMAND_ERROR=Error de validaci\u00f3n. ''{0}'' debe tener un atributo de valor o imagen. com.sun.faces.VALIDATION_EL_ERROR=Error de validaci\u00f3n. Expresi\u00f3n no v\u00e1lida para: ''{0}'' -com.sun.faces.VALIDATION_ID_ERROR=Error de validaci\u00f3n. Se requiere que las siguientes etiquetas JSF contengan ID:''{0}'' +com.sun.faces.VALIDATION_ID_ERROR=Error de validaci\u00f3n. Se requiere que las siguientes etiquetas Faces contengan ID:''{0}'' com.sun.faces.CANNOT_CONVERT=No se puede resolver una instancia Converter mediante converterId ''{0}'' o un enlace ''{1}''. com.sun.faces.CANNOT_VALIDATE=No se puede resolver una instancia Validator mediante validatorId ''{0}'' o un enlace ''{1}''. com.sun.faces.verifier.CLASS_NOT_FOUND=[{0}:{1}] la clase no existe diff --git a/impl/src/main/resources/com/sun/faces/resources/Messages_fr.properties b/impl/src/main/resources/com/sun/faces/resources/Messages_fr.properties index 3e48b87eca..8bca84768f 100644 --- a/impl/src/main/resources/com/sun/faces/resources/Messages_fr.properties +++ b/impl/src/main/resources/com/sun/faces/resources/Messages_fr.properties @@ -25,7 +25,7 @@ com.sun.faces.CANT_INSTANTIATE_CLASS=Impossible d\u2019instancier la classe \u00 com.sun.faces.CANT_INTROSPECT_CLASS=Impossible d\u2019appliquer une introspection \u00e0 la classe \u00ab{0}\u00bb. com.sun.faces.CANT_PARSE_FILE=Impossible d\u2019analyser le fichier \u00ab{0}\u00bb. Erreur \u00e0 la ligne {1} colonne {2} : {3}. com.sun.faces.CHILD_NOT_OF_EXPECTED_TYPE=Le type de composant enfant \u00ab{0}\u00bb \u00e9tait attendu pour le type de composant \u2019{1}({2})\u2019\u2019. \u00ab{3}\u00bb d\u00e9tect\u00e9. -com.sun.faces.COMMAND_LINK_NO_FORM_MESSAGE=: ce lien est d\u00e9sactiv\u00e9 car il n\u2019est pas imbriqu\u00e9 dans un formulaire JSF. +com.sun.faces.COMMAND_LINK_NO_FORM_MESSAGE=: ce lien est d\u00e9sactiv\u00e9 car il n\u2019est pas imbriqu\u00e9 dans un formulaire Faces. com.sun.faces.COMMAND_NOT_NESTED_WITHIN_FORM=Une ou plusieurs instances d\u2019UICommand d\u00e9tect\u00e9es dans la vue et non imbriqu\u00e9es dans un formulaire UIForm. Les actions associ\u00e9es \u00e0 ces commandes ne seront pas invoqu\u00e9es. com.sun.faces.COMPONENT_NOT_FOUND_ERROR=Composant non d\u00e9tect\u00e9 pour l\u2019identificateur \u00ab{0}\u00bb. com.sun.faces.COMPONENT_NOT_FOUND_IN_VIEW_WARNING=Impossible de d\u00e9tecter le composant dont l\u2019ID est \u00ab{0}\u00bb dans la vue. @@ -84,7 +84,7 @@ com.sun.faces.MANAGED_BEAN_PROPERTY_HAS_NO_SETTER_ERROR=La propri\u00e9t\u00e9 \ com.sun.faces.MANAGED_BEAN_PROPERTY_INCORRECT_ARGS_ERROR=La propri\u00e9t\u00e9 \u00ab{0}\u00bb du bean g\u00e9r\u00e9 \u00ab{1}\u00bb accepte plusieurs arguments. com.sun.faces.MANAGED_BEAN_UNABLE_TO_SET_PROPERTY_ERROR=Impossible de d\u00e9finir la propri\u00e9t\u00e9 \u00ab{0}\u00bb du bean g\u00e9r\u00e9 \u00ab{1}\u00bb. com.sun.faces.MANAGED_BEAN_PROBLEMS_ERROR=Impossible de cr\u00e9er le bean g\u00e9r\u00e9 \u00ab{0}\u00bb. Les probl\u00e8mes suivants ont \u00e9t\u00e9 d\u00e9tect\u00e9s\u00a0: -com.sun.faces.MANAGED_BEAN_PROBLEMS_STARTUP_ERROR=JSF ne pourra pas cr\u00e9\u00e9 le bean g\u00e9r\u00e9 \u00ab{0}\u00bb lorsqu\u2019il sera demand\u00e9. Les probl\u00e8mes suivants ont \u00e9t\u00e9 d\u00e9tect\u00e9s\u00a0: +com.sun.faces.MANAGED_BEAN_PROBLEMS_STARTUP_ERROR=Faces ne pourra pas cr\u00e9\u00e9 le bean g\u00e9r\u00e9 \u00ab{0}\u00bb lorsqu\u2019il sera demand\u00e9. Les probl\u00e8mes suivants ont \u00e9t\u00e9 d\u00e9tect\u00e9s\u00a0: com.sun.faces.MANAGED_BEAN_UNKNOWN_PROCESSING_ERROR=Erreur inattendue lors du traitement du bean g\u00e9r\u00e9 \u00ab{0}\u00bb com.sun.faces.MANAGED_BEAN_PROPERTY_UNKNOWN_PROCESSING_ERROR=Erreur inattendue lors du traitement de la propri\u00e9t\u00e9 g\u00e9r\u00e9e \u00ab{0}\u00bb com.sun.faces.MANAGED_BEAN_INVALID_SCOPE=L\u2019\u00e9tendue \u00ab{0}\u00bb ne repr\u00e9sente ni \u2019\u2019view\u2019\u2019, \u2019\u2019request\u2019\u2019, \u2019\u2019session\u2019\u2019, \u2019\u2019application\u2019\u2019, ni une ValueExpression (#{...}). @@ -128,7 +128,7 @@ com.sun.faces.SUPPORTS_COMPONENT_ERROR=Erreur d\u2019argument : \u00ab{0}\u00bb com.sun.faces.TYPECONVERSION_ERROR=Erreur de conversion lors de la d\u00e9finition de la valeur \u00ab{0}\u00bb pour \u00ab{1}\u00bb. com.sun.faces.VALIDATION_COMMAND_ERROR=Erreur de validation \u00ab{0}\u00bb doit avoir une valeur ou un attribut d\u2019image. com.sun.faces.VALIDATION_EL_ERROR=Erreur de validation Expression non valide pour \u00ab{0}\u00bb -com.sun.faces.VALIDATION_ID_ERROR=Erreur de validation Les balises JSF suivantes doivent contenir des ID : \u00ab{0}\u00bb +com.sun.faces.VALIDATION_ID_ERROR=Erreur de validation Les balises Faces suivantes doivent contenir des ID : \u00ab{0}\u00bb com.sun.faces.CANNOT_CONVERT=Impossible de r\u00e9soudre une instance de Converter \u00e0 l\u2019aide de converterId \u00ab{0}\u00bb ou de binding \u00ab{1}\u00bb. com.sun.faces.CANNOT_VALIDATE=Impossible de r\u00e9soudre une instance de Validator \u00e0 l\u2019aide de validatorId \u00ab{0}\u00bb ou de binding \u00ab{1}\u00bb. com.sun.faces.verifier.CLASS_NOT_FOUND=La classe [{0}:{1}] n\u2019existe pas. diff --git a/impl/src/main/resources/com/sun/faces/resources/Messages_ja.properties b/impl/src/main/resources/com/sun/faces/resources/Messages_ja.properties index 8294c28336..d18d492c0a 100644 --- a/impl/src/main/resources/com/sun/faces/resources/Messages_ja.properties +++ b/impl/src/main/resources/com/sun/faces/resources/Messages_ja.properties @@ -25,7 +25,7 @@ com.sun.faces.CANT_INSTANTIATE_CLASS=\u30af\u30e9\u30b9 ''{0}'' \u3092\u30a4\u30 com.sun.faces.CANT_INTROSPECT_CLASS=\u30af\u30e9\u30b9\u3092\u30a4\u30f3\u30c8\u30ed\u30b9\u30da\u30af\u30c8\u3067\u304d\u307e\u305b\u3093: ''{0}'' com.sun.faces.CANT_PARSE_FILE=\u30d5\u30a1\u30a4\u30eb\u3092\u89e3\u6790\u3067\u304d\u307e\u305b\u3093: ''{0}'': \u884c {1}\u3001\u5217 {2} \u3067\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f: {3}\u3002 com.sun.faces.CHILD_NOT_OF_EXPECTED_TYPE=\u30b3\u30f3\u30dd\u30fc\u30cd\u30f3\u30c8\u30bf\u30a4\u30d7 ''{1}({2})'' \u306b\u5bfe\u3057\u3066\u3001\u4e88\u671f\u3055\u308c\u308b\u5b50\u30b3\u30f3\u30dd\u30fc\u30cd\u30f3\u30c8\u306e\u30bf\u30a4\u30d7\u306f ''{0}'' \u3067\u3059\u3002''{3}'' \u304c\u898b\u3064\u304b\u308a\u307e\u3057\u305f\u3002 -com.sun.faces.COMMAND_LINK_NO_FORM_MESSAGE=: \u3053\u306e\u30ea\u30f3\u30af\u306f\u7121\u52b9\u3067\u3059\u3002JSF \u30d5\u30a9\u30fc\u30e0\u5185\u3067\u5165\u308c\u5b50\u306b\u306a\u3063\u3066\u3044\u307e\u305b\u3093\u3002 +com.sun.faces.COMMAND_LINK_NO_FORM_MESSAGE=: \u3053\u306e\u30ea\u30f3\u30af\u306f\u7121\u52b9\u3067\u3059\u3002Faces \u30d5\u30a9\u30fc\u30e0\u5185\u3067\u5165\u308c\u5b50\u306b\u306a\u3063\u3066\u3044\u307e\u305b\u3093\u3002 com.sun.faces.COMMAND_NOT_NESTED_WITHIN_FORM=UIForm \u5185\u3067\u5165\u308c\u5b50\u306b\u306a\u3063\u3066\u3044\u306a\u3044\u30d3\u30e5\u30fc\u5185\u306b\u30011 \u3064\u4ee5\u4e0a\u306e UICommand \u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u304c\u898b\u3064\u304b\u308a\u307e\u3057\u305f\u3002\u3053\u308c\u3089\u306e\u30b3\u30de\u30f3\u30c9\u306b\u95a2\u9023\u3059\u308b\u30a2\u30af\u30b7\u30e7\u30f3\u306f\u547c\u3073\u51fa\u3055\u308c\u307e\u305b\u3093\u3002 com.sun.faces.COMPONENT_NOT_FOUND_ERROR=\u8b58\u5225\u5b50 ''{0}'' \u306b\u5bfe\u3059\u308b\u30b3\u30f3\u30dd\u30fc\u30cd\u30f3\u30c8\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3002 com.sun.faces.COMPONENT_NOT_FOUND_IN_VIEW_WARNING=ID ''{0}'' \u306e\u30b3\u30f3\u30dd\u30fc\u30cd\u30f3\u30c8\u304c\u30d3\u30e5\u30fc\u306b\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3002 @@ -84,7 +84,7 @@ com.sun.faces.MANAGED_BEAN_PROPERTY_HAS_NO_SETTER_ERROR=\u7ba1\u7406\u5bfe\u8c61 com.sun.faces.MANAGED_BEAN_PROPERTY_INCORRECT_ARGS_ERROR=\u7ba1\u7406\u5bfe\u8c61 Bean ''{1}'' \u306e\u30d7\u30ed\u30d1\u30c6\u30a3\u30fc ''{0}'' \u306f\u3001\u8907\u6570\u306e\u5f15\u6570\u3092\u53d7\u3051\u53d6\u308a\u307e\u3059 com.sun.faces.MANAGED_BEAN_UNABLE_TO_SET_PROPERTY_ERROR=\u7ba1\u7406\u5bfe\u8c61 Bean ''{1}'' \u306e\u30d7\u30ed\u30d1\u30c6\u30a3\u30fc ''{0}'' \u3092\u8a2d\u5b9a\u3067\u304d\u307e\u305b\u3093 com.sun.faces.MANAGED_BEAN_PROBLEMS_ERROR=\u7ba1\u7406\u5bfe\u8c61 Bean ''{0}'' \u3092\u4f5c\u6210\u3067\u304d\u307e\u305b\u3093\u3002\u6b21\u306e\u554f\u984c\u304c\u898b\u3064\u304b\u308a\u307e\u3057\u305f: -com.sun.faces.MANAGED_BEAN_PROBLEMS_STARTUP_ERROR=JSF \u306f\u3001\u8981\u6c42\u3055\u308c\u305f\u3068\u304d\u306b\u7ba1\u7406\u5bfe\u8c61 Bean ''{0}'' \u3092\u4f5c\u6210\u3067\u304d\u307e\u305b\u3093\u3002\u6b21\u306e\u554f\u984c\u304c\u898b\u3064\u304b\u308a\u307e\u3057\u305f: +com.sun.faces.MANAGED_BEAN_PROBLEMS_STARTUP_ERROR=Faces \u306f\u3001\u8981\u6c42\u3055\u308c\u305f\u3068\u304d\u306b\u7ba1\u7406\u5bfe\u8c61 Bean ''{0}'' \u3092\u4f5c\u6210\u3067\u304d\u307e\u305b\u3093\u3002\u6b21\u306e\u554f\u984c\u304c\u898b\u3064\u304b\u308a\u307e\u3057\u305f: com.sun.faces.MANAGED_BEAN_UNKNOWN_PROCESSING_ERROR=\u7ba1\u7406\u5bfe\u8c61 Bean ''{0}'' \u306e\u51e6\u7406\u4e2d\u306b\u4e88\u671f\u3057\u306a\u3044\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f com.sun.faces.MANAGED_BEAN_PROPERTY_UNKNOWN_PROCESSING_ERROR=\u7ba1\u7406\u5bfe\u8c61\u30d7\u30ed\u30d1\u30c6\u30a3\u30fc ''{0}'' \u306e\u51e6\u7406\u4e2d\u306b\u4e88\u671f\u3057\u306a\u3044\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f com.sun.faces.MANAGED_BEAN_INVALID_SCOPE=\u30b9\u30b3\u30fc\u30d7 ''{0}'' \u304c ''\u30d3\u30e5\u30fc''\u3001''\u8981\u6c42''\u3001''\u30bb\u30c3\u30b7\u30e7\u30f3''\u3001''\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3'' \u306e\u3044\u305a\u308c\u3067\u3082\u306a\u304f\u3001ValueExpression (#{...}) \u3082\u8868\u3057\u3066\u3044\u307e\u305b\u3093 @@ -128,7 +128,7 @@ com.sun.faces.SUPPORTS_COMPONENT_ERROR=\u5f15\u6570\u30a8\u30e9\u30fc: ''\u3053\ com.sun.faces.TYPECONVERSION_ERROR=''{1}'' \u306e\u5024 ''{0}'' \u3092\u8a2d\u5b9a\u3057\u3066\u3044\u308b\u3068\u304d\u306b\u3001\u5909\u63db\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002 com.sun.faces.VALIDATION_COMMAND_ERROR=\u691c\u8a3c\u30a8\u30e9\u30fc\u3067\u3059\u3002''{0}'' \u306b\u306f\u3001value \u307e\u305f\u306f image \u5c5e\u6027\u304c\u5fc5\u8981\u3067\u3059\u3002 com.sun.faces.VALIDATION_EL_ERROR=\u691c\u8a3c\u30a8\u30e9\u30fc\u3067\u3059\u3002\u5f0f\u304c\u7121\u52b9\u3067\u3059: ''{0}'' -com.sun.faces.VALIDATION_ID_ERROR=\u691c\u8a3c\u30a8\u30e9\u30fc\u3067\u3059\u3002ID \u3092\u542b\u3081\u308b\u306b\u306f\u6b21\u306e JSF \u30bf\u30b0\u304c\u5fc5\u8981\u3067\u3059: ''{0}'' +com.sun.faces.VALIDATION_ID_ERROR=\u691c\u8a3c\u30a8\u30e9\u30fc\u3067\u3059\u3002ID \u3092\u542b\u3081\u308b\u306b\u306f\u6b21\u306e Faces \u30bf\u30b0\u304c\u5fc5\u8981\u3067\u3059: ''{0}'' com.sun.faces.CANNOT_CONVERT=converterId ''{0}'' \u307e\u305f\u306f\u30d0\u30a4\u30f3\u30c7\u30a3\u30f3\u30b0 ''{1}'' \u3092\u4f7f\u7528\u3057\u3066 Converter \u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u89e3\u6c7a\u3067\u304d\u307e\u305b\u3093\u3002 com.sun.faces.CANNOT_VALIDATE=validatorId ''{0}'' \u307e\u305f\u306f\u30d0\u30a4\u30f3\u30c7\u30a3\u30f3\u30b0 ''{1}'' \u3092\u4f7f\u7528\u3057\u3066 Validator \u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u89e3\u6c7a\u3067\u304d\u307e\u305b\u3093\u3002 com.sun.faces.verifier.CLASS_NOT_FOUND=[{0}:{1}] \u30af\u30e9\u30b9\u304c\u5b58\u5728\u3057\u307e\u305b\u3093 diff --git a/impl/src/main/resources/com/sun/faces/resources/Messages_ko.properties b/impl/src/main/resources/com/sun/faces/resources/Messages_ko.properties index 1a5876d973..4550567271 100644 --- a/impl/src/main/resources/com/sun/faces/resources/Messages_ko.properties +++ b/impl/src/main/resources/com/sun/faces/resources/Messages_ko.properties @@ -25,7 +25,7 @@ com.sun.faces.CANT_INSTANTIATE_CLASS=\ud074\ub798\uc2a4\ub97c \uc778\uc2a4\ud134 com.sun.faces.CANT_INTROSPECT_CLASS=\ud074\ub798\uc2a4\ub97c \uac80\uc0ac\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4: ''{0}'' com.sun.faces.CANT_PARSE_FILE=\ud30c\uc77c\uc744 \uad6c\ubb38 \ubd84\uc11d\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4: ''{0}'': {1} \ud589\uc758 {2} \uc5f4\uc5d0\uc11c \uc624\ub958\uac00 \ubc1c\uc0dd\ud588\uc2b5\ub2c8\ub2e4: {3}. com.sun.faces.CHILD_NOT_OF_EXPECTED_TYPE=\uad6c\uc131 \uc694\uc18c \uc720\ud615 "{1}({2})"\uc5d0 \ub300\ud574 \uc790\uc2dd \uad6c\uc131 \uc694\uc18c \uc720\ud615 "{0}"\uc774(\uac00) \ud544\uc694\ud569\ub2c8\ub2e4. "{3}"\uc774(\uac00) \uac80\uc0c9\ub418\uc5c8\uc2b5\ub2c8\ub2e4. -com.sun.faces.COMMAND_LINK_NO_FORM_MESSAGE=: \uc774 \ub9c1\ud06c\ub294 JSF \ud615\uc2dd \ub0b4\uc5d0 \uc911\ucca9\ub418\uc5b4 \uc788\uc9c0 \uc54a\uc544\uc11c \ube44\ud65c\uc131\ud654\ub429\ub2c8\ub2e4. +com.sun.faces.COMMAND_LINK_NO_FORM_MESSAGE=: \uc774 \ub9c1\ud06c\ub294 Faces \ud615\uc2dd \ub0b4\uc5d0 \uc911\ucca9\ub418\uc5b4 \uc788\uc9c0 \uc54a\uc544\uc11c \ube44\ud65c\uc131\ud654\ub429\ub2c8\ub2e4. com.sun.faces.COMMAND_NOT_NESTED_WITHIN_FORM=UIForm \ub0b4 \uc911\ucca9\ub418\uc9c0 \uc54a\uc740 \ud558\ub098 \uc774\uc0c1\uc758 UICommand \uc778\uc2a4\ud134\uc2a4\uac00 \ubcf4\uae30\uc5d0\uc11c \uac80\uc0c9\ub418\uc5c8\uc2b5\ub2c8\ub2e4. \uc774\ub7ec\ud55c \uba85\ub839\uacfc \uc5f0\uacb0\ub41c \uc791\uc5c5\uc774 \ud638\ucd9c\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. com.sun.faces.COMPONENT_NOT_FOUND_ERROR=\uc2dd\ubcc4\uc790\uc5d0 \ub300\ud55c \uad6c\uc131 \uc694\uc18c\ub97c \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4: ''{0}''. com.sun.faces.COMPONENT_NOT_FOUND_IN_VIEW_WARNING=\ubcf4\uae30\uc5d0\uc11c \uc544\uc774\ub514 ''{0}''\uc744(\ub97c) \uac00\uc9c0\ub294 \uad6c\uc131 \uc694\uc18c\ub97c \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. @@ -84,7 +84,7 @@ com.sun.faces.MANAGED_BEAN_PROPERTY_HAS_NO_SETTER_ERROR=\uad00\ub9ac\ub418\ub294 com.sun.faces.MANAGED_BEAN_PROPERTY_INCORRECT_ARGS_ERROR=\uad00\ub9ac\ub418\ub294 Bean ''{1}''\uc758 ''{0}'' \ub4f1\ub85d \uc815\ubcf4\uac00 \ub450 \uac1c \uc774\uc0c1\uc758 \uc778\uc218\ub97c \ud5c8\uc6a9\ud569\ub2c8\ub2e4. com.sun.faces.MANAGED_BEAN_UNABLE_TO_SET_PROPERTY_ERROR=\uad00\ub9ac\ub418\ub294 Bean ''{1}''\uc758 ''{0}'' \ub4f1\ub85d \uc815\ubcf4\ub97c \uc124\uc815\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. com.sun.faces.MANAGED_BEAN_PROBLEMS_ERROR=\uad00\ub9ac\ub418\ub294 Bean ''{0}''\uc744(\ub97c) \ub9cc\ub4e4 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. \ub2e4\uc74c \ubb38\uc81c\uac00 \ubc1c\uacac\ub418\uc5c8\uc2b5\ub2c8\ub2e4. -com.sun.faces.MANAGED_BEAN_PROBLEMS_STARTUP_ERROR=\uad00\ub9ac\ub418\ub294 Bean ''{0}''\uc774(\uac00) \uc694\uccad\ub420 \ub54c JSF\uac00 \ub9cc\ub4e4 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. \ub2e4\uc74c \ubb38\uc81c\uac00 \ubc1c\uacac\ub418\uc5c8\uc2b5\ub2c8\ub2e4. +com.sun.faces.MANAGED_BEAN_PROBLEMS_STARTUP_ERROR=\uad00\ub9ac\ub418\ub294 Bean ''{0}''\uc774(\uac00) \uc694\uccad\ub420 \ub54c Faces\uac00 \ub9cc\ub4e4 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. \ub2e4\uc74c \ubb38\uc81c\uac00 \ubc1c\uacac\ub418\uc5c8\uc2b5\ub2c8\ub2e4. com.sun.faces.MANAGED_BEAN_UNKNOWN_PROCESSING_ERROR=\uad00\ub9ac\ub418\ub294 Bean ''{0}''\uc744(\ub97c) \ucc98\ub9ac\ud558\ub294 \uc911 \uc608\uae30\uce58 \uc54a\uc740 \uc624\ub958\uac00 \ubc1c\uc0dd\ud588\uc2b5\ub2c8\ub2e4. com.sun.faces.MANAGED_BEAN_PROPERTY_UNKNOWN_PROCESSING_ERROR=\uad00\ub9ac\ub418\ub294 \ub4f1\ub85d \uc815\ubcf4 ''{0}''\uc744(\ub97c) \ucc98\ub9ac\ud558\ub294 \uc911 \uc608\uae30\uce58 \uc54a\uc740 \uc624\ub958\uac00 \ubc1c\uc0dd\ud588\uc2b5\ub2c8\ub2e4. com.sun.faces.MANAGED_BEAN_INVALID_SCOPE=\ubc94\uc704 ''{0}''\uc774(\uac00) ''view'', ''request'', ''session'', ''application'' \uc911 \ud558\ub098\uac00 \uc544\ub2c8\uba70, ValueExpression(#{...})\uc744 \ub098\ud0c0\ub0b4\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. @@ -128,7 +128,7 @@ com.sun.faces.SUPPORTS_COMPONENT_ERROR=\uc778\uc218 \uc624\ub958: ''{0}''\uc740( com.sun.faces.TYPECONVERSION_ERROR=''{1}''\uc758 \uac12 ''{0}''\uc744(\ub97c) \uc124\uc815\ud558\ub294 \uc911 \ubcc0\ud658 \uc624\ub958\uac00 \ubc1c\uc0dd\ud588\uc2b5\ub2c8\ub2e4. com.sun.faces.VALIDATION_COMMAND_ERROR=\uac80\uc99d \uc624\ub958\uc785\ub2c8\ub2e4. ''{0}''\uc740(\ub294) \uac12 \ub610\ub294 \uc774\ubbf8\uc9c0 \uc18d\uc131\uc744 \uac00\uc838\uc57c \ud569\ub2c8\ub2e4. com.sun.faces.VALIDATION_EL_ERROR=\uac80\uc99d \uc624\ub958\uc785\ub2c8\ub2e4. \ub2e4\uc74c\uc5d0 \ub300\ud55c \ud45c\ud604\uc2dd\uc774 \uc798\ubabb\ub418\uc5c8\uc2b5\ub2c8\ub2e4: ''{0}'' -com.sun.faces.VALIDATION_ID_ERROR=\uac80\uc99d \uc624\ub958\uc785\ub2c8\ub2e4. \ub2e4\uc74c JSF \ud0dc\uadf8\uc5d0 \uc544\uc774\ub514\uac00 \ub4e4\uc5b4 \uc788\uc5b4\uc57c \ud569\ub2c8\ub2e4:''{0}'' +com.sun.faces.VALIDATION_ID_ERROR=\uac80\uc99d \uc624\ub958\uc785\ub2c8\ub2e4. \ub2e4\uc74c Faces \ud0dc\uadf8\uc5d0 \uc544\uc774\ub514\uac00 \ub4e4\uc5b4 \uc788\uc5b4\uc57c \ud569\ub2c8\ub2e4:''{0}'' com.sun.faces.CANNOT_CONVERT=converterId "{0}" \ub610\ub294 \ubc14\uc778\ub4dc "{1}"\uc744(\ub97c) \uc0ac\uc6a9\ud558\uc5ec \ubcc0\ud658\uae30 \uc778\uc2a4\ud134\uc2a4\ub97c \ud655\uc778\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. com.sun.faces.CANNOT_VALIDATE=validatorId "{0}\" \ub610\ub294 \ubc14\uc778\ub4dc "{1}"\uc744(\ub97c) \uc0ac\uc6a9\ud558\uc5ec \uac80\uc99d\uc790 \uc778\uc2a4\ud134\uc2a4\ub97c \ud655\uc778\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. com.sun.faces.verifier.CLASS_NOT_FOUND=[{0}:{1}] \ud074\ub798\uc2a4\uac00 \uc5c6\uc2b5\ub2c8\ub2e4. diff --git a/impl/src/main/resources/com/sun/faces/resources/Messages_pt_BR.properties b/impl/src/main/resources/com/sun/faces/resources/Messages_pt_BR.properties index 32d69ddaa4..4934c405ee 100644 --- a/impl/src/main/resources/com/sun/faces/resources/Messages_pt_BR.properties +++ b/impl/src/main/resources/com/sun/faces/resources/Messages_pt_BR.properties @@ -25,7 +25,7 @@ com.sun.faces.CANT_INSTANTIATE_CLASS=N\u00e3o \u00e9 poss\u00edvel criar inst\u0 com.sun.faces.CANT_INTROSPECT_CLASS=N\u00e3o \u00e9 poss\u00edvel fazer a introspec\u00e7\u00e3o da classe: ''{0}'' com.sun.faces.CANT_PARSE_FILE=N\u00e3o \u00e9 poss\u00edvel analisar o arquivo: ''{0}'': Erro na linha {1} coluna {2}: {3}. com.sun.faces.CHILD_NOT_OF_EXPECTED_TYPE=Esperado um tipo de componente filho de ''{0}'' para o tipo de componente ''{1}({2})''. Encontrado ''{3}''. -com.sun.faces.COMMAND_LINK_NO_FORM_MESSAGE=: Este link est\u00e1 desativado, pois n\u00e3o est\u00e1 aninhado em um formul\u00e1rio JSF. +com.sun.faces.COMMAND_LINK_NO_FORM_MESSAGE=: Este link est\u00e1 desativado, pois n\u00e3o est\u00e1 aninhado em um formul\u00e1rio Faces. com.sun.faces.COMMAND_NOT_NESTED_WITHIN_FORM=Uma ou mais inst\u00e2ncias de UICommand encontradas na exibi\u00e7\u00e3o que n\u00e3o foram aninhadas em um UIForm. As a\u00e7\u00f5es associadas a esses comandos n\u00e3o ser\u00e3o invocadas. com.sun.faces.COMPONENT_NOT_FOUND_ERROR=Componente n\u00e3o encontrado para o identificador: ''{0}''. com.sun.faces.COMPONENT_NOT_FOUND_IN_VIEW_WARNING=N\u00e3o foi poss\u00edvel encontrar o componente com a ID ''{0}'' na exibi\u00e7\u00e3o. @@ -84,7 +84,7 @@ com.sun.faces.MANAGED_BEAN_PROPERTY_HAS_NO_SETTER_ERROR=A propriedade ''{0}'' pa com.sun.faces.MANAGED_BEAN_PROPERTY_INCORRECT_ARGS_ERROR=A propriedade ''{0}'' para o bean gerenciado ''{1}'' aceita mais de um argumento. com.sun.faces.MANAGED_BEAN_UNABLE_TO_SET_PROPERTY_ERROR=N\u00e3o \u00e9 poss\u00edvel definir a propriedade ''{0}'' para o bean gerenciado ''{1}''. com.sun.faces.MANAGED_BEAN_PROBLEMS_ERROR=N\u00e3o foi poss\u00edvel criar o bean gerenciado ''{0}''. Os seguintes problemas foram encontrados: -com.sun.faces.MANAGED_BEAN_PROBLEMS_STARTUP_ERROR=O JSF estar\u00e1 indispon\u00edvel para criar o bean gerenciado ''{0}'' quando ele for solicitado. Os seguintes problemas foram encontrados: +com.sun.faces.MANAGED_BEAN_PROBLEMS_STARTUP_ERROR=O Faces estar\u00e1 indispon\u00edvel para criar o bean gerenciado ''{0}'' quando ele for solicitado. Os seguintes problemas foram encontrados: com.sun.faces.MANAGED_BEAN_UNKNOWN_PROCESSING_ERROR=Erro inesperado ao processar o bean gerenciado ''{0}'' com.sun.faces.MANAGED_BEAN_PROPERTY_UNKNOWN_PROCESSING_ERROR=Erro inesperado ao processar a propriedade gerenciada ''{0}'' com.sun.faces.MANAGED_BEAN_INVALID_SCOPE=O escopo ''{0}'' n\u00e3o \u00e9 ''exibi\u00e7\u00e3o'', ''solicita\u00e7\u00e3o'', ''sess\u00e3o'', ''aplicativo'', nem representa um ValueExpression (#{...}) @@ -128,7 +128,7 @@ com.sun.faces.SUPPORTS_COMPONENT_ERROR=Erro de argumento: ''{0}'' sem suporte pa com.sun.faces.TYPECONVERSION_ERROR=Erro de convers\u00e3o ao definir o valor ''{0}'' para ''{1}''. com.sun.faces.VALIDATION_COMMAND_ERROR=Erro de valida\u00e7\u00e3o. ''{0}'' deve ter um atributo de valor ou imagem. com.sun.faces.VALIDATION_EL_ERROR=Erro de valida\u00e7\u00e3o. Express\u00e3o inv\u00e1lida para:''{0}'' -com.sun.faces.VALIDATION_ID_ERROR=Erro de valida\u00e7\u00e3o. As seguintes marcas JSF s\u00e3o necess\u00e1rias para conter IDs:''{0}'' +com.sun.faces.VALIDATION_ID_ERROR=Erro de valida\u00e7\u00e3o. As seguintes marcas Faces s\u00e3o necess\u00e1rias para conter IDs:''{0}'' com.sun.faces.CANNOT_CONVERT=N\u00e3o foi poss\u00edvel resolver uma inst\u00e2ncia do Conversor usando converterId ''{0}'' ou a liga\u00e7\u00e3o ''{1}''. com.sun.faces.CANNOT_VALIDATE=N\u00e3o foi poss\u00edvel resolver uma inst\u00e2ncia do Validador usando validatorId ''{0}'' ou a liga\u00e7\u00e3o ''{1}''. com.sun.faces.verifier.CLASS_NOT_FOUND=[{0}:{1}] A classe n\u00e3o existe diff --git a/impl/src/main/resources/com/sun/faces/resources/Messages_zh_CN.properties b/impl/src/main/resources/com/sun/faces/resources/Messages_zh_CN.properties index a6fd0aac5a..a135f0d568 100644 --- a/impl/src/main/resources/com/sun/faces/resources/Messages_zh_CN.properties +++ b/impl/src/main/resources/com/sun/faces/resources/Messages_zh_CN.properties @@ -25,7 +25,7 @@ com.sun.faces.CANT_INSTANTIATE_CLASS=\u65e0\u6cd5\u5b9e\u4f8b\u5316\u7c7b\uff1a' com.sun.faces.CANT_INTROSPECT_CLASS=\u65e0\u6cd5\u5185\u7701\u7c7b\uff1a''{0}'' com.sun.faces.CANT_PARSE_FILE=\u65e0\u6cd5\u89e3\u6790\u6587\u4ef6 ''{0}''\uff1a\u884c {1} \u5217 {2} \u5904\u51fa\u9519\uff1a{3}\u3002 com.sun.faces.CHILD_NOT_OF_EXPECTED_TYPE=\u5bf9\u4e8e\u7ec4\u4ef6\u7c7b\u578b ''{1}({2})''\uff0c\u671f\u671b\u7684\u5b50\u7ec4\u4ef6\u7c7b\u578b\u4e3a ''{0}''\u3002\u627e\u5230 ''{3}''\u3002 -com.sun.faces.COMMAND_LINK_NO_FORM_MESSAGE=: \u6b64\u94fe\u63a5\u5df2\u7981\u7528\uff0c\u56e0\u4e3a\u5b83\u672a\u5d4c\u5957\u5728 JSF \u8868\u5355\u5185\u3002 +com.sun.faces.COMMAND_LINK_NO_FORM_MESSAGE=: \u6b64\u94fe\u63a5\u5df2\u7981\u7528\uff0c\u56e0\u4e3a\u5b83\u672a\u5d4c\u5957\u5728 Faces \u8868\u5355\u5185\u3002 com.sun.faces.COMMAND_NOT_NESTED_WITHIN_FORM=\u5728\u672a\u5d4c\u5957\u5728 UIForm \u5185\u7684\u89c6\u56fe\u4e2d\uff0c\u627e\u5230\u4e00\u4e2a\u6216\u591a\u4e2a UICommand \u5b9e\u4f8b\u3002\u4e0e\u8fd9\u4e9b\u547d\u4ee4\u5173\u8054\u7684\u64cd\u4f5c\u5c06\u4e0d\u4f1a\u88ab\u8c03\u7528\u3002 com.sun.faces.COMPONENT_NOT_FOUND_ERROR=\u672a\u627e\u5230\u6807\u8bc6\u7b26 ''{0}'' \u7684\u7ec4\u4ef6\u3002 com.sun.faces.COMPONENT_NOT_FOUND_IN_VIEW_WARNING=\u65e0\u6cd5\u5728\u89c6\u56fe\u4e2d\u627e\u5230 ID \u4e3a ''{0}'' \u7684\u7ec4\u4ef6\u3002 @@ -84,7 +84,7 @@ com.sun.faces.MANAGED_BEAN_PROPERTY_HAS_NO_SETTER_ERROR=\u53d7\u7ba1 bean ''{1}' com.sun.faces.MANAGED_BEAN_PROPERTY_INCORRECT_ARGS_ERROR=\u53d7\u7ba1 bean ''{1}'' \u7684\u5c5e\u6027 ''{0}'' \u63a5\u53d7\u591a\u4e2a\u53c2\u6570 com.sun.faces.MANAGED_BEAN_UNABLE_TO_SET_PROPERTY_ERROR=\u65e0\u6cd5\u8bbe\u7f6e\u53d7\u7ba1 bean ''{1}'' \u7684\u5c5e\u6027 ''{0}'' com.sun.faces.MANAGED_BEAN_PROBLEMS_ERROR=\u65e0\u6cd5\u521b\u5efa\u53d7\u7ba1 bean ''{0}''\u3002\u53d1\u73b0\u4ee5\u4e0b\u95ee\u9898\uff1a -com.sun.faces.MANAGED_BEAN_PROBLEMS_STARTUP_ERROR=\u8bf7\u6c42\u53d7\u7ba1 bean ''{0}'' \u65f6\uff0cJSF \u65e0\u6cd5\u521b\u5efa\u5b83\u3002\u53d1\u73b0\u4ee5\u4e0b\u95ee\u9898\uff1a +com.sun.faces.MANAGED_BEAN_PROBLEMS_STARTUP_ERROR=\u8bf7\u6c42\u53d7\u7ba1 bean ''{0}'' \u65f6\uff0cFaces \u65e0\u6cd5\u521b\u5efa\u5b83\u3002\u53d1\u73b0\u4ee5\u4e0b\u95ee\u9898\uff1a com.sun.faces.MANAGED_BEAN_UNKNOWN_PROCESSING_ERROR=\u5904\u7406\u53d7\u7ba1 bean ''{0}'' \u65f6\u53d1\u751f\u610f\u5916\u9519\u8bef com.sun.faces.MANAGED_BEAN_PROPERTY_UNKNOWN_PROCESSING_ERROR=\u5904\u7406\u53d7\u7ba1\u5c5e\u6027 ''{0}'' \u65f6\u53d1\u751f\u610f\u5916\u9519\u8bef com.sun.faces.MANAGED_BEAN_INVALID_SCOPE=\u8303\u56f4 ''{0}'' \u65e2\u4e0d\u662f ''view''\u3001''request''\u3001''session''\u3001''application'' \u4e4b\u4e00\uff0c\u4e5f\u4e0d\u4ee3\u8868 ValueExpression (#{...}) @@ -128,7 +128,7 @@ com.sun.faces.SUPPORTS_COMPONENT_ERROR=\u53c2\u6570\u9519\u8bef\uff1a\u6b64 rend com.sun.faces.TYPECONVERSION_ERROR=\u4e3a ''{1}'' \u8bbe\u7f6e\u503c ''{0}'' \u65f6\u53d1\u751f\u8f6c\u6362\u9519\u8bef\u3002 com.sun.faces.VALIDATION_COMMAND_ERROR=\u9a8c\u8bc1\u9519\u8bef\u3002''{0}'' \u5fc5\u987b\u5177\u6709\u503c\u6216\u56fe\u50cf\u5c5e\u6027\u3002 com.sun.faces.VALIDATION_EL_ERROR=\u9a8c\u8bc1\u9519\u8bef\u3002''{0}'' \u7684\u8868\u8fbe\u5f0f\u65e0\u6548 -com.sun.faces.VALIDATION_ID_ERROR=\u9a8c\u8bc1\u9519\u8bef\u3002\u4ee5\u4e0b JSF \u6807\u8bb0\u5fc5\u987b\u5305\u542b ID\uff1a''{0}'' +com.sun.faces.VALIDATION_ID_ERROR=\u9a8c\u8bc1\u9519\u8bef\u3002\u4ee5\u4e0b Faces \u6807\u8bb0\u5fc5\u987b\u5305\u542b ID\uff1a''{0}'' com.sun.faces.CANNOT_CONVERT=\u65e0\u6cd5\u4f7f\u7528\u8f6c\u6362\u5668 ID ''{0}'' \u6216\u7ed1\u5b9a ''{1}'' \u89e3\u6790 Converter \u5b9e\u4f8b\u3002 com.sun.faces.CANNOT_VALIDATE=\u65e0\u6cd5\u4f7f\u7528\u9a8c\u8bc1\u5668 ID ''{0}'' \u6216\u7ed1\u5b9a ''{1}'' \u89e3\u6790 Validator \u5b9e\u4f8b\u3002 com.sun.faces.verifier.CLASS_NOT_FOUND=[{0}:{1}] \u7c7b\u4e0d\u5b58\u5728 diff --git a/impl/src/main/resources/com/sun/faces/resources/Messages_zh_HK.properties b/impl/src/main/resources/com/sun/faces/resources/Messages_zh_HK.properties index 453aa81351..fb19ad2925 100644 --- a/impl/src/main/resources/com/sun/faces/resources/Messages_zh_HK.properties +++ b/impl/src/main/resources/com/sun/faces/resources/Messages_zh_HK.properties @@ -25,7 +25,7 @@ com.sun.faces.CANT_INSTANTIATE_CLASS=\u7121\u6cd5\u5be6\u4f8b\u5316\u985e\u5225: com.sun.faces.CANT_INTROSPECT_CLASS=\u7121\u6cd5\u5167\u8996\u985e\u5225:\u300c{0}\u300d com.sun.faces.CANT_PARSE_FILE=\u7121\u6cd5\u5256\u6790\u6a94\u6848\u300c{0}\u300d\uff1a\u884c {1} \u6b04 {2} \u767c\u751f\u932f\u8aa4: {3}\u3002 com.sun.faces.CHILD_NOT_OF_EXPECTED_TYPE=\u5c0d\u65bc\u5143\u4ef6\u985e\u578b\u300c{1}({2})\u300d\uff0c\u9810\u671f\u7684\u5b50\u5143\u4ef6\u985e\u578b\u70ba\u300c{0}\u300d\u3002\u4f46\u662f\u537b\u627e\u5230\u300c{3}\u300d\u3002 -com.sun.faces.COMMAND_LINK_NO_FORM_MESSAGE=\uff1a\u6b64\u9023\u7d50\u5df2\u505c\u7528\uff0c\u56e0\u70ba\u5b83\u672a\u5d4c\u5957\u5728 JSF \u8868\u55ae\u5167\u3002 +com.sun.faces.COMMAND_LINK_NO_FORM_MESSAGE=\uff1a\u6b64\u9023\u7d50\u5df2\u505c\u7528\uff0c\u56e0\u70ba\u5b83\u672a\u5d4c\u5957\u5728 Faces \u8868\u55ae\u5167\u3002 com.sun.faces.COMMAND_NOT_NESTED_WITHIN_FORM=\u6aa2\u8996\u5167\u627e\u5230\u4e00\u6216\u591a\u500b UICommand \u5be6\u4f8b\u672a\u5d4c\u5957\u5728 UIForm \u5167\u3002\u5c07\u4e0d\u6703\u547c\u53eb\u8207\u9019\u4e9b\u6307\u4ee4\u76f8\u95dc\u806f\u7684\u52d5\u4f5c\u3002 com.sun.faces.COMPONENT_NOT_FOUND_ERROR=\u672a\u627e\u5230\u8b58\u5225\u78bc\u300c{0}\u300d\u7684\u5143\u4ef6\u3002 com.sun.faces.COMPONENT_NOT_FOUND_IN_VIEW_WARNING=\u5728\u6aa2\u8996\u4e2d\u627e\u4e0d\u5230 ID \u70ba\u300c{0}\u300d\u7684\u5143\u4ef6\u3002 @@ -84,7 +84,7 @@ com.sun.faces.MANAGED_BEAN_PROPERTY_HAS_NO_SETTER_ERROR=\u53d7\u7ba1 Bean\u300c{ com.sun.faces.MANAGED_BEAN_PROPERTY_INCORRECT_ARGS_ERROR=\u53d7\u7ba1 Bean\u300c{1}\u300d\u7684\u7279\u6027\u300c{0}\u300d\u63a5\u53d7\u8d85\u904e\u4e00\u500b\u5f15\u6578\u3002 com.sun.faces.MANAGED_BEAN_UNABLE_TO_SET_PROPERTY_ERROR=\u7121\u6cd5\u8a2d\u5b9a\u53d7\u7ba1 Bean\u300c{1}\u300d\u7684\u7279\u6027\u300c{0}\u300d\u3002 com.sun.faces.MANAGED_BEAN_PROBLEMS_ERROR=\u7121\u6cd5\u5efa\u7acb\u53d7\u7ba1 Bean\u300c{0}\u300d\u3002\u627e\u5230\u4e0b\u5217\u554f\u984c\uff1a -com.sun.faces.MANAGED_BEAN_PROBLEMS_STARTUP_ERROR=JSF \u6536\u5230\u8acb\u6c42\u6642\u5c07\u7121\u6cd5\u5efa\u7acb\u53d7\u7ba1 Bean\u300c{0}\u300d\u3002\u627e\u5230\u4e0b\u5217\u554f\u984c\uff1a +com.sun.faces.MANAGED_BEAN_PROBLEMS_STARTUP_ERROR=Faces \u6536\u5230\u8acb\u6c42\u6642\u5c07\u7121\u6cd5\u5efa\u7acb\u53d7\u7ba1 Bean\u300c{0}\u300d\u3002\u627e\u5230\u4e0b\u5217\u554f\u984c\uff1a com.sun.faces.MANAGED_BEAN_UNKNOWN_PROCESSING_ERROR=\u8655\u7406\u53d7\u7ba1 Bean\u300c{0}\u300d\u6642\u767c\u751f\u672a\u9810\u671f\u7684\u932f\u8aa4 com.sun.faces.MANAGED_BEAN_PROPERTY_UNKNOWN_PROCESSING_ERROR=\u8655\u7406\u53d7\u7ba1\u7279\u6027\u300c{0}\u300d\u6642\u767c\u751f\u672a\u9810\u671f\u7684\u932f\u8aa4 com.sun.faces.MANAGED_BEAN_INVALID_SCOPE=\u7bc4\u570d\u300c{0}\u300d\u4e0d\u662f\u300cview\u300d\u300crequest\u300d\u300csession\u300d\u3001\u300capplication\u300d\u5176\u4e2d\u4e4b\u4e00\uff0c\u4e5f\u4e0d\u662f\u4ee3\u8868 ValueExpression (#{...}) @@ -128,7 +128,7 @@ com.sun.faces.SUPPORTS_COMPONENT_ERROR=\u5f15\u6578\u932f\u8aa4\uff1a\u6b64\u7de com.sun.faces.TYPECONVERSION_ERROR=\u8a2d\u5b9a\u300c{1}\u300d\u7684\u503c\u300c{0}\u300d\u6642\u767c\u751f\u8f49\u63db\u932f\u8aa4\u3002 com.sun.faces.VALIDATION_COMMAND_ERROR=\u9a57\u8b49\u932f\u8aa4\u3002\u300c{0}\u300d\u5fc5\u9808\u5177\u6709\u503c\u6216\u5f71\u50cf\u5c6c\u6027\u3002 com.sun.faces.VALIDATION_EL_ERROR=\u9a57\u8b49\u932f\u8aa4\u3002\u8868\u793a\u5f0f\u5c0d\u65bc\u300c{0}\u300d\u7121\u6548 -com.sun.faces.VALIDATION_ID_ERROR=\u9a57\u8b49\u932f\u8aa4\u3002\u4e0b\u5217 JSF \u6a19\u8a18\u5fc5\u9808\u542b\u6709 ID:\u300c{0}\u300d +com.sun.faces.VALIDATION_ID_ERROR=\u9a57\u8b49\u932f\u8aa4\u3002\u4e0b\u5217 Faces \u6a19\u8a18\u5fc5\u9808\u542b\u6709 ID:\u300c{0}\u300d com.sun.faces.CANNOT_CONVERT=\u7121\u6cd5\u4f7f\u7528 converterId\u300c{0}\u300d\u6216 binding\u300c{1}\u300d\u89e3\u6790\u8f49\u63db\u5668\u5be6\u4f8b\u3002 com.sun.faces.CANNOT_VALIDATE=\u7121\u6cd5\u4f7f\u7528 validatorId\u300c{0}\u300d\u6216 binding\u300c{1}\u300d\u89e3\u6790\u9a57\u8b49\u5668\u5be6\u4f8b\u3002 com.sun.faces.verifier.CLASS_NOT_FOUND=[{0}:{1}] \u985e\u5225\u4e0d\u5b58\u5728 diff --git a/impl/src/main/resources/com/sun/faces/resources/Messages_zh_TW.properties b/impl/src/main/resources/com/sun/faces/resources/Messages_zh_TW.properties index 453aa81351..fb19ad2925 100644 --- a/impl/src/main/resources/com/sun/faces/resources/Messages_zh_TW.properties +++ b/impl/src/main/resources/com/sun/faces/resources/Messages_zh_TW.properties @@ -25,7 +25,7 @@ com.sun.faces.CANT_INSTANTIATE_CLASS=\u7121\u6cd5\u5be6\u4f8b\u5316\u985e\u5225: com.sun.faces.CANT_INTROSPECT_CLASS=\u7121\u6cd5\u5167\u8996\u985e\u5225:\u300c{0}\u300d com.sun.faces.CANT_PARSE_FILE=\u7121\u6cd5\u5256\u6790\u6a94\u6848\u300c{0}\u300d\uff1a\u884c {1} \u6b04 {2} \u767c\u751f\u932f\u8aa4: {3}\u3002 com.sun.faces.CHILD_NOT_OF_EXPECTED_TYPE=\u5c0d\u65bc\u5143\u4ef6\u985e\u578b\u300c{1}({2})\u300d\uff0c\u9810\u671f\u7684\u5b50\u5143\u4ef6\u985e\u578b\u70ba\u300c{0}\u300d\u3002\u4f46\u662f\u537b\u627e\u5230\u300c{3}\u300d\u3002 -com.sun.faces.COMMAND_LINK_NO_FORM_MESSAGE=\uff1a\u6b64\u9023\u7d50\u5df2\u505c\u7528\uff0c\u56e0\u70ba\u5b83\u672a\u5d4c\u5957\u5728 JSF \u8868\u55ae\u5167\u3002 +com.sun.faces.COMMAND_LINK_NO_FORM_MESSAGE=\uff1a\u6b64\u9023\u7d50\u5df2\u505c\u7528\uff0c\u56e0\u70ba\u5b83\u672a\u5d4c\u5957\u5728 Faces \u8868\u55ae\u5167\u3002 com.sun.faces.COMMAND_NOT_NESTED_WITHIN_FORM=\u6aa2\u8996\u5167\u627e\u5230\u4e00\u6216\u591a\u500b UICommand \u5be6\u4f8b\u672a\u5d4c\u5957\u5728 UIForm \u5167\u3002\u5c07\u4e0d\u6703\u547c\u53eb\u8207\u9019\u4e9b\u6307\u4ee4\u76f8\u95dc\u806f\u7684\u52d5\u4f5c\u3002 com.sun.faces.COMPONENT_NOT_FOUND_ERROR=\u672a\u627e\u5230\u8b58\u5225\u78bc\u300c{0}\u300d\u7684\u5143\u4ef6\u3002 com.sun.faces.COMPONENT_NOT_FOUND_IN_VIEW_WARNING=\u5728\u6aa2\u8996\u4e2d\u627e\u4e0d\u5230 ID \u70ba\u300c{0}\u300d\u7684\u5143\u4ef6\u3002 @@ -84,7 +84,7 @@ com.sun.faces.MANAGED_BEAN_PROPERTY_HAS_NO_SETTER_ERROR=\u53d7\u7ba1 Bean\u300c{ com.sun.faces.MANAGED_BEAN_PROPERTY_INCORRECT_ARGS_ERROR=\u53d7\u7ba1 Bean\u300c{1}\u300d\u7684\u7279\u6027\u300c{0}\u300d\u63a5\u53d7\u8d85\u904e\u4e00\u500b\u5f15\u6578\u3002 com.sun.faces.MANAGED_BEAN_UNABLE_TO_SET_PROPERTY_ERROR=\u7121\u6cd5\u8a2d\u5b9a\u53d7\u7ba1 Bean\u300c{1}\u300d\u7684\u7279\u6027\u300c{0}\u300d\u3002 com.sun.faces.MANAGED_BEAN_PROBLEMS_ERROR=\u7121\u6cd5\u5efa\u7acb\u53d7\u7ba1 Bean\u300c{0}\u300d\u3002\u627e\u5230\u4e0b\u5217\u554f\u984c\uff1a -com.sun.faces.MANAGED_BEAN_PROBLEMS_STARTUP_ERROR=JSF \u6536\u5230\u8acb\u6c42\u6642\u5c07\u7121\u6cd5\u5efa\u7acb\u53d7\u7ba1 Bean\u300c{0}\u300d\u3002\u627e\u5230\u4e0b\u5217\u554f\u984c\uff1a +com.sun.faces.MANAGED_BEAN_PROBLEMS_STARTUP_ERROR=Faces \u6536\u5230\u8acb\u6c42\u6642\u5c07\u7121\u6cd5\u5efa\u7acb\u53d7\u7ba1 Bean\u300c{0}\u300d\u3002\u627e\u5230\u4e0b\u5217\u554f\u984c\uff1a com.sun.faces.MANAGED_BEAN_UNKNOWN_PROCESSING_ERROR=\u8655\u7406\u53d7\u7ba1 Bean\u300c{0}\u300d\u6642\u767c\u751f\u672a\u9810\u671f\u7684\u932f\u8aa4 com.sun.faces.MANAGED_BEAN_PROPERTY_UNKNOWN_PROCESSING_ERROR=\u8655\u7406\u53d7\u7ba1\u7279\u6027\u300c{0}\u300d\u6642\u767c\u751f\u672a\u9810\u671f\u7684\u932f\u8aa4 com.sun.faces.MANAGED_BEAN_INVALID_SCOPE=\u7bc4\u570d\u300c{0}\u300d\u4e0d\u662f\u300cview\u300d\u300crequest\u300d\u300csession\u300d\u3001\u300capplication\u300d\u5176\u4e2d\u4e4b\u4e00\uff0c\u4e5f\u4e0d\u662f\u4ee3\u8868 ValueExpression (#{...}) @@ -128,7 +128,7 @@ com.sun.faces.SUPPORTS_COMPONENT_ERROR=\u5f15\u6578\u932f\u8aa4\uff1a\u6b64\u7de com.sun.faces.TYPECONVERSION_ERROR=\u8a2d\u5b9a\u300c{1}\u300d\u7684\u503c\u300c{0}\u300d\u6642\u767c\u751f\u8f49\u63db\u932f\u8aa4\u3002 com.sun.faces.VALIDATION_COMMAND_ERROR=\u9a57\u8b49\u932f\u8aa4\u3002\u300c{0}\u300d\u5fc5\u9808\u5177\u6709\u503c\u6216\u5f71\u50cf\u5c6c\u6027\u3002 com.sun.faces.VALIDATION_EL_ERROR=\u9a57\u8b49\u932f\u8aa4\u3002\u8868\u793a\u5f0f\u5c0d\u65bc\u300c{0}\u300d\u7121\u6548 -com.sun.faces.VALIDATION_ID_ERROR=\u9a57\u8b49\u932f\u8aa4\u3002\u4e0b\u5217 JSF \u6a19\u8a18\u5fc5\u9808\u542b\u6709 ID:\u300c{0}\u300d +com.sun.faces.VALIDATION_ID_ERROR=\u9a57\u8b49\u932f\u8aa4\u3002\u4e0b\u5217 Faces \u6a19\u8a18\u5fc5\u9808\u542b\u6709 ID:\u300c{0}\u300d com.sun.faces.CANNOT_CONVERT=\u7121\u6cd5\u4f7f\u7528 converterId\u300c{0}\u300d\u6216 binding\u300c{1}\u300d\u89e3\u6790\u8f49\u63db\u5668\u5be6\u4f8b\u3002 com.sun.faces.CANNOT_VALIDATE=\u7121\u6cd5\u4f7f\u7528 validatorId\u300c{0}\u300d\u6216 binding\u300c{1}\u300d\u89e3\u6790\u9a57\u8b49\u5668\u5be6\u4f8b\u3002 com.sun.faces.verifier.CLASS_NOT_FOUND=[{0}:{1}] \u985e\u5225\u4e0d\u5b58\u5728 diff --git a/impl/src/main/resources/com/sun/faces/resources/Resources.properties b/impl/src/main/resources/com/sun/faces/resources/Resources.properties index 615416265a..20f298bd36 100644 --- a/impl/src/main/resources/com/sun/faces/resources/Resources.properties +++ b/impl/src/main/resources/com/sun/faces/resources/Resources.properties @@ -17,22 +17,22 @@ ######################################################################### # Generic tag error messages # -# ResourceBundle is required for the TLV since the JSF runtime is not +# ResourceBundle is required for the TLV since the Faces runtime is not # available during pre-compilation and the validators are executed -# during that time. The validators cannot be dependant on the JSF runtime +# during that time. The validators cannot be dependant on the Faces runtime # objects including the MessagesFactory. # ######################################################################### ######################################################################### -# JSF core TLV messages +# Faces core TLV messages ######################################################################### TLV_EL_ERROR=\ Validation error. Expression invalid for:"{0}" TLV_ID_ERROR=\ - Validation error. The following JSF tags are required to contain IDs:"{0}" + Validation error. The following Faces tags are required to contain IDs:"{0}" TLV_LISTENER_ERROR=\ Validation error. "{0}" must have binding and/or type attribute. @@ -44,7 +44,7 @@ TLV_VALIDATOR_ERROR=\ Validation error. "{0}" must have binding and/or validatorId attribute. ######################################################################### -# JSF html TLV messages +# Faces html TLV messages ######################################################################### TLV_COMMAND_ERROR=\