LocalizationType Complex Type
- Article
-
-
Defines a group of localized resources that you reference in your manifest.
<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>
Child elements
Element |
Type |
Description |
resources |
|
Defines a group of string tables that contain the localized strings that you reference in your manifest.
|
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).
|
fallbackCulture |
string |
Not used.
|
Requirements
Requirement |
Value |
Minimum supported client
|
Windows Vista [desktop apps only]
|
Minimum supported server
|
Windows Server 2008 [desktop apps only]
|