[GME-commit] GMESRC/GME/Include/xercesc/util/MsgLoaders/ICU/resources Makefile.in, NONE, 1.1 en_US.txt, NONE, 1.1 res-file-list-unix.txt, NONE, 1.1 res-file-list-wins.txt, NONE, 1.1 res-file-list.txt, NONE, 1.1 resources.mak, NONE, 1.1

Log messages of CVS commits gme-commit at list.isis.vanderbilt.edu
Tue Feb 19 14:16:30 CST 2008


Update of /project/gme-repository/GMESRC/GME/Include/xercesc/util/MsgLoaders/ICU/resources
In directory escher:/tmp/cvs-serv26529/util/MsgLoaders/ICU/resources

Added Files:
	Makefile.in en_US.txt res-file-list-unix.txt 
	res-file-list-wins.txt res-file-list.txt resources.mak 
Log Message:
Xerces2.7 includes checkin.


CVS User: Zoltan Molnar, ISIS (zolmol)

--- NEW FILE: res-file-list-wins.txt ---
XercesMessages2_7_en_US.res
--- NEW FILE: res-file-list-unix.txt ---
XercesMessages2_7_0_en_US.res
--- NEW FILE: Makefile.in ---
# Copyright (c) 2001-2002 IBM, Inc. and others
#
# File
#    icu/source/samples/ufortune/resources/Makefile
#
# Usage:
#    See the instructions in the parent Makefile,
#          icu/source/samples/ufortune/Makefile.
#          This subproject builds the ICU resource files for ufortune.
#          It is normally invoked from the parent directory,
#            although the resources can be built from here.
#
#    Two ICU tools are run from this makefile:
#      genrb    compiles a resource source file (.txt) into
#               a binary .res file.
#      pkgdata  combines all of the .res files into a single
#               shared library that can then be linked with the
#               main application.
#
#               pkgdata will recursively generate and run yet
#               another makefile, which in turn runs two more
#               icu tools.  gencmn combines the individual .res
#               files, and genccode emits the data as C source
#               code that can then be built into a .so
#

#
PLATFORM = @platform@
CC  = @cc@
CXX = @cxx@
CXXVER = @cxxver@
GCC = @GCC@
GXX = @GXX@
CXXFLAGS = @cxxflags@
CFLAGS = @cflags@
PREFIX = @prefix@
PREFIX_INCLUDE = @prefix_include@
LDFLAGS = @ldflags@
LIBS = @libs@
OSVER = @osver@
USELIBWWW = @uselibwww@
MESSAGELOADER = @messageloader@
TRANSCODER = @transcoder@
THREADS = @threads@

include ../../../../../../version.incl
include ../../../../Makefile.incl

####################################################################
# Load ICU information. You can copy this to other makefiles #######
####################################################################
CC=$(shell icu-config --cc)
CXX=$(shell icu-config --cxx)
CPPFLAGS=$(shell icu-config --cppflags)
CFLAGS=$(shell icu-config --cflags)
CXXFLAGS=$(shell icu-config --cxxflags)
LDFLAGS =$(shell icu-config --ldflags)
LDFLAGS_USTDIO =$(shell icu-config --ldflags-ustdio)
INVOKE=$(shell icu-config --invoke)
#GENRB=$(shell icu-config --invoke=genrb)
GENRB=genrb
GENRBOPT=--package-name $(PKGNAME)
#PKGDATA=$(shell icu-config --invoke=pkgdata)
PKGDATA=pkgdata
SO=$(shell icu-config --so)
PKGDATAOPTS=-v -d .
# default - resources in same mode as ICU
# RESMODE=$(shell icu-config --icudata-mode)

####################################################################
### Project independent things (common) 
### We depend on gmake for the bulk of the work 

RMV=rm -rf

# No conventional target - this dir is resources only.
TARGET=
CLEANFILES += *.mak *.[co] *.lst *.a *.$(SO) $(RESFILES) *.ao README*resources.txt

RESMODE=dll

# Resource shortname
RESNAME=XercesMessages
PKGNAME=XercesMessages$(VER)

RESLDFLAGS=
CHECK_VARS= ICU_DATA=$(RESDIR)

# DLL and static modes are identical here
RESLDFLAGS= -L$(RESDIR) -l$(RESNAME)
RESCPPFLAGS=
CHECK_VARS=

# target file for resource bundle - this must be set, or 'make all' won't
# build any resources.
RESLIBNAME=lib$(RESNAME)
RESTARGET=lib$(RESNAME)$(ICUSHLIBSUFFIX)
PKGTARGET=lib$(PKGNAME)$(ICUSHLIBSUFFIX)

# Resource files.  Add new ones for additional locales here.
# keep in sync with the file RESLIST
RESFILES=$(RESNAME)_en_US.res

# list of resource bundles  - keep in sync with RESFILES
RESLIST=res-file-list-unix.txt

# list of targets that aren't actually created
.PHONY: all clean distclean check report 

all: $(ALL_SUBDIR) $(RESTARGET) $(TARGET)  

$(TARGET): $(OBJECTS)
	$(LINK.cc) $^ $(LOADLIBES) $(LDLIBS) -o $@ $(XTRALIBS)

$(RESTARGET): $(RESFILES)
	@echo building ${FQ_RESLIB_REAL_NAME}
	$(PKGDATA) --name $(PKGNAME) --mode $(RESMODE) $(PKGDATAOPTS) $(RESLIST)
	mv $(PKGTARGET) $(RESTARGET)
	mv $(RESTARGET) ${FQ_RESLIB_REAL_NAME}
	@echo symlink ${FQ_RESLIB_SO_NAME}
	ln -s ${FQ_RESLIB_REAL_NAME} ${FQ_RESLIB_SO_NAME}
	@echo symlink ${FQ_RESLIB_LINK_NAME}
	ln -s ${FQ_RESLIB_SO_NAME} ${FQ_RESLIB_LINK_NAME}
	
res-install: $(RESTARGET)
	$(PKGDATA) --name $(PKGNAME) --mode $(RESMODE) $(PKGDATAOPTS) $(RESLIST) --install $(shell icu-config --libdir)

# clean out files
distclean clean: $(CLEAN_SUBDIR)
	-test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
	-rm $(OBJECTS) $(TARGET) $(RESTARGET) $(RESFILES)

# Make check: simply runs the sample, logged to a file
check: $(TARGET)
	$(INVOKE) $(CHECK_VARS) ./$(TARGET) $(CHECK_ARGS) | tee $(TARGET).out

## resources
$(RESNAME)_%.res: %.txt
	@echo "generating $@"
	$(GENRB) $(GENRBOPT) $^

#end of rules.mk

# for installing the library
install: res-install


--- NEW FILE: resources.mak ---
#
# Copyright (c) 2003 IBM, Inc.
#
#  File:     resources.mak
#  Location: <xercesc_root>\src\xercesc\util\MsgLoaders\ICU\resources
#
#  Windows nmake makefile for compiling (and packaging) the resources
#  for ICU message loader.
#
#  List of resource files to be built.
#
#    . When adding a resource source (.txt) file for a new locale,
#           the corresponding .res file must be added to this list,
#    . AND to the file res-file-list-wins.txt
#
#  keep synchronous with ICUMsgLoader.cpp
#

# for VER
include ..\..\..\..\..\..\version.incl

RESFILES= en_US.res 

PKGNAME       = XercesMessages$(WIN_MSG_VER)
TARGET_DLL    = $(PKGNAME).DLL
TARGET_LIB    = $(PKGNAME).lib

GENRB    = $(ICUROOT)\bin\genrb.exe
PKGDATA  = $(ICUROOT)\bin\pkgdata
REN      = ren

