Start a new topic

Requesting new QA function: check web and email addresses (MT)

Hi Igor,


I'd like to request a new QA function to check that any web and email addresses are unchanged between source and target text. The background to this is the fact that MT occassionally translates these or parts of these, and it's very easy to overlook this/I'd love to not have to worry about checking this when proofreading.

There may well be cases where some translation (or substitution) is required, but users in this position do not have to use this check.


Jeremy



This is already possible via generic regex non-translatables.
Igor wrote: Try adding the following: |[^ ]+?\@[^ ]+?\.[^ ]+ It will catch basic e-mail address. //// This Java regex is said to catch 99.99% of all e-mail addresses: (?:[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*|"(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x21\x23-\x5b\x5d-\x7f]|\\[\x01-\x09\x0b\x0c\x0e-\x7f])*")@(?:(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?|\[(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?|[a-z0-9-]*[a-z0-9]:(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x21-\x5a\x53-\x7f]|\\[\x01-\x09\x0b\x0c\x0e-\x7f])+)\]
Login to post a comment