view schemas/translation.xsd @ 64:70d6c2a5d99e

* Move schema from "dtds" folder to "schemas" folder to match warfoundry:429 no-open-ticket
author IBBoard <dev@ibboard.co.uk>
date Wed, 16 Dec 2009 20:48:10 +0000
parents
children a70d89de1435
line wrap: on
line source

<?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="http://ibboard.co.uk/translation" xmlns="http://ibboard.co.uk/translation" elementFormDefault="qualified">
<xs:complexType name="translationtype">
    <xs:simpleContent>
      <xs:extension base="xs:string">
        <xs:attribute name="id" type="xs:ID" />
      </xs:extension>
    </xs:simpleContent>
</xs:complexType>
<xs:element name="translations">
  <xs:complexType>
    <xs:sequence>
      <xs:element name="translation" minOccurs="0" maxOccurs="unbounded" type="translationtype"/>
    </xs:sequence>
    <xs:attribute name="lang" type="xs:string" use="required"/>
  </xs:complexType>
</xs:element>
</xs:schema>