You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lu...@apache.org on 2010/05/02 03:34:33 UTC

svn commit: r940138 - in /myfaces/tomahawk/trunk/core/src/main: java/org/apache/myfaces/custom/calendar/ java/org/apache/myfaces/custom/date/ java/org/apache/myfaces/custom/fileupload/ java/org/apache/myfaces/custom/tree2/ java/org/apache/myfaces/tomah...

Author: lu4242
Date: Sun May  2 01:34:32 2010
New Revision: 940138

URL: http://svn.apache.org/viewvc?rev=940138&view=rev
Log:
MYFACES-2691 Enhance MessageUtils adding methods when custom library bundle should be scanned

Added:
    myfaces/tomahawk/trunk/core/src/main/java/org/apache/myfaces/tomahawk/util/Constants.java
    myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/tomahawk/
    myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/tomahawk/Messages.properties
    myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/tomahawk/Messages_ar.properties
    myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/tomahawk/Messages_ca.properties
    myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/tomahawk/Messages_de.properties
    myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/tomahawk/Messages_en.properties
    myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/tomahawk/Messages_es.properties
    myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/tomahawk/Messages_fr.properties
    myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/tomahawk/Messages_it.properties
    myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/tomahawk/Messages_ja.properties
    myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/tomahawk/Messages_mt.properties
    myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/tomahawk/Messages_nl.properties
    myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/tomahawk/Messages_pl.properties
    myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/tomahawk/Messages_pt_BR.properties
    myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/tomahawk/Messages_ru.properties
    myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/tomahawk/Messages_zh_CN.properties
Modified:
    myfaces/tomahawk/trunk/core/src/main/java/org/apache/myfaces/custom/calendar/HtmlCalendarRenderer.java
    myfaces/tomahawk/trunk/core/src/main/java/org/apache/myfaces/custom/date/HtmlDateRenderer.java
    myfaces/tomahawk/trunk/core/src/main/java/org/apache/myfaces/custom/fileupload/AbstractHtmlInputFileUpload.java
    myfaces/tomahawk/trunk/core/src/main/java/org/apache/myfaces/custom/tree2/UITreeData.java
    myfaces/tomahawk/trunk/core/src/main/java/org/apache/myfaces/validator/ValidatorBase.java

Modified: myfaces/tomahawk/trunk/core/src/main/java/org/apache/myfaces/custom/calendar/HtmlCalendarRenderer.java
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/core/src/main/java/org/apache/myfaces/custom/calendar/HtmlCalendarRenderer.java?rev=940138&r1=940137&r2=940138&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/core/src/main/java/org/apache/myfaces/custom/calendar/HtmlCalendarRenderer.java (original)
+++ myfaces/tomahawk/trunk/core/src/main/java/org/apache/myfaces/custom/calendar/HtmlCalendarRenderer.java Sun May  2 01:34:32 2010
@@ -34,6 +34,7 @@ import org.apache.myfaces.shared_tomahaw
 import org.apache.myfaces.shared_tomahawk.renderkit.html.HtmlRendererUtils;
 import org.apache.myfaces.shared_tomahawk.renderkit.html.util.JavascriptUtils;
 import org.apache.myfaces.shared_tomahawk.util.MessageUtils;
+import org.apache.myfaces.tomahawk.util.Constants;
 
 import javax.faces.application.Application;
 import javax.faces.application.FacesMessage;
@@ -1169,8 +1170,8 @@ public class HtmlCalendarRenderer
                 if (date != null) {
                     return date;
                 }
-                FacesMessage msg = MessageUtils.getMessage(FacesMessage.SEVERITY_ERROR,CONVERSION_MESSAGE_ID,new Object[]{
-                        uiComponent.getId(),s});
+                FacesMessage msg = MessageUtils.getMessage(Constants.TOMAHAWK_DEFAULT_BUNDLE,FacesMessage.SEVERITY_ERROR,CONVERSION_MESSAGE_ID,new Object[]{
+                        uiComponent.getId(),s},facesContext);
                 throw new ConverterException(msg);
             }
             else
@@ -1184,8 +1185,8 @@ public class HtmlCalendarRenderer
                 }
                 catch (ParseException e)
                 {
-                    FacesMessage msg = MessageUtils.getMessage(FacesMessage.SEVERITY_ERROR,CONVERSION_MESSAGE_ID,new Object[]{
-                            uiComponent.getId(),s});
+                    FacesMessage msg = MessageUtils.getMessage(Constants.TOMAHAWK_DEFAULT_BUNDLE,FacesMessage.SEVERITY_ERROR,CONVERSION_MESSAGE_ID,new Object[]{
+                            uiComponent.getId(),s},facesContext);
                     throw new ConverterException(msg,e);
                 }
             }

Modified: myfaces/tomahawk/trunk/core/src/main/java/org/apache/myfaces/custom/date/HtmlDateRenderer.java
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/core/src/main/java/org/apache/myfaces/custom/date/HtmlDateRenderer.java?rev=940138&r1=940137&r2=940138&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/core/src/main/java/org/apache/myfaces/custom/date/HtmlDateRenderer.java (original)
+++ myfaces/tomahawk/trunk/core/src/main/java/org/apache/myfaces/custom/date/HtmlDateRenderer.java Sun May  2 01:34:32 2010
@@ -46,6 +46,7 @@ import org.apache.myfaces.shared_tomahaw
 import org.apache.myfaces.shared_tomahawk.renderkit.html.HtmlRenderer;
 import org.apache.myfaces.shared_tomahawk.renderkit.html.HtmlRendererUtils;
 import org.apache.myfaces.shared_tomahawk.util.MessageUtils;
