comparison schemas/translation.xsd @ 3:2f52da2e7605

Directory and project updates. VS2008 does not like app.config so I had to remove references of that from the solution from other projects.
author Tsudico
date Wed, 08 Dec 2010 18:44:10 -0600
parents
children
comparison
equal deleted inserted replaced
2:51e8cd3be231 3:2f52da2e7605
1 <?xml version="1.0"?>
2 <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="http://ibboard.co.uk/translation" xmlns="http://ibboard.co.uk/translation" elementFormDefault="qualified">
3 <xs:complexType name="translationtype">
4 <xs:simpleContent>
5 <xs:extension base="xs:string">
6 <xs:attribute name="id" type="xs:ID" use="required" />
7 </xs:extension>
8 </xs:simpleContent>
9 </xs:complexType>
10 <xs:element name="translations">
11 <xs:complexType>
12 <xs:sequence>
13 <xs:element name="translation" minOccurs="0" maxOccurs="unbounded" type="translationtype"/>
14 </xs:sequence>
15 <xs:attribute name="lang" type="xs:string" use="required"/>
16 <xs:attribute name="extends" type="xs:string" default=""/>
17 </xs:complexType>
18 </xs:element>
19 </xs:schema>