-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathtranslation.xsd
30 lines (30 loc) · 964 Bytes
/
translation.xsd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:attributeGroup name="entryGroup">
<xs:attribute name="key" type="xs:string"/>
<xs:attribute name="value" type="xs:string"/>
<xs:attribute name="version" type="xs:byte"/>
<xs:attribute name="clone" type="xs:string"/>
<xs:attribute name="derive" type="xs:boolean"/>
</xs:attributeGroup>
<xs:element name="localization">
<xs:complexType>
<xs:sequence>
<xs:element name="strings">
<xs:complexType>
<xs:sequence>
<xs:element name="string" maxOccurs="unbounded" minOccurs="1">
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attributeGroup ref="entryGroup"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>