You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by ff...@apache.org on 2007/06/29 05:01:27 UTC

svn commit: r551777 - in /incubator/cxf/trunk/rt: bindings/jbi/src/main/java/org/apache/cxf/binding/jbi/interceptor/ transports/jbi/src/main/java/org/apache/cxf/transport/jbi/

Author: ffang
Date: Thu Jun 28 20:01:26 2007
New Revision: 551777

URL: http://svn.apache.org/viewvc?view=rev&rev=551777
Log:
correct English message

Modified:
    incubator/cxf/trunk/rt/bindings/jbi/src/main/java/org/apache/cxf/binding/jbi/interceptor/JBIFaultInInterceptor.java
    incubator/cxf/trunk/rt/bindings/jbi/src/main/java/org/apache/cxf/binding/jbi/interceptor/JBIWrapperInInterceptor.java
    incubator/cxf/trunk/rt/bindings/jbi/src/main/java/org/apache/cxf/binding/jbi/interceptor/Messages.properties
    incubator/cxf/trunk/rt/transports/jbi/src/main/java/org/apache/cxf/transport/jbi/Messages.properties

Modified: incubator/cxf/trunk/rt/bindings/jbi/src/main/java/org/apache/cxf/binding/jbi/interceptor/JBIFaultInInterceptor.java
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/rt/bindings/jbi/src/main/java/org/apache/cxf/binding/jbi/interceptor/JBIFaultInInterceptor.java?view=diff&rev=551777&r1=551776&r2=551777
==============================================================================
--- incubator/cxf/trunk/rt/bindings/jbi/src/main/java/org/apache/cxf/binding/jbi/interceptor/JBIFaultInInterceptor.java (original)
+++ incubator/cxf/trunk/rt/bindings/jbi/src/main/java/org/apache/cxf/binding/jbi/interceptor/JBIFaultInInterceptor.java Thu Jun 28 20:01:26 2007
@@ -56,7 +56,7 @@
         try {            
             
             if (!StaxUtils.toNextElement(reader)) {
-                throw new Fault(new org.apache.cxf.common.i18n.Message("ILLEAGAL_JBIFAULT_FORMAT", BUNDLE));
+                throw new Fault(new org.apache.cxf.common.i18n.Message("ILLEGAL_JBIFAULT_FORMAT", BUNDLE));
             }
             Fault fault = new JBIFault(new org.apache.cxf.common.i18n.Message(JBIFault.JBI_FAULT_STRING, 
                                                                               (ResourceBundle) null));

Modified: incubator/cxf/trunk/rt/bindings/jbi/src/main/java/org/apache/cxf/binding/jbi/interceptor/JBIWrapperInInterceptor.java
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/rt/bindings/jbi/src/main/java/org/apache/cxf/binding/jbi/interceptor/JBIWrapperInInterceptor.java?view=diff&rev=551777&r1=551776&r2=551777
==============================================================================
--- incubator/cxf/trunk/rt/bindings/jbi/src/main/java/org/apache/cxf/binding/jbi/interceptor/JBIWrapperInInterceptor.java (original)
+++ incubator/cxf/trunk/rt/bindings/jbi/src/main/java/org/apache/cxf/binding/jbi/interceptor/JBIWrapperInInterceptor.java Thu Jun 28 20:01:26 2007
@@ -107,7 +107,7 @@
             for (MessagePartInfo part : messageInfo.getMessageParts()) {
                 if (!StaxUtils.skipToStartOfElement(reader)) {
                     throw new Fault(new org.apache.cxf.common.i18n.Message(
-                            "NO_ENOUGH_PARTS", BUNDLE));
+                            "NOT_ENOUGH_PARTS", BUNDLE));
                 }
                 startQName = reader.getName();
                 if (!startQName.equals(JBIConstants.JBI_WRAPPER_PART)) {
@@ -135,7 +135,7 @@
             }
             if (ev == XMLStreamConstants.START_ELEMENT) {
                 System.err.println(reader.getEventType());
-                throw new Fault(new org.apache.cxf.common.i18n.Message("TOO_MUCH_PARTS", BUNDLE));
+                throw new Fault(new org.apache.cxf.common.i18n.Message("TOO_MANY_PARTS", BUNDLE));
             }
             message.setContent(List.class, parameters);
         } catch (XMLStreamException e) {

Modified: incubator/cxf/trunk/rt/bindings/jbi/src/main/java/org/apache/cxf/binding/jbi/interceptor/Messages.properties
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/rt/bindings/jbi/src/main/java/org/apache/cxf/binding/jbi/interceptor/Messages.properties?view=diff&rev=551777&r1=551776&r2=551777
==============================================================================
--- incubator/cxf/trunk/rt/bindings/jbi/src/main/java/org/apache/cxf/binding/jbi/interceptor/Messages.properties (original)
+++ incubator/cxf/trunk/rt/bindings/jbi/src/main/java/org/apache/cxf/binding/jbi/interceptor/Messages.properties Thu Jun 28 20:01:26 2007
@@ -38,20 +38,20 @@
 JBI.SERVER.TRANSPORT.MESSAGE.PROCESS.THREAD.EXIT=JBIServerTransport message processing thread exitting
 CONFIG.DELIVERY.CHANNEL=configuring DeliveryChannel:\t
 CONFIG.SU.MANAGER=configuring ServiceUnitManager:\t
-JBI.TRANSPORT.FACTORY.NOT.INITIALIZED=JBITransportFactory is not properly initialised
+JBI.TRANSPORT.FACTORY.NOT.INITIALIZED=JBITransportFactory is not properly initialized
 SU.MANAGER=CXFServiceUnitManager:\t
 DELIVERY.CHANNEL=DeliveryChannel:\t
-JBI.TRANSPORT.FACTORY.NOT.FULLY.INITIALIZED=JBITransport factory not fully initalised
+JBI.TRANSPORT.FACTORY.NOT.FULLY.INITIALIZED=JBITransport factory not fully initialized
 CREATE.SERVER.TRANSPORT=creating JBI server transport
 CREATE.CLIENT.TRANSPORT=creating JBI client transport
 UNKNOWN_OPERATION=unknown operation {0}
 NO_OPERATION_ELEMENT=no operation element
 NO_JBI_MESSAGE_ELEMENT=no jbi message element
-NO_ENOUGH_PARTS=no enough parts
+NOT_ENOUGH_PARTS=not enough parts
 NO_JBI_PART_ELEMENT=no jbi part element
 EXPECTED_ELEMENT_IN_PART=expected element in part
-TOO_MUCH_PARTS=too much parts
-ILLEAGAL_JBIFAULT_FORMAT=illeagal jbi fault format
+TOO_MANY_PARTS=too many parts
+ILLEGAL_JBIFAULT_FORMAT=illegal jbi fault format
 STAX_READ_EXC=stax read exception
 XML_WRITE_EXC=xml write exception
 STAX_WRITE_EXC=stax write exception

Modified: incubator/cxf/trunk/rt/transports/jbi/src/main/java/org/apache/cxf/transport/jbi/Messages.properties
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/rt/transports/jbi/src/main/java/org/apache/cxf/transport/jbi/Messages.properties?view=diff&rev=551777&r1=551776&r2=551777
==============================================================================
--- incubator/cxf/trunk/rt/transports/jbi/src/main/java/org/apache/cxf/transport/jbi/Messages.properties (original)
+++ incubator/cxf/trunk/rt/transports/jbi/src/main/java/org/apache/cxf/transport/jbi/Messages.properties Thu Jun 28 20:01:26 2007
@@ -38,9 +38,9 @@
 JBI.SERVER.TRANSPORT.MESSAGE.PROCESS.THREAD.EXIT=JBIServerTransport message processing thread exitting
 CONFIG.DELIVERY.CHANNEL=configuring DeliveryChannel:\t
 CONFIG.SU.MANAGER=configuring ServiceUnitManager:\t
-JBI.TRANSPORT.FACTORY.NOT.INITIALIZED=JBITransportFactory is not properly initialised
+JBI.TRANSPORT.FACTORY.NOT.INITIALIZED=JBITransportFactory is not properly initialized
 SU.MANAGER=CXFServiceUnitManager:\t
 DELIVERY.CHANNEL=DeliveryChannel:\t
-JBI.TRANSPORT.FACTORY.NOT.FULLY.INITIALIZED=JBITransport factory not fully initalised
+JBI.TRANSPORT.FACTORY.NOT.FULLY.INITIALIZED=JBITransport factory not fully initialized
 CREATE.SERVER.TRANSPORT=creating JBI server transport
 CREATE.CLIENT.TRANSPORT=creating JBI client transport