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

Merge pull request #138 from lem9/master

Fix typo
parents fb39f2f9 ffc5f9e4
......@@ -610,7 +610,7 @@ class OptionalPluralCheck(SourceCheck):
'''
check_id = 'optional_plural'
name = _('Optional plural')
description = _('The string is optionaly used as plural, but not using plural forms')
description = _('The string is optionally used as plural, but not using plural forms')
def check_source(self, source, flags, unit):
if len(source) > 1:
......@@ -623,7 +623,7 @@ class EllipsisCheck(SourceCheck):
'''
check_id = 'ellipsis'
name = _('Ellipsis')
description = _(u'The string uses three commas (...) instead of ellipsis character (…)')
description = _(u'The string uses three dots (...) instead of an ellipsis character (…)')
def check_source(self, source, flags, unit):
return '...' in source[0]
......
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