Commit 4f5605f4 authored by Michal Čihař's avatar Michal Čihař

Use implicit concatenation

parent 9eac3762
......@@ -124,7 +124,7 @@ class EndColonCheck(TargetCheck):
check_id = 'end_colon'
name = _('Trailing colon')
description = _(
'Source and translation do not both end with a colon ' +
'Source and translation do not both end with a colon '
'or colon is not correctly spaced'
)
......@@ -157,7 +157,7 @@ class EndQuestionCheck(TargetCheck):
check_id = 'end_question'
name = _('Trailing question')
description = _(
'Source and translation do not both end with a question mark ' +
'Source and translation do not both end with a question mark '
'or it is not correctly spaced'
)
......@@ -184,7 +184,7 @@ class EndExclamationCheck(TargetCheck):
check_id = 'end_exclamation'
name = _('Trailing exclamation')
description = _(
'Source and translation do not both end with an exclamation mark ' +
'Source and translation do not both end with an exclamation mark '
'or it is not correctly spaced'
)
......
......@@ -49,7 +49,7 @@ class EllipsisCheck(SourceCheck):
check_id = 'ellipsis'
name = _('Ellipsis')
description = _(
u'The string uses three dots (...) ' +
u'The string uses three dots (...) '
u'instead of an ellipsis character (…)'
)
......
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