Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
converse.js
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
converse.js
Commits
eb645770
Commit
eb645770
authored
Nov 01, 2012
by
Michal Čihař
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #138 from lem9/master
Fix typo
parents
fb39f2f9
ffc5f9e4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
weblate/trans/checks.py
weblate/trans/checks.py
+2
-2
No files found.
weblate/trans/checks.py
View file @
eb645770
...
...
@@ -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 optional
l
y 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
]
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment