1 # This file contains error and warning messages related to XML
   2 # The messages are arranged in key and value tuples in a ListResourceBundle.
   3 #
   4 # @version
   5 
   6         BadMessageKey = The error message corresponding to the message key can not be found.
   7         FormatFailed = An internal error occurred while formatting the following message:\n  
   8         
   9 # Document messages
  10         PrematureEOF=Premature end of file.
  11 # 2.1 Well-Formed XML Documents
  12         RootElementRequired = The root element is required in a well-formed document.
  13 # 2.2 Characters
  14 
  15         InvalidCharInCDSect = An invalid XML character (Unicode: 0x{0}) was found in the CDATA section.
  16         InvalidCharInContent = An invalid XML character (Unicode: 0x{0}) was found in the element content of the document.
  17         TwoColonsInQName = An invalid second ':' was found in the element type or attribute name.
  18         ColonNotLegalWithNS = A colon is not allowed in the name ''{0}'' when namespaces are enabled.
  19         InvalidCharInMisc = An invalid XML character (Unicode: 0x{0}) was found in markup after the end of the element content.
  20         InvalidCharInProlog = An invalid XML character (Unicode: 0x{0}) was found in the prolog of the document.
  21         InvalidCharInXMLDecl = An invalid XML character (Unicode: 0x{0}) was found in the XML declaration.
  22 # 2.4 Character Data and Markup
  23         CDEndInContent = The character sequence \"]]>\" must not appear in content unless used to mark the end of a CDATA section.
  24 # 2.7 CDATA Sections
  25         CDSectUnterminated = The CDATA section must end with \"]]>\".
  26 # 2.8 Prolog and Document Type Declaration
  27         XMLDeclMustBeFirst = The XML declaration may only appear at the very beginning of the document.
  28         EqRequiredInXMLDecl = The '' = '' character must follow \"{0}\" in the XML declaration.
  29         QuoteRequiredInXMLDecl = The value following \"{0}\" in the XML declaration must be a quoted string.
  30         XMLDeclUnterminated = The XML declaration must end with \"?>\".
  31         VersionInfoRequired = The version is required in the XML declaration.
  32         SpaceRequiredBeforeVersionInXMLDecl = White space is required before the version pseudo attribute in the XML declaration.
  33         SpaceRequiredBeforeEncodingInXMLDecl = White space is required before the encoding pseudo attribute in the XML declaration.
  34         SpaceRequiredBeforeStandalone = White space is required before the encoding pseudo attribute in the XML declaration.
  35         MarkupNotRecognizedInProlog = The markup in the document preceding the root element must be well-formed.
  36         MarkupNotRecognizedInMisc = The markup in the document following the root element must be well-formed.
  37         AlreadySeenDoctype = Already seen doctype.
  38         DoctypeNotAllowed = DOCTYPE is disallowed when the feature "http://apache.org/xml/features/disallow-doctype-decl" set to true.
  39         ContentIllegalInProlog = Content is not allowed in prolog.
  40         ReferenceIllegalInProlog = Reference is not allowed in prolog.
  41 # Trailing Misc
  42         ContentIllegalInTrailingMisc=Content is not allowed in trailing section.
  43         ReferenceIllegalInTrailingMisc=Reference is not allowed in trailing section.
  44         
  45 # 2.9 Standalone Document Declaration
  46         SDDeclInvalid = The standalone document declaration value must be \"yes\" or \"no\", not \"{0}\".
  47         SDDeclNameInvalid = The standalone name in XML declaration may be misspelled.
  48 # 2.12 Language Identification
  49         XMLLangInvalid = The xml:lang attribute value \"{0}\" is an invalid language identifier.
  50 # 3. Logical Structures
  51         ETagRequired = The element type \"{0}\" must be terminated by the matching end-tag \"</{0}>\".
  52 # 3.1 Start-Tags, End-Tags, and Empty-Element Tags
  53         ElementUnterminated = Element type \"{0}\" must be followed by either attribute specifications, \">\" or \"/>\".
  54         EqRequiredInAttribute = Attribute name \"{1}\" associated with an element type \"{0}\" must be followed by the '' = '' character.
  55         OpenQuoteExpected = Open quote is expected for attribute \"{1}\" associated with an  element type  \"{0}\".
  56         CloseQuoteExpected = Close quote is expected for attribute \"{1}\" associated with an element type \"{0}\".
  57         AttributeNotUnique = Attribute \"{1}\" was already specified for element \"{0}\".
  58         AttributeNSNotUnique = Attribute \"{1}\" bound to namespace \"{2}\" was already specified for element \"{0}\".
  59         ETagUnterminated = The end-tag for element type \"{0}\" must end with a ''>'' delimiter.
  60         MarkupNotRecognizedInContent = The content of elements must consist of well-formed character data or markup.
  61         DoctypeIllegalInContent = A DOCTYPE is not allowed in content.
  62 # 4.1 Character and Entity References
  63         ReferenceUnterminated = The reference must be terminated by a ';' delimiter.
  64 # 4.3.2 Well-Formed Parsed Entities
  65         ReferenceNotInOneEntity = The reference must be entirely contained within the same parsed entity.
  66         ElementEntityMismatch = The element \"{0}\" must start and end within the same entity.
  67         MarkupEntityMismatch=XML document structures must start and end within the same entity.
  68         
  69 # Messages common to Document and DTD
  70 # 2.2 Characters
  71         InvalidCharInAttValue = An invalid XML character (Unicode: 0x{2}) was found in the value of attribute \"{1}\" and element is \"{0}\".
  72         InvalidCharInComment = An invalid XML character (Unicode: 0x{0}) was found in the comment.
  73         InvalidCharInPI = An invalid XML character (Unicode: 0x{0}) was found in the processing instruction.
  74         InvalidCharInInternalSubset = An invalid XML character (Unicode: 0x{0}) was found in the internal subset of the DTD.
  75         InvalidCharInTextDecl = An invalid XML character (Unicode: 0x{0}) was found in the text declaration.
  76 # 2.3 Common Syntactic Constructs
  77         QuoteRequiredInAttValue = The value of attribute \"{1}\" must begin with either a single or double quote character.
  78         LessthanInAttValue = The value of attribute \"{1}\" associated with an element type \"{0}\" must not contain the ''<'' character.
  79         AttributeValueUnterminated = The value for attribute \"{1}\" must end with the matching quote character.
  80 # 2.5 Comments
  81         InvalidCommentStart = Comment must start with \"<!--\".
  82         DashDashInComment = The string \"--\" is not permitted within comments.
  83         CommentUnterminated = The comment must end with \"-->\".
  84         COMMENT_NOT_IN_ONE_ENTITY = The comment is not enclosed xin the same entity.
  85 # 2.6 Processing Instructions
  86         PITargetRequired = The processing instruction must begin with the name of the target.
  87         SpaceRequiredInPI = White space is required between the processing instruction target and data.
  88         PIUnterminated = The processing instruction must end with \"?>\".
  89         ReservedPITarget = The processing instruction target matching \"[xX][mM][lL]\" is not allowed.
  90         PI_NOT_IN_ONE_ENTITY = The processing instruction is not enclosed in the same entity.
  91 # 2.8 Prolog and Document Type Declaration
  92         VersionInfoInvalid = Invalid version \"{0}\".
  93         VersionNotSupported = XML version \"{0}\" is not supported, only XML 1.0 is supported.
  94         VersionNotSupported11 = XML version \"{0}\" is not supported, only XML 1.0 and XML 1.1 are supported.
  95         VersionMismatch= An entity cannot include another entity of a later version.
  96 # 4.1 Character and Entity References
  97         DigitRequiredInCharRef = A decimal representation must immediately follow the \"&#\" in a character reference.
  98         HexdigitRequiredInCharRef = A hexadecimal representation must immediately follow the \"&#x\" in a character reference.
  99         SemicolonRequiredInCharRef = The character reference must end with the ';' delimiter.
 100         InvalidCharRef = Character reference \"&#{0}\" is an invalid XML character.
 101         NameRequiredInReference = The entity name must immediately follow the '&' in the entity reference.
 102         SemicolonRequiredInReference = The reference to entity \"{0}\" must end with the '';'' delimiter.
 103 # 4.3.1 The Text Declaration
 104         TextDeclMustBeFirst = The text declaration may only appear at the very beginning of the external parsed entity.
 105         EqRequiredInTextDecl = The '' = '' character must follow \"{0}\" in the text declaration.
 106         QuoteRequiredInTextDecl = The value following \"{0}\" in the text declaration must be a quoted string.
 107         CloseQuoteMissingInTextDecl = closing quote in the value following \"{0}\" in the text declaration is missing.
 108         SpaceRequiredBeforeVersionInTextDecl = White space is required before the version pseudo attribute in the text declaration.
 109         SpaceRequiredBeforeEncodingInTextDecl = White space is required before the encoding pseudo attribute in the text declaration.
 110         TextDeclUnterminated = The text declaration must end with \"?>\".
 111         EncodingDeclRequired = The encoding declaration is required in the text declaration.
 112         NoMorePseudoAttributes = No more pseudo attributes are allowed.
 113         MorePseudoAttributes = More pseudo attributes are expected.
 114         PseudoAttrNameExpected = A pseudo attribute name is expected. 
 115 # 4.3.2 Well-Formed Parsed Entities
 116         CommentNotInOneEntity = The comment must be entirely contained within the same parsed entity.
 117         PINotInOneEntity = The processing instruction must be entirely contained within the same parsed entity.
 118 # 4.3.3 Character Encoding in Entities
 119         EncodingDeclInvalid = Invalid encoding name \"{0}\".
 120         EncodingByteOrderUnsupported = Given byte order for encoding \"{0}\" is not supported.
 121         InvalidByte = Invalid byte {0} of {1}-byte UTF-8 sequence.
 122         ExpectedByte = Expected byte {0} of {1}-byte UTF-8 sequence.  
 123         InvalidHighSurrogate = High surrogate bits in UTF-8 sequence must not exceed 0x10 but found 0x{0}.
 124         OperationNotSupported = Operation \"{0}\" not supported by {1} reader.
 125         InvalidASCII = Byte \"{0}\" is not a member of the (7-bit) ASCII character set.
 126         CharConversionFailure = An entity determined to be in a certain encoding must not contain sequences illegal in that encoding.
 127         
 128 # DTD Messages
 129 # 2.2 Characters
 130         InvalidCharInEntityValue = An invalid XML character (Unicode: 0x{0}) was found in the literal entity value.
 131         InvalidCharInExternalSubset = An invalid XML character (Unicode: 0x{0}) was found in the external subset of the DTD.
 132         InvalidCharInIgnoreSect = An invalid XML character (Unicode: 0x{0}) was found in the excluded conditional section.
 133         InvalidCharInPublicID = An invalid XML character (Unicode: 0x{0}) was found in the public identifier.
 134         InvalidCharInSystemID = An invalid XML character (Unicode: 0x{0}) was found in the system identifier.
 135 # 2.3 Common Syntactic Constructs
 136         SpaceRequiredAfterSYSTEM = White space is required after keyword SYSTEM in DOCTYPE decl.
 137         QuoteRequiredInSystemID = The system identifier must begin with either a single or double quote character.
 138         SystemIDUnterminated = The system identifier must end with the matching quote character.
 139         SpaceRequiredAfterPUBLIC = White spaces are required after keyword PUBLIC in DOCTYPE decl.
 140         QuoteRequiredInPublicID = The public identifier must begin with either a single or double quote character.
 141         PublicIDUnterminated = The public identifier must end with the matching quote character.
 142         PubidCharIllegal = The character (Unicode: 0x{0}) is not permitted in the public identifier.
 143         SpaceRequiredBetweenPublicAndSystem = White spaces are required between publicId and systemId.
 144 # 2.8 Prolog and Document Type Declaration
 145         MSG_SPACE_REQUIRED_BEFORE_ROOT_ELEMENT_TYPE_IN_DOCTYPEDECL = White space is required after \"<!DOCTYPE\" in the document type declaration.
 146         MSG_ROOT_ELEMENT_TYPE_REQUIRED = The root element type must appear after \"<!DOCTYPE\" in the document type declaration.
 147         DoctypedeclUnterminated = The document type declaration for root element type \"{0}\" must end with ''>''.
 148         PEReferenceWithinMarkup = The parameter entity reference \"%{0};\" cannot occur within markup in the internal subset of the DTD.
 149         MSG_MARKUP_NOT_RECOGNIZED_IN_DTD = The markup declarations contained or pointed to by the document type declaration must be well-formed.
 150 # 2.10 White Space Handling
 151         MSG_XML_SPACE_DECLARATION_ILLEGAL = The attribute declaration for \"xml:space\" must be given as an enumerated type whose only possible values are \"default\" and \"preserve\".
 152 # 3.2 Element Type Declarations
 153         MSG_SPACE_REQUIRED_BEFORE_ELEMENT_TYPE_IN_ELEMENTDECL = White space is required after \"<!ELEMENT\" in the element type declaration.
 154         MSG_ELEMENT_TYPE_REQUIRED_IN_ELEMENTDECL = The element type is required in the element type declaration.
 155         MSG_SPACE_REQUIRED_BEFORE_CONTENTSPEC_IN_ELEMENTDECL = White space is required after the element type \"{0}\" in the element type declaration.
 156         MSG_CONTENTSPEC_REQUIRED_IN_ELEMENTDECL = The constraint is required after the element type \"{0}\" in the element type declaration.
 157         ElementDeclUnterminated = The declaration for element type \"{0}\" must end with ''>''.
 158 # 3.2.1 Element Content
 159         MSG_OPEN_PAREN_OR_ELEMENT_TYPE_REQUIRED_IN_CHILDREN = A ''('' character or an element type is required in the declaration of element type \"{0}\".
 160         MSG_CLOSE_PAREN_REQUIRED_IN_CHILDREN = A '')'' is required in the declaration of element type \"{0}\".
 161 # 3.2.2 Mixed Content
 162         MSG_ELEMENT_TYPE_REQUIRED_IN_MIXED_CONTENT = An element type is required in the declaration of element type \"{0}\".
 163         MSG_CLOSE_PAREN_REQUIRED_IN_MIXED = A '')'' is required in the declaration of element type \"{0}\".
 164         MixedContentUnterminated = The mixed content model \"{0}\" must end with \")*\" when the types of child elements are constrained.
 165 # 3.3 Attribute-List Declarations
 166         MSG_SPACE_REQUIRED_BEFORE_ELEMENT_TYPE_IN_ATTLISTDECL = White space is required after \"<!ATTLIST\" in the attribute-list declaration.
 167         MSG_ELEMENT_TYPE_REQUIRED_IN_ATTLISTDECL = The element type is required in the attribute-list declaration.
 168         MSG_SPACE_REQUIRED_BEFORE_ATTRIBUTE_NAME_IN_ATTDEF = White space is required before the attribute name in the attribute-list declaration for element \"{0}\".
 169         AttNameRequiredInAttDef = The attribute name must be specified in the attribute-list declaration for element \"{0}\".
 170         MSG_SPACE_REQUIRED_BEFORE_ATTTYPE_IN_ATTDEF = White space is required before the attribute type in the declaration of attribute \"{1}\" for element \"{0}\".
 171         AttTypeRequiredInAttDef = The attribute type is required in the declaration of attribute \"{1}\" for element \"{0}\".
 172         MSG_SPACE_REQUIRED_BEFORE_DEFAULTDECL_IN_ATTDEF = White space is required before the attribute default in the declaration of attribute \"{1}\" for element \"{0}\".
 173         MSG_DUPLICATE_ATTRIBUTE_DEFINITION = More than one attribute definition is provided for the same attribute \"{1}\" of a given element \"{0}\".
 174 # 3.3.1 Attribute Types
 175         MSG_SPACE_REQUIRED_AFTER_NOTATION_IN_NOTATIONTYPE = White space must appear after \"NOTATION\" in the \"{1}\" attribute declaration.
 176         MSG_OPEN_PAREN_REQUIRED_IN_NOTATIONTYPE = The ''('' character must follow \"NOTATION\" in the \"{1}\" attribute declaration.
 177         MSG_NAME_REQUIRED_IN_NOTATIONTYPE = The notation name is required in the notation type list for the \"{1}\" attribute declaration.
 178         NotationTypeUnterminated = The notation type list must end with '')'' in the \"{1}\" attribute declaration.
 179         MSG_NMTOKEN_REQUIRED_IN_ENUMERATION = The name token is required in the enumerated type list for the \"{1}\" attribute declaration.
 180         EnumerationUnterminated = The enumerated type list must end with '')'' in the \"{1}\" attribute declaration.
 181         MSG_DISTINCT_TOKENS_IN_ENUMERATION = The enumeration value \"{1}\" was specified more than once in the declaration of attribute \"{2}\" for element \"{0}\". The NMTOKENS in a single Enumeration attribute declaration must all be distinct.
 182         MSG_DISTINCT_NOTATION_IN_ENUMERATION = The enumeration value \"{1}\" was specified more than once in the declaration of attribute \"{2}\" for element \"{0}\". The NOTATION names in a single NotationType attribute declaration must all be distinct.
 183 # 3.3.2 Attribute Defaults
 184         MSG_SPACE_REQUIRED_AFTER_FIXED_IN_DEFAULTDECL = White space must appear after \"FIXED\" in the \"{1}\" attribute declaration.
 185 # 3.4 Conditional Sections
 186         IncludeSectUnterminated = The included conditional section must end with \"]]>\".
 187         IgnoreSectUnterminated = The excluded conditional section must end with \"]]>\".
 188 # 4.1 Character and Entity References
 189         NameRequiredInPEReference = The entity name must immediately follow the '%' in the parameter entity reference.
 190         SemicolonRequiredInPEReference = The parameter entity reference \"%{0};\" must end with the '';'' delimiter.
 191 # 4.2 Entity Declarations
 192         MSG_SPACE_REQUIRED_BEFORE_ENTITY_NAME_IN_ENTITYDECL = White space is required after \"<!ENTITY\" in the entity declaration.
 193         MSG_SPACE_REQUIRED_BEFORE_PERCENT_IN_PEDECL = White space is required between \"<!ENTITY\" and the '%' character in the parameter entity declaration.
 194         MSG_SPACE_REQUIRED_BEFORE_ENTITY_NAME_IN_PEDECL = White space is required between the '%' and the entity name in the parameter entity declaration.
 195         MSG_ENTITY_NAME_REQUIRED_IN_ENTITYDECL = The name of the entity is required in the entity declaration.
 196         MSG_SPACE_REQUIRED_AFTER_ENTITY_NAME_IN_ENTITYDECL = White space is required between the entity name \"{0}\" and the definition in the entity declaration.
 197         MSG_SPACE_REQUIRED_BEFORE_NOTATION_NAME_IN_UNPARSED_ENTITYDECL = White space is required between \"NDATA\" and the notation name in the declaration for the entity \"{0}\".
 198         MSG_SPACE_REQUIRED_BEFORE_NDATA_IN_UNPARSED_ENTITYDECL = White space is required before \"NDATA\" in the declaration for the entity \"{0}\".
 199         MSG_NOTATION_NAME_REQUIRED_FOR_UNPARSED_ENTITYDECL = The notation name is required after \"NDATA\" in the declaration for the entity \"{0}\".
 200         EntityDeclUnterminated = The declaration for the entity \"{0}\" must end with ''>''.
 201         MSG_DUPLICATE_ENTITY_DEFINITION = Entity \"{0}\" is declared more than once.        
 202 # 4.2.2 External Entities
 203         ExternalIDRequired = The external entity declaration must begin with either \"SYSTEM\" or \"PUBLIC\".
 204         MSG_SPACE_REQUIRED_BEFORE_PUBIDLITERAL_IN_EXTERNALID = White space is required between \"PUBLIC\" and the public identifier.
 205         MSG_SPACE_REQUIRED_AFTER_PUBIDLITERAL_IN_EXTERNALID = White space is required between the public identifier and the system identifier.
 206         MSG_SPACE_REQUIRED_BEFORE_SYSTEMLITERAL_IN_EXTERNALID = White space is required between \"SYSTEM\" and the system identifier.
 207         MSG_URI_FRAGMENT_IN_SYSTEMID = The fragment identifier should not be specified as part of the system identifier \"{0}\".
 208 # 4.7 Notation Declarations
 209         MSG_SPACE_REQUIRED_BEFORE_NOTATION_NAME_IN_NOTATIONDECL = White space is required after \"<!NOTATION\" in the notation declaration.
 210         MSG_NOTATION_NAME_REQUIRED_IN_NOTATIONDECL = The name of the notation is required in the notation declaration.
 211         MSG_SPACE_REQUIRED_AFTER_NOTATION_NAME_IN_NOTATIONDECL = White space is required after the notation name \"{0}\" in the notation declaration.
 212         ExternalIDorPublicIDRequired = The declaration for the notation \"{0}\" must include a system or public identifier.
 213         NotationDeclUnterminated = The declaration for the notation \"{0}\" must end with ''>''.
 214         
 215 # Validation messages
 216         DuplicateTypeInMixedContent = The element type \"{1}\" was already specified in the content model of the element decl \"{0}\".
 217         ENTITIESInvalid = Attribute value \"{1}\" of type ENTITIES must be the names of one or more unparsed entities.
 218         ENTITYInvalid = Attribute value \"{1}\" of type ENTITY must be the name of an unparsed entity.
 219         IDDefaultTypeInvalid = The ID attribute \"{0}\" must have a declared default of \"#IMPLIED\" or \"#REQUIRED\".
 220         IDInvalid = Attribute value \"{0}\" of type ID must be a name.
 221         IDInvalidWithNamespaces = Attribute value \"{0}\" of type ID must be an NCName when namespaces are enabled.
 222         IDNotUnique = Attribute value \"{0}\" of type ID must be unique within the document.
 223         IDREFInvalid = Attribute value \"{0}\" of type IDREF must be a name.
 224         IDREFInvalidWithNamespaces = Attribute value \"{0}\" of type IDREF must be an NCName when namespaces are enabled.
 225         IDREFSInvalid = Attribute value \"{0}\" of type IDREFS must be one or more names.
 226         ILL_FORMED_PARAMETER_ENTITY_WHEN_USED_IN_DECL = The replacement text of parameter entity \"{0}\" must include properly nested declarations when the entity reference is used as a complete declaration.
 227         ImproperDeclarationNesting = The replacement text of parameter entity \"{0}\" must include properly nested declarations.
 228         ImproperGroupNesting = The replacement text of parameter entity \"{0}\" must include properly nested pairs of parentheses.
 229         INVALID_PE_IN_CONDITIONAL = The replacement text of parameter entity \"{0}\" must include the entire conditional section or just INCLUDE or IGNORE.
 230         MSG_ATTRIBUTE_NOT_DECLARED = Attribute \"{1}\" must be declared for element type \"{0}\".
 231         MSG_ATTRIBUTE_VALUE_NOT_IN_LIST = Attribute \"{0}\" with value \"{1}\" must have a value from the list \"{2}\".
 232         MSG_ATTVALUE_CHANGED_DURING_NORMALIZATION_WHEN_STANDALONE = The value \"{1}\" of attribute \"{0}\" must not be changed by normalization (to \"{2}\") in a standalone document.
 233         MSG_CONTENT_INCOMPLETE = The content of element type \"{0}\" is incomplete, it must match \"{1}\".
 234         MSG_CONTENT_INVALID = The content of element type \"{0}\" must match \"{1}\".
 235         MSG_CONTENT_INVALID_SPECIFIED = The content of element type \"{0}\" must match \"{1}\".  Children of type \"{2}\" are not allowed.
 236         MSG_DEFAULTED_ATTRIBUTE_NOT_SPECIFIED = Attribute \"{1}\" for element type \"{0}\" has a default value and must be specified in a standalone document.
 237         MSG_DUPLICATE_ATTDEF = Attribute \"{1}\" is already declared for element type \"{0}\".
 238         MSG_ELEMENT_ALREADY_DECLARED = Element type \"{0}\" must not be declared more than once.
 239         MSG_ELEMENT_NOT_DECLARED = Element type \"{0}\" must be declared.
 240         MSG_GRAMMAR_NOT_FOUND = Document is invalid: no grammar found.
 241         MSG_ELEMENT_WITH_ID_REQUIRED = An element with the identifier \"{0}\" must appear in the document.
 242         MSG_EXTERNAL_ENTITY_NOT_PERMITTED = The reference to external entity \"{0}\" is not permitted in a standalone document.
 243         MSG_FIXED_ATTVALUE_INVALID = Attribute \"{1}\" with value \"{2}\" must have a value of \"{3}\".
 244         MSG_MORE_THAN_ONE_ID_ATTRIBUTE = Element type \"{0}\" already has attribute \"{1}\" of type ID, a second attribute \"{2}\" of type ID is not permitted.
 245         MSG_MORE_THAN_ONE_NOTATION_ATTRIBUTE = Element type \"{0}\" already has attribute \"{1}\" of type NOTATION, a second attribute \"{2}\" of type NOTATION is not permitted.
 246         MSG_NOTATION_NOT_DECLARED_FOR_NOTATIONTYPE_ATTRIBUTE = The notation \"{1}\" must be declared when referenced in the notation type list for attribute \"{0}\".
 247         MSG_NOTATION_NOT_DECLARED_FOR_UNPARSED_ENTITYDECL = The notation \"{1}\" must be declared when referenced in the unparsed entity declaration for \"{0}\".
 248         MSG_REFERENCE_TO_EXTERNALLY_DECLARED_ENTITY_WHEN_STANDALONE = The reference to entity \"{0}\" declared in an external parsed entity is not permitted in a standalone document.
 249         MSG_REQUIRED_ATTRIBUTE_NOT_SPECIFIED = Attribute \"{1}\" is required and must be specified for element type \"{0}\".
 250         MSG_WHITE_SPACE_IN_ELEMENT_CONTENT_WHEN_STANDALONE = White space must not occur between elements declared in an external parsed entity with element content in a standalone document.
 251         NMTOKENInvalid = Attribute value \"{0}\" of type NMTOKEN must be a name token.
 252         NMTOKENSInvalid = Attribute value \"{0}\" of type NMTOKENS must be one or more name tokens.
 253         NoNotationOnEmptyElement = Element type \"{0}\" which was declared EMPTY cannot declare attribute \"{1}\" of type NOTATION.
 254         RootElementTypeMustMatchDoctypedecl = Document root element \"{1}\", must match DOCTYPE root \"{0}\".
 255         UndeclaredElementInContentSpec = The content model of element \"{0}\" refers to the undeclared element \"{1}\".
 256         UniqueNotationName = The declaration for the notation \"{0}\" is not unique. A given Name must not be declared in more than one notation declaration.
 257         ENTITYFailedInitializeGrammar =  ENTITYDatatype Validator: Failed Need to call initialize method with a valid Grammar reference.        
 258         ENTITYNotUnparsed = ENTITY \"{0}\" is not unparsed.
 259         ENTITYNotValid = ENTITY \"{0}\" is not valid.
 260         EmptyList = Value of type ENTITIES, IDREFS, and NMTOKENS cannot be empty list.
 261 
 262 # Entity related messages
 263 # 3.1 Start-Tags, End-Tags, and Empty-Element Tags
 264         ReferenceToExternalEntity = The external entity reference \"&{0};\" is not permitted in an attribute value.
 265         AccessExternalDTD = External DTD: Failed to read external DTD ''{0}'', because ''{1}'' access is not allowed due to restriction set by the accessExternalDTD property.
 266         AccessExternalEntity = External Entity: Failed to read external document ''{0}'', because ''{1}'' access is not allowed due to restriction set by the accessExternalDTD property.
 267 
 268 # 4.1 Character and Entity References
 269         EntityNotDeclared = The entity \"{0}\" was referenced, but not declared.
 270         ReferenceToUnparsedEntity = The unparsed entity reference \"&{0};\" is not permitted.
 271         RecursiveReference = Recursive entity reference \"{0}\". (Reference path: {1}),
 272         RecursiveGeneralReference = Recursive general entity reference \"&{0};\". (Reference path: {1}),
 273         RecursivePEReference = Recursive parameter entity reference \"%{0};\". (Reference path: {1}),
 274 # 4.3.3 Character Encoding in Entities
 275         EncodingNotSupported = The encoding \"{0}\" is not supported.
 276         EncodingRequired = A parsed entity not encoded in either UTF-8 or UTF-16 must contain an encoding declaration.
 277         
 278 # Namespaces support
 279 # 4. Using Qualified Names
 280         IllegalQName = Element or attribute do not match QName production: QName::=(NCName':')?NCName. 
 281         ElementXMLNSPrefix = Element \"{0}\" cannot have \"xmlns\" as its prefix.
 282         ElementPrefixUnbound = The prefix \"{0}\" for element \"{1}\" is not bound.
 283         AttributePrefixUnbound = The prefix \"{2}\" for attribute \"{1}\" associated with an element type \"{0}\" is not bound.
 284         EmptyPrefixedAttName = The value of the attribute \"{0}\" is invalid. Prefixed namespace bindings may not be empty.
 285         PrefixDeclared = The namespace prefix \"{0}\" was not declared.
 286         CantBindXMLNS = The prefix "xmlns" cannot be bound to any namespace explicitly; neither can the namespace for "xmlns" be bound to any prefix explicitly.
 287         CantBindXML = The prefix "xml" cannot be bound to any namespace other than its usual namespace; neither can the namespace for "xml" be bound to any prefix other than "xml".
 288         MSG_ATT_DEFAULT_INVALID = The defaultValue \"{1}\" of attribute \"{0}\" is not legal as for the lexical constraints of this attribute type.
 289 
 290 # REVISIT: These need messages
 291         MSG_SPACE_REQUIRED_AFTER_SYSTEMLITERAL_IN_EXTERNALID=MSG_SPACE_REQUIRED_AFTER_SYSTEMLITERAL_IN_EXTERNALID
 292         OpenQuoteMissingInDecl=OpenQuoteMissingInDecl
 293         InvalidCharInLiteral=InvalidCharInLiteral
 294 
 295 
 296 # Implementation limits
 297         EntityExpansionLimit=JAXP00010001: The parser has encountered more than \"{0}\" entity expansions in this document; this is the limit imposed by the JDK.
 298         ElementAttributeLimit=JAXP00010002:  Element \"{0}\" has more than \"{1}\" attributes, \"{1}\" is the limit imposed by the JDK.
 299         MaxEntitySizeLimit=JAXP00010003: The length of entity \"{0}\" is \"{1}\" that exceeds the \"{2}\" limit set by \"{3}\".
 300         TotalEntitySizeLimit=JAXP00010004: The accumulated size of entities is \"{1}\" that exceeded the \"{2}\" limit set by \"{3}\".
 301         MaxXMLNameLimit=JAXP00010005: The length of entity \"{0}\" is \"{1}\" that exceeds the \"{2}\" limit set by \"{3}\".
 302         MaxElementDepthLimit=JAXP00010006: The element \"{0}\" has a depth of \"{1}\" that exceeds the limit \"{2}\" set by \"{3}\".
 303