-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
18 changed files
with
1,417 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<catalog xmlns="urn:oasis:names:tc:entity:xmlns:xml:catalog"> | ||
<uri name="http://www.w3.org/XML/1998/namespace" uri="informativeCopiesOf3rdPartySchemas/w3c/xml.xsd"/> | ||
<uri name="urn:oasis:names:tc:xliff:document:2.2" uri="xliff_core_2.2.xsd"/> | ||
<uri name="urn:oasis:names:tc:xliff:fs:2.0" uri="fs.xsd"/> | ||
<uri name="urn:oasis:names:tc:xliff:glossary:2.0" uri="glossary.xsd"/> | ||
<uri name="urn:oasis:names:tc:xliff:matches:2.0" uri="matches.xsd"/> | ||
<uri name="urn:oasis:names:tc:xliff:metadata:2.0" uri="metadata.xsd"/> | ||
<uri name="urn:oasis:names:tc:xliff:resourcedata:2.0" uri="resource_data.xsd"/> | ||
<uri name="urn:oasis:names:tc:xliff:sizerestriction:2.0" uri="size_restriction.xsd"/> | ||
<uri name="urn:oasis:names:tc:xliff:validation:2.0" uri="validation.xsd"/> | ||
<uri name="https://www.w3.org/2005/11/its/" uri="its.xsd"/> | ||
<uri name="urn:oasis:names:tc:xliff:itsm:2.1" uri="itsm.xsd"/> | ||
<uri name="urn:oasis:names:tc:xliff:pgs:1.0" uri="plural_gender_select.xsd"/> | ||
</catalog> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" | ||
xmlns:fs="urn:oasis:names:tc:xliff:fs:2.0" | ||
targetNamespace="urn:oasis:names:tc:xliff:fs:2.0"> | ||
|
||
|
||
<!-- Attribute Types --> | ||
|
||
<xs:simpleType name="fs_type"> | ||
<xs:restriction base="xs:string"> | ||
<xs:enumeration value="a"/> | ||
<xs:enumeration value="b"/> | ||
<xs:enumeration value="bdo"/> | ||
<xs:enumeration value="big"/> | ||
<xs:enumeration value="blockquote"/> | ||
<xs:enumeration value="body"/> | ||
<xs:enumeration value="br"/> | ||
<xs:enumeration value="button"/> | ||
<xs:enumeration value="caption"/> | ||
<xs:enumeration value="center"/> | ||
<xs:enumeration value="cite"/> | ||
<xs:enumeration value="code"/> | ||
<xs:enumeration value="col"/> | ||
<xs:enumeration value="colgroup"/> | ||
<xs:enumeration value="dd"/> | ||
<xs:enumeration value="del"/> | ||
<xs:enumeration value="div"/> | ||
<xs:enumeration value="dl"/> | ||
<xs:enumeration value="dt"/> | ||
<xs:enumeration value="em"/> | ||
<xs:enumeration value="h1"/> | ||
<xs:enumeration value="h2"/> | ||
<xs:enumeration value="h3"/> | ||
<xs:enumeration value="h4"/> | ||
<xs:enumeration value="h5"/> | ||
<xs:enumeration value="h6"/> | ||
<xs:enumeration value="head"/> | ||
<xs:enumeration value="hr"/> | ||
<xs:enumeration value="html"/> | ||
<xs:enumeration value="i"/> | ||
<xs:enumeration value="img"/> | ||
<xs:enumeration value="label"/> | ||
<xs:enumeration value="legend"/> | ||
<xs:enumeration value="li"/> | ||
<xs:enumeration value="ol"/> | ||
<xs:enumeration value="p"/> | ||
<xs:enumeration value="pre"/> | ||
<xs:enumeration value="q"/> | ||
<xs:enumeration value="s"/> | ||
<xs:enumeration value="samp"/> | ||
<xs:enumeration value="select"/> | ||
<xs:enumeration value="small"/> | ||
<xs:enumeration value="span"/> | ||
<xs:enumeration value="strike"/> | ||
<xs:enumeration value="strong"/> | ||
<xs:enumeration value="sub"/> | ||
<xs:enumeration value="sup"/> | ||
<xs:enumeration value="table"/> | ||
<xs:enumeration value="tbody"/> | ||
<xs:enumeration value="td"/> | ||
<xs:enumeration value="tfoot"/> | ||
<xs:enumeration value="th"/> | ||
<xs:enumeration value="thead"/> | ||
<xs:enumeration value="title"/> | ||
<xs:enumeration value="tr"/> | ||
<xs:enumeration value="tt"/> | ||
<xs:enumeration value="u"/> | ||
<xs:enumeration value="ul"/> | ||
</xs:restriction> | ||
</xs:simpleType> | ||
|
||
|
||
<!-- Attributes --> | ||
|
||
<xs:attribute name="fs" type="fs:fs_type"/> | ||
|
||
<xs:attribute name="subFs" type="xs:string"/> | ||
|
||
</xs:schema> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" | ||
xmlns:gls="urn:oasis:names:tc:xliff:glossary:2.0" | ||
targetNamespace="urn:oasis:names:tc:xliff:glossary:2.0"> | ||
|
||
|
||
<!-- Elements for holding simple glossary data --> | ||
|
||
<xs:element name="glossary"> | ||
<xs:complexType mixed="false"> | ||
<xs:sequence> | ||
<xs:element minOccurs="1" maxOccurs="unbounded" ref="gls:glossEntry" /> | ||
</xs:sequence> | ||
</xs:complexType> | ||
</xs:element> | ||
|
||
<xs:element name="glossEntry"> | ||
<xs:complexType> | ||
<xs:sequence> | ||
<xs:element minOccurs="1" maxOccurs="1" ref="gls:term"/> | ||
<xs:element minOccurs="0" maxOccurs="unbounded" ref="gls:translation" /> | ||
<xs:element minOccurs="0" maxOccurs="1" ref="gls:definition" /> | ||
<xs:any maxOccurs="unbounded" minOccurs="0" namespace="##other" processContents="lax"/> | ||
</xs:sequence> | ||
<xs:attribute name="id" use="optional" type="xs:NMTOKEN"/> | ||
<xs:attribute name="ref" use="optional" type="xs:anyURI"/> | ||
<xs:anyAttribute namespace="##other" processContents="lax"/> | ||
</xs:complexType> | ||
</xs:element> | ||
|
||
<xs:element name="term"> | ||
<xs:complexType mixed="true"> | ||
<xs:attribute name="source" use="optional"/> | ||
<xs:anyAttribute namespace="##other" processContents="lax"/> | ||
</xs:complexType> | ||
</xs:element> | ||
|
||
<xs:element name="translation"> | ||
<xs:complexType mixed="true"> | ||
<xs:attribute name="id" use="optional" type="xs:NMTOKEN"/> | ||
<xs:attribute name="ref" use="optional" type="xs:anyURI"/> | ||
<xs:attribute name="source" use="optional"/> | ||
<xs:anyAttribute namespace="##other" processContents="lax"/> | ||
</xs:complexType> | ||
</xs:element> | ||
|
||
<xs:element name="definition"> | ||
<xs:complexType mixed="true"> | ||
<xs:attribute name="source" use="optional"/> | ||
<xs:anyAttribute namespace="##other" processContents="lax"/> | ||
</xs:complexType> | ||
</xs:element> | ||
|
||
</xs:schema> |
3 changes: 3 additions & 0 deletions
3
catalog/xliff2.2/informativeCopiesOf3rdPartySchemas/readme.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
IMPORTANT WARNING | ||
Schema copies in this sub-folder are provided solely for implementers convenience and are NOT a part of the OASIS multipart product. | ||
These schemas belong to their respective owners and their use is governed by their owners' respective IPR policies. |
Oops, something went wrong.