次の方法で共有


LocalizationType 複合型

マニフェストで参照するローカライズされたリソースのグループを定義します。

<xs:complexType name="LocalizationType">
    <xs:choice
        minOccurs="0"
        maxOccurs="unbounded"
    >
        <xs:element name="resources">
            <xs:complexType>
                <xs:choice
                    minOccurs="0"
                    maxOccurs="unbounded"
                >
                    <xs:element name="stringTable"
                        type="StringTableType"
                     />
                </xs:choice>
                <xs:attribute name="culture"
                    type="string"
                    use="required"
                 />
                <xs:anyAttribute
                    processContents="lax"
                    namespace="##other"
                 />
            </xs:complexType>
        </xs:element>
        <xs:any
            processContents="lax"
            minOccurs="0"
            namespace="##other"
         />
    </xs:choice>
    <xs:attribute name="fallbackCulture"
        type="string"
        default="en-us"
        use="optional"
     />
    <xs:anyAttribute
        processContents="lax"
        namespace="##other"
     />
</xs:complexType>

子要素

要素 Type 説明
リソース マニフェストで参照するローカライズされた文字列を含む文字列テーブルのグループを定義します。
stringTable StringTableType マニフェストで参照できるローカライズされた文字列の一覧を定義します。

属性

名前 説明
カルチャ string 文字列テーブル内のローカライズされた文字列のカルチャを識別する言語名。 たとえば、英語 (米国) の場合は "en-US" とします。
fallbackCulture string 使用しません。

必要条件

要件
サポートされている最小のクライアント
Windows Vista [デスクトップ アプリのみ]
サポートされている最小のサーバー
Windows Server 2008 [デスクトップ アプリのみ]