共用方式為


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>

子元素

元素 類型 描述
資源 定義字串資料表群組,其中包含您在資訊清單中參考的當地語系化字串。
stringTable StringTableType 定義您可以在資訊清單中參考的當地語系化字串清單。

屬性

名称 類型 描述
culture string 語言名稱,識別字串資料表中當地語系化字串的文化特性。 例如,英文 (美國) 的 「en-US」。
fallbackCulture string 未使用。

規格需求

需求
最低支援的用戶端
Windows Vista [僅限傳統型應用程式]
最低支援的伺服器
Windows Server 2008 [僅限傳統型應用程式]