<?xml version="1.0" encoding="UTF-8"?>
<!-- 
    Resources file schema 1.0
    
    Yahoo! Mobile Widgets
    Copyright 2007-2008 Yahoo! Inc. All rights reserved.
    
    This file contains the schema for the resources.xml file that can be packaged
    with a mobile widget in an appropriate localized resources directory (e.g.
    Resources/en/resources.xml. It is currently only used to hold localized strings.
-->

<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified"
    targetNamespace="http://mobile.yahoo.com/widgets/schema/1.0/resources/"
    xmlns="http://mobile.yahoo.com/widgets/schema/1.0/resources/">

    <xs:element name="resources">
        <xs:complexType>
            <xs:sequence minOccurs="0" maxOccurs="unbounded">
                <xs:element name="string">
                    <xs:complexType mixed="true">
                        <xs:attribute name="id" type="xs:ID"/>
                    </xs:complexType>
                </xs:element>
            </xs:sequence>
        </xs:complexType>
    </xs:element>
</xs:schema>

