mhoyt       2004/02/16 08:00:58

  Modified:    c/src/xalanc/NLS/en_US XalanMsg_en_US.xlf
               c/src/xalanc/XPath XPathProcessorImpl.cpp
  Log:
  Cleanup some localized messages
  Submitted by: [EMAIL PROTECTED]
  PR: 26897
  
  Revision  Changes    Path
  1.6       +8 -3      xml-xalan/c/src/xalanc/NLS/en_US/XalanMsg_en_US.xlf
  
  Index: XalanMsg_en_US.xlf
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/xalanc/NLS/en_US/XalanMsg_en_US.xlf,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- XalanMsg_en_US.xlf        12 Feb 2004 06:32:27 -0000      1.5
  +++ XalanMsg_en_US.xlf        16 Feb 2004 16:00:58 -0000      1.6
  @@ -144,9 +144,14 @@
                <target>Extra illegal tokens</target>
   </trans-unit>
   
  -<trans-unit id="ExpectedDoubleQuote_1Param">
  -             <source>The literal expression is not terminated. An {0} is 
missing</source>
  -             <target>The literal expression is not terminated. An {0} is 
missing</target>
  +<trans-unit id="ExpectedDoubleQuote">
  +             <source>The literal expression is not terminated. An double 
quote is missing</source>
  +             <target>The literal expression is not terminated. An double 
quote is missing</target>
  +</trans-unit>
  +
  +<trans-unit id="ExpectedSingleQuote">
  +             <source>The literal expression is not terminated. An single 
quote is missing</source>
  +             <target>The literal expression is not terminated. An single 
quote is missing</target>
   </trans-unit>
   
   <trans-unit id="EmptyExpression">
  
  
  
  1.8       +2 -2      xml-xalan/c/src/xalanc/XPath/XPathProcessorImpl.cpp
  
  Index: XPathProcessorImpl.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/xalanc/XPath/XPathProcessorImpl.cpp,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- XPathProcessorImpl.cpp    11 Feb 2004 06:53:49 -0000      1.7
  +++ XPathProcessorImpl.cpp    16 Feb 2004 16:00:58 -0000      1.8
  @@ -265,7 +265,7 @@
                                }
                                else
                                {
  -                                     
error(XalanMessageLoader::getMessage(XalanMessages::ExpectedDoubleQuote_1Param,"double"));
  +                                     
error(XalanMessageLoader::getMessage(XalanMessages::ExpectedDoubleQuote));
                                }
                        }
                        break;
  @@ -300,7 +300,7 @@
                                }
                                else
                                {
  -                                     
error(XalanMessageLoader::getMessage(XalanMessages::ExpectedDoubleQuote_1Param,XalanDOMString("single")));
  +                                     
error(XalanMessageLoader::getMessage(XalanMessages::ExpectedSingleQuote));
   
                                }
                        }
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to