+import org.apache.myfaces.tomahawk.util.Constants;
 
 /**
  * @JSFRenderer
@@ -488,7 +489,7 @@ public class HtmlDateRenderer extends Ht
                 return userData.parse();
             } catch (ParseException e) {
                 Object[] args = {uiComponent.getId()};
-                throw new ConverterException(MessageUtils.getMessage(FacesMessage.SEVERITY_ERROR, DATE_MESSAGE_ID, args));
+                throw new ConverterException(MessageUtils.getMessage(Constants.TOMAHAWK_DEFAULT_BUNDLE, FacesMessage.SEVERITY_ERROR, DATE_MESSAGE_ID, args, context));
             }            
         }
         else

Modified: myfaces/tomahawk/trunk/core/src/main/java/org/apache/myfaces/custom/fileupload/AbstractHtmlInputFileUpload.java
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/core/src/main/java/org/apache/myfaces/custom/fileupload/AbstractHtmlInputFileUpload.java?rev=940138&r1=940137&r2=940138&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/core/src/main/java/org/apache/myfaces/custom/fileupload/AbstractHtmlInputFileUpload.java (original)
+++ myfaces/tomahawk/trunk/core/src/main/java/org/apache/myfaces/custom/fileupload/AbstractHtmlInputFileUpload.java Sun May  2 01:34:32 2010
@@ -26,6 +26,7 @@ import org.apache.myfaces.component.Alig
 import org.apache.myfaces.component.UserRoleAware;
 import org.apache.myfaces.component.UserRoleUtils;
 import org.apache.myfaces.shared_tomahawk.util.MessageUtils;
+import org.apache.myfaces.tomahawk.util.Constants;
 
 /**
  * Creates a file-selection widget in the rendered page which allows a user to select
@@ -141,7 +142,7 @@ public abstract class AbstractHtmlInputF
                 {
                   Integer maxSize =
                     (Integer) context.getExternalContext().getRequestMap().get(FILEUPLOAD_MAX_SIZE);
-                  MessageUtils.addMessage(FacesMessage.SEVERITY_ERROR,
+                  MessageUtils.addMessage(Constants.TOMAHAWK_DEFAULT_BUNDLE, FacesMessage.SEVERITY_ERROR,
                               SIZE_LIMIT_MESSAGE_ID, new Object[] { getId(),
                                       maxSize},
                               getClientId(context), context);
@@ -153,7 +154,7 @@ public abstract class AbstractHtmlInputF
                         (Integer) context.getExternalContext().getRequestMap().get(FILEUPLOAD_MAX_SIZE);
                     if (maxSize != null)
                     {
-                        MessageUtils.addMessage(FacesMessage.SEVERITY_ERROR,
+                        MessageUtils.addMessage(Constants.TOMAHAWK_DEFAULT_BUNDLE, FacesMessage.SEVERITY_ERROR,
                                 SIZE_LIMIT_MESSAGE_ID, new Object[] { getId(),
                                         maxSize},
                                 getClientId(context), context);
@@ -164,7 +165,7 @@ public abstract class AbstractHtmlInputF
                                 "org.apache.myfaces.custom.fileupload."+this.getClientId(context)+".maxSize");
                         if (maxSize != null)
                         {
-                            MessageUtils.addMessage(FacesMessage.SEVERITY_ERROR,
+                            MessageUtils.addMessage(Constants.TOMAHAWK_DEFAULT_BUNDLE, FacesMessage.SEVERITY_ERROR,
                                     SIZE_LIMIT_MESSAGE_ID, new Object[] { getId(),
                                             maxSize},
                                     getClientId(context), context);

Modified: myfaces/tomahawk/trunk/core/src/main/java/org/apache/myfaces/custom/tree2/UITreeData.java
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/core/src/main/java/org/apache/myfaces/custom/tree2/UITreeData.java?rev=940138&r1=940137&r2=940138&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/core/src/main/java/org/apache/myfaces/custom/tree2/UITreeData.java (original)
+++ myfaces/tomahawk/trunk/core/src/main/java/org/apache/myfaces/custom/tree2/UITreeData.java Sun May  2 01:34:32 2010
@@ -39,6 +39,7 @@ import javax.faces.event.FacesListener;
 import javax.faces.event.PhaseId;
 
 import org.apache.myfaces.shared_tomahawk.util.MessageUtils;
+import org.apache.myfaces.tomahawk.util.Constants;
 
 import org.apache.commons.logging.Log;
 import org.apache.commons.logging.LogFactory;
@@ -373,7 +374,7 @@ public class UITreeData extends UICompon
              * message so the user can optionally display the warning.  Also, we will allow the user to provide
              * their own value binding method to be called so they can handle it how they see fit.
              */
-            FacesMessage message = MessageUtils.getMessage(MISSING_NODE, new String[] {nodeId});
+            FacesMessage message = MessageUtils.getMessageFromBundle(Constants.TOMAHAWK_DEFAULT_BUNDLE, MISSING_NODE, new String[] {nodeId});
             message.setSeverity(FacesMessage.SEVERITY_WARN);
             FacesContext.getCurrentInstance().addMessage(getId(), message);
 

Added: myfaces/tomahawk/trunk/core/src/main/java/org/apache/myfaces/tomahawk/util/Constants.java
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/core/src/main/java/org/apache/myfaces/tomahawk/util/Constants.java?rev=940138&view=auto
==============================================================================
--- myfaces/tomahawk/trunk/core/src/main/java/org/apache/myfaces/tomahawk/util/Constants.java (added)
+++ myfaces/tomahawk/trunk/core/src/main/java/org/apache/myfaces/tomahawk/util/Constants.java Sun May  2 01:34:32 2010
@@ -0,0 +1,24 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.apache.myfaces.tomahawk.util;
+
+public class Constants
+{
+    public static final String TOMAHAWK_DEFAULT_BUNDLE = "org.apache.myfaces.tomahawk.Messages";
+}

Modified: myfaces/tomahawk/trunk/core/src/main/java/org/apache/myfaces/validator/ValidatorBase.java
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/core/src/main/java/org/apache/myfaces/validator/ValidatorBase.java?rev=940138&r1=940137&r2=940138&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/core/src/main/java/org/apache/myfaces/validator/ValidatorBase.java (original)
+++ myfaces/tomahawk/trunk/core/src/main/java/org/apache/myfaces/validator/ValidatorBase.java Sun May  2 01:34:32 2010
@@ -29,6 +29,7 @@ import javax.faces.el.ValueBinding;
 
 import org.apache.myfaces.shared_tomahawk.util.MessageUtils;
 import org.apache.myfaces.shared_tomahawk.util._ComponentUtils;