#
#  File name extensions for inference rule matching.
#    clear out the built-in ones (for .c and the like), and add
#    the definition for .txt to .res.
#
.SUFFIXES :
.SUFFIXES : .txt

#
#  Inference rule, for compiling a .txt file into a .res file.
#  -t fools make into thinking there are files such as es.res, etc
#
.txt.res:
	$(GENRB) -t --package-name $(PKGNAME) -d . $*.txt

#
#  all - nmake starts here by default
#
all: $(TARGET_DLL)

$(TARGET_DLL): $(RESFILES)
	$(PKGDATA) --name $(PKGNAME) -v -O R:$(ICUROOT) --mode dll -d . res-file-list-wins.txt


--- NEW FILE: en_US.txt ---
en_US { 

	 // an array 
	XMLErrors { 
		"W_ Start " , 
		"Notation '{0}' has already been declared " ,
		"Attribute '{0}' has already been declared for element '{1}' " ,
		"Encoding ({0}, from XMLDecl or manually set) contradicts the auto-sensed encoding, ignoring it " ,
		"Element '{0}' was referenced in a content model but never declared " ,
		"Element '{0}' was referenced in an attlist but never declared " ,
		"An exception occurred! Type:{0}, Message:{1} " ,
		"W_ End " ,
		"E_ Start " , 
		"'{0}' is not allowed for the content of a simpleType.  Only list, union and restriction are allowed. " ,
		"Error: Top level complexType has no name - declaration ignored " ,
		"Globally-declared attribute must have a name - attribute declaration ignored " ,
		"Attribute must have a name or a ref - attribute declaration ignored " ,
		"Globally-declared element must have a name - element declaration ignored " ,
		"Element must have a name or a ref attribute - element ignored " ,
		"<group> must have a name or a ref attribute - declaration ignored " ,
		"<attributeGroup> must have a name or a ref attribute - declaration ignored " ,
		"Anonymous complexType in element {0} has a name attribute " ,
		"Anonymous simpleType in element {0} has a name attribute " ,
		"The content of an element information item does not match (annotation?, (simpleType | complexType)?, (unique | key | keyref)*) " ,
		"Untyped element: {0} " ,
		"Error in content of simpleType, '{0}' is invalid.  Only allowed one of (restriction | list | union). " ,
		"Expected simpleType in 'list' declaration for {0} " ,
		"List | Union | Restriction content is invalid for type {0} " ,
		"Error in content of derivation by list for {0} " ,
		"Expected simpleType in 'restriction' declaration for {0} " ,
		"Facet {0} already defined - ignoring " ,
		"Expected simpleType in 'union' declaration for {0} " ,
		"SimpleType content is empty " ,
		"The content of the simpleContent element is invalid. The content must be RESTRICTION or EXTENSION " ,
		"The BASE attribute must be specified for the RESTRICTION or EXTENSION element " ,
		"The content of the complexContent element is invalid. The content must be RESTRICTION or EXTENSION " ,
		"Error in content of <schema> element information item " ,
		"Content (annotation?,..) is incorrect for type {0} " ,
		"Unknown simpleType: {0} " ,
		"Unknown complexType: {0} " ,
		"Prefix: '{0}' can not be resolved to a URI " ,
		"Ref element {0} not found in the Schema " ,
		"Type not found in {0}:{1} " ,
		"Could not find top level attribute: {0} " ,
		"Invalid child '{0}' in the complex type " ,
		"Base type could not be found: {0} " ,
		"No attribute '{0}' was defined in schema: {1} " ,
		"Error creating datatype validator: {0} " ,
		"Invalid child following the simpleContent child in the complexType " ,
		"Invalid child following the complexContent child in the complexType " ,
		"The 'block' attribute values of a complexType must be #all | list(restriction,extension); {0} was found " ,
		"The 'final' attribute values of a complexType must be #all | list(restriction,extension); {0} was found " ,
		"Attribute '{0}={1}' cannot have both 'fixed' and 'default' present at the same time. " ,
		"For attribute '{0}={1}' default and use are both present so use must have the value 'optional'. " ,
		"Local attribute:{0} has also a ref defined - name ignored " ,
		"Global attribute:'{0}' cannot have a ref defined " ,
		"Error: Attribute '{0}' declared more than once in the same scope- ignoring " ,
		"Attribute '{0}' may not contain both a type and a simpleType declaration. " ,
		"SimpleType ({0}:{1}) for attribute: {2} not found " ,
		"Element '{0}' cannot have both 'fixed' and 'default' present at the same time. " ,
		"{0}:'{1}' has also a ref defined - name ignored " ,
		"ref cannot appear with any of type, abstract, block, final, nillable, default or fixed " ,
		"Invalid {0} name:'{1}' - declaration ignored " ,
		"Globally-declared element {0} cannot have a ref attribute - ref ignored " ,
		"Element '{0}' cannot have both a type attribute and a simpleType/complexType type child " ,
		"Element {0} has a fixed or default value and must have a mixed simple or simple content model " ,
		"The simpleType {0} that {1} uses has a value of 'final' which does not permit extension " ,
		"The type '{0}' specified as the base in the simpleContent element must not have complexContent " ,
		"The type '{0}' is a simple type. It cannot be used in a derivation by RESTRICTION for a complexType " ,
		"Invalid child following the RESTRICTION or EXTENSION element in the simpleContent definition " ,
		"Invalid child following the RESTRICTION or EXTENSION element in the complexContent definition " ,
		"Annotation can only appear once: type {0} " ,
		"The base type {0} does not allow itself to be used as the base for a restriction and/or as a type in a list and/or union " ,
		"The value 'substitution' already in the list " ,
		"The value 'union' is already in the list " ,
		"The value 'extension' is already in the list " ,
		"The value 'list' is already in the list " ,
		"The value 'restriction' is already in the list " ,
		"Invalid block value: {0} " ,
		"Invalid final value: {0} " ,
		"Element {0} cannot be part of the substitution group headed by {1} " ,
		"Element {0} has a type which does not derive from the type of the element at the head of the substitution group " ,
		"Duplicate element decl in the same scope: {0} " ,
		"The 'block' attribute values of an element must be #all | list(substitution,restriction,extension); {0} was found " ,
		"The 'final' attribute values of an element must be #all | list(restriction,extension); {0} was found " ,
		"Invalid value '{0}' for attribute: '{1}'. " ,
		"Ref is present, and simpleType/form/type found for attribute '{0}={1}' " ,
		"Duplicate reference attribute {0}:{1} in complexType " ,
		"Derivation by restriction is forbidden by either the base type '{0}' or the schema " ,
		"Derivation by extension is forbidden by either the base type '{0}' or the schema " ,
		"The base type specified in the complexContent element must be a complexType " ,
		"Imported schema '{0}' has a different targetNameSpace '{1}' from what's declared '{2}' " ,
		"Could not get the doc root for imported Schema: {0} " ,
		"A schemaLocation attribute must be specified on '{0}' element. " ,
		"Included schema '{0}' has a different targetNameSpace '{1}' " ,
		"At most one <annotation> element is expected in the content. " ,
		"The content must be (annotation?, simpleType?) for attribute '{0}={1}' " ,
		"Attribute '{0}' must appear in {1} {2} declarations " ,
		"Attribute '{0}' cannot appear in {1} {2} declarations " ,
		"Value of minOccurs '{0}' must not be greater than value of maxOccurs '{1}' " ,
		"'anyAttribute' elements can contain at most one 'annotation' element in their children " ,
		"Global <{0}> must have a name - declaration ignored " ,
		"No circular definitions are allowed: '{0}' " ,
		"Global {0}:'{1}' declared more than once or also declared as {2} " ,
		"Global {0}:'{1}' declared more than once " ,
		"Invalid value '{0}' for facet 'whiteSpace'. Value should be 'collapse'. " ,
		"The namespace of an <import> element must be different from the targetNamespace of the <import>ing schema " ,
		"If the namespace on an <import> element is not present, the <import>ing schema must have a targetNamespace " ,
		"Element '{0}' must not have a value constraint:'{1}' as its type is derived from ID " ,
		"It is an error for NOTATION to be used directly in a schema in element/attribute '{0}' " ,
		"For element '{0}', the {content type} is mixed, then the {content type}'s particle must be emptiable " ,
		"The content of complexType is EMPTY, but base is not empty or does not have emptiable particle. " ,
		"The content type of the base type:'{0}' and derived type:'{1}' must both be mixed or element-only. " ,
		"The content type is not a valid restriction of the content type of the base. " ,
		"Derivation by extension or restriction is forbidden by either the base type '{0}' or the schema " ,
		"The {item type definition} must have {variety} of atomic or union (where all member types must be atomic) " ,
		"The {member type definitions} must all have {variety} of atomic or list " ,
		"The group:'0' must contain (all | choice | sequence) " ,
		"The attributeGroup:'0' must match (annotation?. ((attribute | attributeGroup)*, anyAttribute?)) " ,
		"The child of a model group definition must not specify either the minOccurs or maxOccurs attribute. " ,
		"The {0} -'{1}:{2}'- not found in the schema " ,
		"A group whose content is 'all' must only appear as the content type of a complex type definition. " ,
		"When a model group has {compositor} 'all' which constitutes the {content type} of a complex type, minOccurs=maxOccurs=1 " ,
		"In an 'all' schema component, the value of minOccurs/maxOccurs of an element must be '0' or '1'. " ,
		"Circular attributeGroup reference -{0}- is disallowed outside <redefine> " ,
		"Attribute '{0}' already defined in base and should not appear in derivation by extension. " ,
		"The intensional intersection of {attributes wildcard}s must be expressible " ,
		"Base type definition does not have any attributes " ,
		"Attribute '{0}' has an inconsistent REQUIRED setting with that of the base " ,
		"Type of attribute '{0}' must be validly derived from type of attribute in base " ,
		"Attribute '{0}' is either not fixed, or has a different value from that of the base " ,
		"Attribute '{0}' has invalid target namespace with respect to a base wildcard constraint or, base has no wildcard " ,
		"An attribute wildcard is present in the derived type, but not in the base " ,
		"The attribute wildcard in the derived type is not a valid subset of that in the base " ,
		"Attribute '{0}' cannot modify the 'use' attribute in a derived type, if base attribute use is prohibited " ,
		"The wildcard attribute in the derived type must be identical to or stronger than the one in the base. " ,
		"Content of <all> is restricted to elements only. '{0}' encountered and ignored. " ,
		"Redefined schema '{0}' has a different targetNameSpace '{1}'. " ,
		"A simpleType child of a <redefine> must have a restriction element as a child " ,
		"The base attribute of the restriction child of a simpleType, must be the same as the redefine simpleType's name attribute " ,
		"A complexType child of a <redefine> must have a restriction or extension element as a grandchild " ,
		"The base attribute of a restriction/extension must be the same as the complexType's name attribute in <redefine> " ,
		"The group '{0}' which contains a reference to a group being redefined must have minOccurs = maxOccurs = 1 " ,
		"Could not find a declaration in the schema to be redefined corresponding to '{0}' " ,
		"If a group child of a <redefine> element contains a group ref'ing itself, it must have exactly 1 reference. " ,
		"If an attributeGroup of a <redefine> element contains a reference to itself, such reference must be exactly 1 " ,
		"A <redefine> element cannot contain a child of type '{0}' " ,
		"The declaration for notation '{0}' is invalid " ,
		"The notation declaration '{0}:{1}' is not found " ,
		"More than one identity constraint named '{0}'. " ,
		"The content of an identity constraint must match (annotation?, selector, field+) " ,
		"Key reference declaration '{0}' refers to unknown key with name '{1}'. " ,
		"Cardinality of fields for keyref '{0}' and key '{1}' must match. " ,
		"Xpath expression is either missing or empty " ,
		"The {value constraint} of an attribute ref is not fixed or different from the fixed {value constraint} of '{0}' " ,
		"The {type definition} for attribute '{0}={1}' is or is derived from ID, and must not have {value constraint} " ,
		"More than one attribute derived from type ID cannot appear in the same complex type - '{0}' ignored " ,
		"More than one attribute derived from type ID cannot appear in the same attribute group - '{0}' ignored " ,
		"'' is not a legal value for the targetNamespace attribute; the attribute must be absent or contain a nonempty value " ,
		"{0} " ,
		"An exception occurred! Type:{0}, Message:{1} " ,
		"Invalid Redefine: '{0}' has already been included or redefined " ,
		"Schema Representation Constraint: Namespace '{0}' is referenced without <import> declaration " ,
		"An 'all' model group that's part of a complex type definition must constitute the entire content type of the definition " ,
		"An <annotation> can only contain <appinfo> and <documentation> elements " ,
		"Invalid facet name: {0} " ,
		"The root element name of an XML Schema should be 'schema'. " ,
		"Circular substitution groups are disallowed for element '{0}'. " ,
		"For '{0}' to be a member of the substitution group set of '{1}', its {abstract} must be false. " ,
		"The namespace of element '{0}' must be from the schema namespace. " ,
		"The {target namespace} of '{0}' must not match 'http://www.w3.org/2001/XMLSchema-instance'. " ,
		"The namespace declaration is invalid. " ,
		"Namespace fixup cannot be performed on a DOM Level 1 Node. " ,
		"E_ End " ,
		"F_ Start " , 
		"The parser has encountered more than '{0}' entity expansions in this document; this is the limit imposed by the application. " ,
		"Expected comment or CDATA " ,
		"Expected an attribute name " ,
		"Expected a notation name " ,
		"Repetition of individual elements is not legal for mixed content models " ,
		"Bad default attribute declaration " ,
		"Expected default attribute declaration, assuming #IMPLIED  " ,
		"Attribute list syntax error " ,
		"Expected equal sign " ,
		"Duplication attribute name " ,
		"Bad ID, '{0}', for xml:lang attribute " ,
		"Expected an element name " ,
		"Must start with an XMLDecl " ,
		"Comments must start with <!-- " ,
		"Invalid document structure " ,
		"Expected a 'version=', 'encoding=', or 'standalone=' " ,
		"Bad XML version string " ,
		"Unsupported XML version, '{0}' " ,
		"Unterminated XML decl " ,
		"Bad XML encoding declaration, '{0}' " ,
		"Bad standalone declaration " ,
		"Unterminated comment " ,
		"Processing instruction name expected " ,
		"Unterminated processing instruction " ,
		"Invalid character (Unicode: 0x{0}) " ,
		"Unexpected text before root element " ,
		"Unterminated start tag, '{0}' " ,
		"Expected an attribute value " ,
		"Unterminated end tag, '{0}' " ,
		"Expected type (CDATA, ID, NMTOKEN, ..), for attribute '{0}' of element '{1}' " ,
		"Expected end of tag '{0}' " ,
		"Expected tag name, comment, PI, or other markup " ,
		"Not valid after content " ,
		"Expected comment " ,
		"Expected comment or processing instruction " ,
		"Expected whitespace " ,
		"No root element in DOCTYPE " ,
		"Expected quoted string " ,
		"Expected public id " ,
		"Invalid character in public id (Unicode: 0x{0}) " ,
		"Unterminated DOCTYPE declaration " ,
		"Invalid character in internal subset (Unicode: 0x{0}) " ,
		"Expected CDATA section " ,
		"Invalid initial name character " ,
		"Invalid name character " ,
		"Unexpected whitespace " ,
		"Invalid character in attribute value {0} (Unicode: 0x{1}) " ,
		"Expected a markup declaration " ,
		"Text declaration not legal here " ,
		"Conditional section in internal subset " ,
		"Expected parameter entity name " ,
		"Unterminated entity declaration, '{0}' " ,
		"Invalid character reference " ,
		"Unterminated character reference " ,
		"Expected entity name for reference " ,
		"Entity '{0}' was not found " ,
		"Unparsed entity references, '{0}', not valid here " ,
		"Unterminated entity reference, '{0}' " ,
		"Recursive entity expansion, '{0}' " ,
		"Partial markup in entity value " ,
		"Unterminated element declaration, '{0}' " ,
		"Expected content specification expression for element '{0}' " ,
		"Expected asterisk " ,
		"'{0}' is a mixed content model that is not terminated properly. " ,
		"Expected system id " ,
		"Expected system or public id " ,
		"Unterminated notation declaration " ,
		"Expected ',', '|', or ')' characters " ,
		"Expected '|' or ')' characters " ,
		"Expected ',' or ')' characters or close parenthesis in content model of element '{0}' " ,
		"Expected enumeration value for attribute '{0}' " ,
		"Expected | enumeration separator, or closing paren " ,
		"Unterminated entity literal " ,
		"There are more end tags than start tags " ,
		"Expected an open parenthesis " ,
		"The attribute '{0}' is already used in element '{1}' " ,
		"A '<' character cannot be used in attribute '{0}', except through &lt; " ,
		"A leading surrogate character was not followed by a legal second character " ,
		"Expected ']]>' to end a conditional section " ,
		"Expected INCLUDE or IGNORE here " ,
		"Expected [ to follow INCLUDE or IGNORE " ,
		"Expected a TextDecl here: <?xml .... " ,
		"Expected a XMLDecl here: <?xml .... " ,
		"Unexpected end of entity {0} " ,
		"A PE propagated out of the int/ext subset, discarding extra text " ,
		"An extra ] character was found an ignored " ,
		"PE refs are not allowed inside markup in the internal subset " ,
		"An entity propagated out of the content section into Miscellaneous " ,
		"Expected &# to be followed by a numeric character value " ,
		"Expected an open bracket ('[') here " ,
		"The sequence ']]>' is not allowed in character data " ,
		"Illegal sequence '--' in comment " ,
		"Unterminated CDATA section " ,
		"Expected NDATA " ,
		"NDATA is not legal for parameter entities " ,
		"Hex radix character refs must use 'x', not 'X' " ,
		"'{0}' has already been set. Ignoring redundant setting " ,
		"The XMLDecl strings must be in the order: version, encoding, standalone " ,
		"External entities cannot be referred to from attribute values " ,
		"The XML or Text decl must start with '<?xml ', not '<?XML ' " ,
		"Expected a literal entity value or PUBLIC/SYSTEM id " ,
		"'{0}' is not a valid digit for the indicated radix " ,
		"The input ended before all started tags were ended. Last tag started was '{0}' " ,
		"The content model for element '{0}' is ambiguous " ,
		"Nested CDATA sections are not allowed " ,
		"The prefix '{0}' has not been mapped to any URI " ,
		"The start and the end tag were in the different entities " ,
		"The main XML document cannot be empty " ,
		"CDATA is not allowed outside the root element " ,
		"Only numeric character entities or special character entities are legal here " ,
		"Got an unexpected trailing surrogate character " ,
		"No processing instruction starts with 'xml' " ,
		"The XML or Text declaration must start at line/column 1/1 " ,
		"The 'version=' string is required in an XMLDecl " ,
		"The 'standalone=' string is only allowed in the main XML entity " ,
		"The 'encoding=' string is required in an Text Decl " ,
		"When namespaces are enabled, a name can have only one colon character " ,
		"When namespaces are enabled, the colon cannot be the first or last character " ,
		"Colons are not allowed in this name when namespaces are enabled " ,
		"A system exception occurred during processing " ,
		"An exception occurred! Type:{0}, Message:{1} " ,
		"Unexpected end of file exception. Message: {0} " ,
		"UnexpectedError " ,
		"The schemaLocation attribute does not contain pairs of values. " ,
		"Internal error: don't have a GrammarResolver for TraverseSchema " ,
		"Fatal error encountered during schema scan " ,
		"Reference to external entity declaration '{0}' is not allowed in a standalone document. " ,
		"Partial markup in parameter entity replacement text in a complete declaration. " ,
		"The value of the attribute '{0}' is invalid. Prefixed namespace bindings may not be empty. " ,
		"The prefix 'xmlns' cannot be bound to any namespace explicitly. " ,
		"The namespace for 'xmlns' cannot be bound to any prefix explicitly. " ,
		"The prefix 'xml' cannot be bound to any namespace other than its usual namespace. " ,
		"The namespace for 'xml' cannot be bound to any prefix other than 'xml'. " ,
		"Element '{0}' cannot have 'xmlns' as its prefix. " ,
		"Complex Type Definition Representation OK - 2.2: <restriction> must have a <simpleType> child. " ,
		"DOCTYPE root element qname beginning with '{0}' invalid " ,
		"Element qname beginning with '{0}' invalid " ,
		"Attribute qname beginning with '{0}' invalid " ,
		"Entity qname for reference beginning '{0}' invalid " ,
		"F_ End " ,
		} 


	 // an array 
	XMLValidity { 
		"E_ Start " , 
		"Unknown element '{0}' " ,
		"Attribute '{0}' not defined " ,
		"Notation '{0}' was referenced but never declared " ,
		"Root element different from DOCTYPE " ,
		"Required attribute '{0}' was not provided " ,
		"Element '{0}' is not valid for content model: '{1}' " ,
		"ID attributes must be #IMPLIED or #REQUIRED " ,
		"This type of attribute cannot have an empty value " ,
		"Element '{0}' has already been declared " ,
		"Element '{0}' has more than one ID attribute " ,
		"ID '{0}' has already been used " ,
		"ID attribute '{0}' was referenced but never declared " ,
		"Attribute '{0}' refers to an unknown notation '{1}' " ,
		"Element '{0}' was used in the DOCTYPE but never declared " ,
		"Empty content not valid for content model: '{0}' " ,
		"Attribute '{0}' is not declared for element '{1}' " ,
		"The value '{0}' for attribute '{1}' of type ENTITY/ENTITIES must refer to an external, unparsed entity " ,
		"Attribute '{0}' refers to an unknown entity '{1}' " ,
		"If namespaces are enabled, it's invalid for an attribute of type ID/IDREF/IDREFS/ENTITY/ENTITIES/NOTATION to contain a colon. " ,
		"Not enough elements to match content model : '{0}' " ,
		"No character data is allowed by content model " ,
		"The value '{0}' for attribute '{1}' does not match its defined enumeration or notation list " ,
		"The value '{0}' for attribute '{1}' must be Name or Nmtoken " ,
		"Attribute '{0}' does not support multiple values " ,
		"Attribute '{0}' has a value, '{1}', that does not match its #FIXED value, '{2}' " ,
		"Element types cannot be duplicated in Mixed content models " ,
		"No validator for datatype {0} " ,
		"Incorrect datatype: {0} " ,
		"{0} is not a datatype. " ,
		"The content attribute must be 'textOnly' if you specify a type attribute. " ,
		"{0} is unsupported " ,
		"Nested Element decls only allowed in elementOnly content " ,
		"Element references only allowed in mixed or elementOnly content " ,
		"{0} only allowed in elementOnly content. " ,
		"{0} not allowed if the order is all. " ,
		"Datatype qualifiers can only be used if you specify a type attribute. " ,
		"The datatype qualifier {0} is not supported. " ,
		"'{0}' is not allowed for the content of a 'choice' model group.  Only element, group, choice, sequence and any are allowed. " ,
		"Unknown base type {0} for type {1}. " ,
		"Can only have one of type and ref attributes. " ,
		"A <{0}> declaration that has a ref attribute, cannot have child content. " ,
		"Incorrect type for {0}'s default value: {1} " ,
		"Illegal content {0} in attribute group " ,
		"Value of {0} is not an integer. " ,
		"Datatype error: Type:{0}, Message:{1}. " ,
		"Schema error: Type:{0}, Message:{1} " ,
		"The type of the element has already been declared. " ,
		"Prohibited Attribute {0} is found. " ,
		"Illegal xml:space declaration. " ,
		"{0} is not a boolean. " ,
		"{0} is not a decimal. " ,
		"Facets are inconsistent with base type. " ,
		"Illegal value {0} for facet {1}. " ,
		"Illegal Facet for decimal type. " ,
		"Unknown Facet: {0}. " ,
		"Invalid value for Enum constant: {0}. " ,
		"{0} is out of bounds:[ {1} {3} X  {4} {2} ]. " ,
		"{0} is not one of the specified enum values. " ,
		"{0} is not an integer. " ,
		"Illegal Facet for Integer type. " ,
		"{0} is not a double. " ,
		"Illegal Facet for Real type. " ,
		"Scale Facet must be less than or equal to Precision Facet " ,
		"{0} has exceeded the precision Facet {1} " ,
		"{0} has exceeded the scale Facet {1} " ,
		"{0} is not a float. " ,
		"Can't get back Schema document's root element {0}. " ,
		"Schema in {0} has a different target namespace from the one specified in the instance document {1}. " ,
		"In element {0}: Can not have element children within a simple type content. " ,
		"This element {0} has a simpletype but no datatype validator was found. " ,
		"There is no Grammar for uri: {0}. " ,
		"{0} " ,
		"xsi:nil must not be specified for the element {0} with nillable equals false " ,
		"Element {0} with attribute xsi:nil=true must be empty " ,
		"Content of element '{0}' is different from the fixed attribute value in the element's schema declaration. " ,
		"No datatype validator was found for this attribute {0}. " ,
		"Schema error during parsing " ,
		"Element '{0}' should be qualified " ,
		"Element '{0}' should be un-qualified " ,
		"Reference to external entity declaration '{0}' is not allowed in a standalone document. " ,
		"Attribute '{0}' for element '{1}' has a default value and must be specified in a standalone document. " ,
		"Attribute '{0}' must not be changed by normalization in a standalone document. " ,
		"White space must not occur between externally declared elements with element content in a standalone document. " ,
		"Entity '{0}' was not found " ,
		"Partial markup in parameter entity replacement text. " ,
		"Failed to validate '{0}' " ,
		"Complex type '{0}' violates the Unique Particle Attribution rule in its components '{1}' and '{2}' " ,
		"Abstract type '{0}' should not be used in xsi:type " ,
		"A member of abstract element {0} substitution group must be specified " ,
		"Element {0} is declared with a type that is abstract.  Use xsi:type to specify a non-abstract type " ,
		"Unresolved type '{0}' found in xsi:type handling " ,
		"Type '{0}' that is used in xsi:type is not derived from the type of element '{1}' " ,
		"Element '{0}' has blocking constraint and does not permit substitution " ,
		"Attribute '{0}' should be qualified " ,
		"Attribute '{0}' should be un-qualified " ,
		"Field matches more than one value within the scope of its selector; fields must match unique values " ,
		"Internal identity constraint error; unknown field. " ,
		"Identity-constraint 4.2.1: element '{0}' has a key with no value. " ,
		"Not enough values specified for <unique> identity constraint for element '{0}'. " ,
		"Not enough values specified for <key name={1}> identity constraint for element '{0}'. " ,
		"Not enough values specified for <keyref name={1}> identity constraint for element '{0}'. " ,
		"Identity-constraint 4.2.3: element '{0}' has a key that matches an element that has nillable set to true. " ,
		"Duplicate unique value declared for identity constraint of element '{0}'. " ,
		"Duplicate key value declared for identity constraint of element '{0}'. " ,
		"The keyref '{0}' refers to a key/unique that is out of scope. " ,
		"The key for identity constraint of element '{0}' is not found. " ,
		"Non-whitespace characters are not allowed in schema elements other than 'appinfo' and 'documentation'. " ,
		"EMPTY Element '{0}' has Attribute '{1}' of type NOTATION  " ,
		"EMPTY Element '{0}' can't have content(not even entity references, comments, PIs or white space).  " ,
		"Element '{0}' has more than one Attribute of type NOTATION  " ,
		"Attribute '{0}' has non distinct token '{1}'  " ,
		"Element '{0}' 's content model(children) does not allow escaped white space.  " ,
		"E_ End " ,
		} 


	 // an array 
	XML4CErrors { 
		"W_ Start " , 
		"Warning: The primary document entity could not be opened. Id={0} " ,
		"Warning: No caching of grammar set, a grammar with same key found in the cache pool. " ,
		"W_ End " ,
		"F_ Start " , 
		"The index is beyond the array bounds  " ,
		"The new size is less than the old one " ,
		"The index given was beyond the max attribute index " ,
		"The passed AttTypes value is not known " ,
		"The passed DefAttTypes value is not known " ,
		"The bit index was beyond the set size " ,
		"The bit sets are not of the same size " ,
		"The buffer manager cannot provide any more buffers " ,
		"The passed buffer was not found in this manager's pool " ,
		"The pointer has not been set " ,
		"The binary operation node had a unary node type " ,
		"The content type must be mixed or children " ,
		"PCDATA nodes are not valid here " ,
		"The {0} operation is invalid for the spec type " ,
		"The unary operation node had a binary node type " ,
		"Unknown content model type " ,
		"Unknown content spec type " ,
		"The parent element has no content spec node " ,
		"The spec type is not valid for {0} " ,
		"The creation reason enum has an unknown value " ,
		"The element stack is empty " ,
		"The element stack index given was beyond the stack top " ,
		"The element stack was already empty when a pop request occurred " ,
		"A parent operation was requested, but only one element is on the stack " ,
		"The enumerator contains no more elements " ,
		"Could not open file: {0} " ,
		"Could not query the current file position " ,
		"Could not close the file " ,
		"Could not seek to end of file " ,
		"Could not seek to required position in file " ,
		"Could not duplicate the handle " ,
		"Could not read data from file " ,
		"Could not write data to file " ,
		"Could not reset file to beginning " ,
		"Could not ascertain the file size " ,
		"Could not determine base pathname of the file " ,
		"The base path had too few levels to weave in relative part " ,
		"Parse may not be called while parsing " ,
		"A DOCTYPE was seen but the installed validator does not understand DTDs " ,
		"Could not open DTD file '{0}' " ,
		"Could not open external entity '{0}' " ,
		"The end of input was not expected " ,
		"The hash modulus cannot be zero " ,
		"Hashing the key returned an invalid bad hash value " ,
		"The key could not be found in the hash table " ,
		"Could not create mutex " ,
		"Could not close mutex " ,
		"Could not lock mutex " ,
		"Could not unlock mutex " ,
		"Could not destroy mutex " ,
		"Internal Error on NetAccessor " ,
		"Error on NetAccessor. Cannot determine length of remote file " ,
		"The NetAccessor could not be initialized. " ,
		"The host/address '{0}' could not be resolved " ,
		"Could not create the socket for URL '{0}' " ,
		"Could not connect to the socket for URL '{0}' " ,
		"Could not write to the socket for URL '{0}' " ,
		"Could not read from the socket for URL '{0}' " ,
		"The specified HTTP method is not supported by this NetAccessor. " ,
		"The element {0} already exists " ,
		"Hashing the key returned an invalid bad hash value " ,
		"The passed id is not valid for this pool " ,
		"The modulus value cannot be zero " ,
		"The indicated reader id was never found " ,
		"The auto encoding enum has an unknown value " ,
		"Could not decode first line of entity: {0} " ,
		"XMLDecl or TextDecl can not have NEL or lsep: {0} " ,
		"End of input was hit in the middle of a multibyte sequence " ,
		"The current transcoding service does not support source offset information " ,
		"EBCDIC files must provide an encoding= string " ,
		"The primary document entity could not be opened. Id={0} " ,
		"Unbalanced start/end tags found, cannot continue " ,
		"The call to scanNext() is illegal at this time " ,
		"The index is past the top of stack " ,
		"The stack is empty, cannot access members " ,
		"The target buffer cannot have a max size of zero " ,
		"The given radix is not supported. Use 2, 8, 10, or 16 " ,
		"The target buffer is too small to accept the results " ,
		"The start index is past the end of the string " ,
		"The represented value overflowed the output binary result " ,
		"Could not write to standard err " ,
		"Could not write to standard out " ,
		"Could not write to console " ,
		"String pool id was not legal " ,
		"Could not create a default transcoder " ,
		"The maximum size to xlat is larger than the declared block size " ,
		"Unicode char 0x{0} is not representable in encoding {1} " ,
		"Character {0} is not valid for encoding {1} " ,
		"The requested block size is not equal to the size set during construction " ,
		"An invalid multi-byte source text sequence was encountered " ,
		"{0} is not a valid value for encoding {1} " ,
		"Leading surrogate was not followed by trailing " ,
		"Could not create a converter for encoding: {0} " ,
		"The URL was not correctly formed " ,
		"The URL used an unsupported protocol " ,
		"Unsupported URL protocol: '{0}' " ,
		"Only localhost is supported at this time " ,
		"No protocol prefix present " ,
		"Expected // after protocol " ,
		"% must be followed by two hex digits " ,
		"Unterminated host component " ,
		"The base part of the URL cannot be relative " ,
		"The base part has too few levels to weave in relative part " ,
		"The port field must be a 16 bit decimal number " ,
		"invalid byte {0} ({1}) of a {2}-byte sequence. " ,
		"invalid byte {0} of 2-byte sequence. " ,
		"invalid bytes {0}, {1} of 3-byte sequence. " ,
		"irregular bytes {0}, {1} of 3-byte sequence. " ,
		"invalid bytes {0}, {1} of 4-byte sequence. " ,
		"Exceede bytes limits {0}, {1}-byte sequence. " ,
		"The passed index is past the end of the vector " ,
		"The element id was invalid " ,
		"When reusing the Grammar, no internal subset is allowed " ,
		"The passed recognizer encoding was not known " ,
		"The parser found an illegal character at offset {0} in the regular expression '{1}'. " ,
		"Invalid reference number " ,
		"A character is required after \ " ,
		"'?' is not expected.  '(?:' or '(?=' or '(?!' or '(?<' or '(?#' or '(?>'? " ,
		"'(?<=' or '(?<!' is expected " ,
		"A comment is not terminated " ,
		"')' is expected " ,
		"Unexpected end of the pattern in a modifier group " ,
		"':' is expected " ,
		"Unexpected end of the pattern in a conditional group " ,
		"A back reference or an anchor or a lookahead or a lookbehind is expected in a conditional pattern " ,
		"There are more than three choices in a conditional group " ,
		"A character in U+0040-U+005f must follow \c " ,
		"A '{' is required before a category character. " ,
		"A property name is not closed by '}' " ,
		"Unexpected meta character " ,
		"Unknown property " ,
		"A POSIX character class must be closed by ':]' " ,
		"Unexpected end of the pattern in a character class " ,
		"Unknown name for a POSIX character class " ,
		"'-' is invalid here " ,
		"']' is expected " ,
		"'{0}' is not a valid character range; use '\{1}' instead " ,
		"='[' is expected " ,
		"')' or '-[' or '+[' or '&[' is expected " ,
		"The range end code point '{0}' is less than the start code point '{1}' " ,
		"Invalid Unicode hex notation " ,
		"Overflow in a hex notation " ,
		"'\ x{' must be closed by '}' " ,
		"Invalid Unicode code point " ,
		"An anchor must not be here " ,
		"This expression is not supported in the current option setting " ,
		"'{0}' is not a valid character escape " ,
		"Invalid quantifier in '{0}'. A digit is expected " ,
		"Invalid quantifier in '{0}'. Invalid quantity or a '}' is missing " ,
		"Invalid quantifier in '{0}'. A digit or '}' is expexted " ,
		"Invalid quantifier in '{0}'. A min quantity must be <= a max quantity " ,
		"Invalid quantifier in '{0}'. A quantity value overflow " ,
		"A schema was seen but the installed validator does not understand schema " ,
		"The {0} node type is not valid for copy " ,
		"SubstitutionGroupComparator has no grammar resolver " ,
		"Length Value '{0}' is invalid " ,
		"maxLength Value '{0}' is invalid " ,
		"minLength Value '{0}' is invalid " ,
		"Length Value '{0}' must be a nonNegativeInteger " ,
		"maxLength Value '{0}' must be a nonNegativeInteger " ,
		"minLength Value '{0}' must be a nonNegativeInteger " ,
		"It is an error for both length and maxLength to be members of facets " ,
		"It is an error for both length and minLength to be members of facets " ,
		"Value of maxLength '{0}' must be greater than the value of minLength '{1}' " ,
		"Only constraining facet in boolean datatype is PATTERN " ,
		"Invalid Facet Tag '{0}' " ,
		"Value of Length '{0}' must be equal to the base Length '{1}' " ,
		"Value of minLength '{0}' must be greater than or equal to the base minLength '{1}' " ,
		"Value of minLength '{0}' must be less than or equal to the base maxLength '{1}' " ,
		"Value of maxLength '{0}' must be less than or equal to the base maxLength '{1}' " ,
		"Value of maxLength '{0}' must be greater than or equal to the base minLength '{1}' " ,
		"Value of Length '{0}' must be greater than or equal to the base minLength '{1}' " ,
		"Value of Length '{0}' must be less than or equal to the base maxLength '{1}' " ,
		"Value of minLength '{0}' must be less than or equal to the base Length '{1}' " ,
		"Value of maxLength '{0}' must be greater than or equal to the base Length '{1}' " ,
		"Value of enumeration = '{0}' must be from the value space of base " ,
		"Value of whitespace '{0}' must be one of 'preserve', 'replace', 'collapse' " ,
		"It is an error if whiteSpace = 'preserve' or 'replace' and base.whiteSpace = 'collapse'. " ,
		"It is an error if whiteSpace = 'preserve' and base.whiteSpace = 'replace'. " ,
		"MaxInclusive '{0}' is invalid " ,
		"MaxExclusive '{0}' is invalid " ,
		"MinInclusive '{0}' is invalid " ,
		"MinExclusive '{0}' is invalid " ,
		"TotalDigit Value '{0}' is invalid " ,
		"FractionDigit Value '{0}' is invalid " ,
		"TotalDigit Value '{0}' must be a PositiveInteger " ,
		"FractionDigit Value '{0}' must be a nonNegativeInteger " ,
		"It is an error for both maxInclusive and maxExclusive to be specified for the same datatype " ,
		"It is an error for both minInclusive and minExclusive to be specified for the same datatype " ,
		"maxExclusive value '{0}' must be greater than minExclusive value '{1}' " ,
		"maxExclusive value '{0}' must be greater than minInclusive value '{1}' " ,
		"maxInclusive value '{0}' must be greater than minExclusive value '{1}' " ,
		"maxInclusive value '{0}' must be greater than minInclusive value '{1}' " ,
		"TotalDigit value '{0}' must be greater than FractionDigit value '{1}' " ,
		"maxInclusive value '{0}' must be less than base's maxExclusive value '{1}' " ,
		"maxInclusive value '{0}' must be less than or equal to base's maxInclusive value '{1}' " ,
		"maxInclusive value '{0}' must be greater than or equal to base's minInclusive value '{1}' " ,
		"maxInclusive value '{0}' must be greater than base's minExclusive value '{1}' " ,
		"maxExclusive value '{0}' must be less than or equal to base's maxExclusive value '{1}' " ,
		"maxExclusive value '{0}' must be less than or equal to base's maxInclusive value '{1}' " ,
		"maxExclusive value '{0}' must be greater than base's minInclusive value '{1}' " ,
		"maxExclusive value '{0}' must be greater than base's minExclusive value '{1}' " ,
		"minExclusive value '{0}' must be less than base's maxExclusive value '{1}' " ,
		"minExclusive value '{0}' must be less than or equal to base's maxInclusive value '{1}' " ,
		"minExclusive value '{0}' must be greater than base's minInclusive value '{1}' " ,
		"minExclusive value '{0}' must be greater than base's minExclusive value '{1}' " ,
		"minInclusive value '{0}' must be less than base's maxExclusive value '{1}' " ,
		"minInclusive value '{0}' must be less than or equal to base's maxInclusive value '{1}' " ,
		"minInclusive value '{0}' must be greater than or equal to base's minInclusive value '{1}' " ,
		"minInclusive value '{0}' must be greater than base's minExclusive value '{1}' " ,
		"maxInclusive value '{0}' must be from the base's value space " ,
		"maxExclusive value '{0}' must be from the base's value space " ,
		"minInclusive value '{0}' must be from the base's value space " ,
		"minExclusive value '{0}' must be from the base's value space " ,
		"totalDigit value '{0}' must be less than or equal to base's totalDigit value '{1}' " ,
		"fractDigit value '{0}' must be less than or equal to base's totalDigit value '{1}' " ,
		"fractDigit value '{0}' must be less than or equal to base's fractDigit value '{1}' " ,
		"maxInclusive '{0}' must be equal to base's maxInclusive '{1}' , fixed " ,
		"maxExclusive '{0}' must be equal to base's maxExclusive '{1}' , fixed " ,
		"minInclusive '{0}' must be equal to base's minInclusive '{1}' , fixed " ,
		"minExclusive '{0}' must be equal to base's minExclusive '{1}' , fixed " ,
		"totalDigit '{0}' must be equal to base's totalDigit '{1}'  , fixed " ,
		"fractDigit '{0}' must be equal to base's fractDigit '{1}' , fixed " ,
		"maxLen '{0}' must be equal to base's maxLen '{1}' , fixed " ,
		"minLen '{0}' must be equal to base's minLen '{1}' , fixed " ,
		"len '{0}' must be equal to base's len '{1}' , fixed " ,
		"whitespace '{0}' must be equal to base's whitespace '{1}' , fixed " ,
		"internal Error: fixed " ,
		"simpleType list's 'itemType' is empty. " ,
		"simpleType union's 'memberTypes' is empty. " ,
		"simpleType restriction's union 'base' is empty. " ,
		"simpleType restriction's union 'base' type is '{0}' instead of union. " ,
		"Value '{0}' does not match regular expression facet '{1}' " ,
		"Value '{0}' is not encoded in Base64  " ,
		"Value '{0}' is not encoded in HexBin  " ,
		"Value '{0}' with length '{1}' exceeds maximum length facet of '{2}'  " ,
		"Value '{0}' with length '{1}' is less than minimum length facet of '{2}'  " ,
		"Value '{0}' with length '{1}' is not equal to length facet of '{2}'  " ,
		"Value '{0}' is not in enumeration  " ,
		"Value '{0}' with total digits '{1}' exceeds total digit facet of '{2}'  " ,
		"Value '{0}' with fraction digits '{1}' exceeds fraction digit facet of '{2}'  " ,
		"Value '{0}' must be less than or equal to MaxInclusive '{1}'  " ,
		"Value '{0}' must be less than MaxExclusive '{1}'  " ,
		"Value '{0}' must be greater than or equal to MinInclusive '{1}'  " ,
		"Value '{0}' must be greater than MinExclusive '{1}'  " ,
		"Value '{0}' is not whitespace replaced  " ,
		"Value '{0}' is not a whitespace collapsed  " ,
		"Value '{0}' is not valid NCName  " ,
		"Value '{0}' is not valid Name  " ,
		"ID '{0}' is not unique  " ,
		"Value '{0}' is not valid ENTITY  " ,
		"Value '{0}' is not valid QName  " ,
		"NOTATION '{0}' must be a valid QName  " ,
		"Value '{0}' does not match any member types (of the union)  " ,
		"Value '{0}' is NOT a valid URI  " ,
		" Empty string encountered. " ,
		" String contains whitespaces only. " ,
		" More than one decimal points encountered. " ,
		" Invalid chars encountered. " ,
		" Null pointer encountered. " ,
		" Cannot construct URI with null/empty '{0}'  " ,
		" '{0}', '{1}' can only be set for a generic URI!  " ,
		" '{0}' contains invalid escape sequence '{1}' " ,
		" '{0}' contains invalid char '{1}' " ,
		" '{0}' can not be set to null  " ,
		" '{0}' is NOT conformance '{1}'  " ,
		" No scheme found in URI " ,
		" '{0}', '{1}' may not be specified if host is not specified  " ,
		" '{0}', '{1}' may not be specified if path is not specified  " ,
		" '{0}', '{1}' cannot be specified in path " ,
		" Port no '{0}' shall be in (0, 65535)  " ,
		" Value '{0}' shall be greater than the max Negative value '{1}'  " ,
		" Value '{0}' shall be less than the max Negative value '{1}'  " ,
		" Value '{0}' shall be in the range of '{1}', '{2}'  " ,
		" Type '{0}' is invalid: internal error  " ,
		" Value '{0}' shall have exponent.  " ,
		"A result is not set. " ,
		"CompactRanges - Internal Error " ,
		"Merge Ranges - Mismatched type " ,
		"SubtractRanges - Internal Error " ,
		"IntersectRanges - Internal Error " ,
		"ComplementRanges - Argument must be a RangeToken " ,
		"Invalid category name: {0} " ,
		"Keyword '{0}' not found " ,
		"Reference no must be more than zero " ,
		"Unknown option: {0} " ,
		"Unknown token type " ,
		"Failed to get RangeToken for: {0} " ,
		"Not supported " ,
		"Invalid child index " ,
		"Replace pattern cannot match zero length string " ,
		"Invalid replace pattern " ,
		"Enabling the NEL option can only be called once per process. " ,
		"{0} " ,
		"operator new fails.  Possibly running Of memory " ,
		"Operation is not allowed " ,
		"Selectors cannot select attributes " ,
		"Not allowed to have '|' at the beginning of an xpath value " ,
		"Not allowed to have '||' in an xpath value " ,
		"Missing attribute name in xpath " ,
		"Expected xpath token 'NAMETEST_QNAME' or 'NAMETEST_ANY' or 'NAMETEST_NAMESPACE' " ,
		"Prefix '{0}' not bound to namespace URI in an xpath value " ,
		"Not allowed to have double colon in the xpath expression " ,
		"Expected step following token 'AXISNAME_CHILD::' " ,
		"Expected step following '//' in xpath " ,
		"Expected step following '/' in xpath " ,
		"'/' not allowed after '//' in xpath " ,
		"'//' only allowed after '.' at the beginning of an xpath " ,
		"Not allowed to have '/' at the beginning of an xpath value " ,
		"Not allowed to select the root of an xpath " ,
		"Empty xpath expression " ,
		"The xpath expression cannot end with '|' " ,
		"Invalid character following '.' in xpath " ,
		"XPath token not supported " ,
		"Find a solution! " ,
		"buffer not initialized yet! " ,
		"'T' is missing! '{0}'  " ,
		"invalid gDay! '{0}'  " ,
		"invalid gMonth! '{0}'  " ,
		"invalid gMonthDay! '{0}'  " ,
		"Duration shall start with '-' or 'P'! '{0}'  " ,
		"Duration shall always have 'P'! '{0}'  " ,
		"'-' can only appear at first! '{0}'  " ,
		"Duration has invalid stuff before 'T'! '{0}'  " ,
		"Duration has no time elements after 'T'! '{0}'  " ,
		"Duration shall have at least element ! '{0}'  " ,
		"Duration shall have at least one digit after the . ! '{0}'  " ,
		"Incomplete Date ! '{0}'  " ,
		"Invalid Date ! '{0}'  " ,
		"Incomplete Time ! '{0}'  " ,
		"Invalid Time ! '{0}'  " ,
		"ms shall be present once '.' is present ! '{0}'  " ,
		"Incomplete YearMonth! '{0}'  " ,
		"Year separator is missing or misplaced ! '{0}'  " ,
		"Year must have 'CCYY' format ! '{0}'  " ,
		"Invalid leading zero in year! '{0}'  " ,
		"no month in YearMonth ! '{0}'  " ,
		"TimeZone is expected ! '{0}'  " ,
		"Expecting nothing after 'Z'! '{0}'  " ,
		"Invalid TimeZone! '{0}'  " ,
		"The year (0000) is an illegal year value! '{0}'  " ,
		"The month must have values 1 to 12! '{0}'  " ,
		"The day must have values 1 to 31! '{0}'  " ,
		"Hour must have values 0-23! '{0}'  " ,
		"Minute must have values 0-59! '{0}'  " ,
		"Second must have values 0-60! '{0}'  " ,
		"Minute must have values 0-59! '{0}'  " ,
		"Particle Derivation Restriction: The derived complexType has content, while base is empty. " ,
		"NSCompat: The namespace of '{0}' is not allowed by wildcard in base " ,
		"The occurrence range of '{0}' is not a valid restriction of base element's range " ,
		"NameAndTypeOK: The Element name/uri in restriction does not match that of corresponding base element " ,
		"NameAndTypeOK: Element '{0}' is nillable in the restriction, while it's not in the base " ,
		"NameAndTypeOK: Element '{0}' is either not fixed, or is not fixed with the same value as in the base " ,
		"NameAndTypeOK: The disallowed substitutions, for element '{0}', are not a superset of those of the base element " ,
		"NameAndTypeOK: Element '{0}' has a type that does not derive from that of the base " ,
		"NameAndTypeOK: Derived element '{0}' has fewer Identity Constraints than base element '{1}' " ,
		"NameAndTypeOK: Derived element '{0}' has an Identity Constraint that does not appear on base element '{1}' " ,
		"RecurseAsIfGroup: Element '{0}' belongs to a group of a variety different from that of the base " ,
		"Occurrence range of group is not a valid restriction of occurrence range of base group " ,
		"Recurse: There is not a complete functional mapping between the particles " ,
		"Forbidden restriction of 'any': Choice,Seq,All,Elt " ,
		"Forbidden restriction of 'all': Choice,Seq,Elt " ,
		"Forbidden restriction of 'choice': All,Seq,Leaf " ,
		"Forbidden restriction of 'sequence': Elt " ,
		"Wildcard's occurrence range not a restriction of base wildcard's range " ,
		"Wildcard is not a subset of corresponding wildcard in base " ,
		"Group's occurrence range not a restriction of base wildcard's range " ,
		"RecurseUnordered: There is not a complete functional mapping between the particles " ,
		"MapAndSum: There is not a complete functional mapping between the particles " ,
		"Particle derivation: Invalid content spec node type " ,
		"NodeIDMap overflows and exceeds the largest available size " ,
		"ProtoType has null class name " ,
		"ProtoType name length diff '{0}' vs '{1}' " ,
		"ProtoType name diff '{0}' vs '{1}' " ,
		"InputStream read '{0}' less than required '{1}' " ,
		"InputStream read '{0}' beyond buffer available '{1}' " ,
		"Storing violation " ,
		"Store buffer violation '{0}', '{1}' " ,
		"Object Tag '{0}' exceed load pool uppper Boundary '{1}' " ,
		"Load pool size '{0}' not tally with object count '{1}' " ,
		"Loading violation " ,
		"Load buffer violation '{0}', '{1}' " ,
		"Invalid class index '{0}', '{1}' " ,
		"Invalid fillBuffer size '{0}', '{1}' " ,
		"Invalid checkFillBuffer size '{0}' " ,
		"Invalid checkFlushBuffer size '{0}' " ,
		"Invalid null pointer encountered '{0}' " ,
		"Invalid buffer length '{0}' " ,
		"CreateObject fails  " ,
		"Object count '{0}' exceed upper boundary '{1}' " ,
		"Grammar Pool is locked by other party " ,
		"Grammar Pool is empty " ,
		"Grammar Pool is NOT empty " ,
		"String Pool is NOT empty " ,
		"Storer Level '{0}' is newer than Loader Level'{1}'  " ,
		"F_ End " ,
		} 


	 // an array 
	XMLDOMMsg { 
		"F_ Start " , 
		"Just an index " ,
		"The index or size is negative, or greater than the allowed value " ,
		"The specified range of text does not fit into the String " ,
		"An attempt was made to insert a node where it is not permitted " ,
		"A node is used in a different document than the one that created it " ,
		"An invalid or illegal XML character is specified " ,
		"Data is specified for a node which does not support data " ,
		"An attempt is made to modify an object where modifications are not allowed " ,
		"An attempt is made to reference a node in a context where it does not exist " ,
		"The implementation does not support the requested type of object or operation " ,
		"An attempt is made to add an attribute that is already in use elsewhere " ,
		"A parameter or an operation is not supported by the underlying object " ,
		"An invalid or illegal string is specified " ,
		"An attempt is made to modify the type of the underlying object " ,
		"An attempt is made to create or change an object in a way which is incorrect with regard to namespaces " ,
		"An attempt is made to use an object that is not, or is no longer, usable " ,
		"A call to a method such as insertBefore or removeChild would make the Node invalid with respect to document grammar " ,
		"Just an index " ,
		"The boundary-points of a Range do not meet specific requirements " ,
		"The container of a Range's boundary-point is set to a node of an invalid type or to a node with an ancestor of an invalid type " ,
		"Nested CDATA sections " ,
		"Unrepresentable character data " ,
		"Unrecognized Node Type " ,
		"F_ End " ,
		} 

} 


--- NEW FILE: res-file-list.txt ---
XercesMessages2_7_0_en_US.res


More information about the GME-commit mailing list