Hi team
As far as I know, Xbench has some limitations when there are multiple matches of a Regex.
for example,
Any text Regex, something else Regex, end.
Xbench will match the first Regex and stop matching, causing the second Regex to be missed.
Am I right?
I would like to know if we have fixed this.
It would be necessary to repeat the regex to find more than 1 match. For instance, the following search allows you to find the same regex twice in the same segment:
Source: File has been changed - Recreate File
Target: El archivo ha cambiado; volver a crear el fichero.
Search:
Source: "(<file>)=1.*<@1>"
Target: "<archivo>.*<archivo>"
Hi Omartin,
Actually, we are trying to use Xbench + Checklist as an integrated QA tool to replace all other QA tools, but this bug is a major obstacle.
Can this issue be fixed?
Xbench does not count instances because languages have different rules. For example, English is less prone to use pronouns than other languages such as French or Spanish so it is not uncommon that a name that appears twice in the English source appears only once in the target, with a pronoun appearing in the second instance. So flagging this would produce many false positives for some languages.
With Xbench checklists you have the resource of use a structure like the one defined by @omartin for tag-like stuff where the instance count matters and also have the resource to add banned terms to the target for those case in which the instance missing is not a pronoun but a wrong term.
1 Like
Hi pcondal
But if we don’t know the maximum number of times, doesn’t that mean this solution might not work, or that we need to add enough matches to get the result we want?
Also the terms may not be added in a timely manner, so there are some risks with this method as well…
The approach with checklists is to create one checklist item with each case, n=1, n=2, etc, until you think you are covered.
Another way to count instances would be with a custom QA plugin, but that would require Windows programming skills in your team.