resources (LocalizationType) Element

Defines a group of string tables that contain the localized strings that you reference in your manifest.

<xs:element name="resources">
    <xs:complexType>
        <xs:choice
            minOccurs="0"
            maxOccurs="unbounded"
        >
            <xs:element name="stringTable"
                type="StringTableType"
             />
            <xs:any
                processContents="lax"
                minOccurs="0"
                namespace="##other"
             />
        </xs:choice>
        <xs:attribute name="culture"
            type="string"
            default="##fallback"
            use="optional"
         />
    </xs:complexType>
</xs:element>

The resources element is defined by the LocalizationType complex type.

Child elements

Element Type Description
stringTable StringTableType Defines a list of localized strings that you can reference in your manifest.

Attributes

Name Type Description
culture string A language name that identifies the culture of the localized strings in the string table. For example, "en-US" for English (United States).

Requirements

Requirement Value
Minimum supported client
Windows Vista [desktop apps only]
Minimum supported server
Windows Server 2008 [desktop apps only]

See also

Parent element

localization (instrumentationManifest)