Make publish rules language independend
Is there any config to make WVS publish rules language independed in Windchill 11.1?
I wanted to make a simple condition for released drawings and i noticed, that the attribute doctype and the lifeCycleState are language dependend. When i publish a drawing out of an english Windchill web interface, the docType is Drawing, when you do it from a german interface it is Zeichnung.
The lifeCycleState is even more strange to me: The value is always in german (Freigegeben), independed from the Windchill user language and the Creo language settings. (I added the english one just to make sure it will work in other conditions i haven't tested..) I have also checked the resource bundles for errors in translations, but it seems allright. In the Windchill interface the the translations are correct regarding to the chosen user language.
Workaround i found so far: Instead of checking the docType i can use the filename extension.
<condition name="drawing_released">
<and>
<!--
<or>
<attribute name="epmdoc_docType" value="Zeichnung"/>
<attribute name="epmdoc_docType" value="Drawing"/>
</or>
-->
<attribute name="epmdoc_CADName" regex=".*\.drw"/>
<or>
<attribute name="epmdoc_lifeCycleState" value="Freigegeben"/>
<attribute name="epmdoc_lifeCycleState" value="Released"/>
</or>
</and>
</condition>
For me it makes absolutely no sense that the publishing rules are language depended. Is there any config to turn this off? Or do i really have to add an <or> condition for every possible language?

