Hi community,
I'm trying to set up parser rules for a bilingual from which I only need certain sections. Basic structure is like this:
<page>
<content language="de" title="Title">
<keywords>abc</keywords>
<role>abc</role>
</content>
<content language="en" title="Title">
<keywords>abc</keywords>
<role>abc</role>
</content>
</page>
What I need to translate is: title and keywords, but only if language="en". How do I do this? So far I have manage to extract the keywords using XPath, but I don't know how to get the title. Thank you very much for your help!