+import org.apache.myfaces.tomahawk.util.Constants;
 
 /**
  * Base validator implementation for Tomahawk validators.
@@ -146,7 +147,7 @@ public abstract class ValidatorBase impl
 
         if (getSummaryMessage() == null && getDetailMessage() == null)
         {
-            msg = MessageUtils.getMessage(FacesMessage.SEVERITY_ERROR, defaultMessage, args);
+            msg = MessageUtils.getMessage(Constants.TOMAHAWK_DEFAULT_BUNDLE, FacesMessage.SEVERITY_ERROR, defaultMessage, args);
         } else {
             Locale locale = MessageUtils.getCurrentLocale();
             String summaryText = MessageUtils.substituteParams(locale, getSummaryMessage(), args);

Added: myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/tomahawk/Messages.properties
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/tomahawk/Messages.properties?rev=940138&view=auto
==============================================================================
--- myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/tomahawk/Messages.properties (added)
+++ myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/tomahawk/Messages.properties Sun May  2 01:34:32 2010
@@ -0,0 +1,48 @@
+ # Licensed to the Apache Software Foundation (ASF) under one
+ # or more contributor license agreements.  See the NOTICE file
+ # distributed with this work for additional information
+ # regarding copyright ownership.  The ASF licenses this file
+ # to you under the Apache License, Version 2.0 (the
+ # "License"); you may not use this file except in compliance
+ # with the License.  You may obtain a copy of the License at
+ #
+ #   http://www.apache.org/licenses/LICENSE-2.0
+ #
+ # Unless required by applicable law or agreed to in writing,
+ # software distributed under the License is distributed on an
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ # KIND, either express or implied.  See the License for the
+ # specific language governing permissions and limitations
+ # under the License.
+
+# myfaces specific messages
+
+org.apache.myfaces.renderkit.html.HtmlMessagesRenderer.IN_FIELD = \u0020in {0}
+org.apache.myfaces.Email.INVALID = Validation Error
+org.apache.myfaces.Email.INVALID_detail =The given value ({0}) is not a correct email-address.
+
+org.apache.myfaces.Equal.INVALID = Validation Error
+org.apache.myfaces.Equal.INVALID_detail =The given value ({0}) is not equal with value of "{1}".
+
+org.apache.myfaces.Creditcard.INVALID = Validation Error
+org.apache.myfaces.Creditcard.INVALID_detail =The given value ({0}) is not a correct creditcard
+
+org.apache.myfaces.Regexpr.INVALID=Validation Error
+org.apache.myfaces.Regexpr.INVALID_detail=The given value ({0}) is not valid.
+
+org.apache.myfaces.Date.INVALID = Validation Error
+org.apache.myfaces.Date.INVALID_detail =The given value ({0}) is not a correct date
+
+org.apache.myfaces.ticker.NOCONNECTION = No Connection: 
+org.apache.myfaces.ticker.NOCONNECTION_detail = Maybe you are behind a firewall?
+
+org.apache.myfaces.ISBN.INVALID = Validation Error
+org.apache.myfaces.ISBN.INVALID_detail =The given value ({0}) is not a correct isbn code.
+
+org.apache.myfaces.tree2.MISSING_NODE        = Missing Node
+org.apache.myfaces.tree2.MISSING_NODE_detail = The requested node "{0}" does not exist.
+
+org.apache.myfaces.calendar.CONVERSION = Conversion Error
+org.apache.myfaces.calendar.CONVERSION_detail = "{0}": The given value "{1}" could not be converted to a date.
+
+org.apache.myfaces.FileUpload.SIZE_LIMIT = "{0}": The uploaded file exceeded the maximum size of {1} bytes.
\ No newline at end of file

Added: myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/tomahawk/Messages_ar.properties
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/tomahawk/Messages_ar.properties?rev=940138&view=auto
==============================================================================
--- myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/tomahawk/Messages_ar.properties (added)
+++ myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/tomahawk/Messages_ar.properties Sun May  2 01:34:32 2010
@@ -0,0 +1,48 @@
+ # Licensed to the Apache Software Foundation (ASF) under one
+ # or more contributor license agreements.  See the NOTICE file
+ # distributed with this work for additional information
+ # regarding copyright ownership.  The ASF licenses this file
+ # to you under the Apache License, Version 2.0 (the
+ # "License"); you may not use this file except in compliance
+ # with the License.  You may obtain a copy of the License at
+ #
+ #   http://www.apache.org/licenses/LICENSE-2.0
+ #
+ # Unless required by applicable law or agreed to in writing,
+ # software distributed under the License is distributed on an
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ # KIND, either express or implied.  See the License for the
+ # specific language governing permissions and limitations
+ # under the License.
+
+# myfaces specific messages
+
+org.apache.myfaces.renderkit.html.HtmlMessagesRenderer.IN_FIELD = \u0020in {0}
+org.apache.myfaces.Email.INVALID = \u062e\u0637\u0627\u0652\u0621 \u0641\u0649 \u0627\u0644\u062a\u0635\u062f\u064a\u0642
+org.apache.myfaces.Email.INVALID_detail =\u0642\u064a\u0645\u0629 ({0}) \u0644\u064a\u0633\u062a \u0628\u0631\u064a\u062f \u0627\u0644\u0643\u062a\u0631\u0648\u0646\u064a \u0635\u062d\u064a\u062d .
+
+org.apache.myfaces.Equal.INVALID = \u062e\u0637\u0627\u0652\u0621 \u0641\u0649 \u0627\u0644\u062a\u0635\u062f\u064a\u0642
+org.apache.myfaces.Equal.INVALID_detail =\u0642\u064a\u0645\u0629 ({0}) \u0644\u064a\u0633\u062a \u0645\u062a\u0633\u0627\u0648\u064a\u0647 \u0645\u0639 \u0642\u064a\u0645\u0629 "{1}".
+
+org.apache.myfaces.Creditcard.INVALID = \u062e\u0637\u0627\u0652\u0621 \u0641\u0649 \u0627\u0644\u062a\u0635\u062f\u064a\u0642
+org.apache.myfaces.Creditcard.INVALID_detail =\u0642\u064a\u0645\u0629 ({0}) \u0644\u064a\u0633\u062a \u0628\u0637\u0627\u0642\u0647 \u0627\u0626\u062a\u0645\u0627\u0646 \u0635\u062d\u064a\u062d\u0629 
+
+org.apache.myfaces.Regexpr.INVALID=\u062e\u0637\u0627\u0652\u0621 \u0641\u0649 \u0627\u0644\u062a\u0635\u062f\u064a\u0642
+org.apache.myfaces.Regexpr.INVALID_detail=\u0642\u064a\u0645\u0629 ({0}) \u0644\u064a\u0633\u062a \u0635\u062d\u064a\u062d\u0629.
+
+org.apache.myfaces.Date.INVALID = \u062e\u0637\u0627\u0652\u0621 \u0641\u0649 \u0627\u0644\u062a\u0635\u062f\u064a\u0642
+org.apache.myfaces.Date.INVALID_detail =\u0642\u064a\u0645\u0629 ({0}) \u0644\u064a\u0633\u062a \u062a\u0627\u0631\u064a\u062e \u0635\u062d\u064a\u062d
+
+org.apache.myfaces.ticker.NOCONNECTION = \u062e\u0637\u0627\u0621 \u0641\u0649 \u0627\u0644\u062a\u0648\u0635\u064a\u0644: 
+org.apache.myfaces.ticker.NOCONNECTION_detail = \u0631\u0628\u0645\u0627 \u0623\u0646\u062a \u062e\u0644\u0641 \u0641\u0627\u064a\u0631 \u0648\u0648\u0644\u061f?
+
+org.apache.myfaces.ISBN.INVALID = \u062e\u0637\u0627\u0652\u0621 \u0641\u0649 \u0627\u0644\u062a\u0635\u062f\u064a\u0642
+org.apache.myfaces.ISBN.INVALID_detail =\u0642\u064a\u0645\u0629 ({0}) \u0644\u064a\u0633\u062a \u0643\u0648\u062f \u0627\u064a \u0627\u0633 \u0628\u0649 \u0625\u0646 \u0635\u062d\u064a\u062d.
+
+org.apache.myfaces.tree2.MISSING_NODE        = \u0639\u0642\u062f\u0629 \u0645\u0641\u0642\u0648\u062f\u0629
+org.apache.myfaces.tree2.MISSING_NODE_detail = \u0627\u0644\u0639\u0642\u062f\u0647 \u0627\u0644\u0645\u0637\u0644\u0648\u0628\u0629  "{0}" \u063a\u064a\u0631 \u0645\u0648\u062c\u0648\u062f\u0629.
+
+org.apache.myfaces.calendar.CONVERSION = \u062e\u0637\u0627\u0652\u0621 \u0641\u0649 \u0627\u0644\u062a\u062d\u0648\u064a\u0644
+org.apache.myfaces.calendar.CONVERSION_detail = "{0}": \u0627\u0644\u0642\u064a\u0645\u0647 \u0627\u0644\u0645\u0639\u0637\u0627\u0647 "{1}" \u0644\u0627 \u064a\u0645\u0643\u0646 \u062a\u062d\u0648\u064a\u0644\u0647\u0627 \u0627\u0644\u0649 \u062a\u0627\u0631\u064a\u062e.
+
+org.apache.myfaces.FileUpload.SIZE_LIMIT = "{0}": \u0627\u0644\u0645\u0644\u0641 \u0627\u0644\u0645\u0648\u062f\u0639 \u062a\u062c\u0627\u0648\u0632 \u0627\u0644\u062d\u062f \u0627\u0644\u0623\u0642\u0635\u0649 \u0644\u062d\u062c\u0645 {1} \u0628\u0627\u064a\u062a.

Added: myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/tomahawk/Messages_ca.properties
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/tomahawk/Messages_ca.properties?rev=940138&view=auto
==============================================================================
--- myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/tomahawk/Messages_ca.properties (added)
+++ myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/tomahawk/Messages_ca.properties Sun May  2 01:34:32 2010
@@ -0,0 +1,40 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+ # or more contributor license agreements.  See the NOTICE file
+ # distributed with this work for additional information
+ # regarding copyright ownership.  The ASF licenses this file
+ # to you under the Apache License, Version 2.0 (the
+ # "License"); you may not use this file except in compliance
+ # with the License.  You may obtain a copy of the License at
+ #
+ #   http://www.apache.org/licenses/LICENSE-2.0
+ #
+ # Unless required by applicable law or agreed to in writing,
+ # software distributed under the License is distributed on an
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ # KIND, either express or implied.  See the License for the
+ # specific language governing permissions and limitations
+ # under the License.
+
+# myfaces specific messages
+
+org.apache.myfaces.renderkit.html.HtmlMessagesRenderer.IN_FIELD = \u0020in {0}
+org.apache.myfaces.Email.INVALID = Error de validació
+org.apache.myfaces.Email.INVALID_detail =El valor ({0}) no és una adreça de correu vàlida.
+
+org.apache.myfaces.Equal.INVALID = Error de validació
+org.apache.myfaces.Equal.INVALID_detail =El valor ({0}) no és equivalent i té valor "{1}".
+
+org.apache.myfaces.Creditcard.INVALID = Error de validació
+org.apache.myfaces.Creditcard.INVALID_detail =El valor ({0}) no és una tarjeta de crèdit vàlida.
+
+org.apache.myfaces.Regexpr.INVALID=Error de validació
+org.apache.myfaces.Regexpr.INVALID_detail=El valor ({0}) no és vàlid.
+
+org.apache.myfaces.Date.INVALID = Error de validació
+org.apache.myfaces.Date.INVALID_detail =El valor ({0}) no és una data correcta.
+
+org.apache.myfaces.ticker.NOCONNECTION = No hi ha connexió: 
+org.apache.myfaces.ticker.NOCONNECTION_detail = Potser es troba darrera d'un tallafocs?
+
+org.apache.myfaces.ISBN.INVALID = Error de validació
+org.apache.myfaces.ISBN.INVALID_detail =El valor ({0}) no és un codi ISBN correcte.
\ No newline at end of file

Added: myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/tomahawk/Messages_de.properties
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/tomahawk/Messages_de.properties?rev=940138&view=auto
==============================================================================
--- myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/tomahawk/Messages_de.properties (added)
+++ myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/tomahawk/Messages_de.properties Sun May  2 01:34:32 2010
@@ -0,0 +1,42 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+ # or more contributor license agreements.  See the NOTICE file
+ # distributed with this work for additional information
+ # regarding copyright ownership.  The ASF licenses this file
+ # to you under the Apache License, Version 2.0 (the
+ # "License"); you may not use this file except in compliance
+ # with the License.  You may obtain a copy of the License at
+ #
+ #   http://www.apache.org/licenses/LICENSE-2.0
+ #
+ # Unless required by applicable law or agreed to in writing,
+ # software distributed under the License is distributed on an
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ # KIND, either express or implied.  See the License for the
+ # specific language governing permissions and limitations
+ # under the License.
+
+# myfaces specific messages
+
+org.apache.myfaces.renderkit.html.HtmlMessagesRenderer.IN_FIELD = \u0020in {0}
+org.apache.myfaces.Email.INVALID = Validierungsfehler
+org.apache.myfaces.Email.INVALID_detail =Der eingegebene Wert ({0}) ist keine korrekte E-Mail-Adresse.
+
+org.apache.myfaces.Equal.INVALID = Validierungsfehler
+org.apache.myfaces.Equal.INVALID_detail =Der eingegebene Wert ({0}) stimmt nicht mit dem Wert "{1}" überein.
+
+org.apache.myfaces.Creditcard.INVALID = Validierungsfehler
+org.apache.myfaces.Creditcard.INVALID_detail =Der eingegebene Wert ({0}) ist keine korrekte Kreditkarten Nummer.
+
+org.apache.myfaces.Regexpr.INVALID=Validierungsfehler
+org.apache.myfaces.Regexpr.INVALID_detail=Der eingegebene Wert ({0}) ist nicht korrekt.
+
+org.apache.myfaces.Date.INVALID = Validierungsfehler
+org.apache.myfaces.Date.INVALID_detail =Der eingegebene Wert ({0}) ist kein korrektes Datum.
+
+org.apache.myfaces.ticker.NOCONNECTION = Keine Verbindung:
+org.apache.myfaces.ticker.NOCONNECTION_detail = Sind Sie hinter einer Firewall?
+
+org.apache.myfaces.ISBN.INVALID = Validierungsfehler
+org.apache.myfaces.ISBN.INVALID_detail =Der eingegebene Wert ({0}) ist keine korrekte ISBN  Nummer.
+
+org.apache.myfaces.FileUpload.SIZE_LIMIT = "{0}": Die Größe der hochgeladenen Datei darf nicht größer als {1} Bytes sein.
\ No newline at end of file

Added: myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/tomahawk/Messages_en.properties
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/tomahawk/Messages_en.properties?rev=940138&view=auto
==============================================================================
--- myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/tomahawk/Messages_en.properties (added)
+++ myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/tomahawk/Messages_en.properties Sun May  2 01:34:32 2010
@@ -0,0 +1,42 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+ # or more contributor license agreements.  See the NOTICE file
+ # distributed with this work for additional information
+ # regarding copyright ownership.  The ASF licenses this file
+ # to you under the Apache License, Version 2.0 (the
+ # "License"); you may not use this file except in compliance
+ # with the License.  You may obtain a copy of the License at
+ #
+ #   http://www.apache.org/licenses/LICENSE-2.0
+ #
+ # Unless required by applicable law or agreed to in writing,
+ # software distributed under the License is distributed on an
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ # KIND, either express or implied.  See the License for the
+ # specific language governing permissions and limitations
+ # under the License.
+
+# myfaces specific messages
+
+org.apache.myfaces.renderkit.html.HtmlMessagesRenderer.IN_FIELD = \u0020in {0}
+org.apache.myfaces.Email.INVALID = Validation Error
+org.apache.myfaces.Email.INVALID_detail =The given value ({0}) is not a correct email-address.
+
+org.apache.myfaces.Equal.INVALID = Validation Error
+org.apache.myfaces.Equal.INVALID_detail =The given value ({0}) is not equal with value of "{1}".
+
+org.apache.myfaces.Creditcard.INVALID = Validation Error
+org.apache.myfaces.Creditcard.INVALID_detail =The given value ({0}) is not a correct creditcard
+
+org.apache.myfaces.Regexpr.INVALID=Validation Error
+org.apache.myfaces.Regexpr.INVALID_detail=The given value ({0}) is not valid.
+
+org.apache.myfaces.Date.INVALID = Validation Error
+org.apache.myfaces.Date.INVALID_detail =The given value ({0}) is not a correct date
+
+org.apache.myfaces.ticker.NOCONNECTION = No Connection: 
+org.apache.myfaces.ticker.NOCONNECTION_detail = Maybe you are behind a firewall?
+
+org.apache.myfaces.ISBN.INVALID = Validation Error
+org.apache.myfaces.ISBN.INVALID_detail =The given value ({0}) is not a correct isbn code.
+
+org.apache.myfaces.FileUpload.SIZE_LIMIT = "{0}": The uploaded file exceeded the maximum size of {1} bytes.
\ No newline at end of file

Added: myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/tomahawk/Messages_es.properties
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/tomahawk/Messages_es.properties?rev=940138&view=auto
==============================================================================
--- myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/tomahawk/Messages_es.properties (added)
+++ myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/tomahawk/Messages_es.properties Sun May  2 01:34:32 2010
@@ -0,0 +1,40 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+ # or more contributor license agreements.  See the NOTICE file
+ # distributed with this work for additional information
+ # regarding copyright ownership.  The ASF licenses this file
+ # to you under the Apache License, Version 2.0 (the
+ # "License"); you may not use this file except in compliance
+ # with the License.  You may obtain a copy of the License at
+ #
+ #   http://www.apache.org/licenses/LICENSE-2.0
+ #
+ # Unless required by applicable law or agreed to in writing,
+ # software distributed under the License is distributed on an
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ # KIND, either express or implied.  See the License for the
+ # specific language governing permissions and limitations
+ # under the License.
+
+# myfaces specific messages
+
+org.apache.myfaces.renderkit.html.HtmlMessagesRenderer.IN_FIELD = \u0020in {0}
+org.apache.myfaces.Email.INVALID = Error de validación
+org.apache.myfaces.Email.INVALID_detail =El valor ({0}) no es una dirección de correo válida.
+
+org.apache.myfaces.Equal.INVALID = Error de validación
+org.apache.myfaces.Equal.INVALID_detail =El valor ({0}) no es equivalente y tiene valor "{1}".
+
+org.apache.myfaces.Creditcard.INVALID = Error de validación
+org.apache.myfaces.Creditcard.INVALID_detail =El valor ({0}) no es una tarjeta de crédito correcta.
+
+org.apache.myfaces.Regexpr.INVALID=Error de validación
+org.apache.myfaces.Regexpr.INVALID_detail=El valor ({0}) no es válido.
+
+org.apache.myfaces.Date.INVALID = Error de validación
+org.apache.myfaces.Date.INVALID_detail =El valor ({0}) no es una fecha correcta.
+
+org.apache.myfaces.ticker.NOCONNECTION = No hay conexión: 
+org.apache.myfaces.ticker.NOCONNECTION_detail = ¿Quizà esté detrás de un cortafuegos?
+
+org.apache.myfaces.ISBN.INVALID = Error de validación
+org.apache.myfaces.ISBN.INVALID_detail =El valor ({0}) no es un código ISBN correcto.
\ No newline at end of file

Added: myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/tomahawk/Messages_fr.properties
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/tomahawk/Messages_fr.properties?rev=940138&view=auto
==============================================================================
--- myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/tomahawk/Messages_fr.properties (added)
+++ myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/tomahawk/Messages_fr.properties Sun May  2 01:34:32 2010
@@ -0,0 +1,40 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+ # or more contributor license agreements.  See the NOTICE file
+ # distributed with this work for additional information
+ # regarding copyright ownership.  The ASF licenses this file
+ # to you under the Apache License, Version 2.0 (the
+ # "License"); you may not use this file except in compliance
+ # with the License.  You may obtain a copy of the License at
+ #
+ #   http://www.apache.org/licenses/LICENSE-2.0
+ #
+ # Unless required by applicable law or agreed to in writing,
+ # software distributed under the License is distributed on an
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ # KIND, either express or implied.  See the License for the
+ # specific language governing permissions and limitations
+ # under the License.
+
+# myfaces specific messages
+
+org.apache.myfaces.renderkit.html.HtmlMessagesRenderer.IN_FIELD = \u0020in {0}
+org.apache.myfaces.Email.INVALID = Erreur de Validation
+org.apache.myfaces.Email.INVALID_detail =La valeur ({0}) n'est pas un email correct.
+
+org.apache.myfaces.Equal.INVALID = Erreur de Validation
+org.apache.myfaces.Equal.INVALID_detail =La valeur ({0}) n'est pas \u00e9gale \u00e0 "{1}".
+
+org.apache.myfaces.Creditcard.INVALID = Erreur de Validation
+org.apache.myfaces.Creditcard.INVALID_detail =La valeur ({0}) n'est pas un bon num\u00e9ro de carte de cr\u00e9dit.
+
+org.apache.myfaces.Regexpr.INVALID=Erreur de Validation
+org.apache.myfaces.Regexpr.INVALID_detail=La valeur ({0}) n'est pas valide.
+
+org.apache.myfaces.Date.INVALID = Erreur de Validation
+org.apache.myfaces.Date.INVALID_detail =La valeur ({0}) n'est pas une date correcte.
+
+org.apache.myfaces.ticker.NOCONNECTION = Pas de connexion : 
+org.apache.myfaces.ticker.NOCONNECTION_detail = Peut-\u00eatre \u00eates-vous derri\u00e8re un firewall 
+
+org.apache.myfaces.ISBN.INVALID = Erreur de Validation
+org.apache.myfaces.ISBN.INVALID_detail =La valeur ({0}) n'est pas un code ISBN correct.
\ No newline at end of file

Added: myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/tomahawk/Messages_it.properties
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/tomahawk/Messages_it.properties?rev=940138&view=auto
==============================================================================
--- myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/tomahawk/Messages_it.properties (added)
+++ myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/tomahawk/Messages_it.properties Sun May  2 01:34:32 2010
@@ -0,0 +1,40 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+ # or more contributor license agreements.  See the NOTICE file
+ # distributed with this work for additional information
+ # regarding copyright ownership.  The ASF licenses this file
+ # to you under the Apache License, Version 2.0 (the
+ # "License"); you may not use this file except in compliance
+ # with the License.  You may obtain a copy of the License at
+ #
+ #   http://www.apache.org/licenses/LICENSE-2.0
+ #
+ # Unless required by applicable law or agreed to in writing,
+ # software distributed under the License is distributed on an
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ # KIND, either express or implied.  See the License for the
+ # specific language governing permissions and limitations
+ # under the License.
+
+# myfaces specific messages
+
+org.apache.myfaces.renderkit.html.HtmlMessagesRenderer.IN_FIELD = \u0020in {0}
+org.apache.myfaces.Email.INVALID = Errore di convalida
+org.apache.myfaces.Email.INVALID_detail =Il valore ({0}) non è un indirizzo e-mail corretto.
+
+org.apache.myfaces.Equal.INVALID = Errore di convalida
+org.apache.myfaces.Equal.INVALID_detail =Il valore ({0}) non è uguale al valore di "{1}".
+
+org.apache.myfaces.Creditcard.INVALID = Errore di convalida
+org.apache.myfaces.Creditcard.INVALID_detail =Il valore ({0}) non è un codice di carta di credito valido.
+
+org.apache.myfaces.Regexpr.INVALID=Errore di convalida
+org.apache.myfaces.Regexpr.INVALID_detail=Il valore ({0}) non è valido.
+
+org.apache.myfaces.Date.INVALID = Errore di convalida
+org.apache.myfaces.Date.INVALID_detail =Il valore ({0}) non è una data corretta.
+
+org.apache.myfaces.ticker.NOCONNECTION = Nessuna connessione: 
+org.apache.myfaces.ticker.NOCONNECTION_detail = Forse si è dietro ad un firewall ?
+
+org.apache.myfaces.ISBN.INVALID =Errore di convalida
+org.apache.myfaces.ISBN.INVALID_detail =Il valore ({0}) non è un codice ISBN corretto.
\ No newline at end of file

Added: myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/tomahawk/Messages_ja.properties
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/tomahawk/Messages_ja.properties?rev=940138&view=auto
==============================================================================
--- myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/tomahawk/Messages_ja.properties (added)
+++ myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/tomahawk/Messages_ja.properties Sun May  2 01:34:32 2010
@@ -0,0 +1,40 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+ # or more contributor license agreements.  See the NOTICE file
+ # distributed with this work for additional information
+ # regarding copyright ownership.  The ASF licenses this file
+ # to you under the Apache License, Version 2.0 (the
+ # "License"); you may not use this file except in compliance
+ # with the License.  You may obtain a copy of the License at
+ #
+ #   http://www.apache.org/licenses/LICENSE-2.0
+ #
+ # Unless required by applicable law or agreed to in writing,
+ # software distributed under the License is distributed on an
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ # KIND, either express or implied.  See the License for the
+ # specific language governing permissions and limitations
+ # under the License.
+
+# myfaces specific messages
+
+org.apache.myfaces.renderkit.html.HtmlMessagesRenderer.IN_FIELD = \u0020in {0}
+org.apache.myfaces.Email.INVALID = \u30d0\u30ea\u30c7\u30fc\u30b7\u30e7\u30f3\u30a8\u30e9\u30fc
+org.apache.myfaces.Email.INVALID_detail =({0})\u306f\u6b63\u3057\u3044\u30e1\u30fc\u30eb\u30a2\u30c9\u30ec\u30b9\u3067\u306f\u3042\u308a\u307e\u305b\u3093
+
+org.apache.myfaces.Equal.INVALID = \u30d0\u30ea\u30c7\u30fc\u30b7\u30e7\u30f3\u30a8\u30e9\u30fc
+org.apache.myfaces.Equal.INVALID_detail =\u5165\u529b\u3055\u308c\u305f\u5024({0})\u306f"{1}"\u3068\u7b49\u3057\u304f\u3042\u308a\u307e\u305b\u3093
+
+org.apache.myfaces.Creditcard.INVALID = \u30d0\u30ea\u30c7\u30fc\u30b7\u30e7\u30f3\u30a8\u30e9\u30fc
+org.apache.myfaces.Creditcard.INVALID_detail =\u5165\u529b\u3055\u308c\u305f\u5024({0})\u306f\u6b63\u3057\u3044\u30af\u30ec\u30b8\u30c3\u30c8\u30ab\u30fc\u30c9\u756a\u53f7\u3067\u306f\u3042\u308a\u307e\u305b\u3093
+
+org.apache.myfaces.Regexpr.INVALID=\u30d0\u30ea\u30c7\u30fc\u30b7\u30e7\u30f3\u30a8\u30e9\u30fc
+org.apache.myfaces.Regexpr.INVALID_detail=\u5165\u529b\u3055\u308c\u305f\u5024({0})\u306f\u4e0d\u6b63\u3067\u3059
+
+org.apache.myfaces.Date.INVALID = \u30d0\u30ea\u30c7\u30fc\u30b7\u30e7\u30f3\u30a8\u30e9\u30fc
+org.apache.myfaces.Date.INVALID_detail =\u5165\u529b\u3055\u308c\u305f\u5024({0})\u306f\u6b63\u3057\u3044\u65e5\u4ed8\u3067\u306f\u3042\u308a\u307e\u305b\u3093
+
+org.apache.myfaces.ticker.NOCONNECTION = \u63a5\u7d9a\u3067\u304d\u307e\u305b\u3093.
+org.apache.myfaces.ticker.NOCONNECTION_detail = \u30d5\u30a1\u30a4\u3084\u30a6\u30a9\u30fc\u30eb\u306e\u5185\u5074\u304b\u3089\u30a2\u30af\u30bb\u30b9\u3057\u3066\u3044\u307e\u305b\u3093\u304b?
+
+org.apache.myfaces.ISBN.INVALID = \u30d0\u30ea\u30c7\u30fc\u30b7\u30e7\u30f3\u30a8\u30e9\u30fc
+org.apache.myfaces.ISBN.INVALID_detail =\u5165\u529b\u3055\u308c\u305f\u5024({0})\u306f\u6b63\u3057\u3044isbn\u30b3\u30fc\u30c9\u3067\u306f\u3042\u308a\u307e\u305b\u3093
\ No newline at end of file

Added: myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/tomahawk/Messages_mt.properties
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/tomahawk/Messages_mt.properties?rev=940138&view=auto
==============================================================================
--- myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/tomahawk/Messages_mt.properties (added)
+++ myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/tomahawk/Messages_mt.properties Sun May  2 01:34:32 2010
@@ -0,0 +1,48 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+ # or more contributor license agreements.  See the NOTICE file
+ # distributed with this work for additional information
+ # regarding copyright ownership.  The ASF licenses this file
+ # to you under the Apache License, Version 2.0 (the
+ # "License"); you may not use this file except in compliance
+ # with the License.  You may obtain a copy of the License at
+ #
+ #   http://www.apache.org/licenses/LICENSE-2.0
+ #
+ # Unless required by applicable law or agreed to in writing,
+ # software distributed under the License is distributed on an
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ # KIND, either express or implied.  See the License for the
+ # specific language governing permissions and limitations
+ # under the License.
+
+# myfaces specific messages
+
+org.apache.myfaces.renderkit.html.HtmlMessagesRenderer.IN_FIELD =  f' {0}
+org.apache.myfaces.Email.INVALID = Problema fil-validazzjoni
+org.apache.myfaces.Email.INVALID_detail =Il-valur mog\u0127ti ({0}) mhux indirizz tal-email validu.
+
+org.apache.myfaces.Equal.INVALID = Problema fil-validazzjoni
+org.apache.myfaces.Equal.INVALID_detail =Il-valur mog\u0127ti ({0}) mhux ugwali g\u0127all-valur ta' "{1}".
+
+org.apache.myfaces.Creditcard.INVALID = Problema fil-validazzjoni
+org.apache.myfaces.Creditcard.INVALID_detail =Il-valur mog\u0127ti ({0}) mhux karta tal-kreditu korrett.
+
+org.apache.myfaces.Regexpr.INVALID=Problema fil-validazzjoni
+org.apache.myfaces.Regexpr.INVALID_detail=Il-valur mog\u0127ti ({0}) mhux validu.
+
+org.apache.myfaces.Date.INVALID = Problema fil-validazzjoni
+org.apache.myfaces.Date.INVALID_detail =Il-valur mog\u0127ti ({0}) mhux data korretta.
+
+org.apache.myfaces.ticker.NOCONNECTION = M'hemmx konnessjoni\: 
+org.apache.myfaces.ticker.NOCONNECTION_detail = Forsi qieg\u0127ed wara firewall?
+
+org.apache.myfaces.ISBN.INVALID = Problema fil-validazzjoni
+org.apache.myfaces.ISBN.INVALID_detail =Il-valur mog\u0127ti ({0}) mhux kodi\u010Bi isbn validu.
+
+org.apache.myfaces.tree2.MISSING_NODE        = Ferg\u0127a nieqsa
+org.apache.myfaces.tree2.MISSING_NODE_detail = Il-ferg\u0127a mitluba "{0}" ma te\u017Cistix.
+
+org.apache.myfaces.calendar.CONVERSION = Problema fil-konver\u017Cjoni
+org.apache.myfaces.calendar.CONVERSION_detail = "{0}"\: Il-valur "{1}" ma setax jinqaleb f' data.
+
+org.apache.myfaces.FileUpload.SIZE_LIMIT = "{0}"\: Il-fajl mibg\u0127ut qabe\u017C id-daqs massimu ta' {1} byte.

Added: myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/tomahawk/Messages_nl.properties
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/tomahawk/Messages_nl.properties?rev=940138&view=auto
==============================================================================
--- myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/tomahawk/Messages_nl.properties (added)
+++ myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/tomahawk/Messages_nl.properties Sun May  2 01:34:32 2010
@@ -0,0 +1,40 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+ # or more contributor license agreements.  See the NOTICE file
+ # distributed with this work for additional information
+ # regarding copyright ownership.  The ASF licenses this file
+ # to you under the Apache License, Version 2.0 (the
+ # "License"); you may not use this file except in compliance
+ # with the License.  You may obtain a copy of the License at
+ #
+ #   http://www.apache.org/licenses/LICENSE-2.0
+ #
+ # Unless required by applicable law or agreed to in writing,
+ # software distributed under the License is distributed on an
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ # KIND, either express or implied.  See the License for the
+ # specific language governing permissions and limitations
+ # under the License.
+
+# myfaces specific messages
+
+org.apache.myfaces.renderkit.html.HtmlMessagesRenderer.IN_FIELD = \u0020in {0}
+org.apache.myfaces.Email.INVALID = Geen email adres
+org.apache.myfaces.Email.INVALID_detail =De gegeven invoer ({0}) is geen correct email adres.
+
+org.apache.myfaces.Equal.INVALID = Niet gelijk
+org.apache.myfaces.Equal.INVALID_detail =De gegeven invoer ({0}) is niet gelijk aan "{1}".
+
+org.apache.myfaces.Creditcard.INVALID = Geen kredietkaartnummer
+org.apache.myfaces.Creditcard.INVALID_detail =De gegeven invoer ({0}) is geen correct kredietkaartnummer.
+
+org.apache.myfaces.Regexpr.INVALID=Niet geldig
+org.apache.myfaces.Regexpr.INVALID_detail=De gegeven invoer ({0}) is niet geldig.
+
+org.apache.myfaces.Date.INVALID = Geen datum
+org.apache.myfaces.Date.INVALID_detail =De gegeven invoer ({0}) kon niet worden geïnterpreteerd als datum.
+
+org.apache.myfaces.ticker.NOCONNECTION = Geen connectie:
+org.apache.myfaces.ticker.NOCONNECTION_detail = U bevindt zich misschien achter een firewall?
+
+org.apache.myfaces.ISBN.INVALID = Geen ISBN-nummer
+org.apache.myfaces.ISBN.INVALID_detail =De gegeven invoer ({0}) is geen correct ISBN-nummer.
\ No newline at end of file

Added: myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/tomahawk/Messages_pl.properties
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/tomahawk/Messages_pl.properties?rev=940138&view=auto
==============================================================================
--- myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/tomahawk/Messages_pl.properties (added)
+++ myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/tomahawk/Messages_pl.properties Sun May  2 01:34:32 2010
@@ -0,0 +1,40 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+ # or more contributor license agreements.  See the NOTICE file
+ # distributed with this work for additional information
+ # regarding copyright ownership.  The ASF licenses this file
+ # to you under the Apache License, Version 2.0 (the
+ # "License"); you may not use this file except in compliance
+ # with the License.  You may obtain a copy of the License at
+ #
+ #   http://www.apache.org/licenses/LICENSE-2.0
+ #
+ # Unless required by applicable law or agreed to in writing,
+ # software distributed under the License is distributed on an
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ # KIND, either express or implied.  See the License for the
+ # specific language governing permissions and limitations
+ # under the License.
+
+# myfaces specific messages
+
+org.apache.myfaces.renderkit.html.HtmlMessagesRenderer.IN_FIELD = \u0020w {0}
+org.apache.myfaces.Email.INVALID = B\u0142\u0105d walidacji
+org.apache.myfaces.Email.INVALID_detail =Podana warto\u015b\u0107 ({0}) nie jest poprawnym adresem email.
+
+org.apache.myfaces.Equal.INVALID = B\u0142\u0105d walidacji
+org.apache.myfaces.Equal.INVALID_detail =Podana warto\u015b\u0107 ({0}) nie jest r\u00f3wna warto\u015bci "{1}".
+
+org.apache.myfaces.Creditcard.INVALID = B\u0142\u0105d walidacji
+org.apache.myfaces.Creditcard.INVALID_detail =Podana warto\u015b\u0107 ({0}) nie jest poprawnym numerem karty kredytowej
+
+org.apache.myfaces.Regexpr.INVALID=B\u0142\u0105d walidacji
+org.apache.myfaces.Regexpr.INVALID_detail=Podana warto\u015b\u0107 ({0}) nie jest poprawna.
+
+org.apache.myfaces.Date.INVALID = B\u0142\u0105d walidacji
+org.apache.myfaces.Date.INVALID_detail =Podana warto\u015b\u0107 ({0}) nie jest poprawn\u0105 dat\u0105
+
+org.apache.myfaces.ticker.NOCONNECTION = Brak po\u0142\u0105czenia: 
+org.apache.myfaces.ticker.NOCONNECTION_detail = Mo\u017ce jeste\u015b za firewallem?
+
+org.apache.myfaces.ISBN.INVALID = B\u0142\u0105d walidacji
+org.apache.myfaces.ISBN.INVALID_detail =Podana warto\u015b\u0107 ({0}) nie jest poprawnym numerem ISBN.

Added: myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/tomahawk/Messages_pt_BR.properties
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/tomahawk/Messages_pt_BR.properties?rev=940138&view=auto
==============================================================================
--- myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/tomahawk/Messages_pt_BR.properties (added)
+++ myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/tomahawk/Messages_pt_BR.properties Sun May  2 01:34:32 2010
@@ -0,0 +1,40 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+ # or more contributor license agreements.  See the NOTICE file
+ # distributed with this work for additional information
+ # regarding copyright ownership.  The ASF licenses this file
+ # to you under the Apache License, Version 2.0 (the
+ # "License"); you may not use this file except in compliance
+ # with the License.  You may obtain a copy of the License at
+ #
+ #   http://www.apache.org/licenses/LICENSE-2.0
+ #
+ # Unless required by applicable law or agreed to in writing,
+ # software distributed under the License is distributed on an
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ # KIND, either express or implied.  See the License for the
+ # specific language governing permissions and limitations
+ # under the License.
+
+# myfaces specific messages
+
+org.apache.myfaces.renderkit.html.HtmlMessagesRenderer.IN_FIELD = \u0020in {0}
+org.apache.myfaces.Email.INVALID = Erro de validação
+org.apache.myfaces.Email.INVALID_detail = O valor informado ({0}) não é um endereço de e-mail válido.
+
+org.apache.myfaces.Equal.INVALID = Erro de validação
+org.apache.myfaces.Equal.INVALID_detail = O valor informado ({0}) não é igual ao valor de "{1}".
+
+org.apache.myfaces.Creditcard.INVALID = Erro de validação
+org.apache.myfaces.Creditcard.INVALID_detail = O valor informado ({0}) está incorreto para cartão de crédito
+
+org.apache.myfaces.Regexpr.INVALID=Erro de validação
+org.apache.myfaces.Regexpr.INVALID_detail= O valor informado ({0}) é inválido.
+
+org.apache.myfaces.Date.INVALID = Erro de validação
+org.apache.myfaces.Date.INVALID_detail = O valor informado ({0}) não é uma data válida
+
+org.apache.myfaces.ticker.NOCONNECTION = Sem conexão: 
+org.apache.myfaces.ticker.NOCONNECTION_detail = Talvez você esteja atrás de um firewall?
+
+org.apache.myfaces.ISBN.INVALID =Erro de validação
+org.apache.myfaces.ISBN.INVALID_detail = O valor informado ({0}) não é um código isbn válido.
\ No newline at end of file

Added: myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/tomahawk/Messages_ru.properties
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/tomahawk/Messages_ru.properties?rev=940138&view=auto
==============================================================================
--- myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/tomahawk/Messages_ru.properties (added)
+++ myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/tomahawk/Messages_ru.properties Sun May  2 01:34:32 2010
@@ -0,0 +1,40 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+ # or more contributor license agreements.  See the NOTICE file
+ # distributed with this work for additional information
+ # regarding copyright ownership.  The ASF licenses this file
+ # to you under the Apache License, Version 2.0 (the
+ # "License"); you may not use this file except in compliance
+ # with the License.  You may obtain a copy of the License at
+ #
+ #   http://www.apache.org/licenses/LICENSE-2.0
+ #
+ # Unless required by applicable law or agreed to in writing,
+ # software distributed under the License is distributed on an
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ # KIND, either express or implied.  See the License for the
+ # specific language governing permissions and limitations
+ # under the License.
+
+# myfaces specific messages
+
+org.apache.myfaces.renderkit.html.HtmlMessagesRenderer.IN_FIELD = \u0020in {0}
+org.apache.myfaces.Email.INVALID = \u041e\u0448\u0438\u0431\u043a\u0430 \u0432\u0430\u043b\u0438\u0434\u0430\u0446\u0438\u0438
+org.apache.myfaces.Email.INVALID_detail = \u0417\u043d\u0430\u0447\u0435\u043d\u0438\u0435 ({0}) \u043d\u0435 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u043a\u043e\u0440\u0440\u0435\u043a\u0442\u043d\u044b\u043c \u0430\u0434\u0440\u0435\u0441\u043e\u043c \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u044b.
+
+org.apache.myfaces.Equal.INVALID = \u041e\u0448\u0438\u0431\u043a\u0430 \u0432\u0430\u043b\u0438\u0434\u0430\u0446\u0438\u0438
+org.apache.myfaces.Equal.INVALID_detail = \u0417\u0430\u0434\u0430\u043d\u043d\u043e\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 ({0}) \u043d\u0435 \u0440\u0430\u0432\u043d\u043e \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044e "{1}".
+
+org.apache.myfaces.Creditcard.INVALID = \u041e\u0448\u0438\u0431\u043a\u0430 \u0432\u0430\u043b\u0438\u0434\u0430\u0446\u0438\u0438
+org.apache.myfaces.Creditcard.INVALID_detail = \u0417\u043d\u0430\u0447\u0435\u043d\u0438\u0435 ({0}) \u043d\u0435 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u043a\u043e\u0440\u0440\u0435\u043a\u0442\u043d\u043e\u0439 \u043a\u0440\u0435\u0434\u0438\u0442\u043d\u043e\u0439 \u043a\u0430\u0440\u0442\u043e\u0439
+
+org.apache.myfaces.Regexpr.INVALID=\u041e\u0448\u0438\u0431\u043a\u0430 \u0432\u0430\u043b\u0438\u0434\u0430\u0446\u0438\u0438
+org.apache.myfaces.Regexpr.INVALID_detail=\u0414\u0430\u043d\u043d\u043d\u043e\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 ({0}) \u043d\u0435 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u043f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u044b\u043c.
+
+org.apache.myfaces.Date.INVALID = \u041e\u0448\u0438\u0431\u043a\u0430 \u0432\u0430\u043b\u0438\u0434\u0430\u0446\u0438\u0438
+org.apache.myfaces.Date.INVALID_detail = \u0417\u043d\u0430\u0447\u0435\u043d\u0438\u0435 ({0}) \u043d\u0435 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u043a\u043e\u0440\u0440\u0435\u043a\u0442\u043d\u043e\u0439 \u0434\u0430\u0442\u043e\u0439
+
+org.apache.myfaces.ticker.NOCONNECTION = \u041e\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0438\u0435 \u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u044f: 
+org.apache.myfaces.ticker.NOCONNECTION_detail = \u041c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u0432\u044b \u043d\u0430\u0445\u043e\u0434\u0438\u0442\u0435\u0441\u044c \u0437\u0430 \u0431\u0440\u0430\u043d\u0434\u043c\u0430\u0443\u044d\u0440\u043e\u043c?
+
+org.apache.myfaces.ISBN.INVALID = \u041e\u0448\u0438\u0431\u043a\u0430 \u0432\u0430\u043b\u0438\u0434\u0430\u0446\u0438\u0438
+org.apache.myfaces.ISBN.INVALID_detail = \u0417\u043d\u0430\u0447\u0435\u043d\u0438\u0435 ({0}) \u043d\u0435 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u043a\u043e\u0440\u0440\u0435\u043a\u0442\u043d\u044b\u043c isbn \u043a\u043e\u0434\u043e\u043c.

Added: myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/tomahawk/Messages_zh_CN.properties
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/tomahawk/Messages_zh_CN.properties?rev=940138&view=auto
==============================================================================
--- myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/tomahawk/Messages_zh_CN.properties (added)
+++ myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/tomahawk/Messages_zh_CN.properties Sun May  2 01:34:32 2010
@@ -0,0 +1,40 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+ # or more contributor license agreements.  See the NOTICE file
+ # distributed with this work for additional information
+ # regarding copyright ownership.  The ASF licenses this file
+ # to you under the Apache License, Version 2.0 (the
+ # "License"); you may not use this file except in compliance
+ # with the License.  You may obtain a copy of the License at
+ #
+ #   http://www.apache.org/licenses/LICENSE-2.0
+ #
+ # Unless required by applicable law or agreed to in writing,
+ # software distributed under the License is distributed on an
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ # KIND, either express or implied.  See the License for the
+ # specific language governing permissions and limitations
+ # under the License.
+
+# myfaces specific messages
+
+org.apache.myfaces.renderkit.html.HtmlMessagesRenderer.IN_FIELD =  \u5728\u57df {0} \u4e2d
+org.apache.myfaces.Email.INVALID = \u9a8c\u8bc1\u9519\u8bef
+org.apache.myfaces.Email.INVALID_detail = \u6240\u7ed9\u51fa\u7684\u503c ({0}) \u4e0d\u662f\u5408\u6cd5\u7535\u5b50\u90ae\u4ef6\u5730\u5740.
+
+org.apache.myfaces.Equal.INVALID = \u9a8c\u8bc1\u9519\u8bef
+org.apache.myfaces.Equal.INVALID_detail = \u6240\u7ed9\u51fa\u7684\u503c ({0}) \u4e0e\u503c "{1}" \u4e0d\u76f8\u7b49.
+
+org.apache.myfaces.Creditcard.INVALID = \u9a8c\u8bc1\u9519\u8bef
+org.apache.myfaces.Creditcard.INVALID_detail = \u6240\u7ed9\u51fa\u7684\u503c ({0}) \u4e0d\u662f\u5408\u6cd5\u4fe1\u7528\u5361\u5361\u53f7.
+
+org.apache.myfaces.Regexpr.INVALID = \u9a8c\u8bc1\u9519\u8bef
+org.apache.myfaces.Regexpr.INVALID_detail = \u6240\u7ed9\u51fa\u7684\u503c ({0}) \u4e0d\u5408\u6cd5.
+
+org.apache.myfaces.Date.INVALID = \u9a8c\u8bc1\u9519\u8bef
+org.apache.myfaces.Date.INVALID_detail = \u6240\u7ed9\u51fa\u7684\u503c ({0}) \u4e0d\u662f\u5408\u6cd5\u65e5\u671f.
+
+org.apache.myfaces.ticker.NOCONNECTION = \u65e0\u6cd5\u8fde\u63a5: 
+org.apache.myfaces.ticker.NOCONNECTION_detail = \u8bf7\u68c0\u67e5\u9632\u706b\u5899\u8bbe\u7f6e?
+
+org.apache.myfaces.ISBN.INVALID = \u9a8c\u8bc1\u9519\u8bef
+org.apache.myfaces.ISBN.INVALID_detail = \u6240\u7ed9\u51fa\u7684\u503c ({0}) \u4e0d\u662f\u5408\u6cd5\u7684ISBN\u4ee3\u7801.