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/31 16:45:44 UTC

svn commit: r1711647 - in /uima/uimaj/trunk/uimaj-core/src/main/resources/org/apache/uima: cas/admin/admin_errors.properties cas/impl/annot_impl.properties cas/impl/ll_runtimeException.properties pear/pear_messages.properties

Author: schor
Date: Sat Oct 31 15:45:43 2015
New Revision: 1711647

URL: http://svn.apache.org/viewvc?rev=1711647&view=rev
Log:
no Jira - fix 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-core/src/main/resources/org/apache/uima/cas/admin/admin_errors.properties
    uima/uimaj/trunk/uimaj-core/src/main/resources/org/apache/uima/cas/impl/annot_impl.properties
    uima/uimaj/trunk/uimaj-core/src/main/resources/org/apache/uima/cas/impl/ll_runtimeException.properties
    uima/uimaj/trunk/uimaj-core/src/main/resources/org/apache/uima/pear/pear_messages.properties

Modified: uima/uimaj/trunk/uimaj-core/src/main/resources/org/apache/uima/cas/admin/admin_errors.properties
URL: http://svn.apache.org/viewvc/uima/uimaj/trunk/uimaj-core/src/main/resources/org/apache/uima/cas/admin/admin_errors.properties?rev=1711647&r1=1711646&r2=1711647&view=diff
==============================================================================
--- uima/uimaj/trunk/uimaj-core/src/main/resources/org/apache/uima/cas/admin/admin_errors.properties (original)
+++ uima/uimaj/trunk/uimaj-core/src/main/resources/org/apache/uima/cas/admin/admin_errors.properties Sat Oct 31 15:45:43 2015
@@ -20,7 +20,7 @@
 REPOSITORY_LOCKED = Can''t add index to a committed repository.
 TYPE_SYSTEM_LOCKED = Type system is committed; can''t add types or features.
 MUST_COMMIT_TYPE_SYSTEM = Type system has not been committed; can''t create index repository.
-MUST_COMMIT_INDEX_REPOSITORY = Index repository has not been committed; can't create CAS.
+MUST_COMMIT_INDEX_REPOSITORY = Index repository has not been committed; can''t create CAS.
 BAD_TYPE_SYNTAX = Invalid type name "{0}".  Type names must start with a letter and consist only of letters, digits, or underscores.
 BAD_FEATURE_SYNTAX = Invalid feature name "{0}".  Feature names must start with a letter and consist only of letters, digits, or underscores.
 TYPE_IS_INH_FINAL = Can''t derive from type "{0}" since it is inheritance final.

Modified: uima/uimaj/trunk/uimaj-core/src/main/resources/org/apache/uima/cas/impl/annot_impl.properties
URL: http://svn.apache.org/viewvc/uima/uimaj/trunk/uimaj-core/src/main/resources/org/apache/uima/cas/impl/annot_impl.properties?rev=1711647&r1=1711646&r2=1711647&view=diff
==============================================================================
--- uima/uimaj/trunk/uimaj-core/src/main/resources/org/apache/uima/cas/impl/annot_impl.properties (original)
+++ uima/uimaj/trunk/uimaj-core/src/main/resources/org/apache/uima/cas/impl/annot_impl.properties Sat Oct 31 15:45:43 2015
@@ -17,7 +17,7 @@
 #	 * under the License.
 #	 ***************************************************************
 
-CANT_ADD_TOP = Type system parsing error for file "{0}": couldn't add top type "{1}" at line {2}, column {3}.  Non-empty hierarchy?
+CANT_ADD_TOP = Type system parsing error for file "{0}": couldn''t add top type "{1}" at line {2}, column {3}.  Non-empty hierarchy?
 PARSING_ERROR = Error parsing types system file "{0}": expected {1} but found "{2}" at line {3}, column {4}.
 UNKN_TYPE = Error parsing types system file "{0}": type "{1}" must be declared before it is used at line {2}, column {3}.
 COULDNT_ADD_FEAT = Error parsing types system file "{0}": feature "{1}" could not be added at line {2}, column {3}.  Name already in use?

