See IZ
96813 for the bug description and dependent issues
How to make the attribute and node documentation internationalized in wsdl editor:
- Find the bundle that is referred in the layer.xml, used to localize the menu items.
- In the schema documentation, create a unique key (for the bundle.properties), type in place of the documentation
- <xsd:documentation>DESC_Element_pollingInterval</xsd:documentation>
- Add the documentation in bundle.properties
- DESC_Element_pollingInterval=pollingInterval defines the intervals at which the file should be polled for.
Example for attribute:
<xs:attribute name="pollingInterval" type="xs:long" use="optional">
<xs:annotation>
<xs:documentation>DESC_Attribute_pollingInterval</xs:documentation>
</xs:annotation>
</xs:attribute>
Example for element:
<xs:element name="message" type="file:tFileMessage">
<xs:annotation>
<xs:documentation>DESC_Element_message</xs:documentation>
</xs:annotation>
</xs:element>
The wsdl editor will try to look for the content of the documentation in the bundle defined in the layer.xml, if not found, will set the description as the content of documentation. This helps for backward compatibility.
How to make GroupedProperty localized:
For elements with property customizers with
GroupedProperty :
Keys should be LBL_${displayName} and DESC_${displayName), so that localized name and description can be shown in wsdl editor