1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/dom/locales/en-US/chrome/layout/xmlparser.properties Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,48 @@ 1.4 +# This Source Code Form is subject to the terms of the Mozilla Public 1.5 +# License, v. 2.0. If a copy of the MPL was not distributed with this 1.6 +# file, You can obtain one at http://mozilla.org/MPL/2.0/. 1.7 + 1.8 +# Map Expat error codes to error strings 1.9 +1 = out of memory 1.10 +2 = syntax error 1.11 +3 = no element found 1.12 +4 = not well-formed 1.13 +5 = unclosed token 1.14 +6 = partial character 1.15 +7 = mismatched tag 1.16 +8 = duplicate attribute 1.17 +9 = junk after document element 1.18 +10 = illegal parameter entity reference 1.19 +11 = undefined entity 1.20 +12 = recursive entity reference 1.21 +13 = asynchronous entity 1.22 +14 = reference to invalid character number 1.23 +15 = reference to binary entity 1.24 +16 = reference to external entity in attribute 1.25 +17 = XML or text declaration not at start of entity 1.26 +18 = unknown encoding 1.27 +19 = encoding specified in XML declaration is incorrect 1.28 +20 = unclosed CDATA section 1.29 +21 = error in processing external entity reference 1.30 +22 = document is not standalone 1.31 +23 = unexpected parser state 1.32 +24 = entity declared in parameter entity 1.33 +27 = prefix not bound to a namespace 1.34 +28 = must not undeclare prefix 1.35 +29 = incomplete markup in parameter entity 1.36 +30 = XML declaration not well-formed 1.37 +31 = text declaration not well-formed 1.38 +32 = illegal character(s) in public id 1.39 +38 = reserved prefix (xml) must not be undeclared or bound to another namespace name 1.40 +39 = reserved prefix (xmlns) must not be declared or undeclared 1.41 +40 = prefix must not be bound to one of the reserved namespace names 1.42 + 1.43 +# %1$S is replaced by the Expat error string, may be followed by Expected (see below) 1.44 +# %2$S is replaced by URL 1.45 +# %3$u is replaced by line number 1.46 +# %4$u is replaced by column number 1.47 +XMLParsingError = XML Parsing Error: %1$S\nLocation: %2$S\nLine Number %3$u, Column %4$u: 1.48 + 1.49 +# %S is replaced by a tag name. 1.50 +# This gets appended to the error string if the error is mismatched tag. 1.51 +Expected = . Expected: </%S>.