Modified: uima/uimaj/trunk/uimaj-core/src/main/resources/org/apache/uima/cas/impl/ll_runtimeException.properties
URL: http://svn.apache.org/viewvc/uima/uimaj/trunk/uimaj-core/src/main/resources/org/apache/uima/cas/impl/ll_runtimeException.properties?rev=1711647&r1=1711646&r2=1711647&view=diff
==============================================================================
--- uima/uimaj/trunk/uimaj-core/src/main/resources/org/apache/uima/cas/impl/ll_runtimeException.properties (original)
+++ uima/uimaj/trunk/uimaj-core/src/main/resources/org/apache/uima/cas/impl/ll_runtimeException.properties Sat Oct 31 15:45:43 2015
@@ -26,9 +26,9 @@ FS_RAN_TYPE_ERROR = Error in low-level C
 ACCESS_TYPE_ERROR = Error in low-level CAS APIs: trying to access value FS reference {0} as type "{2}" (code: {1}), but is "{3}".
 ARRAY_INDEX_OUT_OF_RANGE = Error in low-level CAS APIs: array index out of range: {0}.
 ARRAY_INDEX_LENGTH_OUT_OF_RANGE = Error in low-level CAS APIs: array index and or length out of range. index: {0}, length: {1}.
-CREATE_FS_OF_TYPE_ERROR = Error in low-level CAS APIs: can't create FS reference for type code {0}.
+CREATE_FS_OF_TYPE_ERROR = Error in low-level CAS APIs: can''t create FS reference for type code {0}.
 INVALID_INDEX_TYPE = Error in low-level CAS APIs: trying to access index for invalid type code: {0}.
-CREATE_ARRAY_OF_TYPE_ERROR = Error in low-level CAS APIs: can't create array of type "{1}" (code: {0}).  Must be a valid (built-in) array type.
+CREATE_ARRAY_OF_TYPE_ERROR = Error in low-level CAS APIs: can''t create array of type "{1}" (code: {0}).  Must be a valid (built-in) array type.
 ILLEGAL_ARRAY_LENGTH = Error in low-level CAS APIs: illegal array length specified: {0}.
 INVALID_TYPE_ARGUMENT = Error in low-level CAS APIs: illegal type code argument: {0}.
 NULL_ARRAY_ACCESS = Error in low-level CAS APIs: attempting to access element {0} of array but array has null value.

Modified: uima/uimaj/trunk/uimaj-core/src/main/resources/org/apache/uima/pear/pear_messages.properties
URL: http://svn.apache.org/viewvc/uima/uimaj/trunk/uimaj-core/src/main/resources/org/apache/uima/pear/pear_messages.properties?rev=1711647&r1=1711646&r2=1711647&view=diff
==============================================================================
--- uima/uimaj/trunk/uimaj-core/src/main/resources/org/apache/uima/pear/pear_messages.properties (original)
+++ uima/uimaj/trunk/uimaj-core/src/main/resources/org/apache/uima/pear/pear_messages.properties Sat Oct 31 15:45:43 2015
@@ -25,8 +25,8 @@ installation_verification_completed = In
 package_installer_message = Package installer message: {0}
 package_installer_error = Package installer error: {0}
 package_creator_env_setting = component {0} setting
-package_creator_classpath_not_valid_warning = Warning: classpath entry contains ':', use ';' as path separator.
-package_creator_datapath_not_valid_warning =  Warning: datapath entry contains ':', use ';' as path separator.
+package_creator_classpath_not_valid_warning = Warning: classpath entry contains '':'', use '';'' as path separator.
+package_creator_datapath_not_valid_warning =  Warning: datapath entry contains '':'', use '';'' as path separator.
 package_creator_install_desc_created_info = Installation descriptor successfully created at {0}.
 package_creator_pear_created_info = PEAR package successfully created at {0}.
 installation_verification_ae_not_created = The analysis engine for component {0} could not be created completely.