Commit 870a4fd8 authored by Michal Čihař's avatar Michal Čihař

Thai does not have a full stop

According to https://en.wikipedia.org/wiki/Full_stop
parent e2c05999
......@@ -123,6 +123,9 @@ class EndStopCheck(TargetCheck):
return False
if not target:
return False
# Thai does not have a full stop
if self.is_language(unit, ['th']):
return False
if self.is_language(unit, ['ja']) and source[-1] in [':', ';']:
# Japanese sentence might need to end with full stop
# in case it's used before list.
......
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