📄 xmlmessages.properties
字号:
# This file contains error and warning messages related to XML
# The messages are arranged in key and value tuples in a ListResourceBundle.
#
# @version
BadMessageKey = The error message corresponding to the message key can not be found.
FormatFailed = An internal error occurred while formatting the following message:\n
# Document messages
PrematureEOF=Premature end of file.
# 2.1 Well-Formed XML Documents
RootElementRequired = The root element is required in a well-formed document.
# 2.2 Characters
InvalidCharInCDSect = An invalid XML character (Unicode: 0x{0}) was found in the CDATA section.
InvalidCharInContent = An invalid XML character (Unicode: 0x{0}) was found in the element content of the document.
TwoColonsInQName = An invalid second ':' was found in the element type or attribute name.
ColonNotLegalWithNS = A colon is not allowed in the name ''{0}'' when namespaces are enabled.
InvalidCharInMisc = An invalid XML character (Unicode: 0x{0}) was found in markup after the end of the element content.
InvalidCharInProlog = An invalid XML character (Unicode: 0x{0}) was found in the prolog of the document.
InvalidCharInXMLDecl = An invalid XML character (Unicode: 0x{0}) was found in the XML declaration.
# 2.4 Character Data and Markup
CDEndInContent = The character sequence \"]]>\" must not appear in content unless used to mark the end of a CDATA section.
# 2.7 CDATA Sections
CDSectUnterminated = The CDATA section must end with \"]]>\".
# 2.8 Prolog and Document Type Declaration
XMLDeclMustBeFirst = The XML declaration may only appear at the very beginning of the document.
EqRequiredInXMLDecl = The '' = '' character must follow \"{0}\" in the XML declaration.
QuoteRequiredInXMLDecl = The value following \"{0}\" in the XML declaration must be a quoted string.
XMLDeclUnterminated = The XML declaration must end with \"?>\".
VersionInfoRequired = The version is required in the XML declaration.
SpaceRequiredBeforeVersionInXMLDecl = White space is required before the version pseudo attribute in the XML declaration.
SpaceRequiredBeforeEncodingInXMLDecl = White space is required before the encoding pseudo attribute in the XML declaration.
SpaceRequiredBeforeStandalone = White space is required before the encoding pseudo attribute in the XML declaration.
MarkupNotRecognizedInProlog = The markup in the document preceding the root element must be well-formed.
MarkupNotRecognizedInMisc = The markup in the document following the root element must be well-formed.
AlreadySeenDoctype = Already seen doctype.
DoctypeNotAllowed = DOCTYPE is disallowed when the feature "http://apache.org/xml/features/disallow-doctype-decl" set to true.
ContentIllegalInProlog = Content is not allowed in prolog.
ReferenceIllegalInProlog = Reference is not allowed in prolog.
# Trailing Misc
ContentIllegalInTrailingMisc=Content is not allowed in trailing section.
ReferenceIllegalInTrailingMisc=Reference is not allowed in trailing section.
# 2.9 Standalone Document Declaration
SDDeclInvalid = The standalone document declaration value must be \"yes\" or \"no\", not \"{0}\".
# 2.12 Language Identification
XMLLangInvalid = The xml:lang attribute value \"{0}\" is an invalid language identifier.
# 3. Logical Structures
ETagRequired = The element type \"{0}\" must be terminated by the matching end-tag \"</{0}>\".
# 3.1 Start-Tags, End-Tags, and Empty-Element Tags
ElementUnterminated = Element type \"{0}\" must be followed by either attribute specifications, \">\" or \"/>\".
EqRequiredInAttribute = Attribute name \"{1}\" associated with an element type \"{0}\" must be followed by the '' = '' character.
OpenQuoteExpected = Open quote is expected for attribute \"{1}\" associated with an element type \"{0}\".
CloseQuoteExpected = Close quote is expected for attribute \"{1}\" associated with an element type \"{0}\".
AttributeNotUnique = Attribute \"{1}\" was already specified for element \"{0}\".
AttributeNSNotUnique = Attribute \"{1}\" bound to namespace \"{2}\" was already specified for element \"{0}\".
ETagUnterminated = The end-tag for element type \"{0}\" must end with a ''>'' delimiter.
MarkupNotRecognizedInContent = The content of elements must consist of well-formed character data or markup.
DoctypeIllegalInContent = A DOCTYPE is not allowed in content.
# 4.1 Character and Entity References
ReferenceUnterminated = The reference must be terminated by a ';' delimiter.
# 4.3.2 Well-Formed Parsed Entities
ReferenceNotInOneEntity = The reference must be entirely contained within the same parsed entity.
ElementEntityMismatch = The element \"{0}\" must start and end within the same entity.
MarkupEntityMismatch=XML document structures must start and end within the same entity.
# Messages common to Document and DTD
# 2.2 Characters
InvalidCharInAttValue = An invalid XML character (Unicode: 0x{2}) was found in the value of attribute \"{1}\" and element is \"{0}\".
InvalidCharInComment = An invalid XML character (Unicode: 0x{0}) was found in the comment.
InvalidCharInPI = An invalid XML character (Unicode: 0x{0}) was found in the processing instruction.
InvalidCharInInternalSubset = An invalid XML character (Unicode: 0x{0}) was found in the internal subset of the DTD.
InvalidCharInTextDecl = An invalid XML character (Unicode: 0x{0}) was found in the text declaration.
# 2.3 Common Syntactic Constructs
QuoteRequiredInAttValue = The value of attribute \"{1}\" must begin with either a single or double quote character.
LessthanInAttValue = The value of attribute \"{1}\" associated with an element type \"{0}\" must not contain the ''<'' character.
AttributeValueUnterminated = The value for attribute \"{1}\" must end with the matching quote character.
# 2.5 Comments
InvalidCommentStart = Comment must start with \"<!--\".
DashDashInComment = The string \"--\" is not permitted within comments.
CommentUnterminated = The comment must end with \"-->\".
COMMENT_NOT_IN_ONE_ENTITY = The comment is not enclosed xin the same entity.
# 2.6 Processing Instructions
PITargetRequired = The processing instruction must begin with the name of the target.
SpaceRequiredInPI = White space is required between the processing instruction target and data.
PIUnterminated = The processing instruction must end with \"?>\".
ReservedPITarget = The processing instruction target matching \"[xX][mM][lL]\" is not allowed.
PI_NOT_IN_ONE_ENTITY = The processing instruction is not enclosed in the same entity.
# 2.8 Prolog and Document Type Declaration
VersionInfoInvalid = Invalid version \"{0}\".
VersionNotSupported = XML version \"{0}\" is not supported, only XML 1.0 is supported.
VersionNotSupported11 = XML version \"{0}\" is not supported, only XML 1.0 and XML 1.1 are supported.
# 4.1 Character and Entity References
DigitRequiredInCharRef = A decimal representation must immediately follow the \"&#\" in a character reference.
HexdigitRequiredInCharRef = A hexadecimal representation must immediately follow the \"&#x\" in a character reference.
SemicolonRequiredInCharRef = The character reference must end with the ';' delimiter.
InvalidCharRef = Character reference \"&#{0}\" is an invalid XML character.
NameRequiredInReference = The entity name must immediately follow the '&' in the entity reference.
SemicolonRequiredInReference = The reference to entity \"{0}\" must end with the '';'' delimiter.
# 4.3.1 The Text Declaration
TextDeclMustBeFirst = The text declaration may only appear at the very beginning of the external parsed entity.
EqRequiredInTextDecl = The '' = '' character must follow \"{0}\" in the text declaration.
QuoteRequiredInTextDecl = The value following \"{0}\" in the text declaration must be a quoted string.
CloseQuoteMissingInTextDecl = closing quote in the value following \"{0}\" in the text declaration is missing.
SpaceRequiredBeforeVersionInTextDecl = White space is required before the version pseudo attribute in the text declaration.
SpaceRequiredBeforeEncodingInTextDecl = White space is required before the encoding pseudo attribute in the text declaration.
TextDeclUnterminated = The text declaration must end with \"?>\".
EncodingDeclRequired = The encoding declaration is required in the text declaration.
NoMorePseudoAttributes = No more pseudo attributes are allowed.
MorePseudoAttributes = More pseudo attributes are expected.
PseudoAttrNameExpected = A pseudo attribute name is expected.
# 4.3.2 Well-Formed Parsed Entities
CommentNotInOneEntity = The comment must be entirely contained within the same parsed entity.
PINotInOneEntity = The processing instruction must be entirely contained within the same parsed entity.
# 4.3.3 Character Encoding in Entities
EncodingDeclInvalid = Invalid encoding name \"{0}\".
EncodingByteOrderUnsupported = Given byte order for encoding \"{0}\" is not supported.
InvalidByte = Invalid byte {0} of {1}-byte UTF-8 sequence.
ExpectedByte = Expected byte {0} of {1}-byte UTF-8 sequence.
InvalidHighSurrogate = High surrogate bits in UTF-8 sequence must not exceed 0x10 but found 0x{0}.
OperationNotSupported = Operation \"{0}\" not supported by {1} reader.
InvalidASCII = Byte \"{0}\" is not a member of the (7-bit) ASCII character set.
# DTD Messages
# 2.2 Characters
InvalidCharInEntityValue = An invalid XML character (Unicode: 0x{0}) was found in the literal entity value.
InvalidCharInExternalSubset = An invalid XML character (Unicode: 0x{0}) was found in the external subset of the DTD.
InvalidCharInIgnoreSect = An invalid XML character (Unicode: 0x{0}) was found in the excluded conditional section.
InvalidCharInPublicID = An invalid XML character (Unicode: 0x{0}) was found in the public identifier.
InvalidCharInSystemID = An invalid XML character (Unicode: 0x{0}) was found in the system identifier.
# 2.3 Common Syntactic Constructs
SpaceRequiredAfterSYSTEM = White space is required after keyword SYSTEM in DOCTYPE decl.
QuoteRequiredInSystemID = The system identifier must begin with either a single or double quote character.
SystemIDUnterminated = The system identifier must end with the matching quote character.
SpaceRequiredAfterPUBLIC = White spaces are required after keyword PUBLIC in DOCTYPE decl.
QuoteRequiredInPublicID = The public identifier must begin with either a single or double quote character.
PublicIDUnterminated = The public identifier must end with the matching quote character.
PubidCharIllegal = The character (Unicode: 0x{0}) is not permitted in the public identifier.
SpaceRequiredBetweenPublicAndSystem = White spaces are required between publicId and systemId.
# 2.8 Prolog and Document Type Declaration
MSG_SPACE_REQUIRED_BEFORE_ROOT_ELEMENT_TYPE_IN_DOCTYPEDECL = White space is required after \"<!DOCTYPE\" in the document type declaration.
MSG_ROOT_ELEMENT_TYPE_REQUIRED = The root element type must appear after \"<!DOCTYPE\" in the document type declaration.
DoctypedeclUnterminated = The document type declaration for root element type \"{0}\" must end with ''>''.
PEReferenceWithinMarkup = The parameter entity reference \"%{0};\" cannot occur within markup in the internal subset of the DTD.
MSG_MARKUP_NOT_RECOGNIZED_IN_DTD = The markup declarations contained or pointed to by the document type declaration must be well-formed.
# 2.10 White Space Handling
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -