What Does This Mean "xmlns:xliff"? Xml
What does this mean? It can be seen in Strings.xml as part of th
Solution 1:
This is xml namespace used for xliff. Xliff is used for localization purposes. You can read more about xliff here.
Solution 2:
XLIFF is the OASIS XML Localisation Interchange File Format.
xmlns:xliff
is an XML attribute name. The :xliff
indicates we are using the xliff
namespace.
urn:oasis:names:tc:xliff:document:1.2
identifies the schema location; the choice of format is at the discretion of Oasis, I'd assume it has meaning.
Post a Comment for "What Does This Mean "xmlns:xliff"? Xml"