Grouped search expression

Is there a way to use regular expressions to find the corresponding objects in the original text in the translated text?

For example, in the screenshot below, it can detect if the translation is missing "#test#", but it cannot detect if there are extra "#test#" in the translation.

Trados Studio interface showing a comparison between source and target texts with a missing '#test#' in the translation.

Trados Studio regular expressions search settings with a warning for 'test1' condition to report if source matches but not target.

Trados Studio QA Checker warning message indicating 'test1' found in source but not in target (#test#).



Generated Image Alt-Text
[edited by: Trados AI at 4:49 AM (GMT 0) on 5 Mar 2024]
emoji
Parents Reply Children
  •  

    I don’t think you can check if a text in Target is present in Source out-of-the-box…

    Your test1 rule works an you can use it to check if a #test# string in Source is present in Target.

    Now maybe this semi-automatic check with the Advanced Display Fillter may help you with the other way around:
    Screenshot of Trados Studio's Advanced Display Filter 2.0 with a regex input in the Target field to filter segments containing the text '#test#'.

    This will show only segments with your #test# strings in Target, and then you can check visually if they are in Source.

    Let’s see If someone can give you a better advice…

    BTW: I think your regex can be simplified from:

    (#[a-z]+[^#]#)

    to:

    (#[a-z]+#)

    emoji


    Generated Image Alt-Text
    [edited by: Trados AI at 4:49 AM (GMT 0) on 5 Mar 2024]