Commit d34a1146 authored by Michal Čihař's avatar Michal Čihař

Another tweaks for Armenian

Signed-off-by: default avatarMichal Čihař <michal@cihar.com>
parent 3b247e4a
......@@ -15,6 +15,7 @@ Released on ? 2015.
* Added support for generating translator credits.
* Added support for generating contributor stats.
* Site wide search can search only in one language.
* Improve quality checks for Armenian.
weblate 2.4
-----------
......
......@@ -143,7 +143,7 @@ class EndStopCheck(TargetCheck):
if self.is_language(unit, ('hy', )):
return self.check_chars(
source, target, -1,
(u'.', u'。', u'।', u'۔', u'։', u'·', u'෴', u'។', ':', '՝')
(u'.', u'。', u'।', u'۔', u'։', u'·', u'෴', u'។', ':', '՝', '?')
)
if self.is_language(unit, ('hi', 'bn')):
# Using | instead of । is not typographically correct, but
......@@ -244,7 +244,7 @@ class EndQuestionCheck(TargetCheck):
source,
target,
-1,
(u'?', u'՞')
(u'?', u'՞', u'։')
)
return False
......
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