Adding similar type components in a page for translations in AEM 65
Hi,
In AEM 6.5, I have a scenario where two components of same resource type is being used on a single page with different content, which needs to be sent for translation using connector. And only one among two is being sent.
I tried by implementing filter include node pattern in "translation_rules.xml" but couldn't succeed.
For example
i have
/content/test/en-us/play/center/jcr:content/mainpar/tagscomponent
/content/test/en-us/play/center/jcr:content/mainpar/tagscomponent_1642350872
and rule i have is
<node path="/content/test">
<node resourceType="portal/components/tags/TagsComponent">
<property inherit="true" name="richText" translate="true" updateDestinationLanguage="false"/>
</node>
<filter>
<node pathContains="tagscomponent_(*)" translate="true">
</node>
</filter>
</node>
Is there any other way to achieve this or i have wrong filter implemented.