Pre/post-lookup in MT Enhanced Trados Plugin: how to get newly added terms to work immediately?

So I am trying to use the pre/post-lookup feature in the MT Enhanced Trados Plugin. Basically, to quickly change incorrectly translated terms by adding them to the XML file, as per the instructions. However, it is not clear to me exactly what I need to do to get the newly added terms to work (immediately).

  • Does the XML file need to be closed?
  • Do I need to restart Trados Studio?
  • Does it work better or worse with Lookup enabled? (Options > Editor > Automation > Enable LookAhead)
  • etc.

Basically, I usually use GT4T, which allows you to quickly add term pairs with a shortcut to a small glossary, which then works immediately the next time you use GT4T.

For example, one idea I had was to create a small AutoHotkey script which would allow me to quickly add term pairs to the XML file via a small GUI/shortcut. However, before I try to do this I wanted to know exactly what is best in terms of the the newly added terms working immediately.

emoji
Parents Reply
  • My latest discovery is that it is often best to add shorter terms to your post-lookup F/R XML file as regular expressions, since otherwise the F&R operation will insert these shorter terms into longer ones, resulting in gobbledygook. 

    For example, if I use:

    <EditItem Enabled="true" EditItemType="plain_text">
    <FindText>nis</FindText>
    <ReplaceText>uitsparing</ReplaceText>
    </EditItem>

    I get this:

    "De tweede holte heeft bij voorkeur een cilindrische of couitsparingche vorm."

    ~~~~~

    If I use:

    <EditItem Enabled="true" EditItemType="regular_expression">
    <FindText>\bnis\b</FindText>
    <ReplaceText>uitsparing</ReplaceText>
    </EditItem>
    </Items>

    I get this:

    "De tweede holte heeft bij voorkeur een cilindrische of conische vorm."

    emoji
Children
No Data