2775 |
rexy |
1 |
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
2 |
<!-- $Id: translation-plugin.xsd 36 2008-12-08 09:45:45Z BigMichi1 $ -->
|
|
|
3 |
<schema targetNamespace="http://phpsysinfo.sourceforge.net/translation-plugin"
|
|
|
4 |
xmlns="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://phpsysinfo.sourceforge.net/translation-plugin">
|
|
|
5 |
<complexType name="translationPluginType">
|
|
|
6 |
<sequence>
|
|
|
7 |
<element name="expression" type="tns:expressionPluginType"
|
|
|
8 |
maxOccurs="unbounded" minOccurs="1">
|
|
|
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="expressionPluginType">
|
|
|
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 |
<pattern value="[a-z_]+\d\d\d"></pattern>
|
|
|
22 |
</restriction>
|
|
|
23 |
</simpleType>
|
|
|
24 |
</attribute>
|
|
|
25 |
<attribute name="name" use="required">
|
|
|
26 |
<simpleType>
|
|
|
27 |
<restriction base="string">
|
|
|
28 |
<pattern value="[a-z_]+"></pattern>
|
|
|
29 |
</restriction>
|
|
|
30 |
</simpleType>
|
|
|
31 |
</attribute>
|
|
|
32 |
</complexType>
|
|
|
33 |
<element name="translationPlugin" type="tns:translationPluginType"></element>
|
|
|
34 |
</schema>
|