Hi everyone,
I am trying to use Okapi with an XML file and a settings file exported from Trados Studio. I would like to understand how to process this XML correctly in Okapi and how to replicate the segmentation and extraction rules from Trados.
Is there any tutorial or documentation that explains how to convert Trados XML filter settings to Okapi filter configurations? Or what is the best approach to recreate the same rules in Okapi?
this is part of my XML
<tmsnode id="9007199465316363" xml:space="preserve">
<title>Title text here</title>
<content/>
</tmsnode>
<tmsnode id="210579723" xml:space="preserve">
<title>Text here</title>
<content>
<table-container type="framed">
<table type="scaled" hsdl-cm="8.74">
<tbody>
<tr>
<td>
<p>Test <b>1</b>
</p>
</td>
</tr>
</tbody>
</table>
</table-container>
</content>
</tmsnode>
<tmsnode>
<metalist>
<meta name="VectorGraphics:facvb135-8fd6-4csdf-8dsdf-62basdf0sdf0">Some text here</meta>
</metalist>
</tmsnode>
And this is part of my settings
<Setting Id="Xml_Translate_Rule_1Translate">no</Setting>
<Setting Id="Xml_Translate_Rule_1XPathSelector">//tmsnode/metalist/meta[@name = 'WebM']</Setting>
<Setting Id="Xml_Translate_Rule_1">True</Setting>
<Setting Id="Xml_WithinText_Rule_2Translate">no</Setting>
<Setting Id="Xml_WithinText_Rule_2XPathSelector">//tmsnode/metalist/meta[@name = 'VectorGraphics']</Setting>
<Setting Id="Xml_WithinText_Rule_2">True</Setting>
Any guidance would be appreciated.