Commit 8e2c607e authored by Michal Čihař's avatar Michal Čihař

These should be warnings

Signed-off-by: default avatarMichal Čihař <michal@cihar.com>
parent cbea3525
......@@ -53,7 +53,7 @@ class EllipsisCheck(SourceCheck):
u'The string uses three dots (...) '
u'instead of an ellipsis character (…)'
)
severity = 'info'
severity = 'warning'
def check_source(self, source, unit):
return '...' in source[0]
......@@ -68,7 +68,7 @@ class MultipleFailingCheck(SourceCheck):
description = _(
'The translations in several languages have failing checks'
)
severity = 'info'
severity = 'warning'
def check_source(self, source, unit):
from weblate.trans.models.unitdata import Check
......
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