You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by sc...@apache.org on 2015/10/30 20:34:27 UTC

svn commit: r1711543 - in /uima/uimaj/trunk: uimaj-ep-pear-packager/src/main/resources/org/apache/uima/pear/generate/messages.properties uimaj-examples/src/main/resources/org/apache/uima/examples/casMultiplier/ExampleCasMultiplierMessages.properties

Author: schor
Date: Fri Oct 30 19:34:27 2015
New Revision: 1711543

URL: http://svn.apache.org/viewvc?rev=1711543&view=rev
Log:
no Jira - fix 2 more exception messages whose string had a single quote - these need to be escaped, else the whole rest of the line is presumed quoted and variable substitution into {nnn} fails.  Found these using a regex search on all .properties files

Modified:
    uima/uimaj/trunk/uimaj-ep-pear-packager/src/main/resources/org/apache/uima/pear/generate/messages.properties
    uima/uimaj/trunk/uimaj-examples/src/main/resources/org/apache/uima/examples/casMultiplier/ExampleCasMultiplierMessages.properties

Modified: uima/uimaj/trunk/uimaj-ep-pear-packager/src/main/resources/org/apache/uima/pear/generate/messages.properties
URL: http://svn.apache.org/viewvc/uima/uimaj/trunk/uimaj-ep-pear-packager/src/main/resources/org/apache/uima/pear/generate/messages.properties?rev=1711543&r1=1711542&r2=1711543&view=diff
==============================================================================
--- uima/uimaj/trunk/uimaj-ep-pear-packager/src/main/resources/org/apache/uima/pear/generate/messages.properties (original)
+++ uima/uimaj/trunk/uimaj-ep-pear-packager/src/main/resources/org/apache/uima/pear/generate/messages.properties Fri Oct 30 19:34:27 2015
@@ -26,7 +26,7 @@ PearExport.destinationLabel = To &pear f
 PearExport.selectDestinationTitle= Export To Directory
 PearFileResourceExportPage.Browse = Browse
 PearFileResourceExportPage.Options=Options
-PearExport.metadataRequired = The metadata folder and all it's content is required
+PearExport.metadataRequired = The metadata folder and all its content is required
 PearFileResourceExportPage.SelectFile = Please select a Pear file
 PearFileResourceExportPage.CompressContents=Compress the contents of the Pear file
 PearFileResourceExportPage.FileExistsInfo=The Pear file {0} does already exist. Choose another name to avoid overwriting it.

Modified: uima/uimaj/trunk/uimaj-examples/src/main/resources/org/apache/uima/examples/casMultiplier/ExampleCasMultiplierMessages.properties
URL: http://svn.apache.org/viewvc/uima/uimaj/trunk/uimaj-examples/src/main/resources/org/apache/uima/examples/casMultiplier/ExampleCasMultiplierMessages.properties?rev=1711543&r1=1711542&r2=1711543&view=diff
==============================================================================
--- uima/uimaj/trunk/uimaj-examples/src/main/resources/org/apache/uima/examples/casMultiplier/ExampleCasMultiplierMessages.properties (original)
+++ uima/uimaj/trunk/uimaj-examples/src/main/resources/org/apache/uima/examples/casMultiplier/ExampleCasMultiplierMessages.properties Fri Oct 30 19:34:27 2015
@@ -24,6 +24,6 @@
 missing_source_document_info = This example CAS Multiplier requires the input type \
     org.apache.uima.examples.SourceDocumentInformation, which was not present in the input CAS.
 
-no_next_cas = The CAS Multiplier's next() method was called when there was no next CAS to \
+no_next_cas = The CAS Multiplier''s next() method was called when there was no next CAS to \
     be retrieved.
          
\ No newline at end of file