2775 |
rexy |
1 |
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
2 |
<!-- $Id: translation.xsd 150 2009-03-20 20:19:23Z bigmichi1 $ -->
|
|
|
3 |
<schema targetNamespace="http://phpsysinfo.sourceforge.net/translation"
|
|
|
4 |
xmlns:tns="http://phpsysinfo.sourceforge.net/translation" xmlns="http://www.w3.org/2001/XMLSchema">
|
|
|
5 |
<complexType name="translationType">
|
|
|
6 |
<sequence>
|
|
|
7 |
<element name="expression" type="tns:expressionType" maxOccurs="unbounded"
|
|
|
8 |
minOccurs="93">
|
|
|
9 |
</element>
|
|
|
10 |
</sequence>
|
|
|
11 |
<attribute name="charset" type="string" use="required"></attribute>
|
|
|
12 |
<attribute name="language" type="string" use="required"></attribute>
|
|
|
13 |
</complexType>
|
|
|
14 |
<complexType name="expressionType">
|
|
|
15 |
<sequence>
|
|
|
16 |
<element name="exp" type="string" maxOccurs="1" minOccurs="1"></element>
|
|
|
17 |
</sequence>
|
|
|
18 |
<attribute name="id" use="required">
|
|
|
19 |
<simpleType>
|
|
|
20 |
<restriction base="string">
|
|
|
21 |
<length value="3"></length>
|
|
|
22 |
<pattern value="\d\d\d"></pattern>
|
|
|
23 |
</restriction>
|
|
|
24 |
</simpleType>
|
|
|
25 |
</attribute>
|
|
|
26 |
<attribute name="name" use="required">
|
|
|
27 |
<simpleType>
|
|
|
28 |
<restriction base="string">
|
|
|
29 |
<pattern value="[a-zA-Z0-9_]+"></pattern>
|
|
|
30 |
</restriction>
|
|
|
31 |
</simpleType>
|
|
|
32 |
</attribute>
|
|
|
33 |
</complexType>
|
|
|
34 |
<element name="translation" type="tns:translationType"></element>
|
|
|
35 |
</schema>
|