Commit 023878a1 authored by Michal Čihař's avatar Michal Čihař

Do not highlight non translated things in Interlingua

The technical terms are usually same as in English, so this yields
warnings too often.
Signed-off-by: default avatarMichal Čihař <michal@cihar.com>
parent 1c40b77a
......@@ -1135,7 +1135,8 @@ class SameCheck(TargetCheck):
def check_single(self, source, target, unit, cache_slot):
# English variants will have most things not translated
if self.is_language(unit, ('en', )):
# Interlingua is also quite often similar to English
if self.is_language(unit, ('en', 'ia')):
return False
# One letter things are usually labels or decimal/thousand separators
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment